Skip to main content

This website no longer supports your browser. You can upgrade your browser to the latest version.

BETA

This is a new service. To help us improve it, give feedback

Pages Guide

Overview

The guide is a collection of related pages with features that help the user understand and navigate a topic or subject.

Each of the related pages within a guide contain a table of contents that shows all pages in the guide.

There is an additional navigation component added to a guide. The pager is displayed at the bottom of each page allowing the user to move on to the next (or previous) page.

When to use this pattern

Use this pattern when you want to present a collection of related pages on a topic.

How to use this pattern

View the Nunjucks output below which shows the components required to create the guide pattern.

The first page of a guide serves as the "parent" to the other pages. In the table of contents it should be linked as "Overview". For accessibility the title h1 should contain an additional visually hidden span that provides the additional "Overview" text, for example:

<h1 class="ons-u-mb-l">
  <span class="ons-u-fs-2xl ons-u-db">About the census</span>
  <span class="ons-u-vh">: Overview</span>
</h1>

Guide overview

Example: Guide overview contents

Nunjucks
{% extends "layout/_template.njk" %}
{% from "components/content-pagination/_macro.njk" import onsContentPagination %}
{% from "components/breadcrumbs/_macro.njk" import onsBreadcrumbs %}
{% from "components/table-of-contents/_macro.njk" import onsTableOfContents %}
{%
    set pageConfig = {
        "header": {
            "mastheadLogoUrl": "#0",
            "title": "Guide example",
            "titleUrl": "#0",
            "language": {
                "languages": [
                    {
                        "url": "#0",
                        "isoCode": "en",
                        "text": "English",
                        "current": true
                    },
                    {
                        "url": "#0",
                        "isoCode": "cy",
                        "text": "Cymraeg",
                        "current": false
                    }
                ]
            }
        },
        "footer": {}
    }
%}
{% block preMain %}
    {{
        onsBreadcrumbs({
            "ariaLabel": 'Breadcrumbs',
            "itemsList": [
                {
                    "url": '/',
                    "text": 'Home'
                },
                {
                    "url": '/#',
                    "text": 'Guide example'
                }
            ]
        })
    }}
{% endblock %}

{% block main %}
    <h1 class="ons-u-mb-xl">
        <span class="ons-u-fs-2xl ons-u-db">About the census</span>
        <span class="ons-u-vh">: Overview</span>
    </h1>
    {{-
        onsTableOfContents({
            "ariaLabel": "Pages in this guide",
            "title": "Contents",
            "skipLink": {
                "url": "#section-content",
                "text": "Skip to guide content"
            },
            "itemsList": [
                {
                    "url": '#',
                    "text": 'Overview',
                    "current": true
                },
                {
                    "url": '#',
                    "text": 'Who should take part and why'
                },
                {
                    "url": '#',
                    "text": 'How your information is used'
                },
                {
                    "url": '#',
                    "text": 'The 2019 Census Rehearsal'
                },
                {
                    "url": '#',
                    "text": 'Online census'
                }
            ]
        })
    -}}
    <section id="section-content" class="ons-page__body">
        <h2>What the census is</h2>
        <p>
            The census is a survey that happens every 10 years and gives us a picture of all the people and households in England and Wales.
            The census is unique. There’s simply nothing else that gives so much detail about us and the society we live in.
        </p>
        <p>
            All kinds of organisations, from local authorities to charities, use the information to help provide the services we all need,
            including transport, education and healthcare. Without the census, it would be much more difficult to do this.
        </p>
        <p>By taking part, you’ll be helping make sure you and your community get the services needed now and in the future.</p>

        <h2>Past, present and future</h2>
        <p>
            The first census was in 1801 and the most recent in 2011. The Office for National Statistics (ONS) runs the census in England
            Wales and the next one will happen on Sunday 21 March 2021. To prepare for it, we held a census rehearsal in 2019 to check our
            processes, systems and services were running smoothly ahead of the real thing.
        </p>

        <h2>Between censuses</h2>
        <p>
            We also need your help between each census. At the ONS, we rely on ongoing surveys to provide detailed, up-to-date information
            about changes to society. To make sure that we represent everyone, we ask people to take part in these surveys. We carry out
            interviews in person, by phone or online.
        </p>
        <p>
            These surveys do not stop while the census takes place. To find out more about the types of surveys we run throughout the year,
            visit <a href="http://www.ons.gov.uk/surveys">the ONS website</a>.
        </p>

        <h2>The census in Scotland and Northern Ireland</h2>
        <p>At the ONS, we’re responsible for planning and running the census for England and Wales.</p>

        <p>
            Find out more about the censuses in Scotland and Northern Ireland from
            <a href="https://www.nrscotland.gov.uk/">National Records of Scotland</a> and
            <a href="https://www.nisra.gov.uk/">Northern Ireland Statistics and Research Agency</a>.
        </p>

        <div class="ons-u-mt-3xl">
            {{-
                onsContentPagination({
                    "contentPaginationItems": [
                        {
                            "rel": 'next',
                            "text": 'Next',
                            "url": '#',
                            "label": 'Who should take part and why'
                        }
                    ]
                })
            -}}
        </div>
    </section>
{% endblock %}
HTML
<!doctype html>
<html lang="en">

  <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Example: Guide overview</title>
    <link rel="stylesheet" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/css/main.css" />
    <link rel="stylesheet" media="print" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/css/print.css" />
    <meta name="theme-color" content="#206095" />
    <!-- Open Graph -->
    <meta property="og:type" content="website" />
    <meta property="og:url" content="" />
    <meta property="og:title" content="" />
    <meta property="og:image" content="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/opengraph.png" />
    <meta property="og:image:type" content="image/png" />
    <meta property="og:image:width" content="1200" />
    <meta property="og:image:height" content="630" />
    <meta property="og:description" content="" />
    <meta property="og:site_name" content="Guide example" />
    <meta property="og:locale" content="en" />
    <meta property="og:locale:alternate" content="cy" />
    <!-- Favicons -->
    <link rel="icon" type="image/x-icon" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/favicon.ico" />
    <link rel="icon" type="image/png" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/favicon-32x32.png"
      sizes="32x32" />
    <link rel="icon" type="image/png" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/favicon-16x16.png"
      sizes="16x16" />
    <link rel="mask-icon" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/safari-pinned-tab.svg"
      color="#000000" />
    <link rel="apple-touch-icon" type="image/png"
      href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/apple-touch-icon.png" sizes="180x180" />
    <link rel="manifest" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/manifest.json" />
  </head>

  <body>
    <!-- prettier-ignore-start -->
    <script>
      document.body.className = ((document.body.className) ? document.body.className + ' ons-js-enabled' :
        'ons-js-enabled');
    </script>
    <!-- prettier-ignore-end -->
    <div class="ons-page">
      <div class="ons-page__content">
        <div role="region">
          <a class="ons-skip-to-content ons-u-fs-r--b" href="#main-content">Skip to main content</a>
        </div>
        <header class="ons-header">
          <div class="ons-browser-banner">
            <div class="ons-container">
              <p class="ons-browser-banner__content">
                <span class="ons-browser-banner__lead">This website no longer supports your browser.</span><span
                  class="ons-browser-banner__cta"> You can <a class="ons-browser-banner__link"
                    href="https://www.ons.gov.uk/help/browsers">upgrade your browser to the latest version</a>.</span>
              </p>
            </div>
          </div>
          <div class="ons-header__top">
            <div class="ons-container">
              <div
                class="ons-header__grid-top ons-grid ons-grid-flex ons-grid-flex--between ons-grid-flex--vertical-center ons-grid-flex--no-wrap ons-grid--gutterless">
                <div class="ons-grid__col ons-col-auto"><a class="ons-header__org-logo-link" href="#0">
                    <div class="ons-header__org-logo ons-header__org-logo--large">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="250" height="24"
                        viewBox="33 2 552 60" aria-labelledby="ons-logo-en-alt" role="img">
                        <title id="ons-logo-en-alt"> Office for National Statistics logo </title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M53.06,6.42C36.2,8,24.68,12.92,16.43,20.07A41.46,41.46,0,0,0,6.4,32.2C12.87,44.93,28.88,57,46.6,57H47s6.32.21,6.32-6.91V6.36a1.22,1.22,0,0,1-.26.06M9.72,42.67a44.25,44.25,0,0,1-5-7.42A80.59,80.59,0,0,0,0,46.38V56.91L31.06,57c-9.83-3-15.74-7.64-21.34-14.3" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M82,47.49c-9.07,0-13.13-7.51-13.13-16.77S72.91,14,82,14s13.1,7.61,13.1,16.77S91.1,47.54,82,47.54m0-30.91c-6.69,0-9.07,7.33-9.07,14.05s2.16,13.9,9.07,13.9,9-7.28,9-13.9-2.34-14-9-14" />
                          <path
                            d="M106.36,23.81V46.88h-3.67V23.81H98.93V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M121.53,23.81V46.88h-3.67V23.81H114.1V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M132.85,16.72a2.28,2.28,0,0,1-2.33-2.23v0a2.34,2.34,0,0,1,4.67,0,2.28,2.28,0,0,1-2.3,2.26h0M131,21.56h3.71V46.88H131Z" />
                          <path
                            d="M150.53,47.49c-6,0-10.63-5.16-10.63-13.29S144.52,21,150.66,21a9.76,9.76,0,0,1,6.17,1.74l-1,2.25a7.53,7.53,0,0,0-4.4-1.36c-5.15,0-7.78,4.46-7.78,10.48,0,6.2,3,10.62,7.65,10.62a8,8,0,0,0,4.49-1.37l1,2.45a10.21,10.21,0,0,1-6.3,1.73" />
                          <path
                            d="M162.84,35.75c.48,6,3.76,9,8.9,9a14.66,14.66,0,0,0,6.88-1.55l1.08,2.59a18,18,0,0,1-8.22,1.73c-7.12,0-12.18-4.23-12.18-13.34,0-8.69,4.67-13.2,11-13.2s10.37,3.95,10.37,12.4Zm7.35-12.41c-4.1,0-7.56,3.2-7.52,10.29l14.39-2c0-5.87-2.81-8.32-6.87-8.32" />
                          <path
                            d="M198.57,23.81V46.88H194.9V23.81h-3.76V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.39,0,.87.05.87.05v2.35h-.44c-2.54,0-4.84,1.64-4.84,5.12v4.09h5.28v2.25Z" />
                          <path
                            d="M217.28,47.49c-7.47,0-10.89-5.78-10.89-13.24S209.81,21,217.28,21s10.85,5.82,10.85,13.3-3.37,13.24-10.85,13.24m0-24c-5.53,0-7.13,5.59-7.13,10.81s1.73,10.56,7.13,10.56,7.13-5.35,7.13-10.56-1.6-10.81-7.13-10.81" />
                          <path
                            d="M244.08,23.91c-2.34-.61-5.75-.52-7.35.47v22.5H233V22.69c2.67-1.13,5.36-1.74,10.11-1.74H245Z" />
                          <path
                            d="M277.42,47.13,263.07,25a32.2,32.2,0,0,1-1.85-3.29h-.09s.13,1.88.13,3.85V47.13h-4.71V14.8h5.31l13.61,20.82A28.76,28.76,0,0,1,277.38,39h.08s-.17-1.84-.17-3.77V14.8H282V47.13Z" />
                          <path
                            d="M297.52,47.79c-7.43,0-10.93-3-10.93-7.81,0-6.8,7.12-8.64,15.59-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L288.23,23a24,24,0,0,1,9.12-1.83c5.61,0,9.93,2.3,9.93,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.26.67-10.45,1.84-10.45,6.73,0,3.42,2.42,4.88,6.22,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <path
                            d="M322,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.55V21.81h3.55V16.12l5.4-1.5v7.19H325v3.28h-5V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M331.91,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M350.88,47.79c-7.73,0-11.57-5.74-11.57-13.3s3.84-13.34,11.57-13.34,11.54,5.78,11.54,13.34-3.8,13.3-11.54,13.3m0-23.17c-4.66,0-6.05,4.89-6.05,9.82s1.47,9.63,6.05,9.63,6.05-4.7,6.05-9.63-1.38-9.82-6.05-9.82" />
                          <path
                            d="M382.52,47.13V29c0-3.24-2.77-4.47-5.88-4.47a12.3,12.3,0,0,0-4.37.76v21.8h-5.39V23a26.81,26.81,0,0,1,10.06-1.83c6.61,0,11,2.25,11,7.8V47.13Z" />
                          <path
                            d="M403.18,47.79c-7.43,0-10.94-3-10.94-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L393.89,23A24,24,0,0,1,403,21.15c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.43,4.88,6.23,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <polygon
                            points="418.52 47.13 418.52 34.91 418.52 10.25 423.92 10.25 423.92 22.76 423.92 47.13 418.52 47.13" />
                          <path
                            d="M445.39,47.79A19.11,19.11,0,0,1,436.58,46l1.51-4a13.48,13.48,0,0,0,6.22,1.55c3.76,0,6.44-2.21,6.44-5.41,0-7.09-13.44-4.36-13.44-14.42,0-5.13,4.15-9.59,10.72-9.59A15.82,15.82,0,0,1,455.8,16l-1.38,3.52a11.93,11.93,0,0,0-5.66-1.5c-3.5,0-5.79,2.11-5.79,5.12,0,7,13.74,3.94,13.74,14.65,0,5.74-4.71,10-11.32,10" />
                          <path
                            d="M470.41,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.12,5.12,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M487.27,47.79c-7.44,0-10.93-3-10.93-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.38-4.51-5.84-4.51a18,18,0,0,0-6.87,1.46L478,23a23.94,23.94,0,0,1,9.11-1.83c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83M492,33.16c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.42,4.88,6.22,4.88a10,10,0,0,0,4.24-.84Z" />
                          <path
                            d="M511.73,47.69c-5.32,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M521.66,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.45V47.13h-5.45Z" />
                          <path
                            d="M536.19,47.79A15.9,15.9,0,0,1,528.54,46L530,42.48a10.53,10.53,0,0,0,5.52,1.5c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.86-7.42A13.56,13.56,0,0,1,545.34,23l-1.42,3.14a8.47,8.47,0,0,0-4.62-1.45c-2.81,0-4.54,1.69-4.54,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                          <path
                            d="M559.83,47.69c-5.31,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.93v3.28h-4.93V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.64,5.64,0,0,0,1.47-.23v3.33a7.72,7.72,0,0,1-3,.52" />
                          <path
                            d="M569.77,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M588.14,47.79c-6.23,0-11-5.08-11-13.35s4.88-13.29,11-13.29A10.51,10.51,0,0,1,594.66,23l-1.21,3a6.87,6.87,0,0,0-4-1.22c-4.4,0-6.69,3.81-6.69,9.49s2.63,9.59,6.61,9.59a6.74,6.74,0,0,0,4-1.28L594.7,46c-1.12.94-3.33,1.84-6.56,1.84" />
                          <path
                            d="M605.1,47.79A15.9,15.9,0,0,1,597.45,46l1.42-3.47A10.54,10.54,0,0,0,604.4,44c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.85-7.42a13.49,13.49,0,0,1,7.1,1.83l-1.42,3.14a8.42,8.42,0,0,0-4.63-1.45c-2.8,0-4.53,1.69-4.53,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                        </g>
                      </svg>
                    </div>
                    <div class="ons-header__org-logo ons-header__org-logo--small">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="120" height="27"
                        viewBox="0 5 595 116" aria-labelledby="ons-logo-stacked-en-alt" role="img">
                        <title id="ons-logo-stacked-en-alt"> Office for National Statistics logo </title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,70.5c1.8-3.7,3.6-7.2,5.6-10.7A127.94,127.94,0,0,1,0,42.6V70.5M10.9,0S0,0,0,13.5v7.2A128.06,128.06,0,0,0,7.9,56.2a114.75,114.75,0,0,1,22.3-26C47.8,15.1,71.5,4.7,103.7.1Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M115.9,7.3c-36.8,3.5-62,14-80,29.4a108.15,108.15,0,0,0-23.6,29c14.1,27.4,41.1,47.6,86,50.5h4.4s13.8.5,13.8-14.9V7.2l-.6.1M21.2,85.4a92.68,92.68,0,0,1-11-16A173,173,0,0,0,0,93.4v22.7l73.6.1c-22.9-5.5-40.1-16.4-52.4-30.8" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M161,51.9c-11.3,0-16.3-9.3-16.3-20.8s5-20.8,16.3-20.8,16.3,9.5,16.3,20.8c-.1,11.5-5.1,20.8-16.3,20.8m0-38.3c-8.3,0-11.3,9.1-11.3,17.4s2.7,17.3,11.3,17.3,11.2-9.1,11.2-17.3S169.3,13.6,161,13.6m30.2,8.9V51.2h-4.5V22.6H182V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm18.9,0V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm14-8.8a2.82,2.82,0,0,1-2.9-2.8,2.9,2.9,0,0,1,5.8,0,2.76,2.76,0,0,1-2.9,2.8m-2.3,6h4.6V51.2h-4.6Zm24.3,32.2c-7.4,0-13.2-6.4-13.2-16.5,0-10.3,5.8-16.5,13.4-16.5a12.36,12.36,0,0,1,7.7,2.2l-1.2,2.8a8.92,8.92,0,0,0-5.5-1.7c-6.4,0-9.7,5.5-9.7,13,0,7.7,3.7,13.2,9.5,13.2a9.8,9.8,0,0,0,5.6-1.7l1.2,3c-1.3,1.2-4,2.2-7.8,2.2m15.3-14.6c.6,7.4,4.7,11.1,11.1,11.1a18.36,18.36,0,0,0,8.5-1.9l1.3,3.2a22.58,22.58,0,0,1-10.2,2.1c-8.8,0-15.1-5.3-15.1-16.6,0-10.8,5.8-16.4,13.7-16.4s12.9,4.9,12.9,15.4l-22.2,3.1ZM270.5,22c-5.1,0-9.4,4-9.3,12.8l17.9-2.5C279,25,275.5,22,270.5,22m42.2.5V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8Zm23.2,29.4c-9.3,0-13.5-7.2-13.5-16.5s4.2-16.5,13.5-16.5,13.5,7.2,13.5,16.5-4.2,16.5-13.5,16.5m0-29.8c-6.9,0-8.8,7-8.8,13.4s2.1,13.1,8.8,13.1c6.9,0,8.9-6.6,8.9-13.1s-2-13.4-8.9-13.4m33.3.6c-2.9-.8-7.1-.6-9.1.6V51.2h-4.6V21.1c3.3-1.4,6.6-2.2,12.5-2.2h2.4c0,.1-1.2,3.8-1.2,3.8ZM171.3,114.8,153.5,87.3c-1.3-2.1-2.3-4.1-2.3-4.1h-.1s.2,2.3.2,4.8v26.8h-5.8V74.7h6.6L169,100.5a46.13,46.13,0,0,1,2.4,4.1h.1s-.2-2.3-.2-4.7V74.6h5.9v40.1l-5.9.1Zm25,.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.8-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.5,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a11.47,11.47,0,0,1-3.7.6M239,77.9a3.52,3.52,0,1,1,3.9-3.5,3.71,3.71,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm26.9,32.2c-9.6,0-14.4-7.1-14.4-16.5s4.8-16.6,14.4-16.6,14.3,7.2,14.3,16.6-4.7,16.5-14.3,16.5m0-28.7c-5.8,0-7.5,6.1-7.5,12.2s1.8,11.9,7.5,11.9,7.5-5.8,7.5-11.9-1.7-12.2-7.5-12.2m39.3,27.9V92.3c0-4-3.4-5.5-7.3-5.5a16,16,0,0,0-5.4.9v27.1h-6.7v-30a32.8,32.8,0,0,1,12.5-2.3c8.2,0,13.7,2.8,13.7,9.7v22.6Zm25.7.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8L316,84.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm13.2,17.4V69h6.7v45.8Zm38.6.8a23.94,23.94,0,0,1-10.9-2.3l1.9-4.9a17,17,0,0,0,7.7,1.9c4.7,0,8-2.7,8-6.7,0-8.8-16.7-5.4-16.7-17.9,0-6.4,5.2-11.9,13.3-11.9a20.22,20.22,0,0,1,9.7,2.3l-1.7,4.4a14.57,14.57,0,0,0-7-1.9c-4.3,0-7.2,2.6-7.2,6.4,0,8.6,17.1,4.9,17.1,18.2-.1,7.1-6,12.4-14.2,12.4m31.1-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m20.9.1c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.6,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.6,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5H454V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.69,12.69,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5,3.65,3.65,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm21.4,32.2a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.21,16.21,0,0,1,8.8,2.3l-1.8,3.9a10.31,10.31,0,0,0-5.7-1.8c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4,0,4.9-4.7,9.7-12.3,9.7m29.4-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5c.1,2-1.7,3.5-3.9,3.5m-3.3,5.5H543v31.4h-6.8Zm26.2,32.2c-7.7,0-13.6-6.3-13.6-16.6s6.1-16.5,13.7-16.5c3.9,0,6.6,1.1,8,2.3L569,88.6a8.61,8.61,0,0,0-4.9-1.5c-5.5,0-8.3,4.7-8.3,11.8s3.3,11.9,8.2,11.9a8.39,8.39,0,0,0,4.9-1.6l1.7,4.1c-1.5,1.2-4.2,2.3-8.2,2.3m20.6,0a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.85,16.85,0,0,1,8.9,2.3l-1.8,3.9A10.31,10.31,0,0,0,587,87c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4-.1,4.9-4.9,9.7-12.4,9.7" />
                        </g>
                      </svg>
                    </div>
                  </a>
                </div>
                <div class="ons-header__links ons-grid__col ons-u-ml-auto">
                  <div class="ons-grid__col ons-col-auto">
                    <div class="ons-header__language">
                      <ul class="ons-language-links">
                        <li class="ons-language-links__item">
                          <a href="#0" lang="cy">
                            <span class="ons-u-vh">Change language to </span> Cymraeg </a>
                        </li>
                      </ul>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
          <div class="ons-header__main">
            <div class="ons-container">
              <div
                class="ons-grid ons-grid-flex ons-grid-flex--between ons-grid-flex--vertical-center ons-grid-flex--no-wrap ons-grid--gutterless">
                <div class="ons-grid__col ons-col-auto ons-u-flex-shrink">
                  <a class="ons-header__title-link" href="#0">
                    <div class="ons-header__title">Guide example</div>
                  </a>
                </div>
              </div>
            </div>
          </div>
        </header>
        <div class="ons-page__container ons-container">
          <nav class="ons-breadcrumbs" aria-label="Breadcrumbs">
            <ol class="ons-breadcrumbs__items ons-u-fs-s">
              <li class="ons-breadcrumbs__item" id="breadcrumb-1">
                <a class="ons-breadcrumbs__link" href="/">Home</a><svg class="ons-icon" viewBox="0 0 8 13"
                  xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  aria-hidden="true">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
              <li class="ons-breadcrumbs__item" id="breadcrumb-2">
                <a class="ons-breadcrumbs__link" href="/#">Guide example</a><svg class="ons-icon" viewBox="0 0 8 13"
                  xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  aria-hidden="true">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
            </ol>
          </nav>
          <div class="ons-grid">
            <div class="ons-grid__col ons-col-12@m">
              <main id="main-content" class="ons-page__main">
                <h1 class="ons-u-mb-xl">
                  <span class="ons-u-fs-2xl ons-u-db">About the census</span>
                  <span class="ons-u-vh">: Overview</span>
                </h1>
                <aside class="ons-table-of-contents-container" aria-label="Table of contents">
                  <div role="region">
                    <a class="ons-skip-to-content ons-u-fs-r--b" href="#section-content">Skip to guide content</a>
                  </div>
                  <nav class="ons-table-of-contents" aria-label="Pages in this guide">
                    <h2 class="ons-table-of-contents__title ons-u-fs-r--b ons-u-mb-s">Contents</h2>
                    <ol class="ons-list ons-u-mb-l ons-list--dashed">
                      <li class="ons-list__item" aria-current="true"> Overview </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">Who should take part and why</a>
                      </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">How your information is used</a>
                      </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">The 2019 Census Rehearsal</a>
                      </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">Online census</a>
                      </li>
                    </ol>
                  </nav>
                </aside>
                <section id="section-content" class="ons-page__body">
                  <h2>What the census is</h2>
                  <p> The census is a survey that happens every 10 years and gives us a picture of all the people and
                    households in England and Wales. The census is unique. There’s simply nothing else that gives so
                    much detail about us and the society we live in. </p>
                  <p> All kinds of organisations, from local authorities to charities, use the information to help
                    provide the services we all need, including transport, education and healthcare. Without the census,
                    it would be much more difficult to do this. </p>
                  <p>By taking part, you’ll be helping make sure you and your community get the services needed now and
                    in the future.</p>
                  <h2>Past, present and future</h2>
                  <p> The first census was in 1801 and the most recent in 2011. The Office for National Statistics (ONS)
                    runs the census in England Wales and the next one will happen on Sunday 21 March 2021. To prepare
                    for it, we held a census rehearsal in 2019 to check our processes, systems and services were running
                    smoothly ahead of the real thing. </p>
                  <h2>Between censuses</h2>
                  <p> We also need your help between each census. At the ONS, we rely on ongoing surveys to provide
                    detailed, up-to-date information about changes to society. To make sure that we represent everyone,
                    we ask people to take part in these surveys. We carry out interviews in person, by phone or online.
                  </p>
                  <p> These surveys do not stop while the census takes place. To find out more about the types of
                    surveys we run throughout the year, visit <a href="http://www.ons.gov.uk/surveys">the ONS
                      website</a>. </p>
                  <h2>The census in Scotland and Northern Ireland</h2>
                  <p>At the ONS, we’re responsible for planning and running the census for England and Wales.</p>
                  <p> Find out more about the censuses in Scotland and Northern Ireland from <a
                      href="https://www.nrscotland.gov.uk/">National Records of Scotland</a> and <a
                      href="https://www.nisra.gov.uk/">Northern Ireland Statistics and Research Agency</a>. </p>
                  <div class="ons-u-mt-3xl">
                    <nav class="ons-content-pagination" aria-label="Guide pagination">
                      <ul class="ons-content-pagination__list">
                        <li class="ons-content-pagination__item">
                          <a href="#" class="ons-content-pagination__link" rel="next">
                            <span class="ons-content-pagination__link-title">
                              <svg class="ons-icon ons-icon--m" viewBox="0 0 17 13" xmlns="http://www.w3.org/2000/svg"
                                focusable="false" fill="currentColor" role="img" aria-hidden="true">
                                <path
                                  d="m10 .2-.9.9c-.1.1-.1.4 0 .5l4 4H.6c-.2 0-.4.2-.4.4v1.2c0 .2.2.4.4.4h12.5l-3.9 3.7c-.2.2-.2.4 0 .6l.8.9c.2.2.4.2.6 0L16.8 7c.2-.2.2-.4 0-.6L10.7.3c-.3-.2-.5-.2-.7-.1z" />
                              </svg><span class="ons-content-pagination__link-text">Next</span>
                            </span>
                            <span class="ons-content-pagination__link-divider ons-u-vh">page in this guide is:</span>
                            <span class="ons-content-pagination__link-label">Who should take part and why</span>
                          </a>
                        </li>
                      </ul>
                    </nav>
                  </div>
                </section>
              </main>
            </div>
          </div>
        </div>
      </div>
      <footer class="ons-footer">
        <div class="ons-footer__body ons-page__footer" data-analytics="footer">
          <div class="ons-container">
            <div class="ons-grid">
            </div>
            <div class="ons-grid ons-grid-flex--vertical-top ons-grid-flex--between">
              <div class="ons-grid__col">
                <div class="ons-footer__logo-container ons-u-mb-l ons-grid-flex ons-grid-flex--vertical-top">
                  <a class="ons-footer__logo-link" href="https://www.ons.gov.uk/">
                    <div class="ons-footer__logo-large">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="250" height="24"
                        viewBox="33 2 552 60" aria-labelledby="ons-logo-en-footer-alt" role="img">
                        <title id="ons-logo-en-footer-alt"> Office for National Statistics </title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M53.06,6.42C36.2,8,24.68,12.92,16.43,20.07A41.46,41.46,0,0,0,6.4,32.2C12.87,44.93,28.88,57,46.6,57H47s6.32.21,6.32-6.91V6.36a1.22,1.22,0,0,1-.26.06M9.72,42.67a44.25,44.25,0,0,1-5-7.42A80.59,80.59,0,0,0,0,46.38V56.91L31.06,57c-9.83-3-15.74-7.64-21.34-14.3" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M82,47.49c-9.07,0-13.13-7.51-13.13-16.77S72.91,14,82,14s13.1,7.61,13.1,16.77S91.1,47.54,82,47.54m0-30.91c-6.69,0-9.07,7.33-9.07,14.05s2.16,13.9,9.07,13.9,9-7.28,9-13.9-2.34-14-9-14" />
                          <path
                            d="M106.36,23.81V46.88h-3.67V23.81H98.93V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M121.53,23.81V46.88h-3.67V23.81H114.1V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M132.85,16.72a2.28,2.28,0,0,1-2.33-2.23v0a2.34,2.34,0,0,1,4.67,0,2.28,2.28,0,0,1-2.3,2.26h0M131,21.56h3.71V46.88H131Z" />
                          <path
                            d="M150.53,47.49c-6,0-10.63-5.16-10.63-13.29S144.52,21,150.66,21a9.76,9.76,0,0,1,6.17,1.74l-1,2.25a7.53,7.53,0,0,0-4.4-1.36c-5.15,0-7.78,4.46-7.78,10.48,0,6.2,3,10.62,7.65,10.62a8,8,0,0,0,4.49-1.37l1,2.45a10.21,10.21,0,0,1-6.3,1.73" />
                          <path
                            d="M162.84,35.75c.48,6,3.76,9,8.9,9a14.66,14.66,0,0,0,6.88-1.55l1.08,2.59a18,18,0,0,1-8.22,1.73c-7.12,0-12.18-4.23-12.18-13.34,0-8.69,4.67-13.2,11-13.2s10.37,3.95,10.37,12.4Zm7.35-12.41c-4.1,0-7.56,3.2-7.52,10.29l14.39-2c0-5.87-2.81-8.32-6.87-8.32" />
                          <path
                            d="M198.57,23.81V46.88H194.9V23.81h-3.76V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.39,0,.87.05.87.05v2.35h-.44c-2.54,0-4.84,1.64-4.84,5.12v4.09h5.28v2.25Z" />
                          <path
                            d="M217.28,47.49c-7.47,0-10.89-5.78-10.89-13.24S209.81,21,217.28,21s10.85,5.82,10.85,13.3-3.37,13.24-10.85,13.24m0-24c-5.53,0-7.13,5.59-7.13,10.81s1.73,10.56,7.13,10.56,7.13-5.35,7.13-10.56-1.6-10.81-7.13-10.81" />
                          <path
                            d="M244.08,23.91c-2.34-.61-5.75-.52-7.35.47v22.5H233V22.69c2.67-1.13,5.36-1.74,10.11-1.74H245Z" />
                          <path
                            d="M277.42,47.13,263.07,25a32.2,32.2,0,0,1-1.85-3.29h-.09s.13,1.88.13,3.85V47.13h-4.71V14.8h5.31l13.61,20.82A28.76,28.76,0,0,1,277.38,39h.08s-.17-1.84-.17-3.77V14.8H282V47.13Z" />
                          <path
                            d="M297.52,47.79c-7.43,0-10.93-3-10.93-7.81,0-6.8,7.12-8.64,15.59-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L288.23,23a24,24,0,0,1,9.12-1.83c5.61,0,9.93,2.3,9.93,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.26.67-10.45,1.84-10.45,6.73,0,3.42,2.42,4.88,6.22,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <path
                            d="M322,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.55V21.81h3.55V16.12l5.4-1.5v7.19H325v3.28h-5V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M331.91,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M350.88,47.79c-7.73,0-11.57-5.74-11.57-13.3s3.84-13.34,11.57-13.34,11.54,5.78,11.54,13.34-3.8,13.3-11.54,13.3m0-23.17c-4.66,0-6.05,4.89-6.05,9.82s1.47,9.63,6.05,9.63,6.05-4.7,6.05-9.63-1.38-9.82-6.05-9.82" />
                          <path
                            d="M382.52,47.13V29c0-3.24-2.77-4.47-5.88-4.47a12.3,12.3,0,0,0-4.37.76v21.8h-5.39V23a26.81,26.81,0,0,1,10.06-1.83c6.61,0,11,2.25,11,7.8V47.13Z" />
                          <path
                            d="M403.18,47.79c-7.43,0-10.94-3-10.94-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L393.89,23A24,24,0,0,1,403,21.15c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.43,4.88,6.23,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <polygon
                            points="418.52 47.13 418.52 34.91 418.52 10.25 423.92 10.25 423.92 22.76 423.92 47.13 418.52 47.13" />
                          <path
                            d="M445.39,47.79A19.11,19.11,0,0,1,436.58,46l1.51-4a13.48,13.48,0,0,0,6.22,1.55c3.76,0,6.44-2.21,6.44-5.41,0-7.09-13.44-4.36-13.44-14.42,0-5.13,4.15-9.59,10.72-9.59A15.82,15.82,0,0,1,455.8,16l-1.38,3.52a11.93,11.93,0,0,0-5.66-1.5c-3.5,0-5.79,2.11-5.79,5.12,0,7,13.74,3.94,13.74,14.65,0,5.74-4.71,10-11.32,10" />
                          <path
                            d="M470.41,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.12,5.12,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M487.27,47.79c-7.44,0-10.93-3-10.93-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.38-4.51-5.84-4.51a18,18,0,0,0-6.87,1.46L478,23a23.94,23.94,0,0,1,9.11-1.83c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83M492,33.16c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.42,4.88,6.22,4.88a10,10,0,0,0,4.24-.84Z" />
                          <path
                            d="M511.73,47.69c-5.32,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M521.66,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.45V47.13h-5.45Z" />
                          <path
                            d="M536.19,47.79A15.9,15.9,0,0,1,528.54,46L530,42.48a10.53,10.53,0,0,0,5.52,1.5c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.86-7.42A13.56,13.56,0,0,1,545.34,23l-1.42,3.14a8.47,8.47,0,0,0-4.62-1.45c-2.81,0-4.54,1.69-4.54,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                          <path
                            d="M559.83,47.69c-5.31,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.93v3.28h-4.93V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.64,5.64,0,0,0,1.47-.23v3.33a7.72,7.72,0,0,1-3,.52" />
                          <path
                            d="M569.77,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M588.14,47.79c-6.23,0-11-5.08-11-13.35s4.88-13.29,11-13.29A10.51,10.51,0,0,1,594.66,23l-1.21,3a6.87,6.87,0,0,0-4-1.22c-4.4,0-6.69,3.81-6.69,9.49s2.63,9.59,6.61,9.59a6.74,6.74,0,0,0,4-1.28L594.7,46c-1.12.94-3.33,1.84-6.56,1.84" />
                          <path
                            d="M605.1,47.79A15.9,15.9,0,0,1,597.45,46l1.42-3.47A10.54,10.54,0,0,0,604.4,44c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.85-7.42a13.49,13.49,0,0,1,7.1,1.83l-1.42,3.14a8.42,8.42,0,0,0-4.63-1.45c-2.8,0-4.53,1.69-4.53,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                        </g>
                      </svg>
                    </div>
                    <div class="ons-footer__logo-small">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="120" height="27"
                        viewBox="0 5 595 116" aria-labelledby="ons-logo-stacked-en-footer-alt" role="img">
                        <title id="ons-logo-stacked-en-footer-alt"> Office for National Statistics </title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,70.5c1.8-3.7,3.6-7.2,5.6-10.7A127.94,127.94,0,0,1,0,42.6V70.5M10.9,0S0,0,0,13.5v7.2A128.06,128.06,0,0,0,7.9,56.2a114.75,114.75,0,0,1,22.3-26C47.8,15.1,71.5,4.7,103.7.1Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M115.9,7.3c-36.8,3.5-62,14-80,29.4a108.15,108.15,0,0,0-23.6,29c14.1,27.4,41.1,47.6,86,50.5h4.4s13.8.5,13.8-14.9V7.2l-.6.1M21.2,85.4a92.68,92.68,0,0,1-11-16A173,173,0,0,0,0,93.4v22.7l73.6.1c-22.9-5.5-40.1-16.4-52.4-30.8" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M161,51.9c-11.3,0-16.3-9.3-16.3-20.8s5-20.8,16.3-20.8,16.3,9.5,16.3,20.8c-.1,11.5-5.1,20.8-16.3,20.8m0-38.3c-8.3,0-11.3,9.1-11.3,17.4s2.7,17.3,11.3,17.3,11.2-9.1,11.2-17.3S169.3,13.6,161,13.6m30.2,8.9V51.2h-4.5V22.6H182V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm18.9,0V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm14-8.8a2.82,2.82,0,0,1-2.9-2.8,2.9,2.9,0,0,1,5.8,0,2.76,2.76,0,0,1-2.9,2.8m-2.3,6h4.6V51.2h-4.6Zm24.3,32.2c-7.4,0-13.2-6.4-13.2-16.5,0-10.3,5.8-16.5,13.4-16.5a12.36,12.36,0,0,1,7.7,2.2l-1.2,2.8a8.92,8.92,0,0,0-5.5-1.7c-6.4,0-9.7,5.5-9.7,13,0,7.7,3.7,13.2,9.5,13.2a9.8,9.8,0,0,0,5.6-1.7l1.2,3c-1.3,1.2-4,2.2-7.8,2.2m15.3-14.6c.6,7.4,4.7,11.1,11.1,11.1a18.36,18.36,0,0,0,8.5-1.9l1.3,3.2a22.58,22.58,0,0,1-10.2,2.1c-8.8,0-15.1-5.3-15.1-16.6,0-10.8,5.8-16.4,13.7-16.4s12.9,4.9,12.9,15.4l-22.2,3.1ZM270.5,22c-5.1,0-9.4,4-9.3,12.8l17.9-2.5C279,25,275.5,22,270.5,22m42.2.5V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8Zm23.2,29.4c-9.3,0-13.5-7.2-13.5-16.5s4.2-16.5,13.5-16.5,13.5,7.2,13.5,16.5-4.2,16.5-13.5,16.5m0-29.8c-6.9,0-8.8,7-8.8,13.4s2.1,13.1,8.8,13.1c6.9,0,8.9-6.6,8.9-13.1s-2-13.4-8.9-13.4m33.3.6c-2.9-.8-7.1-.6-9.1.6V51.2h-4.6V21.1c3.3-1.4,6.6-2.2,12.5-2.2h2.4c0,.1-1.2,3.8-1.2,3.8ZM171.3,114.8,153.5,87.3c-1.3-2.1-2.3-4.1-2.3-4.1h-.1s.2,2.3.2,4.8v26.8h-5.8V74.7h6.6L169,100.5a46.13,46.13,0,0,1,2.4,4.1h.1s-.2-2.3-.2-4.7V74.6h5.9v40.1l-5.9.1Zm25,.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.8-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.5,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a11.47,11.47,0,0,1-3.7.6M239,77.9a3.52,3.52,0,1,1,3.9-3.5,3.71,3.71,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm26.9,32.2c-9.6,0-14.4-7.1-14.4-16.5s4.8-16.6,14.4-16.6,14.3,7.2,14.3,16.6-4.7,16.5-14.3,16.5m0-28.7c-5.8,0-7.5,6.1-7.5,12.2s1.8,11.9,7.5,11.9,7.5-5.8,7.5-11.9-1.7-12.2-7.5-12.2m39.3,27.9V92.3c0-4-3.4-5.5-7.3-5.5a16,16,0,0,0-5.4.9v27.1h-6.7v-30a32.8,32.8,0,0,1,12.5-2.3c8.2,0,13.7,2.8,13.7,9.7v22.6Zm25.7.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8L316,84.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm13.2,17.4V69h6.7v45.8Zm38.6.8a23.94,23.94,0,0,1-10.9-2.3l1.9-4.9a17,17,0,0,0,7.7,1.9c4.7,0,8-2.7,8-6.7,0-8.8-16.7-5.4-16.7-17.9,0-6.4,5.2-11.9,13.3-11.9a20.22,20.22,0,0,1,9.7,2.3l-1.7,4.4a14.57,14.57,0,0,0-7-1.9c-4.3,0-7.2,2.6-7.2,6.4,0,8.6,17.1,4.9,17.1,18.2-.1,7.1-6,12.4-14.2,12.4m31.1-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m20.9.1c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.6,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.6,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5H454V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.69,12.69,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5,3.65,3.65,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm21.4,32.2a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.21,16.21,0,0,1,8.8,2.3l-1.8,3.9a10.31,10.31,0,0,0-5.7-1.8c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4,0,4.9-4.7,9.7-12.3,9.7m29.4-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5c.1,2-1.7,3.5-3.9,3.5m-3.3,5.5H543v31.4h-6.8Zm26.2,32.2c-7.7,0-13.6-6.3-13.6-16.6s6.1-16.5,13.7-16.5c3.9,0,6.6,1.1,8,2.3L569,88.6a8.61,8.61,0,0,0-4.9-1.5c-5.5,0-8.3,4.7-8.3,11.8s3.3,11.9,8.2,11.9a8.39,8.39,0,0,0,4.9-1.6l1.7,4.1c-1.5,1.2-4.2,2.3-8.2,2.3m20.6,0a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.85,16.85,0,0,1,8.9,2.3l-1.8,3.9A10.31,10.31,0,0,0,587,87c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4-.1,4.9-4.9,9.7-12.4,9.7" />
                        </g>
                      </svg>
                    </div>
                  </a>
                </div>
              </div>
            </div>
          </div>
        </div>
      </footer>
    </div>
    <!-- prettier-ignore-start -->
    <script>
      (function() {
        var s = ['https://cdn.ons.gov.uk/sdc/design-system/73.6.0/scripts/main.js'],
          c = document.createElement('script');
        if (!('noModule' in c)) {
          for (var i = 0; i < s.length; i++) {
            s[i] = s[i].replace('.js', '.es5.js');
          }
        }
        for (var i = 0; i < s.length; i++) {
          var e = document.createElement('script');
          e.src = s[i];
          document.body.appendChild(e);
        }
      })();
    </script>
    <!-- prettier-ignore-end -->
    <div class="embeddable"></div>
    <style>
      body {
        height: auto;
      }
    </style>
    <script src="/js/main.js?t=1781701989638"></script>
  </body>

