diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d87d8463585ae5ed01fbb0d4c4db6a42ae9820b2..7b9c814d46e7abc3508edefd91315594489a4009 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,8 @@
 image: node:16.14.2-slim
 
+include:
+  - template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
+
 stages:
   - build
   - 🧪 test
@@ -13,14 +16,8 @@ variables:
   tags:
     - cache
   cache:
-    key:
-      files:
-        - package-lock.json
     paths:
       - node_modules/
-  rules:
-    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
-    - if: $CI_MERGE_REQUEST_IID
 
 .cache-push:
   extends: .cache
@@ -37,9 +34,6 @@ install_dependencies:
   stage: build
   script:
     - npm ci
-  rules:
-    - changes:
-        - package-lock.json
 
 lint:
   extends: .cache-pull
diff --git a/docs/intro.md b/docs/intro.md
deleted file mode 100644
index 8a2e69d95f9f7de70b8fb31dbf98fbb27deb7012..0000000000000000000000000000000000000000
--- a/docs/intro.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-sidebar_position: 1
----
-
-# Tutorial Intro
-
-Let's discover **Docusaurus in less than 5 minutes**.
-
-## Getting Started
-
-Get started by **creating a new site**.
-
-Or **try Docusaurus immediately** with **[docusaurus.new](https://docusaurus.new)**.
-
-### What you'll need
-
-- [Node.js](https://nodejs.org/en/download/) version 16.14 or above:
-  - When installing Node.js, you are recommended to check all checkboxes related to dependencies.
-
-## Generate a new site
-
-Generate a new Docusaurus site using the **classic template**.
-
-The classic template will automatically be added to your project after you run the command:
-
-```bash
-npm init docusaurus@latest my-website classic
-```
-
-You can type this command into Command Prompt, Powershell, Terminal, or any other integrated terminal of your code editor.
-
-The command also installs all necessary dependencies you need to run Docusaurus.
-
-## Start your site
-
-Run the development server:
-
-```bash
-cd my-website
-npm run start
-```
-
-The `cd` command changes the directory you're working with. In order to work with your newly created Docusaurus site, you'll need to navigate the terminal there.
-
-The `npm run start` command builds your website locally and serves it through a development server, ready for you to view at http://localhost:3000/.
-
-Open `docs/intro.md` (this page) and edit some lines: the site **reloads automatically** and displays your changes.
diff --git a/docs/tutorial-basics/_category_.json b/docs/tutorial-basics/_category_.json
deleted file mode 100644
index 2e6db55b1eb61147f3aef1965dbdd79fdd505406..0000000000000000000000000000000000000000
--- a/docs/tutorial-basics/_category_.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
-  "label": "Tutorial - Basics",
-  "position": 2,
-  "link": {
-    "type": "generated-index",
-    "description": "5 minutes to learn the most important Docusaurus concepts."
-  }
-}
diff --git a/docs/tutorial-basics/congratulations.md b/docs/tutorial-basics/congratulations.md
deleted file mode 100644
index 04771a00b72f80ee4d829890a8229085da77db4d..0000000000000000000000000000000000000000
--- a/docs/tutorial-basics/congratulations.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-sidebar_position: 6
----
-
-# Congratulations!
-
-You have just learned the **basics of Docusaurus** and made some changes to the **initial template**.
-
-Docusaurus has **much more to offer**!
-
-Have **5 more minutes**? Take a look at **[versioning](../tutorial-extras/manage-docs-versions.md)** and **[i18n](../tutorial-extras/translate-your-site.md)**.
-
-Anything **unclear** or **buggy** in this tutorial? [Please report it!](https://github.com/facebook/docusaurus/discussions/4610)
-
-## What's next?
-
-- Read the [official documentation](https://docusaurus.io/)
-- Modify your site configuration with [`docusaurus.config.js`](https://docusaurus.io/docs/api/docusaurus-config)
-- Add navbar and footer items with [`themeConfig`](https://docusaurus.io/docs/api/themes/configuration)
-- Add a custom [Design and Layout](https://docusaurus.io/docs/styling-layout)
-- Add a [search bar](https://docusaurus.io/docs/search)
-- Find inspirations in the [Docusaurus showcase](https://docusaurus.io/showcase)
-- Get involved in the [Docusaurus Community](https://docusaurus.io/community/support)
diff --git a/docs/tutorial-basics/create-a-blog-post.md b/docs/tutorial-basics/create-a-blog-post.md
deleted file mode 100644
index ea472bbaf8713ca7c51b135eb3524346232a6adf..0000000000000000000000000000000000000000
--- a/docs/tutorial-basics/create-a-blog-post.md
+++ /dev/null
@@ -1,34 +0,0 @@
----
-sidebar_position: 3
----
-
-# Create a Blog Post
-
-Docusaurus creates a **page for each blog post**, but also a **blog index page**, a **tag system**, an **RSS** feed...
-
-## Create your first Post
-
-Create a file at `blog/2021-02-28-greetings.md`:
-
-```md title="blog/2021-02-28-greetings.md"
----
-slug: greetings
-title: Greetings!
-authors:
-  - name: Joel Marcey
-    title: Co-creator of Docusaurus 1
-    url: https://github.com/JoelMarcey
-    image_url: https://github.com/JoelMarcey.png
-  - name: Sébastien Lorber
-    title: Docusaurus maintainer
-    url: https://sebastienlorber.com
-    image_url: https://github.com/slorber.png
-tags: [greetings]
----
-
-Congratulations, you have made your first post!
-
-Feel free to play around and edit this post as much you like.
-```
-
-A new blog post is now available at [http://localhost:3000/blog/greetings](http://localhost:3000/blog/greetings).
diff --git a/docs/tutorial-basics/create-a-document.md b/docs/tutorial-basics/create-a-document.md
deleted file mode 100644
index ffddfa8eb8aca79bb1b384b6270f86a695c9f43f..0000000000000000000000000000000000000000
--- a/docs/tutorial-basics/create-a-document.md
+++ /dev/null
@@ -1,57 +0,0 @@
----
-sidebar_position: 2
----
-
-# Create a Document
-
-Documents are **groups of pages** connected through:
-
-- a **sidebar**
-- **previous/next navigation**
-- **versioning**
-
-## Create your first Doc
-
-Create a Markdown file at `docs/hello.md`:
-
-```md title="docs/hello.md"
-# Hello
-
-This is my **first Docusaurus document**!
-```
-
-A new document is now available at [http://localhost:3000/docs/hello](http://localhost:3000/docs/hello).
-
-## Configure the Sidebar
-
-Docusaurus automatically **creates a sidebar** from the `docs` folder.
-
-Add metadata to customize the sidebar label and position:
-
-```md title="docs/hello.md" {1-4}
----
-sidebar_label: 'Hi!'
-sidebar_position: 3
----
-
-# Hello
-
-This is my **first Docusaurus document**!
-```
-
-It is also possible to create your sidebar explicitly in `sidebars.js`:
-
-```js title="sidebars.js"
-module.exports = {
-  tutorialSidebar: [
-    'intro',
-    // highlight-next-line
-    'hello',
-    {
-      type: 'category',
-      label: 'Tutorial',
-      items: ['tutorial-basics/create-a-document'],
-    },
-  ],
-};
-```
diff --git a/docs/tutorial-basics/create-a-page.md b/docs/tutorial-basics/create-a-page.md
deleted file mode 100644
index 20e2ac300556e9baedcaf67474244f7059a53c40..0000000000000000000000000000000000000000
--- a/docs/tutorial-basics/create-a-page.md
+++ /dev/null
@@ -1,43 +0,0 @@
----
-sidebar_position: 1
----
-
-# Create a Page
-
-Add **Markdown or React** files to `src/pages` to create a **standalone page**:
-
-- `src/pages/index.js` → `localhost:3000/`
-- `src/pages/foo.md` → `localhost:3000/foo`
-- `src/pages/foo/bar.js` → `localhost:3000/foo/bar`
-
-## Create your first React Page
-
-Create a file at `src/pages/my-react-page.js`:
-
-```jsx title="src/pages/my-react-page.js"
-import React from 'react';
-import Layout from '@theme/Layout';
-
-export default function MyReactPage() {
-  return (
-    <Layout>
-      <h1>My React page</h1>
-      <p>This is a React page</p>
-    </Layout>
-  );
-}
-```
-
-A new page is now available at [http://localhost:3000/my-react-page](http://localhost:3000/my-react-page).
-
-## Create your first Markdown Page
-
-Create a file at `src/pages/my-markdown-page.md`:
-
-```mdx title="src/pages/my-markdown-page.md"
-# My Markdown page
-
-This is a Markdown page
-```
-
-A new page is now available at [http://localhost:3000/my-markdown-page](http://localhost:3000/my-markdown-page).
diff --git a/docs/tutorial-basics/deploy-your-site.md b/docs/tutorial-basics/deploy-your-site.md
deleted file mode 100644
index 1c50ee063ef416333b994a910d10d05f984bf589..0000000000000000000000000000000000000000
--- a/docs/tutorial-basics/deploy-your-site.md
+++ /dev/null
@@ -1,31 +0,0 @@
----
-sidebar_position: 5
----
-
-# Deploy your site
-
-Docusaurus is a **static-site-generator** (also called **[Jamstack](https://jamstack.org/)**).
-
-It builds your site as simple **static HTML, JavaScript and CSS files**.
-
-## Build your site
-
-Build your site **for production**:
-
-```bash
-npm run build
-```
-
-The static files are generated in the `build` folder.
-
-## Deploy your site
-
-Test your production build locally:
-
-```bash
-npm run serve
-```
-
-The `build` folder is now served at [http://localhost:3000/](http://localhost:3000/).
-
-You can now deploy the `build` folder **almost anywhere** easily, **for free** or very small cost (read the **[Deployment Guide](https://docusaurus.io/docs/deployment)**).
diff --git a/docs/tutorial-basics/markdown-features.mdx b/docs/tutorial-basics/markdown-features.mdx
deleted file mode 100644
index 6b3aaaaaaf858794fc68f3204e6c3424809f8dbd..0000000000000000000000000000000000000000
--- a/docs/tutorial-basics/markdown-features.mdx
+++ /dev/null
@@ -1,146 +0,0 @@
----
-sidebar_position: 4
----
-
-# Markdown Features
-
-Docusaurus supports **[Markdown](https://daringfireball.net/projects/markdown/syntax)** and a few **additional features**.
-
-## Front Matter
-
-Markdown documents have metadata at the top called [Front Matter](https://jekyllrb.com/docs/front-matter/):
-
-```text title="my-doc.md"
-// highlight-start
----
-id: my-doc-id
-title: My document title
-description: My document description
-slug: /my-custom-url
----
-// highlight-end
-
-## Markdown heading
-
-Markdown text with [links](./hello.md)
-```
-
-## Links
-
-Regular Markdown links are supported, using url paths or relative file paths.
-
-```md
-Let's see how to [Create a page](/create-a-page).
-```
-
-```md
-Let's see how to [Create a page](./create-a-page.md).
-```
-
-**Result:** Let's see how to [Create a page](./create-a-page.md).
-
-## Images
-
-Regular Markdown images are supported.
-
-You can use absolute paths to reference images in the static directory (`static/img/docusaurus.png`):
-
-```md
-![Docusaurus logo](/img/docusaurus.png)
-```
-
-![Docusaurus logo](/img/docusaurus.png)
-
-You can reference images relative to the current file as well, as shown in [the extra guides](../tutorial-extras/manage-docs-versions.md).
-
-## Code Blocks
-
-Markdown code blocks are supported with Syntax highlighting.
-
-    ```jsx title="src/components/HelloDocusaurus.js"
-    function HelloDocusaurus() {
-        return (
-            <h1>Hello, Docusaurus!</h1>
-        )
-    }
-    ```
-
-```jsx title="src/components/HelloDocusaurus.js"
-function HelloDocusaurus() {
-  return <h1>Hello, Docusaurus!</h1>;
-}
-```
-
-## Admonitions
-
-Docusaurus has a special syntax to create admonitions and callouts:
-
-    :::tip My tip
-
-    Use this awesome feature option
-
-    :::
-
-    :::danger Take care
-
-    This action is dangerous
-
-    :::
-
-:::tip My tip
-
-Use this awesome feature option
-
-:::
-
-:::danger Take care
-
-This action is dangerous
-
-:::
-
-## MDX and React Components
-
-[MDX](https://mdxjs.com/) can make your documentation more **interactive** and allows using any **React components inside Markdown**:
-
-```jsx
-export const Highlight = ({children, color}) => (
-  <span
-    style={{
-      backgroundColor: color,
-      borderRadius: '20px',
-      color: '#fff',
-      padding: '10px',
-      cursor: 'pointer',
-    }}
-    onClick={() => {
-      alert(`You clicked the color ${color} with label ${children}`)
-    }}>
-    {children}
-  </span>
-);
-
-This is <Highlight color="#25c2a0">Docusaurus green</Highlight> !
-
-This is <Highlight color="#1877F2">Facebook blue</Highlight> !
-```
-
-export const Highlight = ({children, color}) => (
-  <span
-    style={{
-      backgroundColor: color,
-      borderRadius: '20px',
-      color: '#fff',
-      padding: '10px',
-      cursor: 'pointer',
-    }}
-    onClick={() => {
-      alert(`You clicked the color ${color} with label ${children}`);
-    }}>
-    {children}
-  </span>
-);
-
-This is <Highlight color="#25c2a0">Docusaurus green</Highlight> !
-
-This is <Highlight color="#1877F2">Facebook blue</Highlight> !
diff --git a/docs/tutorial-extras/_category_.json b/docs/tutorial-extras/_category_.json
deleted file mode 100644
index a8ffcc19300ec5973db4c87090a2bc9e5cf73aa0..0000000000000000000000000000000000000000
--- a/docs/tutorial-extras/_category_.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-  "label": "Tutorial - Extras",
-  "position": 3,
-  "link": {
-    "type": "generated-index"
-  }
-}
diff --git a/docs/tutorial-extras/img/docsVersionDropdown.png b/docs/tutorial-extras/img/docsVersionDropdown.png
deleted file mode 100644
index 97e4164618b5f8beda34cfa699720aba0ad2e342..0000000000000000000000000000000000000000
Binary files a/docs/tutorial-extras/img/docsVersionDropdown.png and /dev/null differ
diff --git a/docs/tutorial-extras/img/localeDropdown.png b/docs/tutorial-extras/img/localeDropdown.png
deleted file mode 100644
index e257edc1f932985396bf59584c7ccfaddf955779..0000000000000000000000000000000000000000
Binary files a/docs/tutorial-extras/img/localeDropdown.png and /dev/null differ
diff --git a/docs/tutorial-extras/manage-docs-versions.md b/docs/tutorial-extras/manage-docs-versions.md
deleted file mode 100644
index e12c3f3444fa77632269373d7b420e16b649022f..0000000000000000000000000000000000000000
--- a/docs/tutorial-extras/manage-docs-versions.md
+++ /dev/null
@@ -1,55 +0,0 @@
----
-sidebar_position: 1
----
-
-# Manage Docs Versions
-
-Docusaurus can manage multiple versions of your docs.
-
-## Create a docs version
-
-Release a version 1.0 of your project:
-
-```bash
-npm run docusaurus docs:version 1.0
-```
-
-The `docs` folder is copied into `versioned_docs/version-1.0` and `versions.json` is created.
-
-Your docs now have 2 versions:
-
-- `1.0` at `http://localhost:3000/docs/` for the version 1.0 docs
-- `current` at `http://localhost:3000/docs/next/` for the **upcoming, unreleased docs**
-
-## Add a Version Dropdown
-
-To navigate seamlessly across versions, add a version dropdown.
-
-Modify the `docusaurus.config.js` file:
-
-```js title="docusaurus.config.js"
-module.exports = {
-  themeConfig: {
-    navbar: {
-      items: [
-        // highlight-start
-        {
-          type: 'docsVersionDropdown',
-        },
-        // highlight-end
-      ],
-    },
-  },
-};
-```
-
-The docs version dropdown appears in your navbar:
-
-![Docs Version Dropdown](./img/docsVersionDropdown.png)
-
-## Update an existing version
-
-It is possible to edit versioned docs in their respective folder:
-
-- `versioned_docs/version-1.0/hello.md` updates `http://localhost:3000/docs/hello`
-- `docs/hello.md` updates `http://localhost:3000/docs/next/hello`
diff --git a/docs/tutorial-extras/translate-your-site.md b/docs/tutorial-extras/translate-your-site.md
deleted file mode 100644
index caeaffb05548b1e9d0cee001dd8dc401480935a1..0000000000000000000000000000000000000000
--- a/docs/tutorial-extras/translate-your-site.md
+++ /dev/null
@@ -1,88 +0,0 @@
----
-sidebar_position: 2
----
-
-# Translate your site
-
-Let's translate `docs/intro.md` to French.
-
-## Configure i18n
-
-Modify `docusaurus.config.js` to add support for the `fr` locale:
-
-```js title="docusaurus.config.js"
-module.exports = {
-  i18n: {
-    defaultLocale: 'en',
-    locales: ['en', 'fr'],
-  },
-};
-```
-
-## Translate a doc
-
-Copy the `docs/intro.md` file to the `i18n/fr` folder:
-
-```bash
-mkdir -p i18n/fr/docusaurus-plugin-content-docs/current/
-
-cp docs/intro.md i18n/fr/docusaurus-plugin-content-docs/current/intro.md
-```
-
-Translate `i18n/fr/docusaurus-plugin-content-docs/current/intro.md` in French.
-
-## Start your localized site
-
-Start your site on the French locale:
-
-```bash
-npm run start -- --locale fr
-```
-
-Your localized site is accessible at [http://localhost:3000/fr/](http://localhost:3000/fr/) and the `Getting Started` page is translated.
-
-:::caution
-
-In development, you can only use one locale at a same time.
-
-:::
-
-## Add a Locale Dropdown
-
-To navigate seamlessly across languages, add a locale dropdown.
-
-Modify the `docusaurus.config.js` file:
-
-```js title="docusaurus.config.js"
-module.exports = {
-  themeConfig: {
-    navbar: {
-      items: [
-        // highlight-start
-        {
-          type: 'localeDropdown',
-        },
-        // highlight-end
-      ],
-    },
-  },
-};
-```
-
-The locale dropdown now appears in your navbar:
-
-![Locale Dropdown](./img/localeDropdown.png)
-
-## Build your localized site
-
-Build your site for a specific locale:
-
-```bash
-npm run build -- --locale fr
-```
-
-Or build your site to include all the locales at once:
-
-```bash
-npm run build
-```
diff --git a/docusaurus.config.js b/docusaurus.config.js
index ed103d34cb579432460dd56be5edfb3631bfe56f..579ffd35452c83ab9ec0c65f2133c1e91809b59e 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -7,7 +7,7 @@ const darkCodeTheme = require('prism-react-renderer/themes/dracula');
 /** @type {import('@docusaurus/types').Config} */
 const config = {
   title: 'Lydra | Artisans DevOps',
-  tagline: 'Dinosaurs are cool',
+  tagline: 'Nous aidons les entreprises du numérique à déployer leurs applications web rapidement et sans coupure de service.',
   url: process.env.DOCUSAURUS_URL || 'https://new.lydra.fr"',
   baseUrl: process.env.DOCUSAURUS_BASEURL || '/',
   onBrokenLinks: 'throw',
@@ -26,13 +26,7 @@ const config = {
       'classic',
       /** @type {import('@docusaurus/preset-classic').Options} */
       ({
-        docs: {
-          sidebarPath: require.resolve('./sidebars.js'),
-          // Please change this to your repo.
-          // Remove this to remove the "edit this page" links.
-          editUrl:
-            'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
-        },
+        docs: false,
         blog: {
           showReadingTime: true,
           // Please change this to your repo.
@@ -55,37 +49,70 @@ const config = {
         respectPrefersColorScheme: false,
       },
       navbar: {
+        hideOnScroll: true,
         logo: {
           alt: 'Lydra Logo',
           src: 'img/logo_lydra.svg',
         },
         items: [
           {
-            type: 'doc',
-            docId: 'intro',
-            position: 'left',
-            label: 'Tutorial',
+            to: '/', 
+            label: 'Home', 
+            position: 'right'
           },
-          {to: '/blog', label: 'Blog', position: 'left'},
           {
-            href: 'https://github.com/facebook/docusaurus',
-            label: 'GitHub',
+            type: 'dropdown',
+            label: 'DevOps',
             position: 'right',
+            items: [
+              {
+                label: '📻 Le Podcast',
+                href: 'https://lydra.fr/radio-devops/',
+              },
+              {
+                label: 'Les Compagnons',
+                href: 'https://www.compagnons-devops.fr/',
+              },
+            ],
           },
-        ],
-      },
-      footer: {
-        style: 'dark',
-        links: [
           {
-            title: 'Docs',
+            to: 'https://www.compagnons-devops.fr/mentor', 
+            label: '🎓  Mentorat', 
+            position: 'right'
+          },
+          {
+            type: 'dropdown',
+            label: 'Qui sommes nous ?',
+            position: 'right',
             items: [
               {
-                label: 'Tutorial',
-                to: '/docs/intro',
+                label: 'L\'équipe',
+                href: '#',
+              },
+              {
+                label: 'Nos inspirations',
+                href: 'https://lydra.fr/nos-inspirations/',
+              },
+              {
+                label: 'Nos Services',
+                href: 'https://lydra.fr/nos-services/',
+              },
+              {
+                label: 'Contact',
+                href: '#',
               },
             ],
           },
+          {
+            to: '/blog', 
+            label: '📰  Blog', 
+            position: 'right'
+          },
+        ],
+      },
+      footer: {
+        style: 'dark',
+        links: [
           {
             title: 'Community',
             items: [
diff --git a/src/components/HomepageFeatures/index.js b/src/components/HomepageFeatures/index.js
index 78f410ba688844a6d5bee52924ea6650a526158e..706ac3e8336771bd853c2deae8bfb46fdc31e640 100644
--- a/src/components/HomepageFeatures/index.js
+++ b/src/components/HomepageFeatures/index.js
@@ -4,32 +4,29 @@ import styles from './styles.module.css';
 
 const FeatureList = [
   {
-    title: 'Easy to Use',
+    title: 'Notre philosophie',
     Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
     description: (
       <>
-        Docusaurus was designed from the ground up to be easily installed and
-        used to get your website up and running quickly.
+        Nous pensons que l’amélioration continue et la collaboration entre les équipes d’une même entreprise sont essentielles pour atteindre facilement les objectifs mais surtout en les atteignant sereinement.
       </>
     ),
   },
   {
-    title: 'Focus on What Matters',
-    Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
+    title: 'Notre philosophie',
+    Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
     description: (
       <>
-        Docusaurus lets you focus on your docs, and we&apos;ll do the chores. Go
-        ahead and move your docs into the <code>docs</code> directory.
+        Nous pensons que l’amélioration continue et la collaboration entre les équipes d’une même entreprise sont essentielles pour atteindre facilement les objectifs mais surtout en les atteignant sereinement.
       </>
     ),
   },
   {
-    title: 'Powered by React',
-    Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
+    title: 'Notre philosophie',
+    Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
     description: (
       <>
-        Extend or customize your website layout by reusing React. Docusaurus can
-        be extended while reusing the same header and footer.
+        Nous pensons que l’amélioration continue et la collaboration entre les équipes d’une même entreprise sont essentielles pour atteindre facilement les objectifs mais surtout en les atteignant sereinement.
       </>
     ),
   },
@@ -37,7 +34,7 @@ const FeatureList = [
 
 function Feature({Svg, title, description}) {
   return (
-    <div className={clsx('col col--4')}>
+    <div className={clsx('col col--4', styles.featureElement)}>
       <div className="text--center">
         <Svg className={styles.featureSvg} role="img" />
       </div>
diff --git a/src/components/HomepageFeatures/styles.module.css b/src/components/HomepageFeatures/styles.module.css
index b248eb2e5dee2c37f58ab867ab87be47ef804386..2c1aaab4af36d24c47d17e2922efcf5ea47c55cd 100644
--- a/src/components/HomepageFeatures/styles.module.css
+++ b/src/components/HomepageFeatures/styles.module.css
@@ -8,4 +8,18 @@
 .featureSvg {
   height: 200px;
   width: 200px;
+  border-radius: 50%;
+
+}
+
+.featureElement:nth-child(3n+1) .featureSvg {
+  background-color: var(--ifm-color-success);
+}
+
+.featureElement:nth-child(3n+2) .featureSvg {
+  background-color: var(--ifm-color-info);
+}
+
+.featureElement:nth-child(3n+3) .featureSvg {
+  background-color: var(--ifm-color-highlight);
 }
diff --git a/src/css/custom.css b/src/css/custom.css
index 186a566d8cdeeecd7f96c8684c8429f02920c250..41404732740e3f6d88729efc93353fd4a9352dd8 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -33,6 +33,8 @@
 
 /* For readability concerns, you should choose a lighter palette in dark mode. */
 [data-theme='dark'] {
+  --ifm-navbar-background-color: transparent;
+
   --ifm-color-primary: #f15a22;
   --ifm-color-primary-dark: #e94a0f;
   --ifm-color-primary-darker: #dc460e;
@@ -43,6 +45,10 @@
   --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
 }
 
+h1, h2, h3 {
+  letter-spacing: .1rem;
+}
+
 .navbar__logo img {
   height: 290%;
   margin-top: -30px;
@@ -63,3 +69,18 @@ b, strong {
 i, em {
   font-family: var(--ifm-font-family-italic) ;
 }
+
+.navbar__item {
+  text-transform: uppercase;
+  font-size: 1.2rem;
+}
+
+.main-wrapper {
+  margin-top: 90px;
+}
+
+.navbar {
+  position: fixed;
+  width: 100%;
+  box-shadow: none;
+}
diff --git a/src/pages/index.js b/src/pages/index.js
index aaaa49e40e5d80553d7200b5d4b7bb3ae9ed08fa..5b6dc9094a22e1d074a3b27c93cf12f8fa45e806 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -1,45 +1,33 @@
 import React from 'react';
 import clsx from 'clsx';
-import Link from '@docusaurus/Link';
 import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
 import Layout from '@theme/Layout';
 import HomepageFeatures from '@site/src/components/HomepageFeatures';
-
 import styles from './index.module.css';
+import useBaseUrl from "@docusaurus/useBaseUrl";
+
+
+const pageTitle = "Home"
 
 function HomepageHeader() {
   const {siteConfig} = useDocusaurusContext();
   return (
     <header className={clsx('hero hero--primary', styles.heroBanner)}>
-      <div className="container">
-        <h1 className="hero__title">{siteConfig.title}</h1>
-        <p className="hero__subtitle">{siteConfig.tagline}</p>
-        <div className={styles.buttons}>
-          <Link
-            className="button button--secondary button--lg"
-            to="/docs/intro">
-            Docusaurus Tutorial - 5min ⏱️
-          </Link>
-          <Link
-            className="button button--info button--lg"
-            to="/docs/intro">
-            Docusaurus Tutorial - 5min ⏱️
-          </Link>
-          <Link
-            className="button button--success button--lg"
-            to="/docs/intro">
-            Docusaurus Tutorial - 5min ⏱️
-          </Link>
-          <Link
-            className="button button--highlight button--lg"
-            to="/docs/intro">
-            Docusaurus Tutorial - 5min ⏱️
-          </Link>
+      <div className={'container '+ styles.containerIndex}>
+        <h1 className={styles.hero__title}> Artisans DevOps </h1>
+        <p className={styles.hero__subtitle}>{siteConfig.tagline}</p>
+        <div className={styles.introCard}>
+          <div className={clsx("text--center", styles.headerIcon)}>
+            <img src={useBaseUrl("img/collaborate.png")} />
+          </div>
+          <div className="text--center padding-horiz--md">
+            <h2> Notre philosophie </h2>
+            <p> Nous pensons que l’amélioration continue et la collaboration entre les équipes d’une même entreprise sont essentielles pour atteindre facilement les objectifs mais surtout en les atteignant sereinement. </p>
+          </div>
         </div>
-        <p className='margin-top--lg'> 
-       <em>Docusaurus</em> was designed <i>from the ground up</i> to be <strong>easily installed</strong> and used to get your website <b>up and running quickly.</b>
-        </p>
+
       </div>
+
     </header>
   );
 }
@@ -48,12 +36,11 @@ export default function Home() {
   const {siteConfig} = useDocusaurusContext();
   return (
     <Layout
-      title={`Home - ${siteConfig.title}`}
+      title={`${pageTitle} - ${siteConfig.title}`}
       description="Description will go into a meta tag in <head />">
       <HomepageHeader />
       <main>
-  
-        <HomepageFeatures />
+      <HomepageFeatures />
       </main>
     </Layout>
   );
diff --git a/src/pages/index.module.css b/src/pages/index.module.css
index 9f71a5da775bd99379fa5c4d5bb73dc816d78bdd..3828093153c3df423e88c43c49fefc61454413a3 100644
--- a/src/pages/index.module.css
+++ b/src/pages/index.module.css
@@ -4,20 +4,59 @@
  */
 
 .heroBanner {
+  color: white;
   padding: 4rem 0;
   text-align: center;
   position: relative;
   overflow: hidden;
+  margin-top: -90px;
+  padding-top: 120px !important;
+  background-image: url(../../static/img/artisanBackground.jpg);
+  background-position: center;
+  background-size: cover;
+  background-color: black;
+  -webkit-clip-path: ellipse(100% 100% at 30% 0);
+  clip-path: ellipse(100% 100% at 30% 0);
 }
 
-@media screen and (max-width: 996px) {
-  .heroBanner {
-    padding: 2rem;
-  }
+.hero__subtitle {
+  font-size: 1.2rem;
+}
+
+.containerIndex {
+  z-index: 1;
+}
+
+.heroBanner::before {
+  background: linear-gradient(rgba(20, 20, 20, 0.70), rgba(10, 10, 10, 0.52));
+  position: absolute;
+  width: 100%;
+  height: 100%;
+  top: 0;
+  bottom: 0;
+  content: "";
+}
+
+.introCard {
+  max-width: 460px;
+  margin: 2rem auto;
+}
+
+.headerIcon img{
+  max-width: 200px;
 }
 
-.buttons {
-  display: flex;
-  align-items: center;
-  justify-content: center;
+.headerIcon {
+  background-color: var(--ifm-color-primary);
+  border-radius: 50%;
+  height: 200px;
+  aspect-ratio: 1;
+  margin: 1rem auto;
+}
+
+@media (max-width: 996px) {
+  .heroBanner {
+    -webkit-clip-path: ellipse(150% 100% at 30% 0);
+    clip-path: ellipse(150% 100% at 30% 0);
+  }
 }
diff --git a/src/theme/Navbar/Layout/index.js b/src/theme/Navbar/Layout/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..ad72f0a8a5cb4f79d8cec21f03415e35719d2f61
--- /dev/null
+++ b/src/theme/Navbar/Layout/index.js
@@ -0,0 +1,48 @@
+import React from 'react';
+import clsx from 'clsx';
+import {useThemeConfig} from '@docusaurus/theme-common';
+import {
+  useHideableNavbar,
+  useNavbarMobileSidebar,
+} from '@docusaurus/theme-common/internal';
+import NavbarMobileSidebar from '@theme/Navbar/MobileSidebar';
+import styles from './styles.module.css';
+
+
+function NavbarBackdrop(props) {
+  return (
+    <div
+      role="presentation"
+      {...props}
+      className={clsx('navbar-sidebar__backdrop', props.className)}
+    />
+  );
+}
+export default function NavbarLayout({children}) {
+  const {
+    navbar: {hideOnScroll, style},
+  } = useThemeConfig();
+  const mobileSidebar = useNavbarMobileSidebar();
+  const {navbarRef, isNavbarVisible} = useHideableNavbar(hideOnScroll);
+  return (
+    <nav
+      ref={navbarRef}
+      className={clsx(
+        'navbar',
+        'navbar--fixed-top',
+        hideOnScroll && [
+          styles.navbarHideable,
+          !isNavbarVisible && styles.navbarHidden,
+        ],
+        {
+          'navbar--dark': style === 'dark',
+          'navbar--primary': style === 'primary',
+          'navbar-sidebar--show': mobileSidebar.shown,
+        },
+      )}>
+      {children}
+      <NavbarBackdrop onClick={mobileSidebar.toggle} />
+      <NavbarMobileSidebar />
+    </nav>
+  );
+}
diff --git a/src/theme/Navbar/Layout/styles.module.css b/src/theme/Navbar/Layout/styles.module.css
new file mode 100644
index 0000000000000000000000000000000000000000..fe0268363885606e1763118f38a26c9316383125
--- /dev/null
+++ b/src/theme/Navbar/Layout/styles.module.css
@@ -0,0 +1,8 @@
+.navbarHideable {
+  transition: var(--ifm-transition-fast) ease;
+}
+
+.navbarHidden {
+  background-color: var(--ifm-background-surface-color);
+  box-shadow: var(--ifm-navbar-shadow)
+}
diff --git a/static/img/artisanBackground.jpg b/static/img/artisanBackground.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d93e23d878b4d9d82e0eb9827e14a7a64833825c
Binary files /dev/null and b/static/img/artisanBackground.jpg differ
diff --git a/static/img/collaborate.png b/static/img/collaborate.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab0374ef430a7ee5a9d1cace6c9b69dff2b4670f
Binary files /dev/null and b/static/img/collaborate.png differ
diff --git a/static/img/favicon.png b/static/img/favicon.png
deleted file mode 100644
index 3a179e05bf5e82c5e8aa5591b41ec925e1d01e0f..0000000000000000000000000000000000000000
Binary files a/static/img/favicon.png and /dev/null differ
diff --git a/static/img/logo_lydra.svg b/static/img/logo_lydra.svg
index ffca4345c41567ac2ebd923efbd8c0638bd362ee..523aadaa79d7bfda8439d964e2a38d8be19b0d20 100644
--- a/static/img/logo_lydra.svg
+++ b/static/img/logo_lydra.svg
@@ -1,347 +1,151 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
-              "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-
-<svg xmlns="http://www.w3.org/2000/svg"
-     width="82.4361mm" height="51.2234mm"
-     viewBox="0 0 702 605">
-    <path id="Outer"
-        fill="#857973" stroke="none"
-        d="M 165.00,211.00
-           C 165.00,211.00 165.00,144.00 165.00,144.00
-             164.98,131.53 161.69,135.66 155.85,127.00
-             152.81,122.49 151.81,117.35 152.04,112.00
-             152.56,100.13 162.31,91.30 174.00,91.01
-             186.03,90.72 196.84,97.03 197.91,110.00
-             198.44,116.48 198.09,121.36 194.53,126.99
-             188.66,136.29 185.03,131.09 185.00,144.00
-             185.00,144.00 185.00,211.00 185.00,211.00
-             185.00,211.00 175.00,207.65 175.00,207.65
-             175.00,207.65 165.00,211.00 165.00,211.00 Z
-           M 313.00,211.00
-           C 313.00,211.00 313.00,131.00 313.00,131.00
-             313.00,123.29 310.64,108.61 319.04,105.01
-             321.75,103.85 325.10,104.00 328.00,104.00
-             328.00,104.00 456.00,104.00 456.00,104.00
-             468.84,103.97 464.58,99.84 474.00,93.99
-             478.59,91.14 482.77,90.89 488.00,91.01
-             502.02,91.35 509.31,101.74 508.99,115.00
-             508.62,129.90 497.27,138.07 483.00,136.91
-             471.86,136.00 468.05,127.24 463.91,125.02
-             461.64,123.80 458.53,124.01 456.00,124.00
-             456.00,124.00 333.00,124.00 333.00,124.00
-             333.00,124.00 333.00,211.00 333.00,211.00
-             321.71,206.97 324.29,206.97 313.00,211.00 Z
-           M 175.00,106.62
-           C 164.27,109.23 167.19,121.64 176.00,120.81
-             184.02,120.05 185.43,108.11 175.00,106.62 Z
-           M 486.00,106.68
-           C 475.05,108.61 477.90,120.79 486.00,120.79
-             494.66,120.79 496.86,108.59 486.00,106.68 Z
-           M 470.00,367.00
-           C 470.00,367.00 559.00,367.00 559.00,367.00
-             571.21,366.98 566.47,363.92 575.01,357.80
-             580.84,353.62 588.10,352.33 595.00,354.04
-             621.49,360.60 615.45,401.59 588.00,399.91
-             583.57,399.64 578.60,397.99 575.01,395.36
-             566.59,389.21 571.29,386.02 559.00,386.00
-             559.00,386.00 470.00,386.00 470.00,386.00
-             474.72,376.79 474.72,376.21 470.00,367.00 Z
-           M 588.00,369.54
-           C 585.11,370.58 582.79,371.75 581.84,375.02
-             580.44,379.82 585.16,384.57 590.00,383.64
-             597.55,382.19 598.68,369.82 588.00,369.54 Z
-           M 350.00,387.00
-           C 361.03,390.94 357.97,390.94 369.00,387.00
-             369.00,387.00 369.00,462.00 369.00,462.00
-             369.02,474.29 372.21,469.59 378.36,478.01
-             381.32,482.07 383.14,487.98 382.90,493.00
-             382.20,507.34 371.77,515.32 358.00,514.99
-             344.82,514.67 335.09,502.99 336.19,490.00
-             336.61,485.03 338.93,479.82 342.33,476.18
-             345.04,473.28 348.13,472.09 349.40,468.91
-             350.12,467.12 350.00,463.97 350.00,462.00
-             350.00,462.00 350.00,387.00 350.00,387.00 Z
-           M 214.00,424.00
-           C 214.00,424.00 143.00,424.00 143.00,424.00
-             129.90,424.03 135.01,428.01 125.99,433.87
-             120.74,437.28 110.87,438.13 105.00,436.03
-             92.18,431.46 85.48,415.11 92.36,403.00
-             97.32,394.28 105.25,390.61 115.00,391.04
-             120.12,391.26 124.09,392.85 127.99,396.21
-             130.49,398.37 133.23,402.27 136.09,403.40
-             137.90,404.12 141.01,404.00 143.00,404.00
-             143.00,404.00 214.00,404.00 214.00,404.00
-             214.00,404.00 210.65,414.00 210.65,414.00
-             210.65,414.00 214.00,424.00 214.00,424.00 Z
-           M 111.02,407.45
-           C 100.57,411.78 107.44,422.56 113.98,421.46
-             119.20,420.59 121.66,413.43 118.26,409.43
-             116.21,407.02 113.83,407.17 111.02,407.45 Z
-           M 357.04,485.60
-           C 346.97,491.47 355.36,501.41 361.91,498.95
-             369.46,496.12 368.27,483.56 357.04,485.60 Z" />
-  <path id="Lydra"
-        fill="#e84e0e" stroke="none"
-        d="M 174.00,210.57
-           C 179.30,210.51 183.31,212.48 184.87,218.01
-             184.87,218.01 184.87,257.00 184.87,257.00
-             184.87,257.00 184.87,354.00 184.87,354.00
-             185.01,358.65 184.70,362.31 189.06,365.26
-             192.81,367.81 206.35,365.80 204.38,378.00
-             203.06,386.15 196.54,386.07 190.00,386.00
-             171.52,385.78 165.03,372.51 165.00,356.00
-             165.00,356.00 165.00,254.00 165.00,254.00
-             165.00,254.00 165.00,224.00 165.00,224.00
-             165.09,216.70 166.31,212.53 174.00,210.57 Z
-           M 313.00,257.00
-           C 313.00,257.00 313.00,230.00 313.00,230.00
-             313.00,226.08 312.55,219.44 314.31,216.04
-             317.45,210.00 326.32,209.44 330.57,214.23
-             333.33,217.33 332.99,221.15 333.00,225.00
-             333.00,225.00 333.00,348.00 333.00,348.00
-             333.00,348.00 333.00,374.00 333.00,374.00
-             332.94,377.80 332.79,380.92 329.77,383.69
-             326.89,386.33 323.62,385.99 320.00,386.00
-             320.00,386.00 308.00,386.00 308.00,386.00
-             290.94,385.97 282.03,375.73 282.00,359.00
-             282.00,359.00 282.00,299.00 282.00,299.00
-             282.00,289.97 280.74,277.99 285.04,270.00
-             291.18,258.62 301.37,257.00 313.00,257.00 Z
-           M 442.00,312.00
-           C 442.00,312.00 442.00,287.00 442.00,287.00
-             441.94,283.13 441.27,276.86 436.00,276.86
-             433.07,276.86 431.31,279.49 430.57,282.02
-             428.96,287.47 431.71,294.12 427.57,298.77
-             423.30,303.59 415.06,302.65 412.02,296.96
-             410.81,294.68 411.01,291.53 411.00,289.00
-             411.00,289.00 411.00,280.00 411.00,280.00
-             411.33,252.99 448.51,247.66 459.08,270.00
-             462.93,278.13 462.00,293.79 462.00,303.00
-             462.00,303.00 462.00,367.00 462.00,367.00
-             473.49,369.45 472.53,381.27 465.95,384.83
-             463.80,385.99 461.37,385.96 459.00,386.00
-             459.00,386.00 437.00,386.00 437.00,386.00
-             433.31,385.99 430.58,386.12 427.00,384.89
-             408.60,378.58 411.00,362.41 411.00,347.00
-             411.00,338.58 409.70,330.27 414.80,323.00
-             422.12,312.58 430.47,312.00 442.00,312.00 Z
-           M 246.00,386.00
-           C 233.61,386.00 224.62,386.48 217.53,374.00
-             212.78,365.64 214.00,350.65 214.00,341.00
-             214.00,341.00 214.00,272.00 214.00,272.00
-             214.01,268.41 213.77,264.22 215.85,261.08
-             219.51,255.65 228.55,255.58 232.26,261.08
-             234.26,264.01 233.99,267.60 234.00,271.00
-             234.00,271.00 234.00,344.00 234.00,344.00
-             234.00,355.06 230.83,366.61 246.00,367.00
-             246.00,367.00 246.00,321.00 246.00,321.00
-             246.00,321.00 246.00,270.00 246.00,270.00
-             246.01,266.81 245.71,262.91 247.74,260.23
-             251.00,255.90 260.00,255.90 263.26,260.23
-             265.29,262.91 264.99,266.81 265.00,270.00
-             265.00,270.00 265.00,397.00 265.00,397.00
-             264.99,400.76 265.12,403.34 263.90,407.00
-             257.68,425.49 241.79,424.21 226.00,424.00
-             210.91,423.80 211.42,411.19 217.14,406.51
-             221.39,403.04 229.68,404.07 235.00,404.00
-             247.35,403.83 246.00,395.67 246.00,386.00 Z
-           M 369.00,277.00
-           C 369.00,277.00 369.00,322.00 369.00,322.00
-             369.00,322.00 369.00,350.00 369.00,350.00
-             369.00,350.00 369.00,374.00 369.00,374.00
-             369.00,376.77 369.21,380.43 367.83,382.89
-             364.91,388.08 355.27,388.46 351.74,383.77
-             349.71,381.09 350.01,377.19 350.00,374.00
-             350.00,374.00 350.00,285.00 350.00,285.00
-             350.00,285.00 350.00,270.00 350.00,270.00
-             350.05,260.04 352.95,257.13 363.00,257.00
-             363.00,257.00 373.00,257.00 373.00,257.00
-             383.53,257.13 393.29,260.90 398.08,271.00
-             401.32,277.83 403.01,288.82 394.00,291.96
-             389.31,293.59 383.76,291.60 381.72,286.96
-             380.64,284.49 381.02,281.87 378.57,279.43
-             375.94,276.80 372.42,277.03 369.00,277.00 Z
-           M 313.00,277.00
-           C 303.32,277.04 302.02,278.29 302.00,288.00
-             302.00,288.00 302.00,347.00 302.00,347.00
-             302.00,351.92 300.57,362.98 305.23,365.83
-             307.37,367.13 310.56,366.98 313.00,367.00
-             313.00,367.00 313.00,277.00 313.00,277.00 Z
-           M 442.00,332.00
-           C 439.06,332.01 434.85,331.67 432.51,333.74
-             430.02,335.94 430.04,339.95 430.00,343.00
-             429.93,349.06 428.21,362.51 434.11,365.83
-             436.42,367.12 439.43,366.97 442.00,367.00
-             442.00,367.00 442.00,332.00 442.00,332.00 Z" />
-<path id="Text"
-        fill="#857973" stroke="none"
-        d="M 490.59,421.04
-           C 496.83,418.90 496.79,425.99 493.72,427.16
-             490.66,428.31 487.56,425.28 490.59,421.04 Z
-           M 627.00,468.00
-           C 627.00,468.00 627.00,434.00 627.00,434.00
-             627.00,431.34 626.52,423.49 628.02,421.60
-             629.56,419.65 633.73,419.96 636.00,420.01
-             640.97,420.12 647.10,420.75 650.89,424.23
-             659.13,431.78 659.25,455.76 651.47,463.61
-             645.75,469.38 634.57,468.00 627.00,468.00 Z
-           M 733.00,420.48
-           C 738.74,419.65 744.39,419.84 748.78,424.22
-             754.44,429.89 754.01,438.65 754.00,446.00
-             753.98,458.36 750.46,468.61 736.00,467.96
-             714.77,467.01 718.07,432.17 725.53,424.34
-             727.90,421.86 729.84,421.33 733.00,420.48 Z
-           M 470.00,432.00
-           C 470.15,426.38 469.93,424.48 476.00,424.00
-             476.00,424.00 476.00,432.00 476.00,432.00
-             476.00,432.00 482.00,432.00 482.00,432.00
-             482.00,432.00 482.00,438.00 482.00,438.00
-             482.00,438.00 476.21,438.00 476.21,438.00
-             476.21,438.00 476.21,457.94 476.21,457.94
-             477.84,462.69 483.20,462.08 482.18,465.74
-             481.32,468.80 472.99,469.15 470.74,463.89
-             469.46,460.92 470.00,442.52 470.00,438.00
-             465.40,436.39 465.40,433.61 470.00,432.00 Z
-           M 634.00,462.00
-           C 638.06,461.99 641.52,462.32 644.89,459.57
-             651.70,454.00 651.71,435.41 645.61,429.30
-             642.49,426.18 638.11,426.09 634.00,426.00
-             634.00,426.00 634.00,462.00 634.00,462.00 Z
-           M 736.01,426.43
-           C 725.96,429.64 726.37,443.42 728.10,452.00
-             729.21,457.52 732.36,463.19 739.00,461.55
-             743.29,460.50 745.34,457.03 746.32,453.00
-             748.39,444.48 748.27,426.06 736.01,426.43 Z
-           M 431.00,445.00
-           C 428.69,434.26 422.48,439.61 418.06,439.31
-             415.93,439.17 414.12,437.58 415.17,435.37
-             416.75,432.06 422.89,431.94 426.00,432.02
-             439.21,432.36 436.99,442.46 437.19,452.00
-             437.00,454.68 438.05,464.25 437.19,465.68
-             435.85,469.03 433.36,467.01 432.00,465.00
-             427.75,467.53 422.85,469.39 418.04,466.83
-             411.81,463.50 411.36,453.36 416.39,448.80
-             420.55,445.03 425.77,445.02 431.00,445.00 Z
-           M 446.00,433.00
-           C 449.86,432.16 450.53,431.75 453.00,435.00
-             457.30,431.96 457.87,432.07 463.00,432.00
-             463.00,432.00 463.00,439.00 463.00,439.00
-             450.63,438.37 454.18,451.16 454.00,461.00
-             453.95,463.66 453.58,469.05 449.30,467.34
-             446.49,466.23 447.00,461.46 447.00,459.00
-             446.98,449.86 447.21,442.14 446.00,433.00 Z
-           M 490.59,433.04
-           C 496.23,431.11 495.97,435.89 496.00,440.00
-             496.00,440.00 496.00,459.00 496.00,459.00
-             495.99,461.72 496.38,469.37 491.30,467.34
-             488.49,466.23 489.00,461.46 489.00,459.00
-             488.99,453.27 487.65,437.11 490.59,433.04 Z
-           M 520.17,439.00
-           C 517.31,438.66 508.88,437.21 511.17,442.92
-             512.57,446.41 518.45,447.73 520.83,452.09
-             521.81,453.90 521.97,455.98 521.97,458.00
-             521.97,466.27 517.60,468.39 510.00,467.96
-             507.44,467.81 501.13,466.26 503.17,462.34
-             504.90,459.02 516.67,464.43 514.66,457.00
-             513.19,451.53 500.60,449.79 503.43,439.00
-             503.82,437.55 504.43,436.36 505.43,435.23
-             507.98,432.36 518.49,429.75 520.17,434.43
-             520.91,435.89 520.31,437.56 520.17,439.00 Z
-           M 546.00,445.00
-           C 545.30,440.73 543.95,438.01 539.00,438.26
-             536.55,438.39 531.03,441.17 530.45,436.96
-             530.07,434.24 532.88,433.07 535.02,432.53
-             539.57,431.38 547.22,431.40 550.49,435.23
-             553.27,438.48 552.99,443.00 553.00,447.00
-             553.01,455.54 552.86,458.34 554.00,467.00
-             550.14,467.84 549.47,468.25 547.00,465.00
-             543.01,467.63 537.68,469.40 533.11,466.83
-             527.47,463.65 527.77,452.45 532.23,448.43
-             535.84,445.16 541.41,445.04 546.00,445.00 Z
-           M 579.00,468.00
-           C 579.00,468.00 579.00,451.00 579.00,451.00
-             579.00,448.10 579.18,443.68 577.69,441.15
-             575.46,437.37 571.84,438.76 570.02,442.06
-             568.43,444.96 569.01,455.23 569.00,459.00
-             568.99,461.72 569.38,469.37 564.30,467.34
-             561.49,466.23 562.00,461.46 562.00,459.00
-             562.00,459.00 562.00,440.00 562.00,440.00
-             562.03,436.04 563.41,428.21 568.00,435.00
-             569.70,433.99 571.05,433.06 573.00,432.51
-             578.02,431.07 583.07,432.60 584.79,438.00
-             584.79,438.00 584.79,468.00 584.79,468.00
-             584.79,468.00 579.00,468.00 579.00,468.00 Z
-           M 591.83,460.00
-           C 591.83,460.00 597.00,461.12 597.00,461.12
-             600.55,461.87 605.29,460.67 603.04,456.10
-             600.51,450.96 591.02,451.19 592.11,440.00
-             592.78,433.20 597.91,431.45 604.00,432.11
-             606.16,432.34 610.45,433.61 608.83,436.71
-             607.13,439.99 598.84,436.84 599.62,442.04
-             600.06,444.99 604.82,447.47 606.89,449.37
-             611.49,453.58 612.80,461.11 607.77,465.57
-             604.57,468.42 593.52,469.61 591.83,464.61
-             591.10,463.10 591.68,461.48 591.83,460.00 Z
-           M 670.00,453.00
-           C 670.71,457.25 671.86,461.43 677.00,461.75
-             680.05,461.94 685.29,458.97 686.51,462.31
-             688.41,467.51 677.89,468.12 675.00,467.96
-             663.42,467.29 662.90,456.94 663.00,448.00
-             663.08,441.47 664.76,434.41 672.00,432.43
-             681.55,429.82 687.57,435.70 687.96,445.00
-             688.03,446.77 688.11,449.97 686.98,451.40
-             685.00,453.90 673.39,453.00 670.00,453.00 Z
-           M 691.00,432.00
-           C 691.00,432.00 698.00,432.00 698.00,432.00
-             698.00,432.00 704.00,457.00 704.00,457.00
-             704.00,457.00 707.87,440.00 707.87,440.00
-             707.87,440.00 710.72,432.99 710.72,432.99
-             710.72,432.99 716.00,432.00 716.00,432.00
-             716.00,432.00 708.00,468.00 708.00,468.00
-             708.00,468.00 700.56,466.98 700.56,466.98
-             700.56,466.98 697.00,458.00 697.00,458.00
-             697.00,458.00 691.00,432.00 691.00,432.00 Z
-           M 767.84,466.00
-           C 767.84,466.00 767.84,478.85 767.84,478.85
-             766.74,482.06 763.80,482.12 762.60,479.68
-             761.87,478.22 762.00,474.70 762.00,473.00
-             762.00,473.00 762.00,447.00 762.00,447.00
-             762.00,447.00 761.38,435.11 761.38,435.11
-             762.30,430.92 765.98,432.34 768.00,435.11
-             788.30,421.62 789.71,457.97 781.61,465.57
-             779.49,467.55 776.82,468.09 774.00,467.88
-             771.41,467.69 770.27,467.05 767.84,466.00 Z
-           M 797.02,432.74
-           C 799.12,432.23 799.77,432.03 802.00,432.13
-             802.00,432.13 804.95,432.13 804.95,432.13
-             809.65,433.15 809.06,436.76 807.40,437.89
-             805.52,439.17 798.26,437.00 799.05,441.97
-             799.54,445.07 804.65,447.32 806.87,449.38
-             812.74,454.80 812.03,464.47 804.98,467.26
-             801.68,468.57 789.08,468.50 791.66,462.31
-             793.36,458.22 803.45,465.22 803.26,457.98
-             803.17,454.72 799.26,452.78 797.01,451.10
-             792.17,447.49 789.07,441.77 792.85,436.11
-             794.23,434.05 795.02,433.86 797.02,432.74 Z
-           M 681.00,447.00
-           C 680.94,445.05 681.01,442.95 680.15,441.13
-             678.26,437.17 671.07,435.58 670.00,447.00
-             670.00,447.00 681.00,447.00 681.00,447.00 Z
-           M 773.07,438.58
-           C 766.91,440.98 767.97,446.38 768.00,452.00
-             768.02,455.97 768.05,462.49 773.97,461.58
-             780.77,460.54 780.40,442.99 776.49,439.61
-             775.03,438.35 774.63,438.74 773.07,438.58 Z
-           M 430.84,451.21
-           C 429.28,451.02 426.66,450.96 425.04,451.21
-             417.44,453.64 419.83,463.90 426.94,461.24
-             429.02,460.47 430.13,459.06 430.84,456.96
-             431.06,455.56 430.99,452.54 430.84,451.21 Z
-           M 545.84,451.21
-           C 544.35,451.04 542.62,450.98 541.02,451.21
-             539.98,451.72 539.09,452.08 538.23,452.74
-             530.04,459.01 543.10,466.67 545.84,456.96
-             546.06,455.56 545.99,452.54 545.84,451.21 Z" />
-
-</svg>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.1"
+   id="svg2"
+   xml:space="preserve"
+   width="288.83868"
+   height="194.00667"
+   viewBox="0 0 288.83868 194.00667"><metadata
+     id="metadata8"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+     id="defs6"><clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath18"><path
+         d="M 0,145.505 H 216.629 V 0 H 0 Z"
+         id="path16" /></clipPath></defs><g
+     id="g10"
+     transform="matrix(1.3333333,0,0,-1.3333333,0,194.00667)"><g
+       id="g12"><g
+         id="g14"
+         clip-path="url(#clipPath18)"><g
+           id="g20"
+           transform="translate(117.5645,43.3022)"><path
+             d="m 0,0 v 0.811 c 0,0.233 0.244,0.35 0.731,0.35 0.467,0 0.7,-0.117 0.7,-0.35 V 0 C 1.431,-0.233 1.187,-0.35 0.7,-0.35 0.233,-0.35 0,-0.233 0,0"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path22" /></g><g
+           id="g24"
+           transform="translate(27.376,44.1084)"><path
+             d="M 0,0 C -1.075,0 -1.981,0.905 -1.981,1.982 -1.981,3 -1.075,3.907 0,3.907 1.076,3.907 1.925,3 1.925,1.982 1.925,0.905 1.076,0 0,0 m 23.248,1.93 c 0,0.886 0.357,1.688 0.93,2.278 H 4.959 c -0.84,1.85 -2.701,3.216 -4.909,3.216 -3.011,0 -5.547,-2.541 -5.547,-5.39 0,-3.016 2.536,-5.551 5.547,-5.551 2.184,0 4.029,1.334 4.881,3.216 h 19.235 c -0.565,0.58 -0.918,1.364 -0.918,2.231"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path26" /></g><g
+           id="g28"
+           transform="translate(116.9966,116.2021)"><path
+             d="M 0,0 C -1.076,0 -1.98,0.905 -1.98,1.982 -1.98,3 -1.076,3.908 0,3.908 1.076,3.908 1.924,3 1.924,1.982 1.924,0.905 1.076,0 0,0 m 0.049,7.424 c -2.205,0 -4.151,-1.366 -5.037,-3.215 H -39.19 c -0.587,0 -1.124,-0.24 -1.526,-0.627 C -40.729,3.569 -40.745,3.56 -40.757,3.547 -40.77,3.534 -40.78,3.519 -40.792,3.505 -41.179,3.104 -41.419,2.567 -41.419,1.979 v -23.277 c 0.58,0.556 1.363,0.902 2.229,0.902 0.887,0 1.69,-0.351 2.28,-0.915 v 21.01 h 31.952 c 0.898,-1.881 2.826,-3.215 5.007,-3.215 3.014,0 5.39,2.534 5.39,5.551 0,2.848 -2.376,5.389 -5.39,5.389"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path30" /></g><g
+           id="g32"
+           transform="translate(86.6104,25.3945)"><path
+             d="M 0,0 C -1.075,0 -1.98,0.905 -1.98,1.982 -1.98,3 -1.075,3.908 0,3.908 1.076,3.908 1.926,3 1.926,1.982 1.926,0.905 1.076,0 0,0 m 2.228,6.951 v 20.21 C 1.637,26.587 0.834,26.23 -0.053,26.23 c -0.865,0 -1.649,0.353 -2.229,0.918 V 6.887 C -4.161,5.996 -5.496,4.099 -5.496,2.035 c 0,-3.017 2.536,-5.551 5.546,-5.551 3.013,0 5.392,2.534 5.392,5.551 0,2.112 -1.31,4.052 -3.214,4.916"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path34" /></g><g
+           id="g36"
+           transform="translate(42.333,120.1104)"><path
+             d="m 0,0 c 1.076,0 1.924,-0.908 1.924,-1.926 0,-1.077 -0.848,-1.982 -1.924,-1.982 -1.076,0 -1.98,0.905 -1.98,1.982 C -1.98,-0.908 -1.076,0 0,0 m 5.439,-1.873 c 0,2.848 -2.376,5.389 -5.39,5.389 -3.01,0 -5.546,-2.541 -5.546,-5.389 0,-2.196 1.346,-4.131 3.238,-5.024 v -18.262 c 0.581,0.556 1.364,0.903 2.23,0.903 0.866,0 1.649,-0.347 2.23,-0.903 v 18.197 c 1.919,0.864 3.238,2.841 3.238,5.089"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path38" /></g><g
+           id="g40"
+           transform="translate(141.6929,53.1216)"><path
+             d="M 0,0 C -1.076,0 -1.98,0.905 -1.98,1.982 -1.98,3 -1.076,3.908 0,3.908 1.076,3.908 1.924,3 1.924,1.982 1.924,0.905 1.076,0 0,0 m 0.051,7.424 c -2.201,0 -4.142,-1.359 -5.031,-3.201 h -23.441 c 0.558,-0.581 0.905,-1.366 0.905,-2.229 0,-0.887 -0.351,-1.69 -0.916,-2.281 h 23.468 c 0.895,-1.888 2.826,-3.229 5.015,-3.229 3.012,0 5.39,2.534 5.39,5.551 0,2.848 -2.378,5.389 -5.39,5.389"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path42" /></g><g
+           id="g44"
+           transform="translate(59.3252,81.5576)"><path
+             d="M 0,0 C 0,1.217 1.014,2.229 2.229,2.229 3.496,2.229 4.51,1.217 4.51,0 v -31.721 c 0,-3.343 -2.686,-6.029 -6.03,-6.029 h -3.902 c -1.266,0 -2.279,1.014 -2.279,2.23 0,1.266 1.013,2.279 2.279,2.279 h 3.902 c 0.862,0 1.52,0.659 1.52,1.52 v 2.991 h -1.52 c -3.293,0 -5.979,2.685 -5.979,6.029 V 0 c 0,1.217 1.013,2.229 2.229,2.229 1.267,0 2.281,-1.012 2.281,-2.229 v -22.701 c 0,-0.861 0.659,-1.519 1.469,-1.519 H 0 Z"
+             style="fill:#e74e0f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path46" /></g><g
+           id="g48"
+           transform="translate(75.5771,57.3379)"><path
+             d="m 0,0 v 21.787 h -1.521 c -0.81,0 -1.469,-0.708 -1.469,-1.518 V 1.519 C -2.99,0.657 -2.331,0 -1.521,0 Z m 0,35.24 c 0,1.215 1.014,2.229 2.229,2.229 1.267,0 2.281,-1.014 2.281,-2.229 V -2.23 c 0,-1.268 -1.014,-2.281 -2.281,-2.281 h -3.75 c -3.292,0 -5.978,2.686 -5.978,6.03 v 18.75 c 0,3.343 2.686,6.029 5.978,6.029 H 0 Z"
+             style="fill:#e74e0f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path50" /></g><g
+           id="g52"
+           transform="translate(90.3076,79.125)"><path
+             d="m 0,0 h -1.47 v -24.22 c 0,-1.267 -1.012,-2.28 -2.28,-2.28 -1.215,0 -2.229,1.013 -2.229,2.28 V 2.229 c 0,1.268 1.014,2.282 2.229,2.282 H 0 c 3.344,0 6.03,-2.686 6.03,-6.03 0,-1.216 -1.014,-2.23 -2.28,-2.23 -1.216,0 -2.23,1.014 -2.23,2.23 C 1.52,-0.708 0.862,0 0,0"
+             style="fill:#e74e0f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path54" /></g><g
+           id="g56"
+           transform="translate(46.0537,52.835)"><path
+             d="m 0,0 c -3.293,0 -5.979,2.686 -5.979,6.03 v 33.76 c 0,1.216 0.962,2.23 2.229,2.23 1.267,0 2.23,-1.014 2.23,-2.23 V 6.03 C -1.52,5.169 -0.811,4.51 0,4.51 h 0.963 c 1.216,0 2.23,-1.013 2.23,-2.23 C 3.193,1.014 2.179,0 0.963,0 Z"
+             style="fill:#e74e0f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path58" /></g><g
+           id="g60"
+           transform="translate(106.4585,57.3379)"><path
+             d="m 0,0 h -1.52 c -0.81,0 -1.47,0.657 -1.47,1.519 v 5.625 c 0,0.81 0.66,1.469 1.47,1.469 H 0 Z m 4.509,0.005 v 20.566 c 0,3.294 -2.686,5.98 -6.029,5.98 -3.294,0 -5.98,-2.686 -5.98,-5.98 v -2.533 c 0,-1.267 1.014,-2.28 2.23,-2.28 1.266,0 2.28,1.013 2.28,2.28 v 2.533 c 0,0.812 0.66,1.47 1.47,1.47 0.862,0 1.52,-0.658 1.52,-1.47 v -7.448 h -1.52 c -3.294,0 -5.98,-2.686 -5.98,-5.979 V 1.519 c 0,-3.344 2.686,-6.03 5.98,-6.03 h 3.749 c 0.027,0 0.052,0.007 0.079,0.008 h 2.181 c 1.216,0 2.23,1.014 2.23,2.28 0,1.21 -1.002,2.217 -2.21,2.228"
+             style="fill:#e74e0f;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path62" /></g><g
+           id="g64"
+           transform="translate(103.5894,35.3682)"><path
+             d="M 0,0 V 2.051 C -0.594,2.041 -1.084,1.998 -1.471,1.924 -1.858,1.85 -2.189,1.688 -2.464,1.439 -2.74,1.19 -2.878,0.816 -2.878,0.318 c 0,-0.816 0.398,-1.224 1.193,-1.224 0.688,0 1.25,0.302 1.685,0.906 m -3.649,-1.519 c -0.419,0.43 -0.628,1.037 -0.628,1.821 0,0.795 0.207,1.405 0.62,1.829 0.413,0.424 0.928,0.707 1.542,0.85 C -1.5,3.125 -0.795,3.201 0,3.212 V 3.959 C 0,4.319 -0.111,4.616 -0.334,4.85 -0.556,5.083 -0.906,5.199 -1.383,5.199 -1.754,5.199 -2.08,5.154 -2.361,5.064 -2.642,4.974 -2.883,4.879 -3.084,4.778 -3.286,4.677 -3.402,4.627 -3.434,4.627 c -0.107,0 -0.226,0.103 -0.358,0.31 -0.133,0.207 -0.199,0.363 -0.199,0.469 0,0.138 0.125,0.281 0.374,0.429 0.249,0.149 0.577,0.27 0.986,0.366 0.407,0.095 0.829,0.143 1.264,0.143 0.847,0 1.51,-0.212 1.987,-0.636 C 1.097,5.284 1.336,4.696 1.336,3.943 V 0.286 c 0,-0.699 0.032,-1.2 0.095,-1.502 0.064,-0.303 0.095,-0.469 0.095,-0.501 0,-0.127 -0.1,-0.22 -0.301,-0.278 -0.202,-0.059 -0.388,-0.088 -0.557,-0.088 -0.159,0 -0.276,0.082 -0.35,0.247 -0.074,0.164 -0.143,0.395 -0.207,0.691 -0.562,-0.678 -1.251,-1.017 -2.067,-1.017 -0.71,0 -1.274,0.214 -1.693,0.643"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path66" /></g><g
+           id="g68"
+           transform="translate(107.4688,33.6191)"><path
+             d="m 0,0 v 5.613 c 0,0.699 -0.032,1.2 -0.096,1.502 -0.063,0.302 -0.095,0.469 -0.095,0.501 0,0.128 0.101,0.22 0.302,0.279 0.201,0.058 0.387,0.087 0.556,0.087 0.149,0 0.257,-0.08 0.327,-0.238 C 1.062,7.584 1.115,7.417 1.153,7.243 1.189,7.068 1.213,6.954 1.224,6.901 1.733,7.696 2.29,8.093 2.894,8.093 3.159,8.093 3.363,8.035 3.506,7.918 3.649,7.802 3.721,7.653 3.721,7.473 3.721,7.293 3.688,7.104 3.625,6.909 3.562,6.712 3.487,6.615 3.402,6.615 3.349,6.615 3.254,6.644 3.116,6.702 2.979,6.76 2.814,6.79 2.624,6.79 2.348,6.79 2.085,6.675 1.836,6.448 1.587,6.22 1.42,6.01 1.335,5.819 V 0 C 1.335,-0.233 1.124,-0.35 0.7,-0.35 H 0.636 C 0.212,-0.35 0,-0.233 0,0"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path70" /></g><g
+           id="g72"
+           transform="translate(113.4946,33.6274)"><path
+             d="m 0,0 c -0.36,0.28 -0.541,0.781 -0.541,1.502 v 5.343 h -0.524 c -0.106,0 -0.185,0.037 -0.239,0.111 -0.053,0.074 -0.079,0.196 -0.079,0.366 v 0.191 c 0,0.169 0.026,0.291 0.079,0.365 0.054,0.074 0.133,0.112 0.239,0.112 h 0.524 l 0.191,1.669 c 0.021,0.233 0.191,0.35 0.509,0.35 h 0.159 c 0.318,0 0.477,-0.117 0.477,-0.35 V 7.99 h 1.05 C 1.961,7.99 2.043,7.952 2.091,7.878 2.139,7.804 2.163,7.682 2.163,7.513 V 7.322 C 2.163,7.152 2.139,7.03 2.091,6.956 2.043,6.882 1.961,6.845 1.845,6.845 h -1.05 v -5.12 c 0,-0.382 0.053,-0.644 0.159,-0.787 0.106,-0.143 0.26,-0.215 0.462,-0.215 0.137,0 0.254,0.013 0.349,0.04 0.095,0.027 0.159,0.04 0.191,0.04 0.095,0 0.175,-0.095 0.238,-0.286 C 2.258,0.326 2.29,0.167 2.29,0.04 2.29,-0.13 2.181,-0.25 1.964,-0.318 1.747,-0.387 1.505,-0.421 1.24,-0.421 0.774,-0.421 0.36,-0.281 0,0"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path74" /></g><g
+           id="g76"
+           transform="translate(117.5967,33.6191)"><path
+             d="M 0,0 V 7.68 C 0,7.913 0.212,8.03 0.636,8.03 H 0.7 c 0.424,0 0.635,-0.117 0.635,-0.35 V 0 C 1.335,-0.233 1.124,-0.35 0.7,-0.35 H 0.636 C 0.212,-0.35 0,-0.233 0,0 m -0.032,9.683 v 0.811 c 0,0.233 0.244,0.35 0.732,0.35 0.466,0 0.699,-0.117 0.699,-0.35 V 9.683 c 0,-0.233 -0.244,-0.35 -0.731,-0.35 -0.467,0 -0.7,0.117 -0.7,0.35"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path78" /></g><g
+           id="g80"
+           transform="translate(121.834,33.3252)"><path
+             d="m 0,0 c -0.334,0.111 -0.599,0.247 -0.795,0.405 -0.196,0.159 -0.294,0.297 -0.294,0.414 0,0.116 0.068,0.281 0.207,0.493 0.137,0.211 0.248,0.318 0.333,0.318 0.022,0 0.114,-0.059 0.278,-0.175 C -0.106,1.338 0.082,1.235 0.294,1.145 0.506,1.055 0.745,1.01 1.01,1.01 c 0.392,0 0.691,0.097 0.898,0.294 0.207,0.196 0.31,0.485 0.31,0.866 0,0.371 -0.114,0.684 -0.342,0.938 -0.228,0.255 -0.58,0.498 -1.057,0.732 -0.583,0.264 -1.015,0.572 -1.296,0.922 -0.281,0.35 -0.421,0.811 -0.421,1.384 0,0.667 0.219,1.21 0.659,1.629 0.44,0.419 0.999,0.628 1.678,0.628 0.435,0 0.837,-0.069 1.208,-0.207 C 3.018,8.059 3.204,7.899 3.204,7.719 3.204,7.592 3.143,7.417 3.021,7.195 2.899,6.972 2.795,6.861 2.711,6.861 2.689,6.861 2.565,6.927 2.337,7.06 2.109,7.192 1.836,7.258 1.519,7.258 1.211,7.258 0.954,7.173 0.747,7.004 0.541,6.834 0.437,6.596 0.437,6.289 0.437,5.928 0.541,5.628 0.747,5.39 0.954,5.151 1.248,4.937 1.63,4.746 2.276,4.449 2.753,4.11 3.061,3.729 3.368,3.347 3.522,2.838 3.522,2.202 3.522,1.492 3.289,0.919 2.822,0.485 2.355,0.05 1.773,-0.167 1.073,-0.167 0.691,-0.167 0.334,-0.111 0,0"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path82" /></g><g
+           id="g84"
+           transform="translate(131.334,35.3682)"><path
+             d="M 0,0 V 2.051 C -0.594,2.041 -1.084,1.998 -1.471,1.924 -1.858,1.85 -2.189,1.688 -2.464,1.439 -2.74,1.19 -2.878,0.816 -2.878,0.318 c 0,-0.816 0.398,-1.224 1.193,-1.224 0.688,0 1.25,0.302 1.685,0.906 m -3.649,-1.519 c -0.419,0.43 -0.628,1.037 -0.628,1.821 0,0.795 0.207,1.405 0.62,1.829 0.413,0.424 0.928,0.707 1.542,0.85 C -1.5,3.125 -0.795,3.201 0,3.212 V 3.959 C 0,4.319 -0.111,4.616 -0.334,4.85 -0.556,5.083 -0.906,5.199 -1.383,5.199 -1.754,5.199 -2.08,5.154 -2.361,5.064 -2.642,4.974 -2.883,4.879 -3.084,4.778 -3.286,4.677 -3.402,4.627 -3.434,4.627 c -0.107,0 -0.226,0.103 -0.358,0.31 -0.133,0.207 -0.199,0.363 -0.199,0.469 0,0.138 0.125,0.281 0.374,0.429 0.249,0.149 0.577,0.27 0.986,0.366 0.407,0.095 0.829,0.143 1.264,0.143 0.847,0 1.51,-0.212 1.987,-0.636 C 1.097,5.284 1.336,4.696 1.336,3.943 V 0.286 c 0,-0.699 0.032,-1.2 0.095,-1.502 0.064,-0.303 0.095,-0.469 0.095,-0.501 0,-0.127 -0.1,-0.22 -0.301,-0.278 -0.202,-0.059 -0.388,-0.088 -0.557,-0.088 -0.159,0 -0.276,0.082 -0.35,0.247 -0.074,0.164 -0.143,0.395 -0.207,0.691 -0.562,-0.678 -1.251,-1.017 -2.067,-1.017 -0.71,0 -1.274,0.214 -1.693,0.643"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path86" /></g><g
+           id="g88"
+           transform="translate(135.1338,33.6191)"><path
+             d="m 0,0 v 5.613 c 0,0.689 -0.027,1.187 -0.08,1.494 -0.053,0.308 -0.079,0.477 -0.079,0.509 0,0.128 0.114,0.22 0.342,0.279 0.228,0.058 0.421,0.087 0.58,0.087 0.149,0 0.252,-0.069 0.31,-0.207 C 1.131,7.637 1.177,7.479 1.208,7.298 1.24,7.118 1.261,6.985 1.272,6.901 c 0.244,0.37 0.54,0.662 0.891,0.874 0.349,0.212 0.72,0.318 1.112,0.318 0.658,0 1.166,-0.22 1.527,-0.659 0.36,-0.441 0.54,-1.048 0.54,-1.821 L 5.342,0 c 0,-0.233 -0.201,-0.35 -0.604,-0.35 H 4.579 c -0.413,0 -0.62,0.117 -0.62,0.35 V 5.486 C 3.959,5.952 3.864,6.31 3.673,6.559 3.482,6.808 3.201,6.933 2.83,6.933 2.544,6.933 2.268,6.829 2.003,6.623 1.738,6.416 1.526,6.148 1.367,5.819 V 0 c 0,-0.233 -0.201,-0.35 -0.604,-0.35 H 0.588 C 0.196,-0.35 0,-0.233 0,0"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path90" /></g><g
+           id="g92"
+           transform="translate(143.1079,33.3252)"><path
+             d="m 0,0 c -0.334,0.111 -0.599,0.247 -0.795,0.405 -0.196,0.159 -0.294,0.297 -0.294,0.414 0,0.116 0.068,0.281 0.207,0.493 0.137,0.211 0.248,0.318 0.333,0.318 0.022,0 0.114,-0.059 0.278,-0.175 C -0.106,1.338 0.082,1.235 0.294,1.145 0.506,1.055 0.745,1.01 1.01,1.01 c 0.392,0 0.691,0.097 0.898,0.294 0.207,0.196 0.31,0.485 0.31,0.866 0,0.371 -0.114,0.684 -0.342,0.938 -0.228,0.255 -0.58,0.498 -1.057,0.732 -0.583,0.264 -1.015,0.572 -1.296,0.922 -0.281,0.35 -0.421,0.811 -0.421,1.384 0,0.667 0.219,1.21 0.659,1.629 0.44,0.419 0.999,0.628 1.678,0.628 0.435,0 0.837,-0.069 1.208,-0.207 C 3.018,8.059 3.204,7.899 3.204,7.719 3.204,7.592 3.143,7.417 3.021,7.195 2.899,6.972 2.795,6.861 2.711,6.861 2.689,6.861 2.565,6.927 2.337,7.06 2.109,7.192 1.836,7.258 1.519,7.258 1.211,7.258 0.954,7.173 0.747,7.004 0.541,6.834 0.437,6.596 0.437,6.289 0.437,5.928 0.541,5.628 0.747,5.39 0.954,5.151 1.248,4.937 1.63,4.746 2.276,4.449 2.753,4.11 3.061,3.729 3.368,3.347 3.522,2.838 3.522,2.202 3.522,1.492 3.289,0.919 2.822,0.485 2.355,0.05 1.773,-0.167 1.073,-0.167 0.691,-0.167 0.334,-0.111 0,0"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path94" /></g><g
+           id="g96"
+           transform="translate(153.6572,34.5098)"><path
+             d="M 0,0 C 0.795,0 1.42,0.347 1.876,1.042 2.332,1.735 2.56,2.84 2.56,4.356 2.56,5.861 2.332,6.964 1.876,7.664 1.42,8.363 0.795,8.713 0,8.713 H -1.622 V 0 Z m -2.965,-1.097 c -0.07,0.074 -0.104,0.196 -0.104,0.366 V 9.444 c 0,0.17 0.034,0.292 0.104,0.366 0.069,0.074 0.177,0.111 0.325,0.111 h 2.672 c 2.66,0 3.99,-1.855 3.99,-5.565 0,-3.71 -1.33,-5.564 -3.99,-5.564 H -2.64 c -0.148,0 -0.256,0.037 -0.325,0.111"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path98" /></g><g
+           id="g100"
+           transform="translate(163.7695,38.0552)"><path
+             d="M 0,0 C 0,1.675 -0.472,2.512 -1.415,2.512 -2.433,2.512 -2.984,1.675 -3.069,0 Z m -3.681,-3.816 c -0.546,0.689 -0.819,1.744 -0.819,3.164 0,1.41 0.265,2.481 0.795,3.212 0.53,0.732 1.309,1.097 2.337,1.097 0.923,0 1.617,-0.352 2.083,-1.057 0.467,-0.705 0.7,-1.736 0.7,-3.093 0,-0.095 -0.063,-0.228 -0.191,-0.397 C 1.097,-1.06 0.986,-1.145 0.89,-1.145 h -3.959 c 0.053,-0.901 0.223,-1.553 0.509,-1.955 0.286,-0.403 0.742,-0.605 1.368,-0.605 0.381,0 0.699,0.054 0.953,0.16 0.255,0.106 0.462,0.216 0.62,0.334 0.16,0.116 0.255,0.174 0.287,0.174 0.105,0 0.225,-0.106 0.357,-0.317 0.133,-0.213 0.199,-0.372 0.199,-0.478 0,-0.127 -0.109,-0.273 -0.326,-0.437 -0.217,-0.165 -0.511,-0.302 -0.882,-0.413 -0.371,-0.111 -0.769,-0.167 -1.193,-0.167 -1.123,0 -1.958,0.344 -2.504,1.033"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path102" /></g><g
+           id="g104"
+           transform="translate(168.0942,33.5239)"><path
+             d="m 0,0 -1.956,7.632 c -0.021,0.106 -0.031,0.18 -0.031,0.222 0,0.181 0.206,0.271 0.62,0.271 h 0.206 c 0.34,0 0.531,-0.085 0.573,-0.254 L 0.509,3.228 C 0.583,2.931 0.694,2.374 0.843,1.558 L 0.906,1.177 h 0.096 l 0.111,0.715 c 0.021,0.149 0.056,0.36 0.103,0.636 0.048,0.276 0.093,0.509 0.136,0.7 L 2.465,7.871 C 2.507,8.04 2.703,8.125 3.053,8.125 h 0.191 c 0.381,0 0.572,-0.09 0.572,-0.271 0,-0.021 -0.01,-0.095 -0.032,-0.222 L 1.829,0 C 1.786,-0.17 1.595,-0.254 1.256,-0.254 H 0.588 C 0.249,-0.254 0.053,-0.17 0,0"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path106" /></g><g
+           id="g108"
+           transform="translate(179.5737,38.8979)"><path
+             d="M 0,0 C 0,2.947 -0.837,4.42 -2.512,4.42 -3.35,4.42 -3.978,4.062 -4.396,3.347 -4.815,2.631 -5.024,1.516 -5.024,0 c 0,-2.989 0.837,-4.484 2.512,-4.484 C -0.837,-4.484 0,-2.989 0,0 m -5.485,-4.277 c -0.679,0.944 -1.018,2.369 -1.018,4.277 0,3.752 1.325,5.629 3.975,5.629 2.66,0 3.991,-1.877 3.991,-5.629 0,-1.908 -0.339,-3.333 -1.018,-4.277 -0.678,-0.944 -1.669,-1.415 -2.973,-1.415 -1.293,0 -2.279,0.471 -2.957,1.415"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path110" /></g><g
+           id="g112"
+           transform="translate(187.3174,37.4033)"><path
+             d="M 0,0 C 0,0.997 -0.119,1.771 -0.358,2.322 -0.596,2.873 -0.949,3.148 -1.415,3.148 -1.68,3.148 -1.942,3.053 -2.202,2.862 -2.462,2.671 -2.693,2.401 -2.894,2.051 v -4.356 c 0.371,-0.477 0.821,-0.716 1.352,-0.716 C -0.514,-3.021 0,-2.014 0,0 m -4.261,-7.06 v 8.889 c 0,0.689 -0.027,1.19 -0.08,1.502 -0.053,0.313 -0.079,0.485 -0.079,0.517 0,0.127 0.111,0.217 0.334,0.27 0.222,0.053 0.418,0.08 0.588,0.08 0.148,0 0.251,-0.069 0.31,-0.207 0.058,-0.138 0.104,-0.3 0.135,-0.485 C -3.021,3.32 -3,3.19 -2.989,3.117 c 0.243,0.392 0.527,0.689 0.85,0.89 0.324,0.201 0.671,0.302 1.042,0.302 0.509,0 0.954,-0.18 1.335,-0.54 C 0.62,3.408 0.912,2.902 1.113,2.25 1.314,1.598 1.415,0.854 1.415,0.016 c 0,-1.325 -0.238,-2.359 -0.715,-3.1 -0.477,-0.743 -1.119,-1.113 -1.924,-1.113 -0.361,0 -0.671,0.069 -0.93,0.206 -0.261,0.138 -0.507,0.339 -0.74,0.604 V -7.06 c 0,-0.232 -0.201,-0.349 -0.604,-0.349 h -0.159 c -0.403,0 -0.604,0.117 -0.604,0.349"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path114" /></g><g
+           id="g116"
+           transform="translate(191.0615,33.3252)"><path
+             d="m 0,0 c -0.334,0.111 -0.599,0.247 -0.795,0.405 -0.196,0.159 -0.294,0.297 -0.294,0.414 0,0.116 0.068,0.281 0.207,0.493 0.137,0.211 0.248,0.318 0.333,0.318 0.022,0 0.114,-0.059 0.278,-0.175 C -0.106,1.338 0.082,1.235 0.294,1.145 0.506,1.055 0.745,1.01 1.01,1.01 c 0.392,0 0.691,0.097 0.898,0.294 0.207,0.196 0.31,0.485 0.31,0.866 0,0.371 -0.114,0.684 -0.342,0.938 -0.228,0.255 -0.58,0.498 -1.057,0.732 -0.583,0.264 -1.015,0.572 -1.296,0.922 -0.281,0.35 -0.421,0.811 -0.421,1.384 0,0.667 0.219,1.21 0.659,1.629 0.44,0.419 0.999,0.628 1.678,0.628 0.435,0 0.837,-0.069 1.208,-0.207 C 3.018,8.059 3.204,7.899 3.204,7.719 3.204,7.592 3.143,7.417 3.021,7.195 2.899,6.972 2.795,6.861 2.711,6.861 2.689,6.861 2.565,6.927 2.337,7.06 2.109,7.192 1.836,7.258 1.519,7.258 1.211,7.258 0.954,7.173 0.747,7.004 0.541,6.834 0.437,6.596 0.437,6.289 0.437,5.928 0.541,5.628 0.747,5.39 0.954,5.151 1.248,4.937 1.63,4.746 2.276,4.449 2.753,4.11 3.061,3.729 3.368,3.347 3.522,2.838 3.522,2.202 3.522,1.492 3.289,0.919 2.822,0.485 2.355,0.05 1.773,-0.167 1.073,-0.167 0.691,-0.167 0.334,-0.111 0,0"
+             style="fill:#847973;fill-opacity:1;fill-rule:nonzero;stroke:none"
+             id="path118" /></g></g></g></g></svg>