</html>

Guide page

Other pages in the guide (below the parent) should include the title of the parent page before the title of the current page, for example:

<h1 class="ons-u-mb-l">
  <span class="ons-u-fs-m ons-u-db ons-u-mb-xs ons-u-lighter">About the census</span>
  <span class="ons-u-vh">:</span>
  <span class="ons-u-fs-2xl ons-u-db">Why you should take part in the census</span>
</h1>

Example: Guide page contents

Nunjucks
{% extends "layout/_template.njk" %}
{% from "components/content-pagination/_macro.njk" import onsContentPagination %}
{% from "components/breadcrumbs/_macro.njk" import onsBreadcrumbs %}
{% from "components/table-of-contents/_macro.njk" import onsTableOfContents %}
{%
    set pageConfig = {
        "header": {
            "mastheadLogoUrl": "#0",
            "title": "Guide example",
            "titleUrl": "#0",
            "language": {
                "languages": [
                    {
                        "url": "#0",
                        "isoCode": "en",
                        "text": "English",
                        "current": true
                    },
                    {
                        "url": "#0",
                        "isoCode": "cy",
                        "text": "Cymraeg",
                        "current": false
                    }
                ]
            }
        },
        "footer": {}
    }
%}
{% block preMain %}
    {{
        onsBreadcrumbs({
            "ariaLabel": 'Breadcrumbs',
            "itemsList": [
                {
                    "url": '/',
                    "text": 'Home'
                },
                {
                    "url": '/#',
                    "text": 'Guide example'
                }
            ]
        })
    }}
{% endblock %}

{% block main %}
    <h1 class="ons-u-mb-xl">
        <span class="ons-u-fs-m ons-u-db ons-u-mb-2xs ons-u-lighter">About the census</span>
        <span class="ons-u-vh">: </span>
        <span class="ons-u-fs-2xl ons-u-db">Why you should take part in the census</span>
    </h1>
    {{-
        onsTableOfContents({
            "ariaLabel": "Pages in this guide",
            "title": "Contents",
            "skipLink": {
                "url": "#section-content",
                "text": "Skip to guide content"
            },
            "itemsList": [
                {
                    "url": '#',
                    "text": 'Overview'
                },
                {
                    "url": '#',
                    "text": 'Who should take part and why',
                    "current": true
                },
                {
                    "url": '#',
                    "text": 'How your information is used'
                },
                {
                    "url": '#',
                    "text": 'The 2019 Census Rehearsal'
                },
                {
                    "url": '#',
                    "text": 'Online census'
                }
            ]
        })
    -}}
    <section id="section-content" class="ons-page__body">
        <p>
            It’s important you take part in the census. The information it gives has the power to make a real impact on our everyday lives.
        </p>

        <h2>The census is vital to all of us</h2>
        <p>
            The census helps us understand what our society needs now and what it’s likely to need in the future. The information it
            collects helps plan and fund services in your area. This could include transport, education and healthcare.
        </p>
        <p>
            Charities also use census information to help get the funding they need. Businesses use it to decide where to set up, which
            creates job opportunities.
        </p>

        <h2>Its success could help you</h2>
        <p>Census 2021 will help give the best picture of the needs of everyone living in England and Wales.</p>
        <p>
            A total of 94% of people took part in the last census, helping each area receive its share of public funding. Without the
            census, it would be much more difficult to provide the services you and your community need.
        </p>

        <h2>You must complete the census by law</h2>
        <p>
            You must complete the census by law. If you do not, or if you supply false information, you could be fined up to £1,000. Some
            questions are clearly labelled as voluntary. It is not an offence if you do not answer these.
        </p>

        <div class="ons-u-mt-3xl">
            {{-
                onsContentPagination({
                    "contentPaginationItems": [
                        {
                            "rel": 'prev',
                            "text": 'Previous',
                            "url": '#',
                            "label": 'About the census'
                        },
                        {
                            "rel": 'next',
                            "text": 'Next',
                            "url": '#',
                            "label": 'How your information is used'
                        }
                    ]
                })
            -}}
        </div>
    </section>
{% endblock %}
HTML
<!doctype html>
<html lang="en">

  <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Example: Guide page</title>
    <link rel="stylesheet" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/css/main.css" />
    <link rel="stylesheet" media="print" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/css/print.css" />
    <meta name="theme-color" content="#206095" />
    <!-- Open Graph -->
    <meta property="og:type" content="website" />
    <meta property="og:url" content="" />
    <meta property="og:title" content="" />
    <meta property="og:image" content="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/opengraph.png" />
    <meta property="og:image:type" content="image/png" />
    <meta property="og:image:width" content="1200" />
    <meta property="og:image:height" content="630" />
    <meta property="og:description" content="" />
    <meta property="og:site_name" content="Guide example" />
    <meta property="og:locale" content="en" />
    <meta property="og:locale:alternate" content="cy" />
    <!-- Favicons -->
    <link rel="icon" type="image/x-icon" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/favicon.ico" />
    <link rel="icon" type="image/png" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/favicon-32x32.png"
      sizes="32x32" />
    <link rel="icon" type="image/png" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/favicon-16x16.png"
      sizes="16x16" />
    <link rel="mask-icon" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/safari-pinned-tab.svg"
      color="#000000" />
    <link rel="apple-touch-icon" type="image/png"
      href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/apple-touch-icon.png" sizes="180x180" />
    <link rel="manifest" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/manifest.json" />
  </head>

  <body>
    <!-- prettier-ignore-start -->
    <script>
      document.body.className = ((document.body.className) ? document.body.className + ' ons-js-enabled' :
        'ons-js-enabled');
    </script>
    <!-- prettier-ignore-end -->
    <div class="ons-page">
      <div class="ons-page__content">
        <div role="region">
          <a class="ons-skip-to-content ons-u-fs-r--b" href="#main-content">Skip to main content</a>
        </div>
        <header class="ons-header">
          <div class="ons-browser-banner">
            <div class="ons-container">
              <p class="ons-browser-banner__content">
                <span class="ons-browser-banner__lead">This website no longer supports your browser.</span><span
                  class="ons-browser-banner__cta"> You can <a class="ons-browser-banner__link"
                    href="https://www.ons.gov.uk/help/browsers">upgrade your browser to the latest version</a>.</span>
              </p>
            </div>
          </div>
          <div class="ons-header__top">
            <div class="ons-container">
              <div
                class="ons-header__grid-top ons-grid ons-grid-flex ons-grid-flex--between ons-grid-flex--vertical-center ons-grid-flex--no-wrap ons-grid--gutterless">
                <div class="ons-grid__col ons-col-auto"><a class="ons-header__org-logo-link" href="#0">
                    <div class="ons-header__org-logo ons-header__org-logo--large">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="250" height="24"
                        viewBox="33 2 552 60" aria-labelledby="ons-logo-en-alt" role="img">
                        <title id="ons-logo-en-alt"> Office for National Statistics logo </title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M53.06,6.42C36.2,8,24.68,12.92,16.43,20.07A41.46,41.46,0,0,0,6.4,32.2C12.87,44.93,28.88,57,46.6,57H47s6.32.21,6.32-6.91V6.36a1.22,1.22,0,0,1-.26.06M9.72,42.67a44.25,44.25,0,0,1-5-7.42A80.59,80.59,0,0,0,0,46.38V56.91L31.06,57c-9.83-3-15.74-7.64-21.34-14.3" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M82,47.49c-9.07,0-13.13-7.51-13.13-16.77S72.91,14,82,14s13.1,7.61,13.1,16.77S91.1,47.54,82,47.54m0-30.91c-6.69,0-9.07,7.33-9.07,14.05s2.16,13.9,9.07,13.9,9-7.28,9-13.9-2.34-14-9-14" />
                          <path
                            d="M106.36,23.81V46.88h-3.67V23.81H98.93V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M121.53,23.81V46.88h-3.67V23.81H114.1V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M132.85,16.72a2.28,2.28,0,0,1-2.33-2.23v0a2.34,2.34,0,0,1,4.67,0,2.28,2.28,0,0,1-2.3,2.26h0M131,21.56h3.71V46.88H131Z" />
                          <path
                            d="M150.53,47.49c-6,0-10.63-5.16-10.63-13.29S144.52,21,150.66,21a9.76,9.76,0,0,1,6.17,1.74l-1,2.25a7.53,7.53,0,0,0-4.4-1.36c-5.15,0-7.78,4.46-7.78,10.48,0,6.2,3,10.62,7.65,10.62a8,8,0,0,0,4.49-1.37l1,2.45a10.21,10.21,0,0,1-6.3,1.73" />
                          <path
                            d="M162.84,35.75c.48,6,3.76,9,8.9,9a14.66,14.66,0,0,0,6.88-1.55l1.08,2.59a18,18,0,0,1-8.22,1.73c-7.12,0-12.18-4.23-12.18-13.34,0-8.69,4.67-13.2,11-13.2s10.37,3.95,10.37,12.4Zm7.35-12.41c-4.1,0-7.56,3.2-7.52,10.29l14.39-2c0-5.87-2.81-8.32-6.87-8.32" />
                          <path
                            d="M198.57,23.81V46.88H194.9V23.81h-3.76V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.39,0,.87.05.87.05v2.35h-.44c-2.54,0-4.84,1.64-4.84,5.12v4.09h5.28v2.25Z" />
                          <path
                            d="M217.28,47.49c-7.47,0-10.89-5.78-10.89-13.24S209.81,21,217.28,21s10.85,5.82,10.85,13.3-3.37,13.24-10.85,13.24m0-24c-5.53,0-7.13,5.59-7.13,10.81s1.73,10.56,7.13,10.56,7.13-5.35,7.13-10.56-1.6-10.81-7.13-10.81" />
                          <path
                            d="M244.08,23.91c-2.34-.61-5.75-.52-7.35.47v22.5H233V22.69c2.67-1.13,5.36-1.74,10.11-1.74H245Z" />
                          <path
                            d="M277.42,47.13,263.07,25a32.2,32.2,0,0,1-1.85-3.29h-.09s.13,1.88.13,3.85V47.13h-4.71V14.8h5.31l13.61,20.82A28.76,28.76,0,0,1,277.38,39h.08s-.17-1.84-.17-3.77V14.8H282V47.13Z" />
                          <path
                            d="M297.52,47.79c-7.43,0-10.93-3-10.93-7.81,0-6.8,7.12-8.64,15.59-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L288.23,23a24,24,0,0,1,9.12-1.83c5.61,0,9.93,2.3,9.93,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.26.67-10.45,1.84-10.45,6.73,0,3.42,2.42,4.88,6.22,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <path
                            d="M322,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.55V21.81h3.55V16.12l5.4-1.5v7.19H325v3.28h-5V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M331.91,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M350.88,47.79c-7.73,0-11.57-5.74-11.57-13.3s3.84-13.34,11.57-13.34,11.54,5.78,11.54,13.34-3.8,13.3-11.54,13.3m0-23.17c-4.66,0-6.05,4.89-6.05,9.82s1.47,9.63,6.05,9.63,6.05-4.7,6.05-9.63-1.38-9.82-6.05-9.82" />
                          <path
                            d="M382.52,47.13V29c0-3.24-2.77-4.47-5.88-4.47a12.3,12.3,0,0,0-4.37.76v21.8h-5.39V23a26.81,26.81,0,0,1,10.06-1.83c6.61,0,11,2.25,11,7.8V47.13Z" />
                          <path
                            d="M403.18,47.79c-7.43,0-10.94-3-10.94-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L393.89,23A24,24,0,0,1,403,21.15c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.43,4.88,6.23,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <polygon
                            points="418.52 47.13 418.52 34.91 418.52 10.25 423.92 10.25 423.92 22.76 423.92 47.13 418.52 47.13" />
                          <path
                            d="M445.39,47.79A19.11,19.11,0,0,1,436.58,46l1.51-4a13.48,13.48,0,0,0,6.22,1.55c3.76,0,6.44-2.21,6.44-5.41,0-7.09-13.44-4.36-13.44-14.42,0-5.13,4.15-9.59,10.72-9.59A15.82,15.82,0,0,1,455.8,16l-1.38,3.52a11.93,11.93,0,0,0-5.66-1.5c-3.5,0-5.79,2.11-5.79,5.12,0,7,13.74,3.94,13.74,14.65,0,5.74-4.71,10-11.32,10" />
                          <path
                            d="M470.41,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.12,5.12,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M487.27,47.79c-7.44,0-10.93-3-10.93-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.38-4.51-5.84-4.51a18,18,0,0,0-6.87,1.46L478,23a23.94,23.94,0,0,1,9.11-1.83c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83M492,33.16c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.42,4.88,6.22,4.88a10,10,0,0,0,4.24-.84Z" />
                          <path
                            d="M511.73,47.69c-5.32,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M521.66,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.45V47.13h-5.45Z" />
                          <path
                            d="M536.19,47.79A15.9,15.9,0,0,1,528.54,46L530,42.48a10.53,10.53,0,0,0,5.52,1.5c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.86-7.42A13.56,13.56,0,0,1,545.34,23l-1.42,3.14a8.47,8.47,0,0,0-4.62-1.45c-2.81,0-4.54,1.69-4.54,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                          <path
                            d="M559.83,47.69c-5.31,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.93v3.28h-4.93V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.64,5.64,0,0,0,1.47-.23v3.33a7.72,7.72,0,0,1-3,.52" />
                          <path
                            d="M569.77,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M588.14,47.79c-6.23,0-11-5.08-11-13.35s4.88-13.29,11-13.29A10.51,10.51,0,0,1,594.66,23l-1.21,3a6.87,6.87,0,0,0-4-1.22c-4.4,0-6.69,3.81-6.69,9.49s2.63,9.59,6.61,9.59a6.74,6.74,0,0,0,4-1.28L594.7,46c-1.12.94-3.33,1.84-6.56,1.84" />
                          <path
                            d="M605.1,47.79A15.9,15.9,0,0,1,597.45,46l1.42-3.47A10.54,10.54,0,0,0,604.4,44c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.85-7.42a13.49,13.49,0,0,1,7.1,1.83l-1.42,3.14a8.42,8.42,0,0,0-4.63-1.45c-2.8,0-4.53,1.69-4.53,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                        </g>
                      </svg>
                    </div>
                    <div class="ons-header__org-logo ons-header__org-logo--small">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="120" height="27"
                        viewBox="0 5 595 116" aria-labelledby="ons-logo-stacked-en-alt" role="img">
                        <title id="ons-logo-stacked-en-alt"> Office for National Statistics logo </title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,70.5c1.8-3.7,3.6-7.2,5.6-10.7A127.94,127.94,0,0,1,0,42.6V70.5M10.9,0S0,0,0,13.5v7.2A128.06,128.06,0,0,0,7.9,56.2a114.75,114.75,0,0,1,22.3-26C47.8,15.1,71.5,4.7,103.7.1Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M115.9,7.3c-36.8,3.5-62,14-80,29.4a108.15,108.15,0,0,0-23.6,29c14.1,27.4,41.1,47.6,86,50.5h4.4s13.8.5,13.8-14.9V7.2l-.6.1M21.2,85.4a92.68,92.68,0,0,1-11-16A173,173,0,0,0,0,93.4v22.7l73.6.1c-22.9-5.5-40.1-16.4-52.4-30.8" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M161,51.9c-11.3,0-16.3-9.3-16.3-20.8s5-20.8,16.3-20.8,16.3,9.5,16.3,20.8c-.1,11.5-5.1,20.8-16.3,20.8m0-38.3c-8.3,0-11.3,9.1-11.3,17.4s2.7,17.3,11.3,17.3,11.2-9.1,11.2-17.3S169.3,13.6,161,13.6m30.2,8.9V51.2h-4.5V22.6H182V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm18.9,0V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm14-8.8a2.82,2.82,0,0,1-2.9-2.8,2.9,2.9,0,0,1,5.8,0,2.76,2.76,0,0,1-2.9,2.8m-2.3,6h4.6V51.2h-4.6Zm24.3,32.2c-7.4,0-13.2-6.4-13.2-16.5,0-10.3,5.8-16.5,13.4-16.5a12.36,12.36,0,0,1,7.7,2.2l-1.2,2.8a8.92,8.92,0,0,0-5.5-1.7c-6.4,0-9.7,5.5-9.7,13,0,7.7,3.7,13.2,9.5,13.2a9.8,9.8,0,0,0,5.6-1.7l1.2,3c-1.3,1.2-4,2.2-7.8,2.2m15.3-14.6c.6,7.4,4.7,11.1,11.1,11.1a18.36,18.36,0,0,0,8.5-1.9l1.3,3.2a22.58,22.58,0,0,1-10.2,2.1c-8.8,0-15.1-5.3-15.1-16.6,0-10.8,5.8-16.4,13.7-16.4s12.9,4.9,12.9,15.4l-22.2,3.1ZM270.5,22c-5.1,0-9.4,4-9.3,12.8l17.9-2.5C279,25,275.5,22,270.5,22m42.2.5V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8Zm23.2,29.4c-9.3,0-13.5-7.2-13.5-16.5s4.2-16.5,13.5-16.5,13.5,7.2,13.5,16.5-4.2,16.5-13.5,16.5m0-29.8c-6.9,0-8.8,7-8.8,13.4s2.1,13.1,8.8,13.1c6.9,0,8.9-6.6,8.9-13.1s-2-13.4-8.9-13.4m33.3.6c-2.9-.8-7.1-.6-9.1.6V51.2h-4.6V21.1c3.3-1.4,6.6-2.2,12.5-2.2h2.4c0,.1-1.2,3.8-1.2,3.8ZM171.3,114.8,153.5,87.3c-1.3-2.1-2.3-4.1-2.3-4.1h-.1s.2,2.3.2,4.8v26.8h-5.8V74.7h6.6L169,100.5a46.13,46.13,0,0,1,2.4,4.1h.1s-.2-2.3-.2-4.7V74.6h5.9v40.1l-5.9.1Zm25,.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.8-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.5,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a11.47,11.47,0,0,1-3.7.6M239,77.9a3.52,3.52,0,1,1,3.9-3.5,3.71,3.71,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm26.9,32.2c-9.6,0-14.4-7.1-14.4-16.5s4.8-16.6,14.4-16.6,14.3,7.2,14.3,16.6-4.7,16.5-14.3,16.5m0-28.7c-5.8,0-7.5,6.1-7.5,12.2s1.8,11.9,7.5,11.9,7.5-5.8,7.5-11.9-1.7-12.2-7.5-12.2m39.3,27.9V92.3c0-4-3.4-5.5-7.3-5.5a16,16,0,0,0-5.4.9v27.1h-6.7v-30a32.8,32.8,0,0,1,12.5-2.3c8.2,0,13.7,2.8,13.7,9.7v22.6Zm25.7.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8L316,84.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm13.2,17.4V69h6.7v45.8Zm38.6.8a23.94,23.94,0,0,1-10.9-2.3l1.9-4.9a17,17,0,0,0,7.7,1.9c4.7,0,8-2.7,8-6.7,0-8.8-16.7-5.4-16.7-17.9,0-6.4,5.2-11.9,13.3-11.9a20.22,20.22,0,0,1,9.7,2.3l-1.7,4.4a14.57,14.57,0,0,0-7-1.9c-4.3,0-7.2,2.6-7.2,6.4,0,8.6,17.1,4.9,17.1,18.2-.1,7.1-6,12.4-14.2,12.4m31.1-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m20.9.1c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.6,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.6,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5H454V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.69,12.69,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5,3.65,3.65,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm21.4,32.2a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.21,16.21,0,0,1,8.8,2.3l-1.8,3.9a10.31,10.31,0,0,0-5.7-1.8c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4,0,4.9-4.7,9.7-12.3,9.7m29.4-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5c.1,2-1.7,3.5-3.9,3.5m-3.3,5.5H543v31.4h-6.8Zm26.2,32.2c-7.7,0-13.6-6.3-13.6-16.6s6.1-16.5,13.7-16.5c3.9,0,6.6,1.1,8,2.3L569,88.6a8.61,8.61,0,0,0-4.9-1.5c-5.5,0-8.3,4.7-8.3,11.8s3.3,11.9,8.2,11.9a8.39,8.39,0,0,0,4.9-1.6l1.7,4.1c-1.5,1.2-4.2,2.3-8.2,2.3m20.6,0a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.85,16.85,0,0,1,8.9,2.3l-1.8,3.9A10.31,10.31,0,0,0,587,87c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4-.1,4.9-4.9,9.7-12.4,9.7" />
                        </g>
                      </svg>
                    </div>
                  </a>
                </div>
                <div class="ons-header__links ons-grid__col ons-u-ml-auto">
                  <div class="ons-grid__col ons-col-auto">
                    <div class="ons-header__language">
                      <ul class="ons-language-links">
                        <li class="ons-language-links__item">
                          <a href="#0" lang="cy">
                            <span class="ons-u-vh">Change language to </span> Cymraeg </a>
                        </li>
                      </ul>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
          <div class="ons-header__main">
            <div class="ons-container">
              <div
                class="ons-grid ons-grid-flex ons-grid-flex--between ons-grid-flex--vertical-center ons-grid-flex--no-wrap ons-grid--gutterless">
                <div class="ons-grid__col ons-col-auto ons-u-flex-shrink">
                  <a class="ons-header__title-link" href="#0">
                    <div class="ons-header__title">Guide example</div>
                  </a>
                </div>
              </div>
            </div>
          </div>
        </header>
        <div class="ons-page__container ons-container">
          <nav class="ons-breadcrumbs" aria-label="Breadcrumbs">
            <ol class="ons-breadcrumbs__items ons-u-fs-s">
              <li class="ons-breadcrumbs__item" id="breadcrumb-1">
                <a class="ons-breadcrumbs__link" href="/">Home</a><svg class="ons-icon" viewBox="0 0 8 13"
                  xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  aria-hidden="true">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
              <li class="ons-breadcrumbs__item" id="breadcrumb-2">
                <a class="ons-breadcrumbs__link" href="/#">Guide example</a><svg class="ons-icon" viewBox="0 0 8 13"
                  xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  aria-hidden="true">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
            </ol>
          </nav>
          <div class="ons-grid">
            <div class="ons-grid__col ons-col-12@m">
              <main id="main-content" class="ons-page__main">
                <h1 class="ons-u-mb-xl">
                  <span class="ons-u-fs-m ons-u-db ons-u-mb-2xs ons-u-lighter">About the census</span>
                  <span class="ons-u-vh">: </span>
                  <span class="ons-u-fs-2xl ons-u-db">Why you should take part in the census</span>
                </h1>
                <aside class="ons-table-of-contents-container" aria-label="Table of contents">
                  <div role="region">
                    <a class="ons-skip-to-content ons-u-fs-r--b" href="#section-content">Skip to guide content</a>
                  </div>
                  <nav class="ons-table-of-contents" aria-label="Pages in this guide">
                    <h2 class="ons-table-of-contents__title ons-u-fs-r--b ons-u-mb-s">Contents</h2>
                    <ol class="ons-list ons-u-mb-l ons-list--dashed">
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">Overview</a>
                      </li>
                      <li class="ons-list__item" aria-current="true"> Who should take part and why </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">How your information is used</a>
                      </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">The 2019 Census Rehearsal</a>
                      </li>
                      <li class="ons-list__item">
                        <a href="#" class="ons-list__link">Online census</a>
                      </li>
                    </ol>
                  </nav>
                </aside>
                <section id="section-content" class="ons-page__body">
                  <p> It’s important you take part in the census. The information it gives has the power to make a real
                    impact on our everyday lives. </p>
                  <h2>The census is vital to all of us</h2>
                  <p> The census helps us understand what our society needs now and what it’s likely to need in the
                    future. The information it collects helps plan and fund services in your area. This could include
                    transport, education and healthcare. </p>
                  <p> Charities also use census information to help get the funding they need. Businesses use it to
                    decide where to set up, which creates job opportunities. </p>
                  <h2>Its success could help you</h2>
                  <p>Census 2021 will help give the best picture of the needs of everyone living in England and Wales.
                  </p>
                  <p> A total of 94% of people took part in the last census, helping each area receive its share of
                    public funding. Without the census, it would be much more difficult to provide the services you and
                    your community need. </p>
                  <h2>You must complete the census by law</h2>
                  <p> You must complete the census by law. If you do not, or if you supply false information, you could
                    be fined up to £1,000. Some questions are clearly labelled as voluntary. It is not an offence if you
                    do not answer these. </p>
                  <div class="ons-u-mt-3xl">
                    <nav class="ons-content-pagination" aria-label="Guide pagination">
                      <ul class="ons-content-pagination__list">
                        <li class="ons-content-pagination__item">
                          <a href="#" class="ons-content-pagination__link" rel="prev">
                            <span class="ons-content-pagination__link-title"><svg class="ons-icon ons-icon--m"
                                viewBox="0 0 17 13" xmlns="http://www.w3.org/2000/svg" focusable="false"
                                fill="currentColor" role="img" aria-hidden="true">
                                <path
                                  d="M6.4.2.3 6.4c-.2.2-.2.4 0 .6l6.2 5.8c.2.2.4.1.6 0l.8-.9c.2-.2.1-.4 0-.6l-4-3.7h12.5c.2 0 .4-.2.4-.4V6c0-.2-.2-.4-.4-.4H3.8l4-4c.2-.1.2-.4.1-.5L7 .2c-.1-.1-.4-.1-.6 0z" />
                              </svg><span class="ons-content-pagination__link-text">Previous</span>
                            </span>
                            <span class="ons-content-pagination__link-divider ons-u-vh">page in this guide is:</span>
                            <span class="ons-content-pagination__link-label">About the census</span>
                          </a>
                        </li>
                        <li class="ons-content-pagination__item">
                          <a href="#" class="ons-content-pagination__link" rel="next">
                            <span class="ons-content-pagination__link-title">
                              <svg class="ons-icon ons-icon--m" viewBox="0 0 17 13" xmlns="http://www.w3.org/2000/svg"
                                focusable="false" fill="currentColor" role="img" aria-hidden="true">
                                <path
                                  d="m10 .2-.9.9c-.1.1-.1.4 0 .5l4 4H.6c-.2 0-.4.2-.4.4v1.2c0 .2.2.4.4.4h12.5l-3.9 3.7c-.2.2-.2.4 0 .6l.8.9c.2.2.4.2.6 0L16.8 7c.2-.2.2-.4 0-.6L10.7.3c-.3-.2-.5-.2-.7-.1z" />
                              </svg><span class="ons-content-pagination__link-text">Next</span>
                            </span>
                            <span class="ons-content-pagination__link-divider ons-u-vh">page in this guide is:</span>
                            <span class="ons-content-pagination__link-label">How your information is used</span>
                          </a>
                        </li>
                      </ul>
                    </nav>
                  </div>
                </section>
              </main>
            </div>
          </div>
        </div>
      </div>
      <footer class="ons-footer">
        <div class="ons-footer__body ons-page__footer" data-analytics="footer">
          <div class="ons-container">
            <div class="ons-grid">
            </div>
            <div class="ons-grid ons-grid-flex--vertical-top ons-grid-flex--between">
              <div class="ons-grid__col">
                <div class="ons-footer__logo-container ons-u-mb-l ons-grid-flex ons-grid-flex--vertical-top">
                  <a class="ons-footer__logo-link" href="https://www.ons.gov.uk/">
                    <div class="ons-footer__logo-large">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="250" height="24"
                        viewBox="33 2 552 60" aria-labelledby="ons-logo-en-footer-alt" role="img">
                        <title id="ons-logo-en-footer-alt"> Office for National Statistics </title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M53.06,6.42C36.2,8,24.68,12.92,16.43,20.07A41.46,41.46,0,0,0,6.4,32.2C12.87,44.93,28.88,57,46.6,57H47s6.32.21,6.32-6.91V6.36a1.22,1.22,0,0,1-.26.06M9.72,42.67a44.25,44.25,0,0,1-5-7.42A80.59,80.59,0,0,0,0,46.38V56.91L31.06,57c-9.83-3-15.74-7.64-21.34-14.3" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M82,47.49c-9.07,0-13.13-7.51-13.13-16.77S72.91,14,82,14s13.1,7.61,13.1,16.77S91.1,47.54,82,47.54m0-30.91c-6.69,0-9.07,7.33-9.07,14.05s2.16,13.9,9.07,13.9,9-7.28,9-13.9-2.34-14-9-14" />
                          <path
                            d="M106.36,23.81V46.88h-3.67V23.81H98.93V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M121.53,23.81V46.88h-3.67V23.81H114.1V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M132.85,16.72a2.28,2.28,0,0,1-2.33-2.23v0a2.34,2.34,0,0,1,4.67,0,2.28,2.28,0,0,1-2.3,2.26h0M131,21.56h3.71V46.88H131Z" />
                          <path
                            d="M150.53,47.49c-6,0-10.63-5.16-10.63-13.29S144.52,21,150.66,21a9.76,9.76,0,0,1,6.17,1.74l-1,2.25a7.53,7.53,0,0,0-4.4-1.36c-5.15,0-7.78,4.46-7.78,10.48,0,6.2,3,10.62,7.65,10.62a8,8,0,0,0,4.49-1.37l1,2.45a10.21,10.21,0,0,1-6.3,1.73" />
                          <path
                            d="M162.84,35.75c.48,6,3.76,9,8.9,9a14.66,14.66,0,0,0,6.88-1.55l1.08,2.59a18,18,0,0,1-8.22,1.73c-7.12,0-12.18-4.23-12.18-13.34,0-8.69,4.67-13.2,11-13.2s10.37,3.95,10.37,12.4Zm7.35-12.41c-4.1,0-7.56,3.2-7.52,10.29l14.39-2c0-5.87-2.81-8.32-6.87-8.32" />
                          <path
                            d="M198.57,23.81V46.88H194.9V23.81h-3.76V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.39,0,.87.05.87.05v2.35h-.44c-2.54,0-4.84,1.64-4.84,5.12v4.09h5.28v2.25Z" />
                          <path
                            d="M217.28,47.49c-7.47,0-10.89-5.78-10.89-13.24S209.81,21,217.28,21s10.85,5.82,10.85,13.3-3.37,13.24-10.85,13.24m0-24c-5.53,0-7.13,5.59-7.13,10.81s1.73,10.56,7.13,10.56,7.13-5.35,7.13-10.56-1.6-10.81-7.13-10.81" />
                          <path
                            d="M244.08,23.91c-2.34-.61-5.75-.52-7.35.47v22.5H233V22.69c2.67-1.13,5.36-1.74,10.11-1.74H245Z" />
                          <path
                            d="M277.42,47.13,263.07,25a32.2,32.2,0,0,1-1.85-3.29h-.09s.13,1.88.13,3.85V47.13h-4.71V14.8h5.31l13.61,20.82A28.76,28.76,0,0,1,277.38,39h.08s-.17-1.84-.17-3.77V14.8H282V47.13Z" />
                          <path
                            d="M297.52,47.79c-7.43,0-10.93-3-10.93-7.81,0-6.8,7.12-8.64,15.59-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L288.23,23a24,24,0,0,1,9.12-1.83c5.61,0,9.93,2.3,9.93,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.26.67-10.45,1.84-10.45,6.73,0,3.42,2.42,4.88,6.22,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <path
                            d="M322,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.55V21.81h3.55V16.12l5.4-1.5v7.19H325v3.28h-5V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M331.91,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M350.88,47.79c-7.73,0-11.57-5.74-11.57-13.3s3.84-13.34,11.57-13.34,11.54,5.78,11.54,13.34-3.8,13.3-11.54,13.3m0-23.17c-4.66,0-6.05,4.89-6.05,9.82s1.47,9.63,6.05,9.63,6.05-4.7,6.05-9.63-1.38-9.82-6.05-9.82" />
                          <path
                            d="M382.52,47.13V29c0-3.24-2.77-4.47-5.88-4.47a12.3,12.3,0,0,0-4.37.76v21.8h-5.39V23a26.81,26.81,0,0,1,10.06-1.83c6.61,0,11,2.25,11,7.8V47.13Z" />
                          <path
                            d="M403.18,47.79c-7.43,0-10.94-3-10.94-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L393.89,23A24,24,0,0,1,403,21.15c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.43,4.88,6.23,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <polygon
                            points="418.52 47.13 418.52 34.91 418.52 10.25 423.92 10.25 423.92 22.76 423.92 47.13 418.52 47.13" />
                          <path
                            d="M445.39,47.79A19.11,19.11,0,0,1,436.58,46l1.51-4a13.48,13.48,0,0,0,6.22,1.55c3.76,0,6.44-2.21,6.44-5.41,0-7.09-13.44-4.36-13.44-14.42,0-5.13,4.15-9.59,10.72-9.59A15.82,15.82,0,0,1,455.8,16l-1.38,3.52a11.93,11.93,0,0,0-5.66-1.5c-3.5,0-5.79,2.11-5.79,5.12,0,7,13.74,3.94,13.74,14.65,0,5.74-4.71,10-11.32,10" />
                          <path
                            d="M470.41,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.12,5.12,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M487.27,47.79c-7.44,0-10.93-3-10.93-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.38-4.51-5.84-4.51a18,18,0,0,0-6.87,1.46L478,23a23.94,23.94,0,0,1,9.11-1.83c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83M492,33.16c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.42,4.88,6.22,4.88a10,10,0,0,0,4.24-.84Z" />
                          <path
                            d="M511.73,47.69c-5.32,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M521.66,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.45V47.13h-5.45Z" />
                          <path
                            d="M536.19,47.79A15.9,15.9,0,0,1,528.54,46L530,42.48a10.53,10.53,0,0,0,5.52,1.5c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.86-7.42A13.56,13.56,0,0,1,545.34,23l-1.42,3.14a8.47,8.47,0,0,0-4.62-1.45c-2.81,0-4.54,1.69-4.54,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                          <path
                            d="M559.83,47.69c-5.31,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.93v3.28h-4.93V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.64,5.64,0,0,0,1.47-.23v3.33a7.72,7.72,0,0,1-3,.52" />
                          <path
                            d="M569.77,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M588.14,47.79c-6.23,0-11-5.08-11-13.35s4.88-13.29,11-13.29A10.51,10.51,0,0,1,594.66,23l-1.21,3a6.87,6.87,0,0,0-4-1.22c-4.4,0-6.69,3.81-6.69,9.49s2.63,9.59,6.61,9.59a6.74,6.74,0,0,0,4-1.28L594.7,46c-1.12.94-3.33,1.84-6.56,1.84" />
                          <path
                            d="M605.1,47.79A15.9,15.9,0,0,1,597.45,46l1.42-3.47A10.54,10.54,0,0,0,604.4,44c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.85-7.42a13.49,13.49,0,0,1,7.1,1.83l-1.42,3.14a8.42,8.42,0,0,0-4.63-1.45c-2.8,0-4.53,1.69-4.53,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                        </g>
                      </svg>
                    </div>
                    <div class="ons-footer__logo-small">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="120" height="27"
                        viewBox="0 5 595 116" aria-labelledby="ons-logo-stacked-en-footer-alt" role="img">
                        <title id="ons-logo-stacked-en-footer-alt"> Office for National Statistics </title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,70.5c1.8-3.7,3.6-7.2,5.6-10.7A127.94,127.94,0,0,1,0,42.6V70.5M10.9,0S0,0,0,13.5v7.2A128.06,128.06,0,0,0,7.9,56.2a114.75,114.75,0,0,1,22.3-26C47.8,15.1,71.5,4.7,103.7.1Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M115.9,7.3c-36.8,3.5-62,14-80,29.4a108.15,108.15,0,0,0-23.6,29c14.1,27.4,41.1,47.6,86,50.5h4.4s13.8.5,13.8-14.9V7.2l-.6.1M21.2,85.4a92.68,92.68,0,0,1-11-16A173,173,0,0,0,0,93.4v22.7l73.6.1c-22.9-5.5-40.1-16.4-52.4-30.8" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M161,51.9c-11.3,0-16.3-9.3-16.3-20.8s5-20.8,16.3-20.8,16.3,9.5,16.3,20.8c-.1,11.5-5.1,20.8-16.3,20.8m0-38.3c-8.3,0-11.3,9.1-11.3,17.4s2.7,17.3,11.3,17.3,11.2-9.1,11.2-17.3S169.3,13.6,161,13.6m30.2,8.9V51.2h-4.5V22.6H182V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm18.9,0V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm14-8.8a2.82,2.82,0,0,1-2.9-2.8,2.9,2.9,0,0,1,5.8,0,2.76,2.76,0,0,1-2.9,2.8m-2.3,6h4.6V51.2h-4.6Zm24.3,32.2c-7.4,0-13.2-6.4-13.2-16.5,0-10.3,5.8-16.5,13.4-16.5a12.36,12.36,0,0,1,7.7,2.2l-1.2,2.8a8.92,8.92,0,0,0-5.5-1.7c-6.4,0-9.7,5.5-9.7,13,0,7.7,3.7,13.2,9.5,13.2a9.8,9.8,0,0,0,5.6-1.7l1.2,3c-1.3,1.2-4,2.2-7.8,2.2m15.3-14.6c.6,7.4,4.7,11.1,11.1,11.1a18.36,18.36,0,0,0,8.5-1.9l1.3,3.2a22.58,22.58,0,0,1-10.2,2.1c-8.8,0-15.1-5.3-15.1-16.6,0-10.8,5.8-16.4,13.7-16.4s12.9,4.9,12.9,15.4l-22.2,3.1ZM270.5,22c-5.1,0-9.4,4-9.3,12.8l17.9-2.5C279,25,275.5,22,270.5,22m42.2.5V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8Zm23.2,29.4c-9.3,0-13.5-7.2-13.5-16.5s4.2-16.5,13.5-16.5,13.5,7.2,13.5,16.5-4.2,16.5-13.5,16.5m0-29.8c-6.9,0-8.8,7-8.8,13.4s2.1,13.1,8.8,13.1c6.9,0,8.9-6.6,8.9-13.1s-2-13.4-8.9-13.4m33.3.6c-2.9-.8-7.1-.6-9.1.6V51.2h-4.6V21.1c3.3-1.4,6.6-2.2,12.5-2.2h2.4c0,.1-1.2,3.8-1.2,3.8ZM171.3,114.8,153.5,87.3c-1.3-2.1-2.3-4.1-2.3-4.1h-.1s.2,2.3.2,4.8v26.8h-5.8V74.7h6.6L169,100.5a46.13,46.13,0,0,1,2.4,4.1h.1s-.2-2.3-.2-4.7V74.6h5.9v40.1l-5.9.1Zm25,.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.8-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.5,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a11.47,11.47,0,0,1-3.7.6M239,77.9a3.52,3.52,0,1,1,3.9-3.5,3.71,3.71,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm26.9,32.2c-9.6,0-14.4-7.1-14.4-16.5s4.8-16.6,14.4-16.6,14.3,7.2,14.3,16.6-4.7,16.5-14.3,16.5m0-28.7c-5.8,0-7.5,6.1-7.5,12.2s1.8,11.9,7.5,11.9,7.5-5.8,7.5-11.9-1.7-12.2-7.5-12.2m39.3,27.9V92.3c0-4-3.4-5.5-7.3-5.5a16,16,0,0,0-5.4.9v27.1h-6.7v-30a32.8,32.8,0,0,1,12.5-2.3c8.2,0,13.7,2.8,13.7,9.7v22.6Zm25.7.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8L316,84.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm13.2,17.4V69h6.7v45.8Zm38.6.8a23.94,23.94,0,0,1-10.9-2.3l1.9-4.9a17,17,0,0,0,7.7,1.9c4.7,0,8-2.7,8-6.7,0-8.8-16.7-5.4-16.7-17.9,0-6.4,5.2-11.9,13.3-11.9a20.22,20.22,0,0,1,9.7,2.3l-1.7,4.4a14.57,14.57,0,0,0-7-1.9c-4.3,0-7.2,2.6-7.2,6.4,0,8.6,17.1,4.9,17.1,18.2-.1,7.1-6,12.4-14.2,12.4m31.1-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m20.9.1c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.6,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.6,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5H454V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.69,12.69,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5,3.65,3.65,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm21.4,32.2a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.21,16.21,0,0,1,8.8,2.3l-1.8,3.9a10.31,10.31,0,0,0-5.7-1.8c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4,0,4.9-4.7,9.7-12.3,9.7m29.4-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5c.1,2-1.7,3.5-3.9,3.5m-3.3,5.5H543v31.4h-6.8Zm26.2,32.2c-7.7,0-13.6-6.3-13.6-16.6s6.1-16.5,13.7-16.5c3.9,0,6.6,1.1,8,2.3L569,88.6a8.61,8.61,0,0,0-4.9-1.5c-5.5,0-8.3,4.7-8.3,11.8s3.3,11.9,8.2,11.9a8.39,8.39,0,0,0,4.9-1.6l1.7,4.1c-1.5,1.2-4.2,2.3-8.2,2.3m20.6,0a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.85,16.85,0,0,1,8.9,2.3l-1.8,3.9A10.31,10.31,0,0,0,587,87c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4-.1,4.9-4.9,9.7-12.4,9.7" />
                        </g>
                      </svg>
                    </div>
                  </a>
                </div>
              </div>
            </div>
          </div>
        </div>
      </footer>
    </div>
    <!-- prettier-ignore-start -->
    <script>
      (function() {
        var s = ['https://cdn.ons.gov.uk/sdc/design-system/73.6.0/scripts/main.js'],
          c = document.createElement('script');
        if (!('noModule' in c)) {
          for (var i = 0; i < s.length; i++) {
            s[i] = s[i].replace('.js', '.es5.js');
          }
        }
        for (var i = 0; i < s.length; i++) {
          var e = document.createElement('script');
          e.src = s[i];
          document.body.appendChild(e);
        }
      })();
    </script>
    <!-- prettier-ignore-end -->
    <div class="embeddable"></div>
    <style>
      body {
        height: auto;
      }
    </style>
    <script src="/js/main.js?t=1781701989638"></script>
  </body>

</html>

Right-to-left languages

To display a guide page for a right-to-left language (for example, Arabic) you can set "bodyClasses": 'ons-rtl' in the base page template.

Example: Guide for right-to-left languages contents

Nunjucks
{% extends "layout/_template.njk" %}
{% from "components/table-of-contents/_macro.njk" import onsTableOfContents %}
{% from "components/content-pagination/_macro.njk" import onsContentPagination %}
{% from "components/list/_macro.njk" import onsList %}
{%
    set pageConfig = {
        "bodyClasses": "ons-rtl",
        "header": {
            "mastheadLogoUrl": "#0",
            "title": "Guide example",
            "titleUrl": "#0"
        },
        "language": {
            "languages": [
                {
                    "url": '#0',
                    "isoCode": 'en',
                    "text": 'English',
                    "current": true
                },
                {
                    "url": '#0',
                    "isoCode": 'cy',
                    "text": 'Cymraeg',
                    "current": false
                }
            ]
        },
        "footer": {
            "crest": true,
            "cols": [
                {
                    "title": 'Get in touch',
                    "itemsList": [
                        {
                            "text": 'Contact us',
                            "url": '#0'
                        },
                        {
                            "text": 'Media enquiries',
                            "url": '#0'
                        }
                    ]
                },
                {
                    "title": 'Get involved',
                    "itemsList": [
                        {
                            "text": 'Local authorities',
                            "url": '#0'
                        },
                        {
                            "text": 'Community groups',
                            "url": '#0'
                        },
                        {
                            "text": 'School campaigns',
                            "url": '#0'
                        },
                        {
                            "text": 'Jobs',
                            "url": '#0'
                        }
                    ]
                },
                {
                    "title": 'About the census',
                    "itemsList": [
                        {
                            "text": 'What is the census',
                            "url": '#0'
                        },
                        {
                            "text": 'Why you should take part',
                            "url": '#0'
                        },
                        {
                            "text": 'Census stories',
                            "url": '#0'
                        }
                    ]
                }
            ],
            "legal": [
                {
                    "itemsList": [
                        {
                            "text": 'Cookies',
                            "url": '#0'
                        },
                        {
                            "text": 'Accessibility statement',
                            "url": '#0'
                        },
                        {
                            "text": 'Privacy and data protection',
                            "url": '#0'
                        }
                    ]
                }
            ]
        }
    }
%}
{% block preMain %}
    {% from "components/breadcrumbs/_macro.njk" import onsBreadcrumbs %}

    {{
        onsBreadcrumbs({
            "ariaLabel": 'Breadcrumbs',
            "itemsList": [
                {
                    "url": '#0',
                    "text": 'Home'
                },
                {
                    "url": '#0',
                    "text": 'Help with the census'
                },
                {
                    "url": '#0',
                    "text": 'Languages'
                }
            ]
        })
    }}
{% endblock %}
{% block main %}
    <h1 class="ons-u-mb-xl">
        <span class="ons-u-fs-m ons-u-db ons-u-mb-2xs ons-u-lighter">اللغة العربية (Arabic)</span>
        <span class="ons-u-vh">: </span>
        <span class="ons-u-fs-2xl ons-u-db">نظرة عامة</span>
    </h1>

    {{
        onsTableOfContents({
            "title": 'محتويات',
            "ariaLabel": 'Pages in this guide',
            "skipLink": {
                "url": "#section-content",
                "text": "Skip to guide content"
            },
            "itemsList": [
                {
                    "url": '#0',
                    "text": 'نظرة عامة',
                    "current": true
                },
                {
                    "url": '#0',
                    "text": 'استكمال التعداد الخاص بك عبر الإنترنت'
                },
                {
                    "url": '#0',
                    "text": 'استكمال التعداد الخاص بك عبر النسخة الورقية'
                }
            ]
        })
    }}

    <div id="section-content" class="ons-page__body">
        <h2>ما هو التعداد السكاني؟</h2>

        <p>التعداد السكاني هو مسح يتم كل 10 سنوات ويعطينا صورة عن جميع الأشخاص والأُسر في أيرلندا الشمالية</p>
        <p>يطرح التعداد نفس الأسئلة على الجميع في نفس اليوم - <strong>يوم التعداد: الأحد 21 مارس 2021</strong></p>

        <h2>لماذا يجب المشاركة</h2>
        <p>
            تُستخدم المعلومات التي تم جمعها في التعداد للمساعدة في اتخاذ قرارات حول كيفية تخطيط وتمويل الخدمات الحيوية مثل التعليم والنقل
            والصحة
        </p>
        <p>
            يجب إكمال التعداد بموجب القانون. إذا لم تقم بذلك ، أو قدمت معلومات خاطئة ، فقد يتم مقاضاتك وتغريمك ما يصل إلى 1000 جنيه إسترليني
        </p>

        <h2>متى يجب أن تكمل التعداد الخاص بك</h2>
        <p>
            يجب الانتهاء من ملء الاستبيان الخاص بك بحلول <strong>يوم ا</strong><strong>لأحد 21 مارس</strong><strong> 2021</strong>، أو في
            أقرب فرصة بعد ذلك<strong>.</strong> يجب أن تكون إجاباتك حول أسرتك في هذا التاريخ
        </p>
        <p>إذا لم تكمل التعداد الخاص بك ، فقد يقوم أحد موظفي التعداد الميدانيين بزيارتك بعد يوم التعداد بفترة وجيزة</p>

        <h2>من الذين يتعين عليهم الإجابة على أسئلة التعداد</h2>
        <p>يجب على رب الأسرة ملء استبيان التعداد للأسرة.</p>
        <p>
            رب الأسرة هو الشخص الذي يمتلك أو يستأجر العقار ، إما كليًا أو مشتركًا ، أو هو شخص مسؤول كليًا أو مشتركًا عن دفع فواتير ونفقات
            الأسرة
        </p>

        <h2>كيف يجب أن تكمل التعداد الخاص بك</h2>
        <p>يمكنك اختيار إما</p>

        {{
            onsList({
                "itemsList": [
                    {
                        "text": 'استكمال التعداد الخاص بك عبر الإنترنت',
                        "url": '#0'
                    },
                    {
                        "text": 'ستكمال التعداد الخاص بك عبر النسخة الورقية',
                        "url": '#0'
                    }
                ]
            })
        }}

        <div class="ons-u-mt-3xl">
            {{
                onsContentPagination({
                    "contentPaginationItems": [
                        {
                            "rel": 'prev',
                            "text": 'السابق',
                            "url": '#0',
                            "label": 'استكمال التعداد الخاص بك عبر الإنترنت'
                        },
                        {
                            "rel": 'next',
                            "text": 'التالى',
                            "url": '#0',
                            "label": 'ستكمال التعداد الخاص بك عبر النسخة الورقية'
                        }
                    ]
                })
            }}
        </div>
    </div>
{% endblock %}
HTML
<!doctype html>
<html lang="en">

  <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Example: Guide for right-to-left languages</title>
    <link rel="stylesheet" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/css/main.css" />
    <link rel="stylesheet" media="print" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/css/print.css" />
    <meta name="theme-color" content="#206095" />
    <!-- Open Graph -->
    <meta property="og:type" content="website" />
    <meta property="og:url" content="" />
    <meta property="og:title" content="" />
    <meta property="og:image" content="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/opengraph.png" />
    <meta property="og:image:type" content="image/png" />
    <meta property="og:image:width" content="1200" />
    <meta property="og:image:height" content="630" />
    <meta property="og:description" content="" />
    <meta property="og:site_name" content="Guide example" />
    <meta property="og:locale" content="en" />
    <!-- Favicons -->
    <link rel="icon" type="image/x-icon" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/favicon.ico" />
    <link rel="icon" type="image/png" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/favicon-32x32.png"
      sizes="32x32" />
    <link rel="icon" type="image/png" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/favicon-16x16.png"
      sizes="16x16" />
    <link rel="mask-icon" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/safari-pinned-tab.svg"
      color="#000000" />
    <link rel="apple-touch-icon" type="image/png"
      href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/apple-touch-icon.png" sizes="180x180" />
    <link rel="manifest" href="https://cdn.ons.gov.uk/sdc/design-system/73.6.0/favicons/manifest.json" />
  </head>

  <body class="ons-rtl">
    <!-- prettier-ignore-start -->
    <script>
      document.body.className = ((document.body.className) ? document.body.className + ' ons-js-enabled' :
        'ons-js-enabled');
    </script>
    <!-- prettier-ignore-end -->
    <div class="ons-page">
      <div class="ons-page__content">
        <div role="region">
          <a class="ons-skip-to-content ons-u-fs-r--b" href="#main-content">Skip to main content</a>
        </div>
        <header class="ons-header">
          <div class="ons-browser-banner">
            <div class="ons-container">
              <p class="ons-browser-banner__content">
                <span class="ons-browser-banner__lead">This website no longer supports your browser.</span><span
                  class="ons-browser-banner__cta"> You can <a class="ons-browser-banner__link"
                    href="https://www.ons.gov.uk/help/browsers">upgrade your browser to the latest version</a>.</span>
              </p>
            </div>
          </div>
          <div class="ons-header__top">
            <div class="ons-container">
              <div
                class="ons-header__grid-top ons-grid ons-grid-flex ons-grid-flex--between ons-grid-flex--vertical-center ons-grid-flex--no-wrap ons-grid--gutterless">
                <div class="ons-grid__col ons-col-auto"><a class="ons-header__org-logo-link" href="#0">
                    <div class="ons-header__org-logo ons-header__org-logo--large">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="250" height="24"
                        viewBox="33 2 552 60" aria-labelledby="ons-logo-en-alt" role="img">
                        <title id="ons-logo-en-alt"> Office for National Statistics logo </title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M53.06,6.42C36.2,8,24.68,12.92,16.43,20.07A41.46,41.46,0,0,0,6.4,32.2C12.87,44.93,28.88,57,46.6,57H47s6.32.21,6.32-6.91V6.36a1.22,1.22,0,0,1-.26.06M9.72,42.67a44.25,44.25,0,0,1-5-7.42A80.59,80.59,0,0,0,0,46.38V56.91L31.06,57c-9.83-3-15.74-7.64-21.34-14.3" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M82,47.49c-9.07,0-13.13-7.51-13.13-16.77S72.91,14,82,14s13.1,7.61,13.1,16.77S91.1,47.54,82,47.54m0-30.91c-6.69,0-9.07,7.33-9.07,14.05s2.16,13.9,9.07,13.9,9-7.28,9-13.9-2.34-14-9-14" />
                          <path
                            d="M106.36,23.81V46.88h-3.67V23.81H98.93V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M121.53,23.81V46.88h-3.67V23.81H114.1V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M132.85,16.72a2.28,2.28,0,0,1-2.33-2.23v0a2.34,2.34,0,0,1,4.67,0,2.28,2.28,0,0,1-2.3,2.26h0M131,21.56h3.71V46.88H131Z" />
                          <path
                            d="M150.53,47.49c-6,0-10.63-5.16-10.63-13.29S144.52,21,150.66,21a9.76,9.76,0,0,1,6.17,1.74l-1,2.25a7.53,7.53,0,0,0-4.4-1.36c-5.15,0-7.78,4.46-7.78,10.48,0,6.2,3,10.62,7.65,10.62a8,8,0,0,0,4.49-1.37l1,2.45a10.21,10.21,0,0,1-6.3,1.73" />
                          <path
                            d="M162.84,35.75c.48,6,3.76,9,8.9,9a14.66,14.66,0,0,0,6.88-1.55l1.08,2.59a18,18,0,0,1-8.22,1.73c-7.12,0-12.18-4.23-12.18-13.34,0-8.69,4.67-13.2,11-13.2s10.37,3.95,10.37,12.4Zm7.35-12.41c-4.1,0-7.56,3.2-7.52,10.29l14.39-2c0-5.87-2.81-8.32-6.87-8.32" />
                          <path
                            d="M198.57,23.81V46.88H194.9V23.81h-3.76V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.39,0,.87.05.87.05v2.35h-.44c-2.54,0-4.84,1.64-4.84,5.12v4.09h5.28v2.25Z" />
                          <path
                            d="M217.28,47.49c-7.47,0-10.89-5.78-10.89-13.24S209.81,21,217.28,21s10.85,5.82,10.85,13.3-3.37,13.24-10.85,13.24m0-24c-5.53,0-7.13,5.59-7.13,10.81s1.73,10.56,7.13,10.56,7.13-5.35,7.13-10.56-1.6-10.81-7.13-10.81" />
                          <path
                            d="M244.08,23.91c-2.34-.61-5.75-.52-7.35.47v22.5H233V22.69c2.67-1.13,5.36-1.74,10.11-1.74H245Z" />
                          <path
                            d="M277.42,47.13,263.07,25a32.2,32.2,0,0,1-1.85-3.29h-.09s.13,1.88.13,3.85V47.13h-4.71V14.8h5.31l13.61,20.82A28.76,28.76,0,0,1,277.38,39h.08s-.17-1.84-.17-3.77V14.8H282V47.13Z" />
                          <path
                            d="M297.52,47.79c-7.43,0-10.93-3-10.93-7.81,0-6.8,7.12-8.64,15.59-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L288.23,23a24,24,0,0,1,9.12-1.83c5.61,0,9.93,2.3,9.93,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.26.67-10.45,1.84-10.45,6.73,0,3.42,2.42,4.88,6.22,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <path
                            d="M322,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.55V21.81h3.55V16.12l5.4-1.5v7.19H325v3.28h-5V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M331.91,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M350.88,47.79c-7.73,0-11.57-5.74-11.57-13.3s3.84-13.34,11.57-13.34,11.54,5.78,11.54,13.34-3.8,13.3-11.54,13.3m0-23.17c-4.66,0-6.05,4.89-6.05,9.82s1.47,9.63,6.05,9.63,6.05-4.7,6.05-9.63-1.38-9.82-6.05-9.82" />
                          <path
                            d="M382.52,47.13V29c0-3.24-2.77-4.47-5.88-4.47a12.3,12.3,0,0,0-4.37.76v21.8h-5.39V23a26.81,26.81,0,0,1,10.06-1.83c6.61,0,11,2.25,11,7.8V47.13Z" />
                          <path
                            d="M403.18,47.79c-7.43,0-10.94-3-10.94-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L393.89,23A24,24,0,0,1,403,21.15c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.43,4.88,6.23,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <polygon
                            points="418.52 47.13 418.52 34.91 418.52 10.25 423.92 10.25 423.92 22.76 423.92 47.13 418.52 47.13" />
                          <path
                            d="M445.39,47.79A19.11,19.11,0,0,1,436.58,46l1.51-4a13.48,13.48,0,0,0,6.22,1.55c3.76,0,6.44-2.21,6.44-5.41,0-7.09-13.44-4.36-13.44-14.42,0-5.13,4.15-9.59,10.72-9.59A15.82,15.82,0,0,1,455.8,16l-1.38,3.52a11.93,11.93,0,0,0-5.66-1.5c-3.5,0-5.79,2.11-5.79,5.12,0,7,13.74,3.94,13.74,14.65,0,5.74-4.71,10-11.32,10" />
                          <path
                            d="M470.41,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.12,5.12,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M487.27,47.79c-7.44,0-10.93-3-10.93-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.38-4.51-5.84-4.51a18,18,0,0,0-6.87,1.46L478,23a23.94,23.94,0,0,1,9.11-1.83c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83M492,33.16c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.42,4.88,6.22,4.88a10,10,0,0,0,4.24-.84Z" />
                          <path
                            d="M511.73,47.69c-5.32,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M521.66,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.45V47.13h-5.45Z" />
                          <path
                            d="M536.19,47.79A15.9,15.9,0,0,1,528.54,46L530,42.48a10.53,10.53,0,0,0,5.52,1.5c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.86-7.42A13.56,13.56,0,0,1,545.34,23l-1.42,3.14a8.47,8.47,0,0,0-4.62-1.45c-2.81,0-4.54,1.69-4.54,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                          <path
                            d="M559.83,47.69c-5.31,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.93v3.28h-4.93V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.64,5.64,0,0,0,1.47-.23v3.33a7.72,7.72,0,0,1-3,.52" />
                          <path
                            d="M569.77,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M588.14,47.79c-6.23,0-11-5.08-11-13.35s4.88-13.29,11-13.29A10.51,10.51,0,0,1,594.66,23l-1.21,3a6.87,6.87,0,0,0-4-1.22c-4.4,0-6.69,3.81-6.69,9.49s2.63,9.59,6.61,9.59a6.74,6.74,0,0,0,4-1.28L594.7,46c-1.12.94-3.33,1.84-6.56,1.84" />
                          <path
                            d="M605.1,47.79A15.9,15.9,0,0,1,597.45,46l1.42-3.47A10.54,10.54,0,0,0,604.4,44c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.85-7.42a13.49,13.49,0,0,1,7.1,1.83l-1.42,3.14a8.42,8.42,0,0,0-4.63-1.45c-2.8,0-4.53,1.69-4.53,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                        </g>
                      </svg>
                    </div>
                    <div class="ons-header__org-logo ons-header__org-logo--small">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="120" height="27"
                        viewBox="0 5 595 116" aria-labelledby="ons-logo-stacked-en-alt" role="img">
                        <title id="ons-logo-stacked-en-alt"> Office for National Statistics logo </title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,70.5c1.8-3.7,3.6-7.2,5.6-10.7A127.94,127.94,0,0,1,0,42.6V70.5M10.9,0S0,0,0,13.5v7.2A128.06,128.06,0,0,0,7.9,56.2a114.75,114.75,0,0,1,22.3-26C47.8,15.1,71.5,4.7,103.7.1Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M115.9,7.3c-36.8,3.5-62,14-80,29.4a108.15,108.15,0,0,0-23.6,29c14.1,27.4,41.1,47.6,86,50.5h4.4s13.8.5,13.8-14.9V7.2l-.6.1M21.2,85.4a92.68,92.68,0,0,1-11-16A173,173,0,0,0,0,93.4v22.7l73.6.1c-22.9-5.5-40.1-16.4-52.4-30.8" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M161,51.9c-11.3,0-16.3-9.3-16.3-20.8s5-20.8,16.3-20.8,16.3,9.5,16.3,20.8c-.1,11.5-5.1,20.8-16.3,20.8m0-38.3c-8.3,0-11.3,9.1-11.3,17.4s2.7,17.3,11.3,17.3,11.2-9.1,11.2-17.3S169.3,13.6,161,13.6m30.2,8.9V51.2h-4.5V22.6H182V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm18.9,0V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm14-8.8a2.82,2.82,0,0,1-2.9-2.8,2.9,2.9,0,0,1,5.8,0,2.76,2.76,0,0,1-2.9,2.8m-2.3,6h4.6V51.2h-4.6Zm24.3,32.2c-7.4,0-13.2-6.4-13.2-16.5,0-10.3,5.8-16.5,13.4-16.5a12.36,12.36,0,0,1,7.7,2.2l-1.2,2.8a8.92,8.92,0,0,0-5.5-1.7c-6.4,0-9.7,5.5-9.7,13,0,7.7,3.7,13.2,9.5,13.2a9.8,9.8,0,0,0,5.6-1.7l1.2,3c-1.3,1.2-4,2.2-7.8,2.2m15.3-14.6c.6,7.4,4.7,11.1,11.1,11.1a18.36,18.36,0,0,0,8.5-1.9l1.3,3.2a22.58,22.58,0,0,1-10.2,2.1c-8.8,0-15.1-5.3-15.1-16.6,0-10.8,5.8-16.4,13.7-16.4s12.9,4.9,12.9,15.4l-22.2,3.1ZM270.5,22c-5.1,0-9.4,4-9.3,12.8l17.9-2.5C279,25,275.5,22,270.5,22m42.2.5V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8Zm23.2,29.4c-9.3,0-13.5-7.2-13.5-16.5s4.2-16.5,13.5-16.5,13.5,7.2,13.5,16.5-4.2,16.5-13.5,16.5m0-29.8c-6.9,0-8.8,7-8.8,13.4s2.1,13.1,8.8,13.1c6.9,0,8.9-6.6,8.9-13.1s-2-13.4-8.9-13.4m33.3.6c-2.9-.8-7.1-.6-9.1.6V51.2h-4.6V21.1c3.3-1.4,6.6-2.2,12.5-2.2h2.4c0,.1-1.2,3.8-1.2,3.8ZM171.3,114.8,153.5,87.3c-1.3-2.1-2.3-4.1-2.3-4.1h-.1s.2,2.3.2,4.8v26.8h-5.8V74.7h6.6L169,100.5a46.13,46.13,0,0,1,2.4,4.1h.1s-.2-2.3-.2-4.7V74.6h5.9v40.1l-5.9.1Zm25,.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.8-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.5,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a11.47,11.47,0,0,1-3.7.6M239,77.9a3.52,3.52,0,1,1,3.9-3.5,3.71,3.71,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm26.9,32.2c-9.6,0-14.4-7.1-14.4-16.5s4.8-16.6,14.4-16.6,14.3,7.2,14.3,16.6-4.7,16.5-14.3,16.5m0-28.7c-5.8,0-7.5,6.1-7.5,12.2s1.8,11.9,7.5,11.9,7.5-5.8,7.5-11.9-1.7-12.2-7.5-12.2m39.3,27.9V92.3c0-4-3.4-5.5-7.3-5.5a16,16,0,0,0-5.4.9v27.1h-6.7v-30a32.8,32.8,0,0,1,12.5-2.3c8.2,0,13.7,2.8,13.7,9.7v22.6Zm25.7.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8L316,84.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm13.2,17.4V69h6.7v45.8Zm38.6.8a23.94,23.94,0,0,1-10.9-2.3l1.9-4.9a17,17,0,0,0,7.7,1.9c4.7,0,8-2.7,8-6.7,0-8.8-16.7-5.4-16.7-17.9,0-6.4,5.2-11.9,13.3-11.9a20.22,20.22,0,0,1,9.7,2.3l-1.7,4.4a14.57,14.57,0,0,0-7-1.9c-4.3,0-7.2,2.6-7.2,6.4,0,8.6,17.1,4.9,17.1,18.2-.1,7.1-6,12.4-14.2,12.4m31.1-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m20.9.1c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.6,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.6,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5H454V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.69,12.69,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5,3.65,3.65,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm21.4,32.2a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.21,16.21,0,0,1,8.8,2.3l-1.8,3.9a10.31,10.31,0,0,0-5.7-1.8c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4,0,4.9-4.7,9.7-12.3,9.7m29.4-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5c.1,2-1.7,3.5-3.9,3.5m-3.3,5.5H543v31.4h-6.8Zm26.2,32.2c-7.7,0-13.6-6.3-13.6-16.6s6.1-16.5,13.7-16.5c3.9,0,6.6,1.1,8,2.3L569,88.6a8.61,8.61,0,0,0-4.9-1.5c-5.5,0-8.3,4.7-8.3,11.8s3.3,11.9,8.2,11.9a8.39,8.39,0,0,0,4.9-1.6l1.7,4.1c-1.5,1.2-4.2,2.3-8.2,2.3m20.6,0a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.85,16.85,0,0,1,8.9,2.3l-1.8,3.9A10.31,10.31,0,0,0,587,87c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4-.1,4.9-4.9,9.7-12.4,9.7" />
                        </g>
                      </svg>
                    </div>
                  </a>
                </div>
              </div>
            </div>
          </div>
          <div class="ons-header__main">
            <div class="ons-container">
              <div
                class="ons-grid ons-grid-flex ons-grid-flex--between ons-grid-flex--vertical-center ons-grid-flex--no-wrap ons-grid--gutterless">
                <div class="ons-grid__col ons-col-auto ons-u-flex-shrink">
                  <a class="ons-header__title-link" href="#0">
                    <div class="ons-header__title">Guide example</div>
                  </a>
                </div>
              </div>
            </div>
          </div>
        </header>
        <div class="ons-page__container ons-container">
          <nav class="ons-breadcrumbs" aria-label="Breadcrumbs">
            <ol class="ons-breadcrumbs__items ons-u-fs-s">
              <li class="ons-breadcrumbs__item" id="breadcrumb-1">
                <a class="ons-breadcrumbs__link" href="#0">Home</a><svg class="ons-icon" viewBox="0 0 8 13"
                  xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  aria-hidden="true">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
              <li class="ons-breadcrumbs__item" id="breadcrumb-2">
                <a class="ons-breadcrumbs__link" href="#0">Help with the census</a><svg class="ons-icon"
                  viewBox="0 0 8 13" xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  aria-hidden="true">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
              <li class="ons-breadcrumbs__item" id="breadcrumb-3">
                <a class="ons-breadcrumbs__link" href="#0">Languages</a><svg class="ons-icon" viewBox="0 0 8 13"
                  xmlns="http://www.w3.org/2000/svg" focusable="false" fill="currentColor" role="img"
                  aria-hidden="true">
                  <path
                    d="M5.74,14.28l-.57-.56a.5.5,0,0,1,0-.71h0l5-5-5-5a.5.5,0,0,1,0-.71h0l.57-.56a.5.5,0,0,1,.71,0h0l5.93,5.93a.5.5,0,0,1,0,.7L6.45,14.28a.5.5,0,0,1-.71,0Z"
                    transform="translate(-5.02 -1.59)" />
                </svg>
              </li>
            </ol>
          </nav>
          <div class="ons-grid">
            <div class="ons-grid__col ons-col-12@m">
              <main id="main-content" class="ons-page__main">
                <h1 class="ons-u-mb-xl">
                  <span class="ons-u-fs-m ons-u-db ons-u-mb-2xs ons-u-lighter">اللغة العربية (Arabic)</span>
                  <span class="ons-u-vh">: </span>
                  <span class="ons-u-fs-2xl ons-u-db">نظرة عامة</span>
                </h1>
                <aside class="ons-table-of-contents-container" aria-label="Table of contents">
                  <div role="region">
                    <a class="ons-skip-to-content ons-u-fs-r--b" href="#section-content">Skip to guide content</a>
                  </div>
                  <nav class="ons-table-of-contents" aria-label="Pages in this guide">
                    <h2 class="ons-table-of-contents__title ons-u-fs-r--b ons-u-mb-s">محتويات</h2>
                    <ol class="ons-list ons-u-mb-l ons-list--dashed">
                      <li class="ons-list__item" aria-current="true"> نظرة عامة </li>
                      <li class="ons-list__item">
                        <a href="#0" class="ons-list__link">استكمال التعداد الخاص بك عبر الإنترنت</a>
                      </li>
                      <li class="ons-list__item">
                        <a href="#0" class="ons-list__link">استكمال التعداد الخاص بك عبر النسخة الورقية</a>
                      </li>
                    </ol>
                  </nav>
                </aside>
                <div id="section-content" class="ons-page__body">
                  <h2>ما هو التعداد السكاني؟</h2>
                  <p>التعداد السكاني هو مسح يتم كل 10 سنوات ويعطينا صورة عن جميع الأشخاص والأُسر في أيرلندا الشمالية</p>
                  <p>يطرح التعداد نفس الأسئلة على الجميع في نفس اليوم - <strong>يوم التعداد: الأحد 21 مارس 2021</strong>
                  </p>
                  <h2>لماذا يجب المشاركة</h2>
                  <p> تُستخدم المعلومات التي تم جمعها في التعداد للمساعدة في اتخاذ قرارات حول كيفية تخطيط وتمويل الخدمات
                    الحيوية مثل التعليم والنقل والصحة </p>
                  <p> يجب إكمال التعداد بموجب القانون. إذا لم تقم بذلك ، أو قدمت معلومات خاطئة ، فقد يتم مقاضاتك وتغريمك
                    ما يصل إلى 1000 جنيه إسترليني </p>
                  <h2>متى يجب أن تكمل التعداد الخاص بك</h2>
                  <p> يجب الانتهاء من ملء الاستبيان الخاص بك بحلول
                    <strong>يوم ا</strong><strong>لأحد 21 مارس</strong><strong> 2021</strong>، أو في أقرب فرصة بعد
                    ذلك<strong>.</strong> يجب أن تكون إجاباتك حول أسرتك في هذا التاريخ </p>
                  <p>إذا لم تكمل التعداد الخاص بك ، فقد يقوم أحد موظفي التعداد الميدانيين بزيارتك بعد يوم التعداد بفترة
                    وجيزة</p>
                  <h2>من الذين يتعين عليهم الإجابة على أسئلة التعداد</h2>
                  <p>يجب على رب الأسرة ملء استبيان التعداد للأسرة.</p>
                  <p> رب الأسرة هو الشخص الذي يمتلك أو يستأجر العقار ، إما كليًا أو مشتركًا ، أو هو شخص مسؤول كليًا أو
                    مشتركًا عن دفع فواتير ونفقات الأسرة </p>
                  <h2>كيف يجب أن تكمل التعداد الخاص بك</h2>
                  <p>يمكنك اختيار إما</p>
                  <ul class="ons-list">
                    <li class="ons-list__item">
                      <a href="#0" class="ons-list__link">استكمال التعداد الخاص بك عبر الإنترنت</a>
                    </li>
                    <li class="ons-list__item">
                      <a href="#0" class="ons-list__link">ستكمال التعداد الخاص بك عبر النسخة الورقية</a>
                    </li>
                  </ul>
                  <div class="ons-u-mt-3xl">
                    <nav class="ons-content-pagination" aria-label="Guide pagination">
                      <ul class="ons-content-pagination__list">
                        <li class="ons-content-pagination__item">
                          <a href="#0" class="ons-content-pagination__link" rel="prev">
                            <span class="ons-content-pagination__link-title"><svg class="ons-icon ons-icon--m"
                                viewBox="0 0 17 13" xmlns="http://www.w3.org/2000/svg" focusable="false"
                                fill="currentColor" role="img" aria-hidden="true">
                                <path
                                  d="M6.4.2.3 6.4c-.2.2-.2.4 0 .6l6.2 5.8c.2.2.4.1.6 0l.8-.9c.2-.2.1-.4 0-.6l-4-3.7h12.5c.2 0 .4-.2.4-.4V6c0-.2-.2-.4-.4-.4H3.8l4-4c.2-.1.2-.4.1-.5L7 .2c-.1-.1-.4-.1-.6 0z" />
                              </svg><span class="ons-content-pagination__link-text">السابق</span>
                            </span>
                            <span class="ons-content-pagination__link-divider ons-u-vh">page in this guide is:</span>
                            <span class="ons-content-pagination__link-label">استكمال التعداد الخاص بك عبر
                              الإنترنت</span>
                          </a>
                        </li>
                        <li class="ons-content-pagination__item">
                          <a href="#0" class="ons-content-pagination__link" rel="next">
                            <span class="ons-content-pagination__link-title">
                              <svg class="ons-icon ons-icon--m" viewBox="0 0 17 13" xmlns="http://www.w3.org/2000/svg"
                                focusable="false" fill="currentColor" role="img" aria-hidden="true">
                                <path
                                  d="m10 .2-.9.9c-.1.1-.1.4 0 .5l4 4H.6c-.2 0-.4.2-.4.4v1.2c0 .2.2.4.4.4h12.5l-3.9 3.7c-.2.2-.2.4 0 .6l.8.9c.2.2.4.2.6 0L16.8 7c.2-.2.2-.4 0-.6L10.7.3c-.3-.2-.5-.2-.7-.1z" />
                              </svg><span class="ons-content-pagination__link-text">التالى</span>
                            </span>
                            <span class="ons-content-pagination__link-divider ons-u-vh">page in this guide is:</span>
                            <span class="ons-content-pagination__link-label">ستكمال التعداد الخاص بك عبر النسخة
                              الورقية</span>
                          </a>
                        </li>
                      </ul>
                    </nav>
                  </div>
                </div>
              </main>
            </div>
          </div>
        </div>
      </div>
      <footer class="ons-footer">
        <div class="ons-footer__body ons-page__footer" data-analytics="footer">
          <div class="ons-container">
            <div class="ons-grid">
              <!-- Full footer columns -->
              <div class="ons-grid__col ons-col-4@m">
                <h2 class="ons-footer__heading ons-u-fs-r--b">Get in touch</h2>
                <ul class="ons-list ons-u-mb-no ons-list--bare">
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Contact us</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Media enquiries</a>
                  </li>
                </ul>
              </div>
              <!-- Full footer columns -->
              <div class="ons-grid__col ons-col-4@m ons-u-mt-l@2xs@m">
                <h2 class="ons-footer__heading ons-u-fs-r--b">Get involved</h2>
                <ul class="ons-list ons-u-mb-no ons-list--bare">
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Local authorities</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Community groups</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">School campaigns</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Jobs</a>
                  </li>
                </ul>
              </div>
              <!-- Full footer columns -->
              <div class="ons-grid__col ons-col-4@m ons-u-mt-l@2xs@m">
                <h2 class="ons-footer__heading ons-u-fs-r--b">About the census</h2>
                <ul class="ons-list ons-u-mb-no ons-list--bare">
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">What is the census</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Why you should take part</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Census stories</a>
                  </li>
                </ul>
              </div>
              <div class="ons-grid__col ons-u-mb-l">
                <hr class="ons-footer__hr" />
              </div>
            </div>
            <div class="ons-grid ons-grid-flex ons-grid-flex--vertical-top ons-grid-flex--between">
              <div class="ons-grid__col">
                <!-- Legal -->
                <ul class="ons-list ons-u-mb-s ons-footer--rows ons-list--bare ons-list--inline">
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Cookies</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Accessibility statement</a>
                  </li>
                  <li class="ons-list__item">
                    <a href="#0" class="ons-list__link">Privacy and data protection</a>
                  </li>
                </ul>
                <div class="ons-footer__logo-container ons-u-mb-l ons-grid-flex ons-grid-flex--vertical-top">
                  <a class="ons-footer__logo-link" href="https://www.ons.gov.uk/">
                    <div class="ons-footer__logo-large">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="250" height="24"
                        viewBox="33 2 552 60" aria-labelledby="ons-logo-en-footer-alt" role="img">
                        <title id="ons-logo-en-footer-alt"> Office for National Statistics </title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M53.06,6.42C36.2,8,24.68,12.92,16.43,20.07A41.46,41.46,0,0,0,6.4,32.2C12.87,44.93,28.88,57,46.6,57H47s6.32.21,6.32-6.91V6.36a1.22,1.22,0,0,1-.26.06M9.72,42.67a44.25,44.25,0,0,1-5-7.42A80.59,80.59,0,0,0,0,46.38V56.91L31.06,57c-9.83-3-15.74-7.64-21.34-14.3" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M82,47.49c-9.07,0-13.13-7.51-13.13-16.77S72.91,14,82,14s13.1,7.61,13.1,16.77S91.1,47.54,82,47.54m0-30.91c-6.69,0-9.07,7.33-9.07,14.05s2.16,13.9,9.07,13.9,9-7.28,9-13.9-2.34-14-9-14" />
                          <path
                            d="M106.36,23.81V46.88h-3.67V23.81H98.93V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M121.53,23.81V46.88h-3.67V23.81H114.1V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.38,0,.86.05.86.05v2.35h-.43c-2.55,0-4.84,1.64-4.84,5.12v4.09h5.27v2.25Z" />
                          <path
                            d="M132.85,16.72a2.28,2.28,0,0,1-2.33-2.23v0a2.34,2.34,0,0,1,4.67,0,2.28,2.28,0,0,1-2.3,2.26h0M131,21.56h3.71V46.88H131Z" />
                          <path
                            d="M150.53,47.49c-6,0-10.63-5.16-10.63-13.29S144.52,21,150.66,21a9.76,9.76,0,0,1,6.17,1.74l-1,2.25a7.53,7.53,0,0,0-4.4-1.36c-5.15,0-7.78,4.46-7.78,10.48,0,6.2,3,10.62,7.65,10.62a8,8,0,0,0,4.49-1.37l1,2.45a10.21,10.21,0,0,1-6.3,1.73" />
                          <path
                            d="M162.84,35.75c.48,6,3.76,9,8.9,9a14.66,14.66,0,0,0,6.88-1.55l1.08,2.59a18,18,0,0,1-8.22,1.73c-7.12,0-12.18-4.23-12.18-13.34,0-8.69,4.67-13.2,11-13.2s10.37,3.95,10.37,12.4Zm7.35-12.41c-4.1,0-7.56,3.2-7.52,10.29l14.39-2c0-5.87-2.81-8.32-6.87-8.32" />
                          <path
                            d="M198.57,23.81V46.88H194.9V23.81h-3.76V21.56h3.76V17.9c0-4.61,2.72-7.95,8.08-7.95.39,0,.87.05.87.05v2.35h-.44c-2.54,0-4.84,1.64-4.84,5.12v4.09h5.28v2.25Z" />
                          <path
                            d="M217.28,47.49c-7.47,0-10.89-5.78-10.89-13.24S209.81,21,217.28,21s10.85,5.82,10.85,13.3-3.37,13.24-10.85,13.24m0-24c-5.53,0-7.13,5.59-7.13,10.81s1.73,10.56,7.13,10.56,7.13-5.35,7.13-10.56-1.6-10.81-7.13-10.81" />
                          <path
                            d="M244.08,23.91c-2.34-.61-5.75-.52-7.35.47v22.5H233V22.69c2.67-1.13,5.36-1.74,10.11-1.74H245Z" />
                          <path
                            d="M277.42,47.13,263.07,25a32.2,32.2,0,0,1-1.85-3.29h-.09s.13,1.88.13,3.85V47.13h-4.71V14.8h5.31l13.61,20.82A28.76,28.76,0,0,1,277.38,39h.08s-.17-1.84-.17-3.77V14.8H282V47.13Z" />
                          <path
                            d="M297.52,47.79c-7.43,0-10.93-3-10.93-7.81,0-6.8,7.12-8.64,15.59-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L288.23,23a24,24,0,0,1,9.12-1.83c5.61,0,9.93,2.3,9.93,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.26.67-10.45,1.84-10.45,6.73,0,3.42,2.42,4.88,6.22,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <path
                            d="M322,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.55V21.81h3.55V16.12l5.4-1.5v7.19H325v3.28h-5V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M331.91,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M350.88,47.79c-7.73,0-11.57-5.74-11.57-13.3s3.84-13.34,11.57-13.34,11.54,5.78,11.54,13.34-3.8,13.3-11.54,13.3m0-23.17c-4.66,0-6.05,4.89-6.05,9.82s1.47,9.63,6.05,9.63,6.05-4.7,6.05-9.63-1.38-9.82-6.05-9.82" />
                          <path
                            d="M382.52,47.13V29c0-3.24-2.77-4.47-5.88-4.47a12.3,12.3,0,0,0-4.37.76v21.8h-5.39V23a26.81,26.81,0,0,1,10.06-1.83c6.61,0,11,2.25,11,7.8V47.13Z" />
                          <path
                            d="M403.18,47.79c-7.43,0-10.94-3-10.94-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.37-4.51-5.83-4.51a18,18,0,0,0-6.87,1.46L393.89,23A24,24,0,0,1,403,21.15c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83m4.66-14.67c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.43,4.88,6.23,4.88a10.09,10.09,0,0,0,4.23-.84Z" />
                          <polygon
                            points="418.52 47.13 418.52 34.91 418.52 10.25 423.92 10.25 423.92 22.76 423.92 47.13 418.52 47.13" />
                          <path
                            d="M445.39,47.79A19.11,19.11,0,0,1,436.58,46l1.51-4a13.48,13.48,0,0,0,6.22,1.55c3.76,0,6.44-2.21,6.44-5.41,0-7.09-13.44-4.36-13.44-14.42,0-5.13,4.15-9.59,10.72-9.59A15.82,15.82,0,0,1,455.8,16l-1.38,3.52a11.93,11.93,0,0,0-5.66-1.5c-3.5,0-5.79,2.11-5.79,5.12,0,7,13.74,3.94,13.74,14.65,0,5.74-4.71,10-11.32,10" />
                          <path
                            d="M470.41,47.69c-5.31,0-7.34-3.43-7.34-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.12,5.12,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M487.27,47.79c-7.44,0-10.93-3-10.93-7.81,0-6.8,7.13-8.64,15.6-9.39V29.13c0-3.47-2.38-4.51-5.84-4.51a18,18,0,0,0-6.87,1.46L478,23a23.94,23.94,0,0,1,9.11-1.83c5.62,0,9.94,2.3,9.94,8.78V46a22.71,22.71,0,0,1-9.76,1.83M492,33.16c-6.27.67-10.46,1.84-10.46,6.73,0,3.42,2.42,4.88,6.22,4.88a10,10,0,0,0,4.24-.84Z" />
                          <path
                            d="M511.73,47.69c-5.32,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.92v3.28h-4.92V40.55a3.26,3.26,0,0,0,3,3.52h.5a5.5,5.5,0,0,0,1.46-.23v3.33a7.69,7.69,0,0,1-3,.52" />
                          <path
                            d="M521.66,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.45V47.13h-5.45Z" />
                          <path
                            d="M536.19,47.79A15.9,15.9,0,0,1,528.54,46L530,42.48a10.53,10.53,0,0,0,5.52,1.5c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.86-7.42A13.56,13.56,0,0,1,545.34,23l-1.42,3.14a8.47,8.47,0,0,0-4.62-1.45c-2.81,0-4.54,1.69-4.54,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                          <path
                            d="M559.83,47.69c-5.31,0-7.35-3.43-7.35-6.86V25.09h-3.54V21.81h3.54V16.12l5.4-1.5v7.19h4.93v3.28h-4.93V40.55a3.27,3.27,0,0,0,3,3.52h.48a5.64,5.64,0,0,0,1.47-.23v3.33a7.72,7.72,0,0,1-3,.52" />
                          <path
                            d="M569.77,17.43a3,3,0,0,1-3.15-2.81,3.17,3.17,0,0,1,6.31,0,3,3,0,0,1-3.16,2.81m-2.72,4.38h5.44V47.13h-5.44Z" />
                          <path
                            d="M588.14,47.79c-6.23,0-11-5.08-11-13.35s4.88-13.29,11-13.29A10.51,10.51,0,0,1,594.66,23l-1.21,3a6.87,6.87,0,0,0-4-1.22c-4.4,0-6.69,3.81-6.69,9.49s2.63,9.59,6.61,9.59a6.74,6.74,0,0,0,4-1.28L594.7,46c-1.12.94-3.33,1.84-6.56,1.84" />
                          <path
                            d="M605.1,47.79A15.9,15.9,0,0,1,597.45,46l1.42-3.47A10.54,10.54,0,0,0,604.4,44c2.77,0,5-1.78,5-3.94,0-6-11.1-3.2-11.1-11.47,0-3.76,3.37-7.42,8.85-7.42a13.49,13.49,0,0,1,7.1,1.83l-1.42,3.14a8.42,8.42,0,0,0-4.63-1.45c-2.8,0-4.53,1.69-4.53,3.62,0,5.64,11.32,3.14,11.32,11.6,0,4-3.85,7.9-9.89,7.9" />
                        </g>
                      </svg>
                    </div>
                    <div class="ons-footer__logo-small">
                      <svg class="ons-icon--logo" xmlns="http://www.w3.org/2000/svg" width="120" height="27"
                        viewBox="0 5 595 116" aria-labelledby="ons-logo-stacked-en-footer-alt" role="img">
                        <title id="ons-logo-stacked-en-footer-alt"> Office for National Statistics </title>
                        <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
                          <path
                            d="M0,70.5c1.8-3.7,3.6-7.2,5.6-10.7A127.94,127.94,0,0,1,0,42.6V70.5M10.9,0S0,0,0,13.5v7.2A128.06,128.06,0,0,0,7.9,56.2a114.75,114.75,0,0,1,22.3-26C47.8,15.1,71.5,4.7,103.7.1Z" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--primary" fill="#003c57">
                          <path
                            d="M115.9,7.3c-36.8,3.5-62,14-80,29.4a108.15,108.15,0,0,0-23.6,29c14.1,27.4,41.1,47.6,86,50.5h4.4s13.8.5,13.8-14.9V7.2l-.6.1M21.2,85.4a92.68,92.68,0,0,1-11-16A173,173,0,0,0,0,93.4v22.7l73.6.1c-22.9-5.5-40.1-16.4-52.4-30.8" />
                        </g>
                        <g class="ons-icon--logo__group ons-icon--logo__group--text" fill="#003c57">
                          <path
                            d="M161,51.9c-11.3,0-16.3-9.3-16.3-20.8s5-20.8,16.3-20.8,16.3,9.5,16.3,20.8c-.1,11.5-5.1,20.8-16.3,20.8m0-38.3c-8.3,0-11.3,9.1-11.3,17.4s2.7,17.3,11.3,17.3,11.2-9.1,11.2-17.3S169.3,13.6,161,13.6m30.2,8.9V51.2h-4.5V22.6H182V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm18.9,0V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8l-6.7-.1Zm14-8.8a2.82,2.82,0,0,1-2.9-2.8,2.9,2.9,0,0,1,5.8,0,2.76,2.76,0,0,1-2.9,2.8m-2.3,6h4.6V51.2h-4.6Zm24.3,32.2c-7.4,0-13.2-6.4-13.2-16.5,0-10.3,5.8-16.5,13.4-16.5a12.36,12.36,0,0,1,7.7,2.2l-1.2,2.8a8.92,8.92,0,0,0-5.5-1.7c-6.4,0-9.7,5.5-9.7,13,0,7.7,3.7,13.2,9.5,13.2a9.8,9.8,0,0,0,5.6-1.7l1.2,3c-1.3,1.2-4,2.2-7.8,2.2m15.3-14.6c.6,7.4,4.7,11.1,11.1,11.1a18.36,18.36,0,0,0,8.5-1.9l1.3,3.2a22.58,22.58,0,0,1-10.2,2.1c-8.8,0-15.1-5.3-15.1-16.6,0-10.8,5.8-16.4,13.7-16.4s12.9,4.9,12.9,15.4l-22.2,3.1ZM270.5,22c-5.1,0-9.4,4-9.3,12.8l17.9-2.5C279,25,275.5,22,270.5,22m42.2.5V51.2h-4.5V22.6h-4.7V19.8h4.7V15.2c0-5.7,3.4-9.9,10-9.9a8,8,0,0,1,1.1.1V8.3h-.5c-3.2,0-6,2.1-6,6.4v5.1h6.6v2.8Zm23.2,29.4c-9.3,0-13.5-7.2-13.5-16.5s4.2-16.5,13.5-16.5,13.5,7.2,13.5,16.5-4.2,16.5-13.5,16.5m0-29.8c-6.9,0-8.8,7-8.8,13.4s2.1,13.1,8.8,13.1c6.9,0,8.9-6.6,8.9-13.1s-2-13.4-8.9-13.4m33.3.6c-2.9-.8-7.1-.6-9.1.6V51.2h-4.6V21.1c3.3-1.4,6.6-2.2,12.5-2.2h2.4c0,.1-1.2,3.8-1.2,3.8ZM171.3,114.8,153.5,87.3c-1.3-2.1-2.3-4.1-2.3-4.1h-.1s.2,2.3.2,4.8v26.8h-5.8V74.7h6.6L169,100.5a46.13,46.13,0,0,1,2.4,4.1h.1s-.2-2.3-.2-4.7V74.6h5.9v40.1l-5.9.1Zm25,.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.8-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.5,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a11.47,11.47,0,0,1-3.7.6M239,77.9a3.52,3.52,0,1,1,3.9-3.5,3.71,3.71,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm26.9,32.2c-9.6,0-14.4-7.1-14.4-16.5s4.8-16.6,14.4-16.6,14.3,7.2,14.3,16.6-4.7,16.5-14.3,16.5m0-28.7c-5.8,0-7.5,6.1-7.5,12.2s1.8,11.9,7.5,11.9,7.5-5.8,7.5-11.9-1.7-12.2-7.5-12.2m39.3,27.9V92.3c0-4-3.4-5.5-7.3-5.5a16,16,0,0,0-5.4.9v27.1h-6.7v-30a32.8,32.8,0,0,1,12.5-2.3c8.2,0,13.7,2.8,13.7,9.7v22.6Zm25.7.8c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8L316,84.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.7,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm13.2,17.4V69h6.7v45.8Zm38.6.8a23.94,23.94,0,0,1-10.9-2.3l1.9-4.9a17,17,0,0,0,7.7,1.9c4.7,0,8-2.7,8-6.7,0-8.8-16.7-5.4-16.7-17.9,0-6.4,5.2-11.9,13.3-11.9a20.22,20.22,0,0,1,9.7,2.3l-1.7,4.4a14.57,14.57,0,0,0-7-1.9c-4.3,0-7.2,2.6-7.2,6.4,0,8.6,17.1,4.9,17.1,18.2-.1,7.1-6,12.4-14.2,12.4m31.1-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m20.9.1c-9.2,0-13.6-3.7-13.6-9.7,0-8.5,8.9-10.7,19.4-11.7V92.4c0-4.3-2.9-5.6-7.2-5.6a22.34,22.34,0,0,0-8.5,1.8l-1.6-3.8a30.2,30.2,0,0,1,11.3-2.3c7,0,12.3,2.9,12.3,10.9v19.9c-2.6,1.4-6.9,2.3-12.1,2.3m5.8-18.2c-7.8.8-13,2.3-13,8.3,0,4.2,3,6.1,7.7,6.1a12.33,12.33,0,0,0,5.3-1.1Zm24.6,18.1c-6.6,0-9.1-4.3-9.1-8.5V87.5H454V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2a4.07,4.07,0,0,0,4.3,4.4,5.66,5.66,0,0,0,1.8-.3v4.1a12.69,12.69,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5,3.65,3.65,0,0,1-3.9,3.5m-3.4,5.5h6.8v31.4h-6.8Zm21.4,32.2a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.21,16.21,0,0,1,8.8,2.3l-1.8,3.9a10.31,10.31,0,0,0-5.7-1.8c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4,0,4.9-4.7,9.7-12.3,9.7m29.4-.1c-6.6,0-9.1-4.3-9.1-8.5V87.5h-4.4V83.4h4.4v-7l6.7-1.9v8.9h6.1v4.1h-6.1v19.2c0,2.5,1.4,4.4,4.3,4.4a5.66,5.66,0,0,0,1.8-.3v4.1a12.06,12.06,0,0,1-3.7.6m12.3-37.6a3.52,3.52,0,1,1,3.9-3.5c.1,2-1.7,3.5-3.9,3.5m-3.3,5.5H543v31.4h-6.8Zm26.2,32.2c-7.7,0-13.6-6.3-13.6-16.6s6.1-16.5,13.7-16.5c3.9,0,6.6,1.1,8,2.3L569,88.6a8.61,8.61,0,0,0-4.9-1.5c-5.5,0-8.3,4.7-8.3,11.8s3.3,11.9,8.2,11.9a8.39,8.39,0,0,0,4.9-1.6l1.7,4.1c-1.5,1.2-4.2,2.3-8.2,2.3m20.6,0a19.46,19.46,0,0,1-9.5-2.3l1.8-4.3a13.21,13.21,0,0,0,6.9,1.9c3.4,0,6.2-2.2,6.2-4.9,0-7.5-13.8-4-13.8-14.2,0-4.7,4.2-9.2,11-9.2a16.85,16.85,0,0,1,8.9,2.3l-1.8,3.9A10.31,10.31,0,0,0,587,87c-3.5,0-5.6,2.1-5.6,4.5,0,7,14,3.9,14,14.4-.1,4.9-4.9,9.7-12.4,9.7" />
                        </g>
                      </svg>
                    </div>
                  </a>
                </div>
              </div>
              <!-- Crest -->
              <div class="ons-grid__col ons-footer__crest ons-u-mb-l@2xs@l"><svg class="ons-icon--logo"
                  xmlns="http://www.w3.org/2000/svg" width="115px" height="96px" viewBox="0 0 85.9 76.31"
                  focusable="false" role="img" aria-hidden="true">
                  <title id="crest-alt"> Royal coat of arms of the United Kingdom </title>
                  <g fill="#222222">
                    <g>
                      <path
                        d="M76.84,41.61l-.2-.02-.54-1.47c.25-.33.39-.85,0-1.11-.53-.21-2.02-1.92-2.47-.81-.19.07-1.37.14-1.47.36-.57-.9-1.05-1.85-1.4-2.92.23-1.23,3.5-2.77,3.5-2.77,0,0-.93-1.33-1.3-2.08-.16.37-.31.21-.67.37,1.81-3.22,2.2-7.46-.2-10.5-.25-.53-.13-1.22-.37-1.74-.42-.55-.7-1.63-1.44-1.74,0,.96-.1,1.89.36,2.78.49.62-.67,1.14-1.03.65.69-.08.81-.22.57-.61-3-.67-4.67,1.43-7.53,1.76-.25,0-.48.09-.62.32-1.76,2.37,2.19.75,2.53,2.33-.66.54-.75.19-1.37.03-.89.03-1.75.31-.64,1.06-.68,1.06-.64,1.44-2.02,1.53.6.84.47,2.06.62,3.02-.98.18-1.65.66-1.67,1.71-.44.1-.92-.13-1.23.35-.62-.51-1.33-.61-2.07-.62-.36-.27-1.23-.9-2.18-1.38.19-.7.36-1.35.53-1.96.28-.18,1.27-.81,1.52-.97-.13-.27-.65-1.32-.8-1.61,1.76-6.07,2.34-6.41,3.23-6.54l.05-.17-3.27-1.05-.06.21c.82.6,1.09,1.59.72,2.76-.87-.38-1.37-1.2-1.28-1.94-.02,0-.22-.06-.22-.06l-1.09,3.63s.16.05.17.05c.43-.62,1.18-.97,2.04-.83-1.01,3.21-5.56,2.21-4.74-.52.58-1.13,1.68-.4,1.15.78,2.55-.89,1.05-4.56-1.14-2.37.72-1.48,1.13-2.64.23-4.07-1.17.76-1.48,2.12-1.25,3.94-1.44-3.29-3.95.1-1.91,1.81-.37-2.44,2.64-.83.6,1.14-1.95,1.38-4.34-.21-4.41-2.63,1.12.1,1.98.77,2.1,1.6.02,0,.21,0,.21,0l.14-4.15s-.23-.01-.25-.01c-.17.84-1.09,1.55-2.24,1.57.08-1.28.81-2.27,1.76-2.44v-.24h-4.79v.24c.95.16,1.68,1.16,1.76,2.44-1.15-.02-2.07-.73-2.24-1.57-.02,0-.25.01-.25.01l.14,4.15s.19,0,.21,0c.12-.83.97-1.5,2.1-1.6-.07,2.43-2.46,4.01-4.41,2.63-2.04-1.97.98-3.58.6-1.14,2.04-1.72-.47-5.1-1.91-1.81.23-1.82-.08-3.19-1.25-3.94-.91,1.43-.5,2.59.23,4.07-2.18-2.19-3.68,1.49-1.14,2.37-.53-1.18.57-1.9,1.15-.78.81,2.73-3.73,3.73-4.74.52.87-.14,1.61.2,2.04.83.02,0,.17-.05.17-.05l-1.09-3.63s-.2.06-.22.06c.09.74-.4,1.56-1.28,1.94-.38-1.16-.11-2.16.72-2.76l-.06-.21-3.27,1.05.05.17c.89.13,1.47.47,3.23,6.54-.14.29-.66,1.33-.8,1.61.25.16,1.25.8,1.52.97.15.56.31,1.15.48,1.78-4.39,2.05-3.4,3.45-6.78,3.05-.3.7-.59,1.39-1.27,1.87-.13-1.07-.6-1.9-1.23-2.66-.31-.36-.74.04-1.21.08-.92,2-1.55.19-3.17,1.24.06.93.21,1.86.72,2.72-1.2-.08-2.2-.41-2.99-.97-3.59,4.01-7.35,7.87-10.42,12.28-1.64,2.17-6.03.91-4.87-2.08.53-2.18,3.68-1.72,3.48.45,1.56-1.73.56-3.45-1.82-3.07,2.18-.95,3.49.84,5.46-1.61-1.5.04-2.78-.44-4.28-.09,1.9-1.14,4.5.55,6.12-2.59-1.41.15-2.69.74-4.15.96,8.77-8.36.33-8.77,1.4-12.39-.69.58-1.08,1.16-.76,1.94-1.96-.82-4.88-.58-5.67-2.97-.19,3.4,1.3,3.15,3.87,3.85-1.18-.14-2.35-.15-3.46-.56.23,1.52,1.38,1.85,2.74,1.7-1.33.74-1.03,2.63.33,3.29-.86-4.92,6.5-3.23,3.14,1.28-1.56,2.33-3.82,4.06-5.72,6.09-.36-.62-.73-1.24-1.56-1.15,1.45,1.67-.19,3.48-.57,5.2-.56,2.13,1.32,3.94,3.34,4.19-.8.95-.87,1.8-.25,2.58.61-3.12,5.14-2.42,5.57-5.8.08-.4.27-.71.71-.89-2.04,2.31,2.87,7.2-1.75,7.77-.66.02-.82.71-.46,1.2-1.91-.1-2.43.63-2.72,2.43.84-.22,1.62-.42,2.41-.62-.83,2.18-2.71-.13-2.4,3.74.77-.37,1.49-.76,2.2-1.2.68,2.17-3.45,1.23-.35,4.7.2-.65,1.03-1.97,1.45-2.27-.38,1.09-.29,2.35.93,2.84.06-.29.11-.55.16-.81.06,0,.05,0,.1,0,.18.72.2,1.73.9,2.14.23.09.36.22.43.46.13.4.5.51.86.56.46.09.57-.42.91-.63.1.57.77.66,1.1,1.15.25-2.82-3.49-1.8-2.63-3.66.33,1.14,1.39.89,2.13,1.35.29.47.99.86,1.35.21.35.26.66.5.97.73-.73-3.35-2.47-1.28-3.56-3.04.76.03,1.58,1.16,2.4.39.44.46.78.99,1.12,1.53.13-1.07-.26-1.89-1.11-2.48-.95-.58-2.24.45-3.05-.71-1.11-1.37-1.08-3.29-.5-4.88.53-1.22,2.01-1.68,2.69-2.83-.19,1.02-.09,2.8,1.06,3.13-.28-1.9,1.07-3.6,1.34-5.44.35-.46.37-.82.05-1.32-.57-.94-.73-2.08-1.37-3-.98-1.38-2.2-1.42-.19-2.87-1.22,1.89-.22,1.2.83,2.98.19-.6,1.09-1.38-.03-1.38-1.77-.87,2.3-3.12,3.22-3.18.91-.07,2.18.03,2.87-.87-.43-.82-.85-.93-.12-1.78-.49-.29-.93-.63-1.02-1.28-.47.16-.89.31-1.38.48.45-.5,1.75-1.52,1.9-.39.03.63.66.75,1.15.91-.36.52-.95,1.04-.41,1.65.38.4.61,1.15,1.19,1.24.16-.59.31-1.15.46-1.73,1.29,1.35-1.29,2.1,2.24,3.32-.13-.73-.24-1.44-.15-2.19,1.71,1.43-.73,2.32,3.19,2.78-.44-.52-.54-1.09-.7-1.68.66.11,1.18.73,1.61,1.2.4.62.7.95,1.63.35.04.11.05.26.13.32.41.32.25.7.24,1.12h.11c.55-.55.58-1.18.41-1.87-.38-1.3-1.97-.27-2.52-1.59.75.51,1.5.81,2.32.38.46.43.65.75.88,1.37.38-1.4-.06-2.83-1.54-2.41-.46.16-.65.13-1.11-.27.69.24,1.14-.11,1.58-.43.1.12.15.26.21.27.42.02.69.28.94.58.14-1.2-1.05-2.17-2.25-1.86-.3,1.47-1.53.64-2.51.44-1.52-.89-2.32-2.59-3.66-3.7.13-1.65-1.24-2.96-2.89-2.86,1.49-.65,3.25.63,3.37,2.18.06.63.44,1.03.84,1.51,5.02-10.1,21.24-12.74,30.55-6.33h0c.79.73,1.66,1.32,2.48,2.08.32-.96.13-2.11,1.57-1.53l.27-.18c-.29-.82.32-1.74,1.17-1.8v.64c-.37.06-.67.43-.61.81.29-.06.55.32.39.56.27.15.65.09.86-.13.24.01.48.04.72.06-.33.78-1.46,1.04-2.1.47h0c.12.17-.43,1.89-.45,2.09-.06.25-.3.42-.55.4.1.17.19.31.28.46.41-.23.98-.21.92-.79.08-.33-.13-1.84.33-1.7.19.57-.17,1.23.26,1.8,1.34-.33.75-1.55,2.38-1.87.65-.06,2.01-.37,2.36.27-1.42-.38-3.26.01-3.57,1.64-1.48.35-2.72,1.41-4.3,1.41-1.25.07-1.59,1.57-1.64,2.6-.21,1.18-.27,2.41-.8,3.51-.26.42-.04.9.1,1.29.48.25.82,1.92.89,2.51,0,1.09,1.86,1.45,2.62,2.12.21-1.36-2.37-.97-2-2.87.46,1.26,1.46,1.52,2.55,2.14-.34-1.27-.45-3.39-2.22-3.12-.69-.95.32-1.01,0-2.14.51.16.75.34.89.65-.16-.05-.3-.1-.52-.16.06.81.76,1,1.29,1.55-.09-1.32-.21-2.15-1.43-2.79-.7-.64.11-2.1.06-2.98-.02-.26,1.64-1.09,1.9-1.01,1.23.16,2.53-.04,3.72.28,1.19.38.17-2.21,2.09-.85-1.39-.41-.54,1.11-1.55,1.19-.7,0-1.3-.06-2.03-.08,2.53,5.63,8.14,3.98,9.68,9,1.29-1.14.41-1.12.05-2.31,2.91,1.94-2.71,4.19-.6,7.6-.13-.38,1.19-1.98,1.34-2.3.24-.36.65-.38.91-.12l.42-.87c-.78-.43.63-2.27.74-2.79.15-.32.48-.46.74-.33l.39-1.09c-.74-.2-.19-2-.24-2.5-1.04-.94-1.9-2.12-2.7-3.21l.5-.08c-.06.25.03.52.24.66.36.14,1.73,1.46,2.16,1.15l.22.58c-.35.09-.41.58-.41.91.18.16.38.3.56.46.03-.12,0-.65.11-.73.16.21.46.22.64.04.17.09-.04,1.25-.02,1.4.2.22.39.45.57.68-.08-.53.58-2.57-.33-2.67ZM62.15,22.63c.19-.02.35-.04.56-.06-.37-.27,0-.63.3-.37.73.57-.73,1.49-.86.43ZM32.95,27.95l-1.54-.98.81-1.64,2.22.79-1.49,1.83ZM37.97,26.68c-2.4.49-2.91-2.16-.5-2.6,2.4-.49,2.91,2.16.5,2.6ZM43.4,26.48l-2.37-1.67,2.37-1.67,2.37,1.67-2.37,1.67ZM50.95,25.74c-.28,1.69-4.08.96-3.71-.71.28-1.69,4.08-.96,3.71.71ZM52.37,26.13l2.22-.79.81,1.64-1.54.98-1.49-1.83ZM70.62,18.36c.44.48.63,1.01.63,1.6-.42-.15-.6-.6-.63-1.6ZM68.62,21.49c-.59.4-1.11.99-1.71.19-.14.03-.25.05-.39.08.89-1.37.81-1.14,2.1-.27ZM63.73,26.46c.39.14.76.35,1.16-.05-.38,0-.5-.27-.6-.52-.18-1.3,1.93-.84,2.71-.75,1.98,1.21,5.35.44,4.18-2.43.92.57.6,2.14-.09,2.75-1.83.99-3.57.25-5.4,2.18-.28-.89-1.33-.84-1.71.14-.35.02-.44.02-.77.04-.06-.51.36-.89.52-1.37ZM70.64,34.96c-.08.1-.25.32-.25.32-1.52-1.74-6.67-3.74-8.89-3.41,0,0,.03-.26.04-.4h-.02s.84-.53.84-.53l-.72-.6c0-.08-.46-3.01-.46-3.01l1.27-.04s-.45.53-.47.96c.07.05.13.12.18.21.26-.11.53-.64.53-.64l.12,1.73s-.35-.5-.61-.59c-.02.06-.05.12-.09.17.37,1.15,2.04,1.22,2.05.23-.06-.51-.62-.43-.59.11-.92-.73.32-1.89.83-.72-.07-.67,0-1.06.52-1.39.35.44.3.85-.08,1.5,1.13-1.05,1.56.73.5.99.52-.93-.97-.64-.42.34.5.76,1.71.65,2.14-.18-.03-.05-.05-.1-.06-.16-.42-.08-1.05.28-1.05.28l.59-1.59s.24.68.6.9c.06-.06.14-.1.23-.12.07-.42-.36-1.08-.36-1.08l1.96.76s-.77.2-1.02.55c.05.07.08.16.08.24.41.08,1.07-.25,1.07-.25l-.7,1.55s-.2-.68-.57-.9c-.05.03-.1.06-.16.07-.28.9.54,1.77,1.43,1.55,1.08-.33.22-1.56-.07-.53-.58-.9.99-1.89,1.06-.39.19-.73.45-1.06,1.01-1.14.15.59-.08.91-.61,1.35,1.21-.51,1.27,1.17.1,1.08.41-.38.05-.81-.35-.48-.7.73.61,1.77,1.63,1.25,0-.06.02-.13.04-.19-.25-.18-.86-.2-.86-.2l1.25-.93s-.15.56-.03.86c.09-.01.19,0,.27.03.27-.27.28-1,.28-1l.94,1.17s-2.35,1.08-2.77,1.4l-.65-.06.32.92h-.02ZM75.25,40.28s-.06-.01-.08-.03l-1.38-.94c-.09-.06-.12-.19-.07-.28.26-.01.54-.14.5-.46.11.13,1.59.92,1.47,1.16-.3-.03-.54.23-.44.55Z" />
                      <path
                        d="M58.56,34.21c.11.11.21.21.3.32.14.04.39.13.44-.09l.35-1.37c-.16.15-.43.16-.56-.04-.11-.12-.13-.3-.04-.44-.17-.03-.44,1.51-.5,1.6Z" />
                    </g>
                    <path
                      d="M38.41,71.75c-3.89-1.54-6.71,2.23-3.54,2.86-3.48.15-2.81-4.75-4.25-4.46,1.26,1.36,1.26,3.89,2.42,4.59,2.34.99,4.77,1.16,7.28,1.04-1.26-1.12-1.57-2.53-1.91-4.03Z" />
                    <path
                      d="M50.28,74.56c3.17-.63.36-4.4-3.54-2.86-.34,1.5-.65,2.91-1.91,4.03,2.51.12,4.94-.05,7.28-1.04,1.16-.7,1.16-3.23,2.42-4.59-1.44-.29-.77,4.61-4.25,4.46Z" />
                    <path
                      d="M75.86,42.9l-.1,1.26c0,.08.02.15.07.19.18-.15.45-.09.58.09.2-.06.14-.69.18-.84-.23-.25-.47-.49-.73-.71Z" />
                    <path
                      d="M75.53,46.88c-.18.03-.38-.06-.46-.23-.24-.1-.86,1.67-.97,1.78.31-.19.71.13.6.49.03-.02.06-.05.08-.09.02-.18,1-1.8.74-1.94Z" />
                    <path
                      d="M85.9,41.35c-.81.25-1.15.92-1.45,1.69-2.04-3.19-5.93-5.39-6.52-9.29.46-3.12,4.59-2.41,3.75.84,2.14-1.15,1.11-3.3-.91-3.68,2.19.18,3.39,2.03,4.89-1.05-1.3.47-3.28.14-3.96.04,2.73-.37,4.22-.34,4.13-3.74-.93,2.03-3.51,2.07-5.38,2.73.12-.9-.16-1.45-.89-1.75.74,4.96-8.66,3.34,1.67,14.04-1.27-.7-2.74-.46-3.97-1.24.96,2.58,2.57,2.13,4.68,3.03-2.27-.01-2.97,2.2-1.29,3.26-.44-1.71,1.91-2.88,3.08-1.55,2.68,3.44-2.23,8.23-6.58-.4.03.48-.3.9-.77.76l-.49,1.37c1,.37-.53,2.29-.64,2.85-.17.37-.56.48-.85.28l-.48,1c.6.55-1.02,2.12-1.2,2.61-.19.28-.52.38-.76.23l-.17.36s.06.08.07.07c1.1,1.3,1.6,2.31,1.31,3.69.89-.77,1.29-2.89.58-4.04.81.84,1.98,1.45,2.44,2.52.47,1.96.11,3.9-1.22,5.44-.56.57-.41.87-.49,1.56-.37,1.1-1.7,1.19-2.19,2.13-.35.82-.93,1.49-1.18,2.35,1.5-.24,1.24-2.33,2.66-2.75-.58.88-1.13,1.67-1.53,2.69,1.18-.31,3.42-.63,3.05-2.3-.28-.77.47-1.28.43-2.01.94-.34.72-.71,1.17-1.45.21.44.22.82.19,1.3-.12-.24-.19-.39-.27-.56-.66.9-.11,1.78-.2,2.74,3.27-2.93-1.07-2.91,2.32-9.4.78-1.29-2.22-1.15-2.44-4.07-.21-1.26.9-2.3,1.13-3.5,1.31,2.32,5.87,2.25,5.25,5.22.92-.69.88-1.96.52-2.92,4.71-1.7.99-6.03,2.51-9.1Z" />
                    <path
                      d="M73.1,50.63c-.11-.11-.27-.16-.38,0-.04.19-1.34,1.65-1,1.84.05,0,.11,0,.16.04.11.04.2.12.23.23.08.01.16-.03.21-.11.04-.11,1.2-1.63,1.07-1.74-.13-.04-.25-.13-.29-.27Z" />
                    <path d="M71.2,52.82s.04.07.06.1l.02-.04-.08-.06Z" />
                    <path
                      d="M24.93,55.75c-1.27,1.56-3.46.61-4.84-.35-1.12-.83,1.3-2.12.52-4.88,1.08,1.74-.88,3.25,2.15,4.22-.88-1.3-.76-2.99-1.09-4.48-.04-.26-.17-.51.04-.77.1-.36.13-.84-.36-.89-3.39-1.94-2.71-1-6-1.45-.81,1.43.91,2.7.64,4.1-.24.69.8.66.78,1.32.23,1.04.12,2.5-1.07,2.9-.59.36-.12,1.11.4,1.29-1.05,1.89-.25,2.2,1.36,3.14,0-.73.02-1.37.32-1.99,2.22,1.47-1.09,1.72,3.31,3.5-.45-.74-.43-1.54-.5-2.27.41.1.82.19,1.23.29.48,2.03,1.58,2.21,3.52,2.03-.69-.69-.89-1.59-1.39-2.3.58.2,1.16-.2,1.67.25.47.09,1,.18,1.45-.03-.71-1.21-1.41-2.4-2.14-3.64Z" />
                    <path
                      d="M70.71,46.72c-1.52,1.07-2.24-.66-5.52,1.36-.6.1-.74.35-.63.94-.67,1.45-.69,3.2-1.83,4.43,2.46-.7,1.92-1.63,2.52-3.5-.12,2.54.01,2.51.93,4.24-1.9,1.33-5,.21-6.04,2.8.29.33.66,0,1.05.09-.25.3-.35.65-.74.91.09-.25.14-.41.19-.56-.71-.24-1.29,1.39-1.82,1.91,5.07-1.02-.61-2.51,9.38-3.67,1.77-.83-1.67-2.13,1.8-4.33.31-1.2.5-2.44,1.15-3.52.15-.36-.09-.86-.42-1.11Z" />
                    <path
                      d="M23.31,21.45c-.78.2-2.16.85-2.16.85-.67-.26-.38.08-.29.4-2.15.4-4.27.96-5.98,2.39-.31.22-.45.09-.55-.35-.2-.31-.3.23-.33.36,0,0-1.29.32-1.86.8.4.66.96,1.69,1.85,1.35.02-.34.04-.66.07-1.02-.38-.07-.73-.13-1.12-.2.46-.35,1.02-.43,1.47-.26-.39,1.64.31,2.79,2.06,2.88.53-.8,1.01-.92,1.53-.36-2.31-.24-.6,2.2.58,1.38.31-.45,1.31-.85,1.02-1.49-1.83-1.34-1.71.64-2.05-2.67-.08,0-.16-.01-.23-.02-.17.63-.79,1.11-1.29.52-.18-.2-.33-.38-.62-.43,1.26-1,2.75.44,2.66-1.91,1.4,1.75,1.52-.19,2.9-.22-.06,1.39-.35,1.28-1.55,1.2.39.3,1.88,1.79,1.01,1.93-.36-.93-.97-1.84-2-2.02-.83.83-.43,1.76-.29,2.72.74-.25,1.37-.73,2.15-.67.26.77-.97,1.19-.27,1.95,1.19.19,2.49.2,2.11-1.49-.39-.23-.77-.39-1.18.04.02-.66.66-.77,1.16-.64,1.1-1.17.73-2.72-.45-3.66.31-.46.64-.78,1.21-.89-.19.4-.59.54-.68.9.26.32.51.62.75.92.64-.28.8-1.27.35-2.29Z" />
                    <path
                      d="M26.35,30.72c.17-2.56-.97-3.84-3.46-4.24,0-.03.02-.07.02-.1,1.04-.05,2.07-.05,3.04.59-.26-.79-.9-1.97-1.84-1.87.34-.71.33-1.17,0-1.6-.16.49-.47.8-.98.82.11.89-.18,1.62-.67,2.28.2.97-.08,1.79-.72,2.55.96,1.71,2.58,3.01,3.3,4.86,1.6-2.99-.11-3.99-2.31-5.63,1.41.51,2.84.99,3.62,2.33Z" />
                    <path
                      d="M18.35,30.37c-.65-.37-1.38-.46-1.82-1.01-.12-.26-.34-.35-.57-.4-.76-.16-1.46-.42-1.84-1.05-.55.17-.89.15-1.4-.06-.04.63.49,1.26,1.19,1.02-.56.82-.25,1.56-.04,2.41.4-.85,1.02-1.36,1.71-1.79-.53.9-1.47,1.81-1.04,2.94.29.72.74,1.55,1.46,1.85-.38-1.41.58-2.64,1.02-3.92,0,2.94-1.66,4.54,2.37,5.62-1.07-1.73-.36-3.83-1.04-5.61Z" />
                    <path
                      d="M30.26,61.29c-4.87-4.53-6.68-10.42-6.26-16.96-.12-.06-.27-.13-.51-.25-.82,6.94,1.86,13.94,7.25,18.41.55-.51-.2-.8-.49-1.19Z" />
                    <path
                      d="M74.22,24.78c-.46.89.87,1.26.89,2.11-.35-.28-.65-.52-.99-.79-.42,1.65,1.53,2.18,2.13,3.48.79-2.41.36-3.87-2.03-4.8Z" />
                    <path
                      d="M21.49,29.13c-.26.05-.5-.31-.81-.02.29.8,1.35,2.41.04,2.78-1.29.08-1.1-1.54-1.48-2.45-.23.26-.43.49-.64.72.27.9.53,1.8.82,2.76.22-.15.39-.28.59-.42.9.64,1.72.2,2.02-.79.27.07.51.18.7-.01-.42-.87-.83-1.71-1.24-2.57Z" />
                    <path
                      d="M73.46,19.67c.15-.7-.03-1.35-.47-1.61,0,.61-.25,1.05-.8,1.29-.27,1.21.99,1.15,1.79,1.4,0,.04-.01.07-.02.11-.4-.02-.81-.04-1.23-.07.45,1.46,2.15.75,3.21,1.42-.61-1.17-1.05-2.31-2.48-2.54Z" />
                    <path
                      d="M74.05,27.62c-.48.92.19,1.8.42,2.67-.03.01-.06.03-.1.04-.26-.39-.51-.78-.77-1.18-.03,0-.07.01-.1.02-.29,1.29.6,2.42,1.16,3.52.97-1.73.93-3.7-.62-5.07Z" />
                    <path
                      d="M73.25,21.88c.56,1.33,1.45,1.01,2.03,1.87-.49-.16-.91-.3-1.34-.44-.03,1.41,1.75,1.56,2.73,2.1-.16-2.28-1.27-3.15-3.42-3.54Z" />
                    <path d="M66.45,17.82c.4.72.9,1.43,1.69,1.67.61,0,1.48.39,1.98.04.01-1.92-2.33-1.67-3.67-1.71Z" />
                    <path
                      d="M61.46,46.92c-.5-.04-.97-.08-1.52-.12.02.27.04.47.05.69.3.08.56.14.84.21.08,1.58-.79,1.61-1.97.95-.35,2.01,2.89,1.81,2.6-1.72Z" />
                    <path
                      d="M61.2,43.35c-.53-.16-1.06-.35-1.53-.68.34-.43.66-.82,1-1.23-.1-.28-.2-.57-.33-.94-1.79,2.19-1.8,2.51.92,3.45-.03-.25-.04-.41-.06-.6Z" />
                    <path
                      d="M51.79,30.7c-.3.89-1.08,1.32-1.52,2.07.72-.05,1.13-.28,1.54-.84.07.21.14.4.21.6.3-.02.56-.04.82-.06.29-1.07-.32-1.19-1.05-1.76Z" />
                    <path d="M57,34.4c-.33.2-1.04.11-.97.64,0,.77,0,1.54,0,2.31l.09.03c.26-.7,1.6-2.44.88-2.98Z" />
                    <path
                      d="M67.18,16.26c.02,1.31,1.38,1.31,2.33,1.42.03-.04.06-.08.08-.12-.76-1.08-1.08-1.3-2.42-1.31Z" />
                    <path d="M66.1,14.44c-.05.92.72,1.45,2,1.39-.33-.93-1-1.44-2-1.39Z" />
                    <path d="M60.15,23.94c.3,1.46,2.03.4,2.94.1-1.05-.49-1.9.13-2.94-.1Z" />
                    <path d="M65.09,12.97c.27.93.63,1.13,1.59.99-.3-.76-.8-1.07-1.59-.99Z" />
                    <path d="M64.26,11.68c.32.78.79,1.08,1.34.81-.37-.79-.56-.89-1.34-.81Z" />
                    <path
                      d="M61.48,38.37c-.13-.13-.39-.13-.6-.2-.02.03-.04.05-.06.08.25.42.5.85.74,1.26.96,0,.15-.8-.08-1.15Z" />
                    <path d="M59.2,38.09c-.42.42-1.42.55-1.15,1.27.49-.28,1-.5,1.44-.85-.1-.15-.18-.26-.29-.42Z" />
                    <path d="M63.34,10.24c.07.56.65,1.04,1.09.97.14-.5-.58-1.17-1.09-.97Z" />
                    <polygon points="53.43 39.15 53.43 39.16 53.43 39.15 53.43 39.15" />
                    <path d="M15.81,19.41c-.27.25.13.66.39.4.27-.25-.14-.65-.39-.4Z" />
                    <path d="M16.16,20.15c-.27.25.13.66.39.4.27-.25-.14-.65-.39-.4Z" />
                    <path
                      d="M16.01,18.34s-.71-.85-.71-.85c.02-.03.03-.05.04-.08l.68.07-.33-.83-.49.4s-.05-.03-.08-.04l-.06-.8c-.2.08-.61.24-.82.32l.51.62s-.03.05-.03.08h0s-.64.05-.64.05l.33.83.45-.52s.05.03.08.04c0,0,.06,1.11.07,1.11h0c.11.97,1.6.37,1-.41Z" />
                    <path d="M12.91,20.96c-.41,0-.42.63,0,.63.41.01.42-.63,0-.63Z" />
                    <path d="M12.84,21.78c-.41,0-.42.63,0,.63.41.01.42-.63,0-.63Z" />
                    <path d="M14.16,18.96c-.41,0-.42.63,0,.63.41.01.42-.63,0-.63Z" />
                    <path d="M13.17,20.21c-.41,0-.42.63,0,.63.41.01.42-.63,0-.63Z" />
                    <path
                      d="M20.65,19.96l-.69.03c.18.28.25.42.26.65-.14-.06-.3-.2-.49-.45l.1,1.09c.13-.19.24-.33.39-.39,0,1.04-.83,1.43-1.13.69-.05-.32.22-.52.5-.23.05-.66-.48-.65-.71-.37.27-.63.17-1.06-.4-1.4-.36.59-.21.98.24,1.44-.43-.22-.83.15-.44.63.08-.42.45-.32.53.01.07.92-1.55,1.18-1.73.2.15-.09.5-.06.88.19l-.32-1.07c-.16.38-.38.53-.64.65-.02-.32.21-.94.21-.94-.32.13-.97.39-1.29.51,0,0,.6.29.8.54-.27.1-.54.14-.91-.03l.5,1c.11-.44.34-.71.51-.74.54.84-.81,1.76-1.4,1.04-.17-.3.03-.62.38-.37-.05-.62-.59-.62-.75-.16.01-.64-.15-1.02-.81-1.21-.17.63.04,1.02.67,1.29-.36-.05-.75.31-.26.76,0-.4.34-.44.52-.17.29.74-.58,1.03-1.3.27.16-.06.33-.03.56.02l-.68-.86c.04.3.01.52-.05.66-.15-.17-.19-.32-.26-.65l-.52.46c.5.31,1.05.8,1.74,1.78.91-.89,4.56-2.42,5.97-2.37-.17-1.18-.11-1.92.04-2.49Z" />
                    <path
                      d="M36.8,47.92c-1.59.47-3.05-1.85-4.46-.58-.56.5-.2,1.6.56,1.63.67.02.86-.91.27-1.19,1.31-.44.68,1.66.21,2.2-1.5-.78-1.75,1.64-.26,1.01.07.43.09.86-.02,1.28-1.62-.35-1.19,1.98.03,1.04.35.33.51.85.55,1.35-1.63.23-.33,2.32.43.92.49.28,1.03.6,1.53.88-1.22,1.48.97,2.12.85.68.82.35,4.03,1.34,2.74-.58-4.22.14-6.37-4.29-4.04-7.67,1.42.65,6.41-1.78,5.99.69.26.28.34.3.93.3,1.44-3.32-3.53-2.32-5.31-1.94Z" />
                    <path
                      d="M41.65,51.36c-.14.02-1.1,8.14-1.6,7.66.1-.54,1.27-7.66,1.27-7.66,0,0-.35-.05-.52-.07-.03.17-.07.38-.07.38l-1.94-2.55-.26.12,2.08,2.73-.13.48c-.19-.12-2.19-2.9-2.39-3.16l-.41-.03,2.7,3.52-.14.47-3.02-3.98h-.39s3.27,4.31,3.27,4.31l-.17.62-3.6-4.89h-.48s3.98,5.26,3.98,5.26l-.15.49-4.39-5.74-.07.44s4.09,5.37,4.34,5.73c-.21.66-.05.72.24,1.27.16.61-.27,1.56-.99,1.34-.07-.03-.14-.04-.23-.07-.11.31-.29.86-.02,1.06,0,0,1.37.58,1.37.58l1.76-1.3.47-7.05-.52.04Z" />
                    <path d="M35.03,50.3s-.08.26-.12.38c.31.41,4.03,5.34,4.03,5.34l.29-.14-4.2-5.57Z" />
                    <path d="M34.86,51.43s-.06.47.16.75c.97,1.23,1.92,2.48,2.87,3.73.14.02.4.07.4.07l-3.43-4.55Z" />
                    <path d="M42.34,50.1c-.47-.04-.96-.13-1.41-.17-.88.77.11,1.21.77,1.15.57.15,1.32-.6.64-.98Z" />
                    <path d="M42.2,69.98c-.14.63.85.83.97.2.14-.63-.85-.83-.97-.2Z" />
                    <path d="M41.89,65.96c-.17.78,1.06,1.03,1.2.25.17-.78-1.06-1.03-1.2-.25Z" />
                    <path d="M37.69,63.88c-.17.78,1.06,1.03,1.2.25.17-.78-1.06-1.03-1.2-.25Z" />
                    <path
                      d="M44.8,72.02c-.33-.2-.76-.41-1.16-.41-.22,0-.42.06-.6.21,1.28.51.82,2.44-.42,2.45-1.24,0-1.7-1.94-.42-2.45-.18-.15-.39-.21-.6-.21-.4,0-.83.2-1.16.41-.37-.48-.73-.96-1.43-1.03.38,3.55,2,5.32,3.62,5.32s3.24-1.77,3.62-5.32c-.7.07-1.06.54-1.43,1.03ZM42.61,75.84c-1.19,0-2.54-1.27-3.03-4.08.15.14.3.32.47.55l.26.34.37-.23c.16-.1.31-.18.45-.23-.16.33-.21.71-.14,1.11.16.84.83,1.44,1.63,1.44.8,0,1.47-.6,1.62-1.44.07-.4.02-.78-.14-1.11.14.06.29.13.45.23l.37.23.26-.34c.17-.22.32-.41.47-.55-.5,2.81-1.84,4.08-3.03,4.08Z" />
                    <path
                      d="M33.04,59.85c-.22-.13-.5-.1-.65.09-.54.61,1.31,1.47,1.57,1.81.23.18.54.15.7-.06.53-.64-1.34-1.49-1.62-1.85Z" />
                    <path
                      d="M34.18,60.13c.95.51,1.77,1.87.3,2.26-.56.11-1.12-.48-1.53-.78.01.8.67,1.45,1.48,1.45,2.08,0,1.81-3.28-.24-2.94Z" />
                    <path
                      d="M36.04,58.3c-.8-.27-3.34.3-4.19.34-.58.07-.99.59-.94,1.17.13.62.11,3.3.56,3.8.46.87,3.13,3.23,3.85,2.11-1.3-.66-3.51-2.29-2.67-4.35-1.92-1.18-.22-3.05,1.27-1.46,1.59-.98,3.36-.28,4.93.81.56-1.22-2.17-2.06-2.81-2.42Z" />
                    <path
                      d="M46.78,9.54c-.1.27-.19.57-.28.88,3.62.91,6.67,3.37,8.5,6.69l1.18.38c-1.87-3.93-5.29-6.89-9.4-7.95Z" />
                    <path
                      d="M40.03,9.54c-4.12,1.06-7.54,4.01-9.4,7.95l1.18-.38c1.83-3.32,4.88-5.78,8.5-6.69-.08-.31-.18-.61-.28-.88Z" />
                    <path d="M52.3,9.83c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M49.31,8.13c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M47.69,7.54c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M50.85,8.89c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M53.63,10.91c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M57.01,17.1c-.01.84,1.31.84,1.3,0,.01-.84-1.31-.84-1.3,0Z" />
                    <path d="M56.22,15.57c-.01.84,1.31.84,1.3,0,.01-.84-1.31-.84-1.3,0Z" />
                    <path d="M54.84,12.13c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M55.28,14.12c-.01.84,1.31.84,1.3,0,.01-.84-1.31-.84-1.3,0Z" />
                    <path d="M34.51,9.83c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M33.17,10.91c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M29.15,16.45c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M35.96,8.89c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M30.88,13.47c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M29.94,14.92c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M39.11,7.54c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M31.96,12.13c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path d="M37.49,8.13c-.84-.01-.84,1.31,0,1.3.84.01.84-1.31,0-1.3Z" />
                    <path
                      d="M45.72,8.42c-1.03,2.27-1.19,5.38-1.19,7.05h.87c0-2.74.4-5.12,1.11-6.69.24-.51-.56-.88-.79-.36Z" />
                    <path
                      d="M41.09,8.42c-.23-.52-1.03-.15-.79.36.72,1.57,1.11,3.95,1.11,6.69h.87c0-1.67-.16-4.79-1.19-7.05Z" />
                    <path d="M43.4,14.05c-.91-.01-.91,1.42,0,1.41.91.01.91-1.42,0-1.41Z" />
                    <path d="M43.4,12.28c-.91-.01-.91,1.42,0,1.41.91.01.91-1.42,0-1.41Z" />
                    <path d="M43.4,10.52c-.91-.01-.91,1.42,0,1.41.91.01.91-1.42,0-1.41Z" />
                    <path d="M42.9,10.2c.3-.16.7-.16,1,0,1.01-1.56-2.01-1.56-1,0Z" />
                    <path d="M42.84,8.72c.33-.2.79-.2,1.12,0,.78-1.46-1.91-1.46-1.12,0Z" />
                    <path
                      d="M45.53,3.96h.23V.76h-.23c-.11.59-.8,1.06-1.71,1.17.11-.9.59-1.6,1.17-1.71v-.23h-3.2v.23c.59.11,1.06.8,1.17,1.71-.9-.11-1.6-.59-1.71-1.17h-.23v3.2h.23c.11-.59.8-1.06,1.71-1.17-.11.9-.59,1.6-1.17,1.71v.23h1.14c-.05.04-.1.09-.14.14-2.04.46-2.25,3.57-.3,4.3-.76-.73-.18-2.15.9-2.11,1.07-.04,1.66,1.38.9,2.11,1.95-.73,1.74-3.84-.3-4.3-.04-.05-.09-.1-.14-.14h1.14v-.23c-.59-.11-1.06-.8-1.17-1.71.9.11,1.6.59,1.71,1.17Z" />
                    <path d="M71,52.45c.02.15.08.28.2.36h0c-.07-.12-.14-.25-.2-.36Z" />
                    <path
                      d="M28.26,49.74c-.18-.04-2.42.37-2.42.37,0,0,2.12-2.48,2.07-2.77l-3.62.41.08.62c.18-.02,2.13-.3,2.13-.3,0,0-1.77,2-1.85,2.03l.2.78,3.59-.44-.17-.71Z" />
                    <path
                      d="M31.25,56.52c-.23.38-.75.76-1.15,1.04l-.93-1.28c.39-.29.91-.67,1.35-.77l-.61-.84c-.64.79-1.97,1.75-2.92,2.11l.61.84c.23-.38.75-.76,1.15-1.04l.93,1.28c-.39.29-.91.66-1.34.77l.61.84c.64-.79,1.97-1.75,2.92-2.11l-.61-.84Z" />
                    <path d="M24.34,45.34l-.05.77c1.02-.19,2.68-.19,3.7,0l.05-.77c-1.02.19-2.68.19-3.7,0Z" />
                    <path
                      d="M53.26,59.47c-1.04-.29.27-1.35.96-1.12h.02s-.52-.63-.52-.63c-.78.34-2.02,1.39-1.36,2.28.46.59,1.38-.04,1.99-.03,1,.18-.08,1.23-.7,1.17h-.01s.39.48.39.48c2.19-.96,1.7-3.14-.77-2.14Z" />
                    <path
                      d="M57.25,50.89l-.59,2.01.59.51h.01c-.04-.47.02-.99.19-1.56l1.08.31c-.11.31-.3,1.03-.45,1.22l.54.08.34-1.17,1.04.3c-.12.39-.29.69-.51.91l.55.51.62-2.12c-.31.02-3.17-.81-3.42-.99Z" />
                    <path
                      d="M56.13,54.27l-.31.59c.11.14,1.94,1.22,1.94,1.22,0,0-3.02.4-3.16.63l2.81,1.93.33-.47c-.14-.09-1.69-1.1-1.69-1.1,0,0,2.48-.28,2.56-.26l.34-.65-2.81-1.88Z" />
                    <path
                      d="M50.97,59.59l-1.86,1.07.08.76h.01c.29-.36.71-.7,1.24-1.01l.58.94c-.3.16-.95.55-1.19.59l.34.42,1.08-.63.55.9c-.37.2-.71.31-1.02.33l.05.74,1.96-1.13c-.25-.19-1.77-2.68-1.83-2.99Z" />
                    <path
                      d="M29.02,38.98c-.58-.46-1.34.36-1.93.5-1.02.06-.21-1.21.4-1.3v-.02s-.49-.36-.49-.36c-.92.47-1.62,2.47-.13,2.51.32.02,1.12-.54,1.39-.61.7-.13.48.81.06,1.03.21,0,.42-.04.62.02.39-.55.64-1.34.07-1.77Z" />
                    <path d="M29.74,35.4v-.68c-2.56-.15-2.52,3.91,0,3.82v-.64c-1.63-.11-1.97-2.93,0-2.5Z" />
                    <path
                      d="M35.74,31.15l-.89-.67-2.72,1.63.31,1.05h.02c.22-.43.55-.78.92-.98.08.15.23.42.42.75,0,0,1.12,0,1.13,0-.43-.67-.77-1.23-.77-1.23.39-.23,1.22-.56,1.59-.54Z" />
                    <path
                      d="M41.75,32.44c-.27-.08-.63-.29-1.08-.63,1.37-1.88-1.47-3.82-2.9-2.11-1.36,1.43.47,3.66,2.16,2.71.58.31,1.28.49,1.82.05v-.02ZM39.67,31.89c-1.21.5-2.38-1.63-1.03-2.14,1.21-.5,2.39,1.61,1.03,2.14Z" />
                    <path
                      d="M45.61,28.81h-1.21c.26.52.16,1.62.18,2.21,0,.43-.4.71-.8.7-1.03.13-.68-2.37-.49-2.91h-1.21c.25.5.17,1.53.18,2.12-.1,1.43,1.31,1.8,2.36,1.06,0,.16-.01.28-.03.35h1.03c-.28-.94-.28-2.59,0-3.53Z" />
                    <path d="M47.44,29.27c.01.93-.49,2.39-.8,3.28q.36.05.74.12c.21-.87.52-2.35,1-3.08l-.94-.31Z" />
                    <g>
                      <path
                        d="M55.02,44.79c0-.2-.22-.34-.41-.28v.04c-.35,1.57-.18-4.9-.21-4.67l.32.13v-.75l-.32.13v-4.77c.05-.24.42-.04.21.12v.04c.44.14.57-.56.1-.57l.29-.51-.07-.07s-.53.29-.53.29c0-.44-.75-.33-.61.09h.05c.16-.19.38.15.13.2h-4.4s.14-.3.14-.3h-.8l.14.3h-4.4c-.26-.04-.04-.39.12-.2h.04c.14-.42-.6-.53-.6-.09,0,0-.53-.29-.53-.29l-.07.07.29.51c-.47,0-.34.71.1.57v-.04c.34-1.57.18,4.88.21,4.65l-.31-.13v.75l.31-.13c-.03-.11.13,6.2-.21,4.66v-.04c-.44-.14-.57.56-.1.57l-.29.51.07.07s.53-.29.53-.29c0,.44.75.33.6-.09h-.04c-.07.1-.25.05-.25-.07,0-.06.05-.12.12-.13h4.41l-.14.3h.8l-.14-.3h4.4c.07,0,.12.06.12.13,0,.12-.18.18-.25.07h-.05c-.14.42.6.53.61.09,0,0,.52.29.53.29l.07-.07-.29-.51c.17,0,.31-.13.31-.29ZM54.1,44.79h-9.58v-5.17h0s0,0,0,0v-5.11h9.58v10.28Z" />
                      <path
                        d="M44.9,43.85v.57h8.82v-9.54h-8.82v8.98ZM48.87,44.14h0s0,0,0,0h0ZM49.75,44.14h0s0,0,0,0h0ZM49.74,35.16h0s0,0,0,0h0ZM45.2,40.07h0s0,0,0,0c0,0,0,.09,0,.09.02-.18.3-.05.16.07l.05.04c.29.03.33-.4.04-.42h0s.35-.16.35-.16v-.1l-.35-.15h0c.3-.03.25-.46-.04-.43l-.05.04c.14.12-.14.25-.16.07,0,.01,0,.1,0,.11h0v-3.79h.3v-.28h3.27c.18.03.03.28-.09.15l-.05.04c-.04.29.45.31.45.02h0l.17.35h.11l.17-.35c0,.29.48.27.45-.02l-.05-.04c-.12.13-.27-.12-.09-.15,0,0,3.27,0,3.27,0v.28h.3c-.03-.07.12,4.65-.16,3.61l-.05-.04c-.29-.03-.33.4-.04.42h0s-.35.17-.35.17v.1l.35.15h0c-.29.03-.25.46.04.43l.05-.04c.28-1.07.12,3.75.16,3.62h-.3v.28h-3.27c-.19-.03-.04-.28.08-.15l.05-.04c.04-.28-.44-.31-.45-.03h0l-.17-.34h-.11l-.16.34h0c-.01-.28-.48-.25-.45.03l.05.04c.12-.13.27.13.08.15h-3.26v-.28h-.3v-3.78ZM53.42,39.23h0s0,0,0,0c0,0,0,0,0,0Z" />
                    </g>
                    <path
                      d="M14.61,19.59c-.76.56-1.21,1.48-1.25,2.5l.21-.18c.08-.88.5-1.67,1.17-2.15-.05-.06-.09-.12-.14-.17Z" />
                    <path d="M14.78,19.28c-.1-.1-.25.05-.16.14.3.3.58.8.81,1.42l.2-.07c-.14-.38-.43-1.07-.86-1.5Z" />
                    <path d="M13.59,19.52c-.41,0-.42.63,0,.63.41.01.42-.63,0-.63Z" />
                    <path d="M19.14,18.36c-.29.29.18.74.46.44.29-.29-.18-.73-.46-.44Z" />
                    <path d="M19.78,18.89c-.29.29.18.74.46.44.29-.29-.18-.73-.46-.44Z" />
                    <path d="M16.84,17.85c-.29.29.18.74.46.44.29-.29-.18-.73-.46-.44Z" />
                    <path d="M18.42,18.02c-.29.29.18.74.46.44.29-.29-.18-.73-.46-.44Z" />
                    <path
                      d="M16.97,18.62c0,.07.02.14.03.22.82-.14,1.67.11,2.35.67l.27-.03c-.75-.69-1.72-1.02-2.66-.86Z" />
                    <path
                      d="M16.79,18.51c0-.14-.21-.13-.21.01,0,.61.3,1.3.47,1.66l.19-.1c-.29-.59-.44-1.15-.45-1.57Z" />
                    <path d="M17.64,17.84c-.29.29.18.74.46.44.29-.29-.18-.73-.46-.44Z" />
                    <path
                      d="M53.71,52.26c-.45-.43-1.2.39-1.65-.07.91-.02,3.04-1.02,1.5-1.86-.86-.14-1.72.28-2.55.47-3.34,1.33-1.38-.3-3.46-.12.7,1.77,2.47.86,3.8.44.04.19-.2.24-.17.44.45-.09.87-.18,1.29-.27.18-.87,1.77-.88,1.04,0-1.83.8-3.99.65-5.91,1.19-1.28,3.35-3.51,1.07-3.49,2.03-.5.05-.49.53.02.49.01.98,2.48-.16,2.94-.45.11-.24.21-.45.32-.67.75.37,1.28-.71,1.93-.91.65-.13,1.49-.76,2.05-.18.61.68,1.53-.36,2.08.33-.2.53.06.3.16.63,0,.3.49.29.5,0,0-.13.01-.21.14-.27.27-.42-.31-.88-.51-1.23Z" />
                    <path
                      d="M54.4,48.72c-.24-.22-1.18.23-1.21-.23.7.16,2.05-.76,1.12-1.35-1.57-.37-3.29.39-4.88.57-.62.14-.31-.88-1.69-.61.89,1.86,2.81.54,4.29.53,0,.17-.28.16-.21.36.43-.13,1.17.1,1.42-.34.13-.53,1.25-.4.92.21-.83.53-2.07.29-3.05.4-1.2.1-2.5.13-3.62.55-.22.69-.53,1.41-1.33,1.58-.56-.54-1.37.1-1.97-.45-.2.04-.23.16-.31.31-.29.11-.4.28-.09.48.15.05.09.23.16.32.79.05,1.58-.16,2.37-.25.59,0,.57-.52,1.01-.6,1.05.05,1.7-.87,2.69-1.02.79-.22,1.86-.52,2.56.04.17.19.41.22.67.18.33-.06.73-.13.91.26-.06.06-.11.12-.19.2.03.07.07.16.11.24.16-.01.19.12.25.23.09.15.3.15.33,0,.04-.19.23-.09.29-.25.03-.48-.07-1.09-.56-1.33Z" />
                    <path
                      d="M52.61,55.59c-1.57-.2-1.33.88-2.1.62.14-.17.52-.27.4-.53-1.15.5-2.35.86-3.5,1.38-.58.62-.39,1.85-1.7,1.96-.05.64-.95,1.07-1.5.79-.22.21-.13.26-.09.46-.19.17-.45.57-.04.56.13-.03.23-.22.36-.16,0,.08-.02.17-.03.26.11,0,.25.04.29-.01.18-.23.44-.04.64-.22.67-.45,1.64-.87,1.58-1.81,1.19-.52,1.88-2.45,3.43-1.77.77.41.97-.83,1.66-.85.2.45.29.42.53.27.43.33.36-.19.53-.43.02-.24-.22-.51-.47-.51Z" />
                    <path
                      d="M47.51,47.47c-.12-.29-.57-.07-.68-.41-.28-.39-.66-.07-.89.19-.17.02-.34-.07-.51.01-.17.3.29.48.1.79-.25.71,0,1.66.67,2.05.76-.34,1.24-1.33.98-2.16.18-.15.4-.23.34-.48Z" />
                    <path
                      d="M46.65,55.88c-.22-.46-.68-.51-1.01-.12-.11.14-.28.09-.43.11-.31.15-.14.49.14.57-.15.53-.23,1.07-.02,1.59.74,1.76,1.84-.48,1.57-1.43.51-.42.37-.67-.25-.71Z" />
                    <path
                      d="M47.35,51.48c-.14-.08-.32-.09-.48-.07-.26-.69-.73-.43-1.12-.02-.57-.23-.48.29-.18.56-.28.7-.09,1.73.65,2.03.78-.33,1-1.27.95-2.04.24-.04.44-.31.18-.46Z" />
                    <path
                      d="M52.96,53.79c-1.4-.47-3.6,2.58-4.54,1.68-.23-.49-.92-.44-1.36-.3.53.38.81,1.21,1.61.94.9-.18,1.61-.9,2.39-1.24.02.26-.25.37-.36.62.53-.17,1.02-.32,1.41-.66-.07-1.47,2.04-.44.02.47.36,0,.61.17.85-.13.47-.41.49-1.01-.03-1.39Z" />
                    <path
                      d="M49.78,57.2c-.41.1-.82.14-1.08.56.1.14.2.27.31.41-.2.51-.7.42-1.18.45.04.16.07.25.1.36-.2.11-.28.28-.24.54.05.02.12.04.18.06.13-.16.37-.33.43-.02.86-.28,1.63-.81,2.04-1.61-.24-.19-.45-.41-.56-.74Z" />
                    <path
                      d="M50.76,52.78c-.41.13-.87.12-1.12.49.15.16.27.29.42.44-.28.15-.59.41-.89.16-.12-.11-.46-.06-.38.16.01.03,0,.08-.01.11-.05,0-.09.01-.14.02-.18,0-.22.23-.1.34.12.14.24-.01.38.03,0,.08,0,.14.01.2.75.04,1.89-.63,2.29-1.23-.16-.25-.31-.48-.47-.73Z" />
                    <path
                      d="M44.52,57.14c.25-.35.14-.79-.33-.51-.12-.24-.29-.28-.51-.22-.06.15-.09.3.07.41,0,0,0,.05,0,.07-.05.02-.1.03-.15.05-.12.3.18.47.29.71.32.51.8,1.75,1.55,1.1-.28-.54-.72-1.04-.92-1.61Z" />
                    <path
                      d="M44.8,47.8c.07-.14.05-.31-.1-.42q-.25.07-.44-.05c-.33-.16-.37.2-.34.43-.06.03-.12.06-.21.1.23.65.9,2.26,1.75,1.94-.04-.75-.91-1.23-.65-1.99Z" />
                    <path
                      d="M44.72,52.24c.04-.15-.02-.31-.15-.44-.28.08-.86-.55-.65.2-.17.06-.27.18-.16.34.32.49.41,1.26.95,1.55.25,0,.63.23.78-.07-.16-.58-.88-.92-.77-1.58Z" />
                    <path
                      d="M41.13,35.59c-.28.13-.65.26-.87-.07.48-.2,1.08-.15,1.41-.6.25-.3.22-.9-.25-1.06-1.22-.34-2.51.28-3.75.39-2.32.63-.66-.5-2.5-.49.66,1.88,2.63.67,4.01.53-.1.22-.32.31-.41.5.48-.09,1.12.09,1.48-.29.19-.52,1.41-.58,1.12.13-1.16,1.13-4.78.07-6.4.8-.24.74-.67,1.23-1.37,1.43-.58-.36-.84.05-1.41-.11-.16-.18-.32-.38-.57-.18,0,.08,0,.16,0,.26-.27-.08-.58.3-.29.47.12,0,.24-.13.36,0-.01.06-.02.12-.03.19.76.33,1.6-.04,2.36-.25.3-.09.47-.4.8-.39.78.06,1.23-.6,1.9-.79.83-.16,1.67-.29,2.52-.27.97,1.33,1.15.2,2.02.65-.03.13-.05.26-.08.39.09.03.16.05.23.08-.09.33.41.52.47.1,0-.05-.01-.11.06-.12.52-.28-.28-1.66-.83-1.3Z" />
                    <path
                      d="M35.02,34.32c-.03-.1-.05-.19-.08-.28-.17,0-.33-.01-.48-.02-.34-.44-.55-.45-.96-.05q-.28-.11-.47.14c.07.14.16.25.31.32-.43.78-.3,1.49.21,2.15.95.03,1.34-1.26,1.18-2.05.1-.07.19-.13.29-.2Z" />
                    <path
                      d="M39.22,36.17c-.11-.43-.91-.08-1.23-.06-.04.22.16.31.19.48-.25.17-.53.17-.8.21-.14-.14-.2-.4-.45-.33-.14.03-.06.18-.17.24q-.28-.02-.32.26c.08.05.17.1.26.15-.21.98,2.47-.04,2.87-.33-.13-.22-.3-.37-.35-.63Z" />
                    <path
                      d="M32.59,35.25c-.3-.31-.4-.74-.09-1.08-.16-.15-.36-.03-.51-.24-.19-.22-.31.03-.36.27-.55.08-.23.26-.11.55.18.5.83,1.71,1.46,1.48-.03-.34-.11-.75-.39-.99Z" />
                    <path
                      d="M41.06,39.9c-.28.13-.66.27-.88-.07.49-.2,1.09-.15,1.42-.61.25-.3.23-.91-.25-1.07-1.23-.34-2.53.28-3.78.39-2.34.63-.67-.5-2.52-.49.66,1.9,2.66.68,4.04.54-.1.22-.33.31-.42.51.49-.09,1.13.09,1.5-.29.19-.52,1.43-.58,1.13.13-1.17,1.14-4.82.07-6.45.8-.24.74-.67,1.24-1.38,1.44-.49-.3-.76-.06-1.18-.07.02.14.06.27.09.41.03.14.05.28.06.42.49-.05.99-.24,1.45-.37.3-.09.48-.4.81-.39.79.06,1.24-.61,1.92-.8.84-.16,1.69-.29,2.54-.28.98,1.34,1.16.2,2.04.66-.03.13-.05.26-.08.4.09.03.16.06.23.08-.09.33.41.53.48.1,0-.05-.01-.12.06-.12.52-.29-.28-1.67-.84-1.31Z" />
                    <path
                      d="M34.91,38.62c-.03-.1-.05-.19-.08-.29-.17,0-.33-.01-.48-.02-.35-.45-.56-.46-.97-.05q-.28-.11-.47.14c.07.14.16.25.31.32-.43.79-.31,1.5.21,2.16.96.03,1.35-1.27,1.19-2.07.1-.07.19-.13.29-.2Z" />
                    <path
                      d="M39.14,40.49c-.11-.43-.91-.08-1.24-.06-.04.22.16.32.2.49-.26.17-.53.18-.81.21-.14-.14-.2-.4-.45-.33-.14.03-.06.18-.17.24q-.28-.02-.32.26c.08.05.17.1.26.15-.21.99,2.49-.04,2.89-.33-.13-.22-.3-.37-.35-.63Z" />
                    <path
                      d="M32.45,39.55c-.31-.32-.41-.75-.09-1.09-.16-.15-.36-.03-.52-.24-.2-.22-.31.03-.36.27-.55.08-.23.26-.11.55.18.51.83,1.72,1.47,1.5-.03-.35-.12-.75-.39-.99Z" />
                    <path
                      d="M41.16,43.94c-.28.13-.66.26-.88-.07.49-.2,1.09-.15,1.42-.61.25-.3.23-.91-.25-1.07-1.23-.34-2.53.28-3.77.39-2.33.63-.67-.5-2.52-.49.66,1.9,2.65.68,4.03.54-.1.22-.33.31-.42.51.49-.09,1.13.09,1.5-.29.19-.52,1.42-.58,1.13.13-1.16,1.14-4.82.07-6.44.8-.24.74-.67,1.23-1.38,1.44-.58-.36-.84.05-1.42-.11-.06-.06-.11-.13-.17-.18-.02,0-.03-.02-.04-.03-.02-.01-.04-.03-.07-.04,0,0,0,.02,0,.03.01.34-.07.67-.2.98.76.3,1.58-.07,2.33-.27.3-.09.48-.4.81-.39.79.06,1.24-.6,1.91-.79.84-.16,1.69-.29,2.54-.28.98,1.34,1.16.2,2.04.66-.03.13-.05.26-.08.4.09.03.16.06.23.08-.09.33.41.53.47.1,0-.05-.01-.12.06-.12.52-.29-.28-1.67-.84-1.31Z" />
                    <path
                      d="M35.01,42.66c-.03-.1-.05-.19-.08-.29-.17,0-.33-.01-.48-.02-.35-.45-.56-.45-.97-.05q-.28-.11-.47.14c.07.14.16.25.31.32-.43.79-.31,1.5.21,2.16.96.03,1.35-1.27,1.19-2.06.1-.07.19-.13.29-.2Z" />
                    <path
                      d="M39.24,44.53c-.11-.43-.91-.08-1.24-.06-.04.22.16.32.2.49-.26.17-.53.18-.81.21-.14-.14-.2-.4-.45-.33-.14.03-.06.18-.17.24q-.28-.02-.32.26c.08.05.17.1.26.15-.21.99,2.49-.04,2.89-.33-.13-.22-.3-.37-.35-.63Z" />
                    <path
                      d="M32.56,43.59c-.06-.06-.11-.12-.15-.19-.02.18.08.38.04.56-.02.14-.06.34-.1.47.22.22.35.24.6.15-.03-.35-.12-.75-.39-.99Z" />
                    <path
                      d="M48.4,37.73c-.46-.4-.74-.8-.75-1.16-.02-.12.26-.28.24-.39-.01-.42-.36.05-.5-.02-.08-.12-.33-.46-.49-.3-.1.05.02.29-.05.35-.04.05-.06.06-.17.05-.37,0-.42.23-.12.37.21.13.37.75.49.84.24.32.74,1.16,1.23.98h0c.15-.07.28-.5.29-.56,0-.02-.09-.09-.18-.16Z" />
                    <path
                      d="M50.91,36.35c-.08-.15-.26-.04-.52-.12-.19-.09-.68-.24-.88-.13-.14.17-.98.19-.83.44.03.09.09.3.09.3l.38.04v.28s-.27.06-.36.08c-.23.33.55.36.75.1.14-.16.35-.19.35,0-.1.22-.47.33-.69.44-.32.05-.41.69-.66.9-.7.13-.96.11-1.65-.45-.25-.29-.46-.07-.26.16-.12.04-.77-.32-.48.3l.05.06c-.32.46.16.3.42.44.57.23,1.19.4,1.92.27.12-.12.5-.48.54-.56.04-.08.05-.09.31-.11.72-.1,1.08-.4,1.29-1.17.1-.23-.03-.73-.18-.84-.06-.04-.08-.12-.05-.14.13-.02.41-.13.46-.29Z" />
                    <path
                      d="M52.71,36.6c-1.04.07-2.06.77-1.55,1.93.32.66.25.61-.37.48l.3.62s.64.29.73.37c.36.26.3.99-.02.91-.53-.22-.85-.97-1.22-1.43-.1-.08-.35-.84-.52-.64-2.19.49.4,1.05,0,1.87-.08.12-.32.68-.22.77.18.23.6.39.82.68.36.35.04.75-.41.43-.25-.19-.55.08-.29.34.02.05-.15.12-.18.14-.26.36.17.34.4.16.13-.06,0,.32.21.25.4-.09,1.02-.29,1.13-.92.25-.57-.33-.48-.47-.98-.14-.21-.15-.96.16-.68.29.36.68.57,1.04.25.33-.31.03-1.06-.14-1.39-.32-.66-.68-1.3-.66-2.09.44-.53.96.41,1.27-1.05Z" />
                    <path
                      d="M49.12,40.26c-.55-.03-.97-.07-.82.58.03.16.09.63.18.74.04.06.03.13-.02.17-.22.12-1.06-.22-.96-.5,0-.24-.24-.29-.31-.12-.04.08-.1.07-.18-.02-.15-.22-.37.08-.28.24.03.07,0,.14-.09.15-.23.09-.22.41.1.42.7.32,1.31.66,2.12.54h-.01c.89-.07.43-.23.39-.85-.15-.66.98-1.1-.14-1.36Z" />
                    <path
                      d="M51.8,49.05c-.42.03-.83-.03-1.2.17-.04.19.1.3.19.46-.3.13-.57.19-.85.06-.06-.05-.2,0-.22.04,0,.3-.31.21-.41.42.06.12.15.22.29.21.17-.02.16.19.31.21.73-.33,1.6-.25,2.22-.82-.23-.2-.29-.47-.34-.75Z" />
                    <path
                      d="M61.65,41.53c-.29-.62-.96-4.08-1.92-3.32,4.42,8.25,1.47,19.09-6.19,24.31-2.25,1.36-5.04,3.61-7.7,2.11,1.72-6.69,9.95-3.87,11.74-16.62-.22-.11-.3-.18-.51-.21-.26,1.78-.71,3.5-1.37,5.14.71-1.9.26-7.84.39-8.17-.07-.1-.15-.13-.4-.43.04.72,0,.98,0,1.93h-12.49v-13.03h12.26v7.35s.05.39.07.52c.17-.27.19-.26.31-.35v-7.9h-25.71l-.02,6.66h.38v-6.28h12.33v13.03h-11.9s0-.2-.03-.17c0-.04-.08.2-.08.17h-.33c0-.61,0-.98,0-1l-.38-.02c-.28.98.54,9.15,1.88,10.59-2.68-2.6-3.53-7.22-3.03-10.7,0,0-.25-.19-.52-.44-.84,4.9,1.01,9.74,4.45,13.25.3.32.63-.02.99-.12-.07-.08-.24-.2-.35-.36.14.14.26.26.35.36l-.19-.53c-2.7-2.06-3.14-7.95-3.2-10.65h12.34s0,16.33-.02,16.37c-2.62-.13-4.4-2.98-6.93-3.01,3.64,2.16,10.29,7.36,14.5,5.08.03.04.03.03.06.07-.44.55-2,1.6-2.69,1.33-1.14-.69-2.91.57-2.1,1.84.1.15.17.28.05.48-4.55-.43-8.63-3.14-12.46-5.47-.04.04-.03.03-.07.07,1.47,1.98,6.71,4.45,6.71,4.45v2.95s.33.22.55.37v-3.19c1.38.47,4.16,1.35,4.16,1.35v1.99s.54-.34.54-.34l-.03-1.49.74-.21c.47-.13.77-.58.71-1.06-.22-.11-.38-.34-.31-.65.11-.58.81-.59,1.1-.24.57.25,1.13-.43,1.69-.59.79-.48,1.77-.9,2.13-1.81.07-.23.19-.36.38-.48,1.6-.91,3.14-1.91,4.44-3.21,5.57-4.71,7.51-12.79,5.66-19.72ZM43.21,46.64h12.49c1.02,9.54-4.57,12.74-12.49,16.06v-16.06ZM43.43,63.69c.88-.79,1.5-1.06,2.63-1.33-.31.71-.61,1.38-.93,2.09-.57-.25-1.13-.5-1.7-.76Z" />
                    <g>
                      <path
                        d="M31.62,64.6h0c-7.07.01-14.11,3.03-21.18,3.03-.85,0-1.7-.04-2.54-.14,2.19,1.73,2.04,5.2,5.22,5.2.14,0,.28,0,.43-.02,4.33-.46,8.64-1.68,12.9-2.36.73-.11,4.26-.97,6.33-.97.74,0,1.3.11,1.46.41.22.41-1.18,1.59-1.19,1.64,0,.01,0,.02.02.02.14,0,.91-.45,1.5-.83,2.31-1.66-2.53-5.97-2.94-5.97ZM16.73,70.47c-.38.91-1.54,1.12-2.43,1.28.04-.28-.51-2.93-.67-3.17,1.55-.67,3.78-.02,3.11,1.89ZM17.65,71.05c.05-.92-.27-2.38-.68-3.2l.9-.17c-.05.92.27,2.37.68,3.19l-.9.17ZM21.15,70.37l-1.87.37c.02-.48-.58-2.96-.74-3.19l2-.38-.2.63c-.27-.08-.59-.08-.95,0l.22.94,1.08-.24.17.46c-.21-.03-.87.13-1.16.18l.23.98c.53-.12.97-.29,1.32-.53h.01s-.11.79-.11.79ZM23.01,69.98c-1.35.03-1.67-1.92-1.88-2.93l.62-.12c.31.83.28,2.85,1.67,2.59.84-.22.25-2.17.07-2.92l.58-.13c.25,1.28.91,3.64-1.06,3.51ZM28.36,68.98l-1.84.35c.04-.28-.63-2.93-.79-3.17l1.98-.37-.13.76c-.27-.07-.59-.07-.95,0l.23.94,1.08-.25.18.46c-.21-.03-.86.13-1.16.19l.24.98c.53-.12.97-.3,1.31-.54h.01s-.15.65-.15.65ZM30.32,65.87l.53,2.69-.62.11-.54-2.67c-.38.07-.59.07-1.11.29l-.02-.6,2.67-.35.18.51c-.24-.09-1.09.02-1.09.02Z" />
                      <path
                        d="M15.57,68.94c-.29-.17-.64-.23-1.06-.16.09.63.32,1.81.5,2.42,1.18-.17,1.53-1.64.56-2.26Z" />
                    </g>
                    <g>
                      <path
                        d="M74.35,67.62c-.89,0-1.73-.01-2.14-.05-4.66-.45-9.27-1.79-13.92-2.52-1.34-.21-2.44-.41-3.39-.41-1.97,0-3.32.86-4.91,4.24-.68,1.29,1.59,2.52,2.09,2.57-1.87-1.59-1.22-2.06.26-2.06,2.03,0,5.64.9,6.34.99,4.26.68,8.57,1.9,12.9,2.36.15.01.3.02.44.02,3.18,0,3.03-3.47,5.22-5.2-.39.04-1.68.06-2.89.06ZM56.82,65.75c-.11.1-.48,2.74-.46,3l-.71-.14c.13-.23.3-2.07.3-2.07l-1.22,1.9-.72-2.14s-.29,1.54-.3,2.03l-.7-.1c.22-.36.66-3.08.66-3.08l.72.14c.02.14.57,1.99.57,1.99,0,0,.96-1.61,1.02-1.69l.85.16h0ZM59.44,68.09c-.64,2.17-3.14.98-2.4-.95.63-2.1,3.14-.99,2.4.95ZM61.9,69.99c-.22-.05-1.4-2.45-1.4-2.45,0,0-.29,1.87-.36,2l-.54-.08.61-2.94.6.08c0,.08.94,2.06.94,2.06,0,0,.31-1.61.34-1.75l.46.13-.65,2.95ZM64.69,70.25c-.42.15-1.02-.02-1.46-.1l.59-3.02c1.96-.13,2.78,2.41.87,3.13ZM68.17,68.85c-.09.34-.34.58-.76.71.18.6.29.79.6,1.44h0s-.48-.06-.48-.06c-.1-.06-.7-.89-.87-1.35-.1.37-.21.85-.17,1.19l-.81-.12c.15-.23.78-2.71.76-2.97.7.09,1.95.21,1.73,1.16ZM69.72,71.25c-1.8.34-1.8-2.7-.35-3.12,1.81-.38,1.81,2.71.35,3.12ZM71.6,69.47c-.07.54-.32,1.63-.22,2.14l-.7-.1c.31-.79.52-2.13.47-2.98l.7.1c-.11.24-.2.52-.25.84ZM73.26,69.34s-.41,2.33-.39,2.53l-.7-.13s.43-2.04.54-2.49c-.25-.05-.54-.03-.81.08h0s.28-.59.28-.59l1.9.34.13.65c-.16-.16-.67-.33-.94-.38Z" />
                      <path d="M58.53,66.44c-1.11-.3-1.53,1.98-.6,2.37,1.13.3,1.54-1.97.6-2.37Z" />
                      <path d="M64.37,67.59c-.15.59-.38,1.7-.46,2.3,1.39.29,1.82-2.03.46-2.3Z" />
                      <path d="M67.03,68.11l-.32,1.17c.9.17,1.29-1.02.32-1.17Z" />
                      <path d="M69.81,68.53c-1.06-.26-1.41,1.95-.52,2.3,1.08.26,1.41-1.94.52-2.3Z" />
                    </g>
                  </g>
                  <path
                    d="M29.12,52.54c-.12-.3-.31-.54-.57-.72-.26-.18-.57-.29-.91-.31-.34-.02-.69.04-1.02.19-.51.21-.86.54-1.06.99-.2.46-.2.9,0,1.35.11.29.31.52.58.7.27.18.57.28.91.31.34.03.67-.03.98-.17.31-.12.57-.31.78-.55.22-.25.36-.53.42-.85.06-.32.03-.63-.1-.93ZM28.5,53.6c-.2.34-.5.58-.89.74-.34.15-.66.18-.95.09-.3-.09-.49-.25-.59-.5-.14-.3-.1-.62.09-.97.2-.35.49-.6.87-.75.33-.14.64-.17.94-.09.3.08.51.25.62.51.14.31.11.63-.1.96Z" />
                  <path
                    d="M71.43,54.54l.37-.81c-.19-.28-.35-.55-.54-.82l-.62,1.27c-.34-.12-.71.04-.86.37l-.89,1.98c-.15.33-.01.72.3.89l-.62,1.38h-.02c-.38,0-.7.31-.7.7v2.17c0,.34.24.62.57.68v.31c-.83.2-1.45.94-1.45,1.83,0,1.04.85,1.89,1.89,1.89s1.89-.85,1.89-1.89c0-.89-.62-1.64-1.45-1.83v-.3h.01c.38,0,.7-.31.7-.7v-2.17c0-.31-.21-.57-.49-.66l.47-1.06c.07.03.15.04.23.04.08,0,.17-.02.25-.05.17-.07.31-.2.39-.36l.89-1.98c.08-.17.08-.36.01-.53-.06-.16-.17-.28-.31-.36ZM70.04,64.5c0,.65-.53,1.18-1.18,1.18s-1.18-.53-1.18-1.18c0-.5.31-.93.75-1.1v.35c0,.21.17.38.38.38h.1c.21,0,.38-.17.38-.38v-.35c.44.17.75.6.75,1.1ZM69.47,61.67c0,.09-.08.17-.17.17h-.01v-.16c0-.21-.17-.38-.38-.38h-.1c-.21,0-.38.17-.38.38v.1s-.04-.06-.04-.1v-2.17c0-.09.08-.17.17-.17h.04s.07.07.12.09l.09.04c.17.08.36.02.47-.13h.03c.09,0,.17.08.17.17v2.17ZM71.25,55.22l-.89,1.98s-.05.07-.09.09c-.03.01-.06.01-.08,0,.03-.17-.06-.34-.22-.42l-.09-.04c-.16-.07-.35-.02-.46.11-.05-.05-.08-.13-.05-.2l.89-1.98s.05-.07.09-.09c.02,0,.04-.01.06-.01.02,0,.05,0,.07.01h.03c.03.12.1.21.21.26l.09.04c.11.05.23.04.33,0h.03s.07.06.09.11c.02.04.02.09,0,.13Z" />
                  </g>
                </svg></div>
            </div>
          </div>
        </div>
      </footer>
    </div>
    <!-- prettier-ignore-start -->
    <script>
      (function() {
        var s = ['https://cdn.ons.gov.uk/sdc/design-system/73.6.0/scripts/main.js'],
          c = document.createElement('script');
        if (!('noModule' in c)) {
          for (var i = 0; i < s.length; i++) {
            s[i] = s[i].replace('.js', '.es5.js');
          }
        }
        for (var i = 0; i < s.length; i++) {
          var e = document.createElement('script');
          e.src = s[i];
          document.body.appendChild(e);
        }
      })();
    </script>
    <!-- prettier-ignore-end -->
    <div class="embeddable"></div>
    <style>
      body {
        height: auto;
      }
    </style>
    <script src="/js/main.js?t=1781701989638"></script>
  </body>

</html>

Help improve this page

Let us know how we could improve this page, or share your user research findings. Discuss the ‘Guide’ pattern on GitHub (opens in a new tab)