@charset "UTF-8";
/*!
Themosis boilerplate is based on Underscores https://underscores.me/.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
:root {
  --max-width:1440px;
  --container-width:calc(var(--max-width) * 0.95);
  --container-padding:calc(((var(--max-width) - var(--container-width))/2) + 48px) ;
  --container-padding-main:calc((var(--max-width) - var(--container-width))/2) ;
  --orange:#FFA000;
  --orange-med:#ED9200;
  --orange-dark:#CE6700;
  --cyan:#1ED2D2;
  --cyan-light:#E7F5F8;
  --cyan-med:#289D9F;
  --blue:#00404E;
  --blue-med:#387F80;
  --yellow:#FFDC00;
  --yellow-dark:#F4BB00;
}
@media screen and (max-width: 1024px) {
  :root {
    --container-padding: var(--container-padding-main);
  }
}
@media screen and (max-width: 640px) {
  :root {
    --container-padding-main:24px;
  }
}

.animate {
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}
.animate.hide {
  opacity: 0;
}
.animate.hide.fade-bg {
  opacity: 1;
  overflow: hidden;
}
.animate.hide.fade-bg picture {
  overflow: hidden;
}
.animate.hide.fade-bg picture .image-header__divider {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}
.animate.hide.fade-bg picture img {
  transform: scale(1.1);
}
.animate.hide.fade-squares {
  opacity: 0;
  overflow: hidden;
}
.animate.hide.fade-squares.left {
  margin-left: -8%;
}
.animate.hide.fade-squares.left picture {
  margin-left: 8%;
}
.animate.hide.fade-squares .gradient {
  margin-left: 8%;
}
.animate.hide.fade-squares .gradient img {
  transform: scale(1.1);
}
.animate.hide.fade-squares .square:before {
  transform: rotate(0);
}
.animate.hide.fade-squares .losange img {
  opacity: 0;
}
.animate.hide.fade-squares .default .image__divider {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}
.animate.hide.reveal-right {
  opacity: 1;
  overflow: hidden;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.animate.animated.translate-top {
  animation: translate-top 0.5s ease-in-out forwards;
}
.animate.animated.scale-in {
  animation: scale-in 0.5s ease-in-out forwards;
}
.animate.animated.fade-bg {
  opacity: 1;
}
.animate.animated.fade-bg picture .image-header__divider {
  animation: reveal-left 0.8s ease-in-out forwards;
  animation-delay: 0.3s;
}
.animate.animated.fade-bg picture img {
  animation: zoom-in 0.8s ease-in-out forwards;
}
.animate.animated.fade-squares {
  opacity: 1;
  overflow: hidden;
}
.animate.animated.fade-squares .losange img {
  animation: rotate-losange 0.8s ease-in-out forwards;
}
.animate.animated.fade-squares .gradient img {
  animation: zoom-in 0.8s ease-in-out forwards;
}
.animate.animated.fade-squares .default .image__divider {
  animation: reveal-left 0.8s ease-in-out forwards;
  animation-delay: 0.4s;
}
.animate.animated.fade-squares .default img {
  animation: reveal-top 0.8s ease-in-out forwards;
}
.animate.animated.fade-squares .square:before {
  animation-delay: 0.8s;
  animation: rotate-square 0.8s ease-in-out forwards;
}
.animate.animated.reveal-right {
  opacity: 1;
  overflow: hidden;
  animation: reveal-right 0.6s ease-in-out forwards;
}

@keyframes rotate-square {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(10deg);
  }
}
@keyframes rotate-losange {
  0% {
    opacity: 0;
    transform: rotate(-15deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
.home-section > .custom-columns:first-of-type .heading {
  overflow: hidden;
}
.home-section > .custom-columns:first-of-type .heading.animated.translate-top {
  animation: translate-left 0.5s ease-in-out forwards;
}

@keyframes reveal-left {
  0% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes reveal-right {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes reveal-top {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes translate-top {
  from {
    opacity: 0;
    transform: translateY(75px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes translate-left {
  from {
    opacity: 0;
    transform: translateX(-75px);
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes zoom-in {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
:target:before {
  content: "";
  display: block;
  height: 190px;
  margin: -190px 0 0;
}

html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: 500;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: var(--blue);
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
}

@font-face {
  font-family: "Made";
  src: url("fonts/made_evolve_sans_light.otf");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Made";
  src: url("fonts/made_evolve_sans_medium.otf");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Made";
  src: url("fonts/made_evolve_sans_regular.otf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Made";
  src: url("fonts/made_evolve_sans_bold.otf");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Made EVO";
  src: url("fonts/made_evolve_sans_light_evo-webfont.woff2");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Made EVO";
  src: url("fonts/made_evolve_sans_medium_evo-webfont.woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Made EVO";
  src: url("fonts/made_evolve_sans_regular_evo-webfont.woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Made EVO";
  src: url("fonts/made_evolve_sans_medium_evo-webfont.woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Light.ttf");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.ttf");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.ttf");
  font-weight: 700;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "Made";
  white-space: inherit;
}

.heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: "Made EVO";
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 50;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .heading-divider {
    flex-flow: row wrap;
  }
  .heading-divider h1, .heading-divider h2, .heading-divider h3 {
    white-space: break-spaces;
  }
}
.heading-divider.social {
  font-family: "Made";
  color: var(--blue-med);
}
.heading-divider.social .heading-before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='144.481' height='11' viewBox='0 0 144.481 11'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3865' data-name='Rectangle 3865' width='144.481' height='11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3842' data-name='Rectangle 3842' width='11' height='11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3844' data-name='Rectangle 3844' width='10.819' height='10.819' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3846' data-name='Rectangle 3846' width='10.638' height='10.638' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3848' data-name='Rectangle 3848' width='10.458' height='10.458' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3850' data-name='Rectangle 3850' width='10.277' height='10.277' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3852' data-name='Rectangle 3852' width='10.096' height='10.096' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3854' data-name='Rectangle 3854' width='9.915' height='9.915' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3856' data-name='Rectangle 3856' width='9.734' height='9.734' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3858' data-name='Rectangle 3858' width='9.554' height='9.554' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3860' data-name='Rectangle 3860' width='9.373' height='9.373' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3862' data-name='Rectangle 3862' width='9.192' height='9.192' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Line' transform='translate(144.481 11) rotate(180)'%3E%3Cg id='Groupe_3590' data-name='Groupe 3590' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_3589' data-name='Groupe 3589' transform='translate(0 0)'%3E%3Cg id='Groupe_3588' data-name='Groupe 3588' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_3587' data-name='Groupe 3587' transform='translate(0 0)'%3E%3Cg id='Groupe_3586' data-name='Groupe 3586' transform='translate(0 0)'%3E%3Cg id='Groupe_3585' data-name='Groupe 3585' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_3554' data-name='Groupe 3554'%3E%3Cg id='Groupe_3553' data-name='Groupe 3553'%3E%3Cg id='Groupe_3552' data-name='Groupe 3552' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3841' data-name='Rectangle 3841' width='11' height='11' transform='translate(0 0)' fill='%2300848c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3557' data-name='Groupe 3557' transform='translate(13.529 0.088)' opacity='0.912'%3E%3Cg id='Groupe_3556' data-name='Groupe 3556'%3E%3Cg id='Groupe_3555' data-name='Groupe 3555' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3843' data-name='Rectangle 3843' width='10.447' height='10.448' transform='matrix(0.999, -0.036, 0.036, 0.999, 0, 0.378)' fill='%230d8a92'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3560' data-name='Groupe 3560' transform='translate(27.058 0.176)' opacity='0.824'%3E%3Cg id='Groupe_3559' data-name='Groupe 3559'%3E%3Cg id='Groupe_3558' data-name='Groupe 3558' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3845' data-name='Rectangle 3845' width='9.91' height='9.91' transform='translate(0 0.757) rotate(-4.383)' fill='%231a9197'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3563' data-name='Groupe 3563' transform='translate(40.587 0.264)' opacity='0.736'%3E%3Cg id='Groupe_3562' data-name='Groupe 3562'%3E%3Cg id='Groupe_3561' data-name='Groupe 3561' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3847' data-name='Rectangle 3847' width='9.391' height='9.391' transform='translate(0 1.135) rotate(-6.946)' fill='%2326979d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3566' data-name='Groupe 3566' transform='translate(54.116 0.351)' opacity='0.648'%3E%3Cg id='Groupe_3565' data-name='Groupe 3565'%3E%3Cg id='Groupe_3564' data-name='Groupe 3564' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3849' data-name='Rectangle 3849' width='8.892' height='8.892' transform='translate(0 1.514) rotate(-9.803)' fill='%23339da3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3569' data-name='Groupe 3569' transform='translate(67.645 0.439)' opacity='0.56'%3E%3Cg id='Groupe_3568' data-name='Groupe 3568'%3E%3Cg id='Groupe_3567' data-name='Groupe 3567' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3851' data-name='Rectangle 3851' width='8.419' height='8.419' transform='translate(0 1.893) rotate(-12.994)' fill='%2340a3a9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3572' data-name='Groupe 3572' transform='translate(81.174 0.527)' opacity='0.472'%3E%3Cg id='Groupe_3571' data-name='Groupe 3571'%3E%3Cg id='Groupe_3570' data-name='Groupe 3570' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3853' data-name='Rectangle 3853' width='7.974' height='7.974' transform='translate(0 2.272) rotate(-16.55)' fill='%234da9ae'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3575' data-name='Groupe 3575' transform='translate(94.703 0.615)' opacity='0.384'%3E%3Cg id='Groupe_3574' data-name='Groupe 3574'%3E%3Cg id='Groupe_3573' data-name='Groupe 3573' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3855' data-name='Rectangle 3855' width='7.564' height='7.564' transform='translate(0 2.65) rotate(-20.507)' fill='%2359afb4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3578' data-name='Groupe 3578' transform='translate(108.231 0.703)' opacity='0.296'%3E%3Cg id='Groupe_3577' data-name='Groupe 3577'%3E%3Cg id='Groupe_3576' data-name='Groupe 3576' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3857' data-name='Rectangle 3857' width='7.194' height='7.194' transform='translate(0 3.028) rotate(-24.898)' fill='%2366b5ba'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3581' data-name='Groupe 3581' transform='translate(121.76 0.791)' opacity='0.208'%3E%3Cg id='Groupe_3580' data-name='Groupe 3580'%3E%3Cg id='Groupe_3579' data-name='Groupe 3579' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3859' data-name='Rectangle 3859' width='6.87' height='6.87' transform='translate(0 3.407) rotate(-29.731)' fill='%2373bbc0'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3584' data-name='Groupe 3584' transform='translate(135.29 0.879)' opacity='0.12'%3E%3Cg id='Groupe_3583' data-name='Groupe 3583'%3E%3Cg id='Groupe_3582' data-name='Groupe 3582' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3861' data-name='Rectangle 3861' width='6.6' height='6.6' transform='translate(0 3.786) rotate(-34.998)' fill='%2380c2c5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E ");
}
.heading-divider.social .heading-after {
  background-image: url("data:image/svg+xml,%3Csvg id='Line' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='144.481' height='11' viewBox='0 0 144.481 11'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3865' data-name='Rectangle 3865' width='144.481' height='11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3842' data-name='Rectangle 3842' width='11' height='11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3844' data-name='Rectangle 3844' width='10.819' height='10.819' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3846' data-name='Rectangle 3846' width='10.638' height='10.638' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3848' data-name='Rectangle 3848' width='10.458' height='10.458' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3850' data-name='Rectangle 3850' width='10.277' height='10.277' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3852' data-name='Rectangle 3852' width='10.096' height='10.096' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3854' data-name='Rectangle 3854' width='9.915' height='9.915' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3856' data-name='Rectangle 3856' width='9.734' height='9.734' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3858' data-name='Rectangle 3858' width='9.554' height='9.554' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3860' data-name='Rectangle 3860' width='9.373' height='9.373' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3862' data-name='Rectangle 3862' width='9.192' height='9.192' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Groupe_3590' data-name='Groupe 3590' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_3589' data-name='Groupe 3589' transform='translate(0 0)'%3E%3Cg id='Groupe_3588' data-name='Groupe 3588' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_3587' data-name='Groupe 3587' transform='translate(0 0)'%3E%3Cg id='Groupe_3586' data-name='Groupe 3586' transform='translate(0 0)'%3E%3Cg id='Groupe_3585' data-name='Groupe 3585' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_3554' data-name='Groupe 3554'%3E%3Cg id='Groupe_3553' data-name='Groupe 3553'%3E%3Cg id='Groupe_3552' data-name='Groupe 3552' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3841' data-name='Rectangle 3841' width='11' height='11' transform='translate(0 0)' fill='%2300848c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3557' data-name='Groupe 3557' transform='translate(13.529 0.088)' opacity='0.912'%3E%3Cg id='Groupe_3556' data-name='Groupe 3556'%3E%3Cg id='Groupe_3555' data-name='Groupe 3555' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3843' data-name='Rectangle 3843' width='10.447' height='10.448' transform='matrix(0.999, -0.036, 0.036, 0.999, 0, 0.378)' fill='%230d8a92'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3560' data-name='Groupe 3560' transform='translate(27.058 0.176)' opacity='0.824'%3E%3Cg id='Groupe_3559' data-name='Groupe 3559'%3E%3Cg id='Groupe_3558' data-name='Groupe 3558' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3845' data-name='Rectangle 3845' width='9.91' height='9.91' transform='translate(0 0.757) rotate(-4.383)' fill='%231a9197'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3563' data-name='Groupe 3563' transform='translate(40.587 0.264)' opacity='0.736'%3E%3Cg id='Groupe_3562' data-name='Groupe 3562'%3E%3Cg id='Groupe_3561' data-name='Groupe 3561' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3847' data-name='Rectangle 3847' width='9.391' height='9.391' transform='translate(0 1.135) rotate(-6.946)' fill='%2326979d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3566' data-name='Groupe 3566' transform='translate(54.116 0.351)' opacity='0.648'%3E%3Cg id='Groupe_3565' data-name='Groupe 3565'%3E%3Cg id='Groupe_3564' data-name='Groupe 3564' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3849' data-name='Rectangle 3849' width='8.892' height='8.892' transform='translate(0 1.514) rotate(-9.803)' fill='%23339da3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3569' data-name='Groupe 3569' transform='translate(67.645 0.439)' opacity='0.56'%3E%3Cg id='Groupe_3568' data-name='Groupe 3568'%3E%3Cg id='Groupe_3567' data-name='Groupe 3567' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3851' data-name='Rectangle 3851' width='8.419' height='8.419' transform='translate(0 1.893) rotate(-12.994)' fill='%2340a3a9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3572' data-name='Groupe 3572' transform='translate(81.174 0.527)' opacity='0.472'%3E%3Cg id='Groupe_3571' data-name='Groupe 3571'%3E%3Cg id='Groupe_3570' data-name='Groupe 3570' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3853' data-name='Rectangle 3853' width='7.974' height='7.974' transform='translate(0 2.272) rotate(-16.55)' fill='%234da9ae'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3575' data-name='Groupe 3575' transform='translate(94.703 0.615)' opacity='0.384'%3E%3Cg id='Groupe_3574' data-name='Groupe 3574'%3E%3Cg id='Groupe_3573' data-name='Groupe 3573' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3855' data-name='Rectangle 3855' width='7.564' height='7.564' transform='translate(0 2.65) rotate(-20.507)' fill='%2359afb4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3578' data-name='Groupe 3578' transform='translate(108.231 0.703)' opacity='0.296'%3E%3Cg id='Groupe_3577' data-name='Groupe 3577'%3E%3Cg id='Groupe_3576' data-name='Groupe 3576' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3857' data-name='Rectangle 3857' width='7.194' height='7.194' transform='translate(0 3.028) rotate(-24.898)' fill='%2366b5ba'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3581' data-name='Groupe 3581' transform='translate(121.76 0.791)' opacity='0.208'%3E%3Cg id='Groupe_3580' data-name='Groupe 3580'%3E%3Cg id='Groupe_3579' data-name='Groupe 3579' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3859' data-name='Rectangle 3859' width='6.87' height='6.87' transform='translate(0 3.407) rotate(-29.731)' fill='%2373bbc0'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_3584' data-name='Groupe 3584' transform='translate(135.29 0.879)' opacity='0.12'%3E%3Cg id='Groupe_3583' data-name='Groupe 3583'%3E%3Cg id='Groupe_3582' data-name='Groupe 3582' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3861' data-name='Rectangle 3861' width='6.6' height='6.6' transform='translate(0 3.786) rotate(-34.998)' fill='%2380c2c5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E ");
}
.heading-divider .heading-before,
.heading-divider .heading-after {
  display: flex;
  align-items: center;
  height: 8px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.heading-divider .heading-before {
  content: "";
  background-position: right;
  background-image: url("data:image/svg+xml,%3Csvg width='328' height='8' viewBox='0 0 328 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='328' height='8'%3E%3Cpath d='M0.0467834 7.99902L327.936 7.99902V0.00102329L0.0467834 0.00102329V7.99902Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask0_1_23106)'%3E%3Cmask id='mask1_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='328' height='8'%3E%3Cpath d='M0.0467834 7.99902L327.936 7.99902V0.00102329L0.0467834 0.00102329V7.99902Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask1_1_23106)'%3E%3Cmask id='mask2_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='328' height='8'%3E%3Cpath d='M0.0467834 7.99902L327.936 7.99902V0.00102329L0.0467834 0.00102329V7.99902Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask2_1_23106)'%3E%3Cmask id='mask3_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='320' y='0' width='8' height='8'%3E%3Cpath d='M320.857 7.99902L327.936 7.99902V0.00102329L320.857 0.00102329V7.99902Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask3_1_23106)'%3E%3Cpath d='M320.857 7.99902L327.936 7.99902V0.00102329L320.857 0.00102329V7.99902Z' fill='%231ED2D2' /%3E%3C/g%3E%3Cg opacity='0.978'%3E%3Cmask id='mask4_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='312' y='0' width='8' height='8'%3E%3Cpath d='M312.837 7.98389L319.887 7.98389V0.0188866L312.837 0.0188866V7.98389Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask4_1_23106)'%3E%3Cpath d='M319.887 7.91492L312.895 7.98585L312.835 0.0857525L319.824 0.0228515L319.887 7.91492Z' fill='%2321D3D3' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.956'%3E%3Cmask id='mask5_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='304' y='0' width='8' height='8'%3E%3Cpath d='M304.816 7.97021L311.837 7.97021V0.0382147L304.816 0.0382147V7.97021Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask5_1_23106)'%3E%3Cpath d='M311.837 7.83292L304.938 7.9709L304.816 0.171839L311.715 0.0388537L311.837 7.83292Z' fill='%2324D3D3' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.934'%3E%3Cmask id='mask6_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='296' y='0' width='8' height='8'%3E%3Cpath d='M296.796 7.95508L303.788 7.95508V0.056078L296.796 0.056078V7.95508Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask6_1_23106)'%3E%3Cpath d='M303.787 7.74862L296.978 7.95509L296.796 0.257213L303.605 0.055743L303.787 7.74862Z' fill='%2327D4D4' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.912'%3E%3Cmask id='mask7_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='288' y='0' width='8' height='8'%3E%3Cpath d='M288.776 7.93994L295.739 7.93994V0.0729413L288.776 0.0729413V7.93994Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask7_1_23106)'%3E%3Cpath d='M295.739 7.664L289.02 7.93944L288.776 0.343304L295.496 0.0728255L295.739 7.664Z' fill='%2329D4D4' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.89'%3E%3Cmask id='mask8_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='280' y='0' width='8' height='8'%3E%3Cpath d='M280.755 7.9248L287.689 7.9248V0.0908046L280.755 0.0908046V7.9248Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask8_1_23106)'%3E%3Cpath d='M287.689 7.58051L281.059 7.92482L280.753 0.430524L287.383 0.0902108L287.689 7.58051Z' fill='%232CD5D5' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.868'%3E%3Cmask id='mask9_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='272' y='0' width='8' height='8'%3E%3Cpath d='M272.736 7.91113L279.64 7.91113V0.110133L272.736 0.110133V7.91113Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask9_1_23106)'%3E%3Cpath d='M279.64 7.49915L273.1 7.91176L272.735 0.520616L279.275 0.111057L279.64 7.49915Z' fill='%232FD5D5' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.846'%3E%3Cmask id='mask10_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='264' y='0' width='8' height='8'%3E%3Cpath d='M264.715 7.896L271.591 7.896V0.127996L264.715 0.127996V7.896Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask10_1_23106)'%3E%3Cpath d='M271.591 7.41506L265.142 7.89662L264.715 0.608893L271.165 0.128332L271.591 7.41506Z' fill='%2332D6D6' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.824'%3E%3Cmask id='mask11_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='256' y='0' width='8' height='8'%3E%3Cpath d='M256.695 7.88086L263.541 7.88086V0.145859L256.695 0.145859V7.88086Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask11_1_23106)'%3E%3Cpath d='M263.541 7.32969L257.182 7.88032L256.694 0.696561L263.054 0.144939L263.541 7.32969Z' fill='%2335D6D6' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.802'%3E%3Cmask id='mask12_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='248' y='0' width='8' height='8'%3E%3Cpath d='M248.675 7.86719L255.492 7.86719V0.165187L248.675 0.165187V7.86719Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask12_1_23106)'%3E%3Cpath d='M255.491 7.24746L249.222 7.86664L248.673 0.787509L254.943 0.16426L255.491 7.24746Z' fill='%2337D7D7' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.78'%3E%3Cmask id='mask13_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='240' y='0' width='8' height='8'%3E%3Cpath d='M240.655 7.85205L247.443 7.85205V0.183051L240.655 0.183051V7.85205Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask13_1_23106)'%3E%3Cpath d='M247.442 7.16449L241.26 7.85275L240.656 0.872653L246.834 0.184782L247.442 7.16449Z' fill='%233AD8D8' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.758'%3E%3Cmask id='mask14_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='232' y='0' width='8' height='8'%3E%3Cpath d='M232.634 7.83691L239.393 7.83691V0.199914L232.634 0.199914V7.83691Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask14_1_23106)'%3E%3Cpath d='M239.394 7.08115L233.304 7.83762L232.635 0.957556L238.723 0.199206L239.394 7.08115Z' fill='%233DD8D8' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.736'%3E%3Cmask id='mask15_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='224' y='0' width='8' height='8'%3E%3Cpath d='M224.614 7.82227L231.344 7.82227V0.218266L224.614 0.218266V7.82227Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask15_1_23106)'%3E%3Cpath d='M231.344 6.99618L225.345 7.82175L224.614 1.04341L230.613 0.217848L231.344 6.99618Z' fill='%2340D9D9' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.714'%3E%3Cmask id='mask16_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='216' y='0' width='8' height='8'%3E%3Cpath d='M216.593 7.80811L223.294 7.80811V0.237105L216.593 0.237105V7.80811Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask16_1_23106)'%3E%3Cpath d='M223.296 6.91517L217.385 7.80944L216.59 1.13387L222.501 0.237615L223.296 6.91517Z' fill='%2343D9D9' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.692'%3E%3Cmask id='mask17_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='208' y='0' width='8' height='8'%3E%3Cpath d='M208.573 7.79297L215.245 7.79297V0.254969L208.573 0.254969V7.79297Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask17_1_23106)'%3E%3Cpath d='M215.244 6.82899L209.425 7.79296L208.57 1.21852L214.392 0.255097L215.244 6.82899Z' fill='%2345DADA' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.67'%3E%3Cmask id='mask18_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='200' y='0' width='8' height='8'%3E%3Cpath d='M200.553 7.77783L207.196 7.77783V0.272832L200.553 0.272832V7.77783Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask18_1_23106)'%3E%3Cpath d='M207.196 6.74614L201.467 7.77805L200.553 1.30515L206.282 0.273247L207.196 6.74614Z' fill='%2348DBDB' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.648'%3E%3Cmask id='mask19_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='192' y='0' width='8' height='8'%3E%3Cpath d='M192.533 7.76318L199.147 7.76318V0.291183L192.533 0.291183V7.76318Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask19_1_23106)'%3E%3Cpath d='M199.146 6.66276L193.507 7.76391L192.533 1.39272L198.172 0.291563L199.146 6.66276Z' fill='%234BDBDB' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.626'%3E%3Cmask id='mask20_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='184' y='0' width='8' height='8'%3E%3Cpath d='M184.512 7.74902L191.097 7.74902V0.310023L184.512 0.310023V7.74902Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask20_1_23106)'%3E%3Cpath d='M191.097 6.57902L185.549 7.7483L184.512 1.47922L190.061 0.309569L191.097 6.57902Z' fill='%234EDCDC' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.604'%3E%3Cmask id='mask21_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='176' y='0' width='8' height='8'%3E%3Cpath d='M176.493 7.73389L183.048 7.73389V0.327887L176.493 0.327887V7.73389Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask21_1_23106)'%3E%3Cpath d='M183.047 6.49536L177.591 7.73497L176.49 1.57044L181.951 0.33298L183.047 6.49536Z' fill='%2351DCDC' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.582'%3E%3Cmask id='mask22_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='168' y='0' width='7' height='8'%3E%3Cpath d='M168.473 7.71924L174.999 7.71924V0.345238L168.473 0.345238V7.71924Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask22_1_23106)'%3E%3Cpath d='M174.999 6.41169L169.63 7.71935L168.473 1.653L173.842 0.34533L174.999 6.41169Z' fill='%2353DDDD' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.56'%3E%3Cmask id='mask23_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='160' y='0' width='7' height='8'%3E%3Cpath d='M160.452 7.70508L166.949 7.70508V0.364078L160.452 0.364078V7.70508Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask23_1_23106)'%3E%3Cpath d='M166.949 6.32899L161.672 7.70614L160.452 1.74372L165.73 0.366576L166.949 6.32899Z' fill='%2356DDDD' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.538'%3E%3Cmask id='mask24_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='152' y='0' width='7' height='8'%3E%3Cpath d='M152.431 7.68994L158.9 7.68994V0.381941L152.431 0.381941V7.68994Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask24_1_23106)'%3E%3Cpath d='M158.9 6.24494L153.711 7.68805L152.433 1.82357L157.623 0.381433L158.9 6.24494Z' fill='%2359DEDE' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.516'%3E%3Cmask id='mask25_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='144' y='0' width='7' height='8'%3E%3Cpath d='M144.411 7.6748L150.85 7.6748V0.399805L144.411 0.399805V7.6748Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask25_1_23106)'%3E%3Cpath d='M150.85 6.16098L145.751 7.67395L144.411 1.91341L149.51 0.400435L150.85 6.16098Z' fill='%235CDEDE' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.494'%3E%3Cmask id='mask26_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='136' y='0' width='7' height='8'%3E%3Cpath d='M136.391 7.66016L142.801 7.66016V0.418156L136.391 0.418156V7.66016Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask26_1_23106)'%3E%3Cpath d='M142.801 6.07781L137.792 7.66021L136.391 2.0004L141.401 0.420892L142.801 6.07781Z' fill='%235FDFDF' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.472'%3E%3Cmask id='mask27_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='128' y='0' width='7' height='8'%3E%3Cpath d='M128.371 7.646L134.752 7.646V0.436996L128.371 0.436996V7.646Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask27_1_23106)'%3E%3Cpath d='M134.751 5.99408L129.832 7.64578L128.37 2.08791L133.29 0.436204L134.751 5.99408Z' fill='%2361DFDF' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.45'%3E%3Cmask id='mask28_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='120' y='0' width='7' height='8'%3E%3Cpath d='M120.35 7.63086L126.702 7.63086V0.454859L120.35 0.454859V7.63086Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask28_1_23106)'%3E%3Cpath d='M126.702 5.91076L121.873 7.63153L120.351 2.1757L125.18 0.454936L126.702 5.91076Z' fill='%2364E0E0' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.428'%3E%3Cmask id='mask29_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='112' y='0' width='7' height='8'%3E%3Cpath d='M112.33 7.61621L118.653 7.61621V0.472211L112.33 0.472211V7.61621Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask29_1_23106)'%3E%3Cpath d='M118.653 5.82705L113.914 7.61635L112.33 2.26222L117.07 0.472923L118.653 5.82705Z' fill='%2367E1E1' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.406'%3E%3Cmask id='mask30_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='104' y='0' width='7' height='8'%3E%3Cpath d='M104.31 7.60205L110.604 7.60205V0.491051L104.31 0.491051V7.60205Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask30_1_23106)'%3E%3Cpath d='M110.606 5.74532L105.958 7.60102L104.313 2.34906L108.96 0.493368L110.606 5.74532Z' fill='%236AE1E1' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.384'%3E%3Cmask id='mask31_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='96' y='0' width='7' height='8'%3E%3Cpath d='M96.2897 7.58691L102.554 7.58691V0.508914L96.2897 0.508914V7.58691Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask31_1_23106)'%3E%3Cpath d='M102.554 5.66037L97.9943 7.58695L96.2897 2.43568L100.849 0.509451L102.554 5.66037Z' fill='%236DE2E2' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.362'%3E%3Cmask id='mask32_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='88' y='0' width='7' height='8'%3E%3Cpath d='M88.2689 7.57227L94.5049 7.57227V0.527266L88.2689 0.527266V7.57227Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask32_1_23106)'%3E%3Cpath d='M94.5056 5.57648L90.0389 7.57074L88.2697 2.52267L92.7392 0.527307L94.5056 5.57648Z' fill='%2370E2E2' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.34'%3E%3Cmask id='mask33_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='80' y='0' width='7' height='8'%3E%3Cpath d='M80.2498 7.55713L86.4558 7.55713V0.545129L80.2498 0.545129V7.55713Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask33_1_23106)'%3E%3Cpath d='M86.4552 5.49204L82.075 7.55642L80.2482 2.6079L84.6284 0.543517L86.4552 5.49204Z' fill='%2372E3E3' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.318'%3E%3Cmask id='mask34_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='72' y='0' width='7' height='8'%3E%3Cpath d='M72.2297 7.54297L78.4067 7.54297V0.563969L72.2297 0.563969V7.54297Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask34_1_23106)'%3E%3Cpath d='M78.4074 5.41019L74.1176 7.5443L72.2276 2.69474L76.518 0.564694L78.4074 5.41019Z' fill='%2375E3E3' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.296'%3E%3Cmask id='mask35_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='64' y='0' width='7' height='8'%3E%3Cpath d='M64.2087 7.52783L70.3567 7.52783V0.581832L64.2087 0.581832V7.52783Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask35_1_23106)'%3E%3Cpath d='M70.3571 5.3248L66.1572 7.5278L64.2085 2.78323L68.4079 0.581566L70.3571 5.3248Z' fill='%2378E4E4' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.274'%3E%3Cmask id='mask36_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='56' y='0' width='7' height='8'%3E%3Cpath d='M56.1879 7.51318L62.3069 7.51318V0.600183L56.1879 0.600183V7.51318Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask36_1_23106)'%3E%3Cpath d='M62.308 5.24269L58.2 7.51129L56.1914 2.87008L60.2994 0.601474L62.308 5.24269Z' fill='%237BE4E4' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.252'%3E%3Cmask id='mask37_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='48' y='0' width='7' height='8'%3E%3Cpath d='M48.1678 7.49902L54.2578 7.49902V0.618023L48.1678 0.618023V7.49902Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask37_1_23106)'%3E%3Cpath d='M54.2579 5.16017L50.239 7.49944L48.1685 2.95847L52.1874 0.619209L54.2579 5.16017Z' fill='%237EE5E5' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.23'%3E%3Cmask id='mask38_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='40' y='0' width='7' height='8'%3E%3Cpath d='M40.1477 7.48389L46.2087 7.48389V0.635887L40.1477 0.635887V7.48389Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask38_1_23106)'%3E%3Cpath d='M46.2094 5.07513L42.2793 7.48368L40.1499 3.04265L44.0773 0.635538L46.2094 5.07513Z' fill='%2381E6E6' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.208'%3E%3Cmask id='mask39_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='32' y='0' width='7' height='8'%3E%3Cpath d='M32.1277 7.46924L38.1597 7.46924V0.654238L32.1277 0.654238V7.46924Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask39_1_23106)'%3E%3Cpath d='M38.1597 4.99259L34.3215 7.47023L32.1292 3.13395L35.967 0.657673L38.1597 4.99259Z' fill='%2383E6E6' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.186'%3E%3Cmask id='mask40_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='24' y='0' width='7' height='8'%3E%3Cpath d='M24.1069 7.4541L30.1099 7.4541V0.672101L24.1069 0.672101V7.4541Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask40_1_23106)'%3E%3Cpath d='M30.1094 4.90833L26.3605 7.45468L24.1068 3.21825L27.8563 0.672756L30.1094 4.90833Z' fill='%2386E7E7' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.164'%3E%3Cmask id='mask41_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='16' y='0' width='7' height='8'%3E%3Cpath d='M16.0868 7.43994L22.0608 7.43994V0.690941L16.0868 0.690941V7.43994Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask41_1_23106)'%3E%3Cpath d='M22.0604 4.82557L18.4027 7.44202L16.0857 3.30949L19.7442 0.692498L22.0604 4.82557Z' fill='%2389E7E7' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.142'%3E%3Cmask id='mask42_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='8' y='0' width='7' height='8'%3E%3Cpath d='M8.06672 7.4248L14.0117 7.4248V0.708805L8.06672 0.708805V7.4248Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask42_1_23106)'%3E%3Cpath d='M14.0113 4.7414L10.4423 7.42504L8.0675 3.39228L11.6365 0.70864L14.0113 4.7414Z' fill='%238CE8E8' /%3E%3C/g%3E%3C/g%3E%3Cg opacity='0.12'%3E%3Cmask id='mask43_1_23106' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='6' height='8'%3E%3Cpath d='M0.0469141 7.41016L5.96191 7.41016L5.96191 0.727156L0.0469141 0.727156L0.0469141 7.41016Z' fill='white' /%3E%3C/mask%3E%3Cg mask='url(%23mask43_1_23106)'%3E%3Cpath d='M5.96225 4.65774L2.48398 7.41178L0.0462328 3.48226L3.52451 0.728221L5.96225 4.65774Z' fill='%238FE9E9' /%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.heading-divider .heading-after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='327.889' height='7.998' viewBox='0 0 327.889 7.998'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_2328' data-name='Rectangle 2328' width='327.889' height='7.998' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_2245' data-name='Rectangle 2245' width='7.079' height='7.998' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_2247' data-name='Rectangle 2247' width='7.05' height='7.965' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_2249' data-name='Rectangle 2249' width='7.021' height='7.932' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_2251' data-name='Rectangle 2251' width='6.992' height='7.899' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_2253' data-name='Rectangle 2253' width='6.963' height='7.867' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_2255' data-name='Rectangle 2255' width='6.934' height='7.834' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_2257' data-name='Rectangle 2257' width='6.904' height='7.801' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_2259' data-name='Rectangle 2259' width='6.876' height='7.768' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_2261' data-name='Rectangle 2261' width='6.846' height='7.735' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_2263' data-name='Rectangle 2263' width='6.817' height='7.702' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_2265' data-name='Rectangle 2265' width='6.788' height='7.669' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_2267' data-name='Rectangle 2267' width='6.759' height='7.637' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_2269' data-name='Rectangle 2269' width='6.73' height='7.604' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_2271' data-name='Rectangle 2271' width='6.701' height='7.571' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_2273' data-name='Rectangle 2273' width='6.672' height='7.538' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_2275' data-name='Rectangle 2275' width='6.643' height='7.505' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_2277' data-name='Rectangle 2277' width='6.614' height='7.472' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_2279' data-name='Rectangle 2279' width='6.585' height='7.439' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_2281' data-name='Rectangle 2281' width='6.555' height='7.406' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_2283' data-name='Rectangle 2283' width='6.526' height='7.374' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_2285' data-name='Rectangle 2285' width='6.497' height='7.341' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_2287' data-name='Rectangle 2287' width='6.469' height='7.308' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_2289' data-name='Rectangle 2289' width='6.439' height='7.275' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_2291' data-name='Rectangle 2291' width='6.41' height='7.242' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_2293' data-name='Rectangle 2293' width='6.381' height='7.209' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_2295' data-name='Rectangle 2295' width='6.352' height='7.176' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_2297' data-name='Rectangle 2297' width='6.323' height='7.144' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_2299' data-name='Rectangle 2299' width='6.294' height='7.111' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_2301' data-name='Rectangle 2301' width='6.264' height='7.078' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_2303' data-name='Rectangle 2303' width='6.236' height='7.045' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_2305' data-name='Rectangle 2305' width='6.206' height='7.012' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_2307' data-name='Rectangle 2307' width='6.177' height='6.979' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_2309' data-name='Rectangle 2309' width='6.148' height='6.946' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_2311' data-name='Rectangle 2311' width='6.119' height='6.913' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_2313' data-name='Rectangle 2313' width='6.09' height='6.881' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_2315' data-name='Rectangle 2315' width='6.061' height='6.848' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_2317' data-name='Rectangle 2317' width='6.032' height='6.815' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_2319' data-name='Rectangle 2319' width='6.003' height='6.782' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_2321' data-name='Rectangle 2321' width='5.974' height='6.749' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_2323' data-name='Rectangle 2323' width='5.945' height='6.716' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_2325' data-name='Rectangle 2325' width='5.915' height='6.683' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Line' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1005' data-name='Groupe 1005' transform='translate(0 0)'%3E%3Cg id='Groupe_1004' data-name='Groupe 1004' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1003' data-name='Groupe 1003' transform='translate(0 0)'%3E%3Cg id='Groupe_1002' data-name='Groupe 1002'%3E%3Cg id='Groupe_1001' data-name='Groupe 1001' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_880' data-name='Groupe 880'%3E%3Cg id='Groupe_879' data-name='Groupe 879'%3E%3Cg id='Groupe_878' data-name='Groupe 878' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_2244' data-name='Rectangle 2244' width='7.079' height='7.998' transform='translate(0 0)' fill='%231ed2d2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_883' data-name='Groupe 883' transform='translate(8.049 0.015)' opacity='0.978'%3E%3Cg id='Groupe_882' data-name='Groupe 882'%3E%3Cg id='Groupe_881' data-name='Groupe 881' clip-path='url(%23clip-path-5)'%3E%3Cpath id='Tracé_1188' data-name='Tracé 1188' d='M.008.008,7,0,6.989,7.9,0,7.9Z' transform='matrix(1, -0.009, 0.009, 1, -0.008, 0.061)' fill='%2321d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_886' data-name='Groupe 886' transform='translate(16.099 0.029)' opacity='0.956'%3E%3Cg id='Groupe_885' data-name='Groupe 885'%3E%3Cg id='Groupe_884' data-name='Groupe 884' clip-path='url(%23clip-path-6)'%3E%3Cpath id='Tracé_1183' data-name='Tracé 1183' d='M.016.016,6.916,0,6.9,7.8,0,7.811Z' transform='translate(-0.016 0.122) rotate(-1.013)' fill='%2324d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_889' data-name='Groupe 889' transform='translate(24.148 0.044)' opacity='0.934'%3E%3Cg id='Groupe_888' data-name='Groupe 888'%3E%3Cg id='Groupe_887' data-name='Groupe 887' clip-path='url(%23clip-path-7)'%3E%3Cpath id='Tracé_1184' data-name='Tracé 1184' d='M.024.024,6.836,0,6.812,7.7,0,7.719Z' transform='translate(-0.024 0.183) rotate(-1.535)' fill='%2327d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_892' data-name='Groupe 892' transform='translate(32.197 0.059)' opacity='0.912'%3E%3Cg id='Groupe_891' data-name='Groupe 891'%3E%3Cg id='Groupe_890' data-name='Groupe 890' clip-path='url(%23clip-path-8)'%3E%3Cpath id='Tracé_1185' data-name='Tracé 1185' d='M.032.032,6.756,0,6.725,7.6,0,7.627Z' transform='translate(-0.033 0.245) rotate(-2.075)' fill='%2329d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_895' data-name='Groupe 895' transform='translate(40.247 0.074)' opacity='0.89'%3E%3Cg id='Groupe_894' data-name='Groupe 894'%3E%3Cg id='Groupe_893' data-name='Groupe 893' clip-path='url(%23clip-path-9)'%3E%3Cpath id='Tracé_1186' data-name='Tracé 1186' d='M.039.039,6.677,0,6.638,7.5,0,7.535Z' transform='matrix(0.999, -0.046, 0.046, 0.999, -0.041, 0.307)' fill='%232cd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_898' data-name='Groupe 898' transform='translate(48.296 0.088)' opacity='0.868'%3E%3Cg id='Groupe_897' data-name='Groupe 897'%3E%3Cg id='Groupe_896' data-name='Groupe 896' clip-path='url(%23clip-path-10)'%3E%3Cpath id='Tracé_1187' data-name='Tracé 1187' d='M.047.047,6.6,0,6.552,7.4,0,7.444Z' transform='translate(-0.05 0.368) rotate(-3.199)' fill='%232fd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_901' data-name='Groupe 901' transform='translate(56.345 0.103)' opacity='0.846'%3E%3Cg id='Groupe_900' data-name='Groupe 900'%3E%3Cg id='Groupe_899' data-name='Groupe 899' clip-path='url(%23clip-path-11)'%3E%3Cpath id='Tracé_1182' data-name='Tracé 1182' d='M.055.055,6.522,0,6.467,7.3,0,7.354Z' transform='translate(-0.059 0.43) rotate(-3.783)' fill='%2332d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_904' data-name='Groupe 904' transform='translate(64.395 0.118)' opacity='0.824'%3E%3Cg id='Groupe_903' data-name='Groupe 903'%3E%3Cg id='Groupe_902' data-name='Groupe 902' clip-path='url(%23clip-path-12)'%3E%3Cpath id='Tracé_1149' data-name='Tracé 1149' d='M.063.063,6.446,0,6.383,7.2,0,7.264Z' transform='translate(-0.068 0.493) rotate(-4.383)' fill='%2335d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_907' data-name='Groupe 907' transform='translate(72.444 0.132)' opacity='0.802'%3E%3Cg id='Groupe_906' data-name='Groupe 906'%3E%3Cg id='Groupe_905' data-name='Groupe 905' clip-path='url(%23clip-path-13)'%3E%3Cpath id='Tracé_1150' data-name='Tracé 1150' d='M.071.071,6.37,0,6.3,7.1,0,7.175Z' transform='translate(-0.076 0.555) rotate(-4.995)' fill='%2337d7d7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_910' data-name='Groupe 910' transform='translate(80.493 0.147)' opacity='0.78'%3E%3Cg id='Groupe_909' data-name='Groupe 909'%3E%3Cg id='Groupe_908' data-name='Groupe 908' clip-path='url(%23clip-path-14)'%3E%3Cpath id='Tracé_1151' data-name='Tracé 1151' d='M.079.079,6.3,0,6.217,7.007,0,7.086Z' transform='matrix(0.995, -0.098, 0.098, 0.995, -0.086, 0.617)' fill='%233ad8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_913' data-name='Groupe 913' transform='translate(88.543 0.162)' opacity='0.758'%3E%3Cg id='Groupe_912' data-name='Groupe 912'%3E%3Cg id='Groupe_911' data-name='Groupe 911' clip-path='url(%23clip-path-15)'%3E%3Cpath id='Tracé_1152' data-name='Tracé 1152' d='M.086.086,6.222,0,6.135,6.912,0,7Z' transform='translate(-0.096 0.68) rotate(-6.278)' fill='%233dd8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_916' data-name='Groupe 916' transform='translate(96.592 0.177)' opacity='0.736'%3E%3Cg id='Groupe_915' data-name='Groupe 915'%3E%3Cg id='Groupe_914' data-name='Groupe 914' clip-path='url(%23clip-path-16)'%3E%3Cpath id='Tracé_1153' data-name='Tracé 1153' d='M.094.094,6.149,0,6.055,6.817,0,6.911Z' transform='translate(-0.105 0.744) rotate(-6.946)' fill='%2340d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_919' data-name='Groupe 919' transform='translate(104.642 0.191)' opacity='0.714'%3E%3Cg id='Groupe_918' data-name='Groupe 918'%3E%3Cg id='Groupe_917' data-name='Groupe 917' clip-path='url(%23clip-path-17)'%3E%3Cpath id='Tracé_1154' data-name='Tracé 1154' d='M.1.1,6.078,0l-.1,6.722L0,6.824Z' transform='matrix(0.991, -0.133, 0.133, 0.991, -0.115, 0.807)' fill='%2343d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_922' data-name='Groupe 922' transform='translate(112.691 0.206)' opacity='0.692'%3E%3Cg id='Groupe_921' data-name='Groupe 921'%3E%3Cg id='Groupe_920' data-name='Groupe 920' clip-path='url(%23clip-path-18)'%3E%3Cpath id='Tracé_1155' data-name='Tracé 1155' d='M.11.11,6.007,0,5.9,6.629,0,6.738Z' transform='translate(-0.124 0.871) rotate(-8.338)' fill='%2345dada'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_925' data-name='Groupe 925' transform='translate(120.74 0.221)' opacity='0.67'%3E%3Cg id='Groupe_924' data-name='Groupe 924'%3E%3Cg id='Groupe_923' data-name='Groupe 923' clip-path='url(%23clip-path-19)'%3E%3Cpath id='Tracé_1156' data-name='Tracé 1156' d='M.117.117,5.937,0,5.82,6.536,0,6.653Z' transform='translate(-0.134 0.935) rotate(-9.059)' fill='%2348dbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_928' data-name='Groupe 928' transform='translate(128.789 0.236)' opacity='0.648'%3E%3Cg id='Groupe_927' data-name='Groupe 927'%3E%3Cg id='Groupe_926' data-name='Groupe 926' clip-path='url(%23clip-path-20)'%3E%3Cpath id='Tracé_1157' data-name='Tracé 1157' d='M.125.125,5.869,0,5.744,6.444,0,6.569Z' transform='translate(-0.144 0.999) rotate(-9.803)' fill='%234bdbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_931' data-name='Groupe 931' transform='translate(136.839 0.25)' opacity='0.626'%3E%3Cg id='Groupe_930' data-name='Groupe 930'%3E%3Cg id='Groupe_929' data-name='Groupe 929' clip-path='url(%23clip-path-21)'%3E%3Cpath id='Tracé_1158' data-name='Tracé 1158' d='M.132.132,5.8,0,5.67,6.353,0,6.485Z' transform='translate(-0.154 1.064) rotate(-10.568)' fill='%234edcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_934' data-name='Groupe 934' transform='translate(144.888 0.265)' opacity='0.604'%3E%3Cg id='Groupe_933' data-name='Groupe 933'%3E%3Cg id='Groupe_932' data-name='Groupe 932' clip-path='url(%23clip-path-22)'%3E%3Cpath id='Tracé_1159' data-name='Tracé 1159' d='M.14.14,5.736,0,5.6,6.263,0,6.4Z' transform='matrix(0.98, -0.197, 0.197, 0.98, -0.164, 1.129)' fill='%2351dcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_937' data-name='Groupe 937' transform='translate(152.937 0.28)' opacity='0.582'%3E%3Cg id='Groupe_936' data-name='Groupe 936'%3E%3Cg id='Groupe_935' data-name='Groupe 935' clip-path='url(%23clip-path-23)'%3E%3Cpath id='Tracé_1160' data-name='Tracé 1160' d='M.147.147,5.671,0,5.524,6.174,0,6.321Z' transform='translate(-0.175 1.195) rotate(-12.164)' fill='%2353dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_940' data-name='Groupe 940' transform='translate(160.987 0.294)' opacity='0.56'%3E%3Cg id='Groupe_939' data-name='Groupe 939'%3E%3Cg id='Groupe_938' data-name='Groupe 938' clip-path='url(%23clip-path-24)'%3E%3Cpath id='Tracé_1161' data-name='Tracé 1161' d='M.154.154,5.608,0,5.454,6.086,0,6.24Z' transform='matrix(0.974, -0.225, 0.225, 0.974, -0.185, 1.261)' fill='%2356dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_943' data-name='Groupe 943' transform='translate(169.036 0.309)' opacity='0.538'%3E%3Cg id='Groupe_942' data-name='Groupe 942'%3E%3Cg id='Groupe_941' data-name='Groupe 941' clip-path='url(%23clip-path-25)'%3E%3Cpath id='Tracé_1162' data-name='Tracé 1162' d='M.161.161,5.545,0,5.384,6,0,6.16Z' transform='matrix(0.971, -0.239, 0.239, 0.971, -0.195, 1.327)' fill='%2359dede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_946' data-name='Groupe 946' transform='translate(177.086 0.324)' opacity='0.516'%3E%3Cg id='Groupe_945' data-name='Groupe 945'%3E%3Cg id='Groupe_944' data-name='Groupe 944' clip-path='url(%23clip-path-26)'%3E%3Cpath id='Tracé_1163' data-name='Tracé 1163' d='M.168.168,5.485,0,5.317,5.913,0,6.081Z' transform='matrix(0.967, -0.254, 0.254, 0.967, -0.205, 1.394)' fill='%235cdede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_949' data-name='Groupe 949' transform='translate(185.135 0.339)' opacity='0.494'%3E%3Cg id='Groupe_948' data-name='Groupe 948'%3E%3Cg id='Groupe_947' data-name='Groupe 947' clip-path='url(%23clip-path-27)'%3E%3Cpath id='Tracé_1164' data-name='Tracé 1164' d='M.175.175,5.425,0,5.25,5.828,0,6Z' transform='translate(-0.216 1.461) rotate(-15.623)' fill='%235fdfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_952' data-name='Groupe 952' transform='translate(193.184 0.353)' opacity='0.472'%3E%3Cg id='Groupe_951' data-name='Groupe 951'%3E%3Cg id='Groupe_950' data-name='Groupe 950' clip-path='url(%23clip-path-28)'%3E%3Cpath id='Tracé_1165' data-name='Tracé 1165' d='M.182.182,5.368,0,5.186,5.744,0,5.926Z' transform='translate(-0.226 1.529) rotate(-16.55)' fill='%2361dfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_955' data-name='Groupe 955' transform='translate(201.234 0.368)' opacity='0.45'%3E%3Cg id='Groupe_954' data-name='Groupe 954'%3E%3Cg id='Groupe_953' data-name='Groupe 953' clip-path='url(%23clip-path-29)'%3E%3Cpath id='Tracé_1166' data-name='Tracé 1166' d='M.189.189,5.312,0,5.123,5.661,0,5.85Z' transform='translate(-0.237 1.597) rotate(-17.5)' fill='%2364e0e0'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_958' data-name='Groupe 958' transform='translate(209.283 0.383)' opacity='0.428'%3E%3Cg id='Groupe_957' data-name='Groupe 957'%3E%3Cg id='Groupe_956' data-name='Groupe 956' clip-path='url(%23clip-path-30)'%3E%3Cpath id='Tracé_1167' data-name='Tracé 1167' d='M.195.195,5.257,0,5.062,5.58,0,5.775Z' transform='translate(-0.247 1.666) rotate(-18.478)' fill='%2367e1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_961' data-name='Groupe 961' transform='translate(217.332 0.397)' opacity='0.406'%3E%3Cg id='Groupe_960' data-name='Groupe 960'%3E%3Cg id='Groupe_959' data-name='Groupe 959' clip-path='url(%23clip-path-31)'%3E%3Cpath id='Tracé_1168' data-name='Tracé 1168' d='M.2.2l5-.2L5,5.5,0,5.7Z' transform='translate(-0.257 1.735) rotate(-19.477)' fill='%236ae1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_964' data-name='Groupe 964' transform='translate(225.382 0.412)' opacity='0.384'%3E%3Cg id='Groupe_963' data-name='Groupe 963'%3E%3Cg id='Groupe_962' data-name='Groupe 962' clip-path='url(%23clip-path-32)'%3E%3Cpath id='Tracé_1169' data-name='Tracé 1169' d='M.207.207,5.153,0,4.945,5.422,0,5.629Z' transform='translate(-0.267 1.805) rotate(-20.507)' fill='%236de2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_967' data-name='Groupe 967' transform='translate(233.431 0.427)' opacity='0.362'%3E%3Cg id='Groupe_966' data-name='Groupe 966'%3E%3Cg id='Groupe_965' data-name='Groupe 965' clip-path='url(%23clip-path-33)'%3E%3Cpath id='Tracé_1170' data-name='Tracé 1170' d='M.213.213,5.1,0,4.89,5.345,0,5.558Z' transform='translate(-0.277 1.876) rotate(-21.564)' fill='%2370e2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_970' data-name='Groupe 970' transform='translate(241.48 0.442)' opacity='0.34'%3E%3Cg id='Groupe_969' data-name='Groupe 969'%3E%3Cg id='Groupe_968' data-name='Groupe 968' clip-path='url(%23clip-path-34)'%3E%3Cpath id='Tracé_1171' data-name='Tracé 1171' d='M.219.219,5.056,0,4.837,5.27,0,5.489Z' transform='matrix(0.923, -0.385, 0.385, 0.923, -0.286, 1.947)' fill='%2372e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_973' data-name='Groupe 973' transform='translate(249.529 0.456)' opacity='0.318'%3E%3Cg id='Groupe_972' data-name='Groupe 972'%3E%3Cg id='Groupe_971' data-name='Groupe 971' clip-path='url(%23clip-path-35)'%3E%3Cpath id='Tracé_1172' data-name='Tracé 1172' d='M.224.224,5.01,0,4.785,5.2,0,5.42Z' transform='matrix(0.915, -0.403, 0.403, 0.915, -0.296, 2.018)' fill='%2375e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_976' data-name='Groupe 976' transform='translate(257.579 0.471)' opacity='0.296'%3E%3Cg id='Groupe_975' data-name='Groupe 975'%3E%3Cg id='Groupe_974' data-name='Groupe 974' clip-path='url(%23clip-path-36)'%3E%3Cpath id='Tracé_1173' data-name='Tracé 1173' d='M.229.23,4.966,0,4.736,5.124,0,5.353Z' transform='translate(-0.305 2.091) rotate(-24.899)' fill='%2378e4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_979' data-name='Groupe 979' transform='translate(265.629 0.486)' opacity='0.274'%3E%3Cg id='Groupe_978' data-name='Groupe 978'%3E%3Cg id='Groupe_977' data-name='Groupe 977' clip-path='url(%23clip-path-37)'%3E%3Cpath id='Tracé_1174' data-name='Tracé 1174' d='M.234.234,4.923,0,4.689,5.054,0,5.288Z' transform='matrix(0.898, -0.439, 0.439, 0.898, -0.314, 2.163)' fill='%237be4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_982' data-name='Groupe 982' transform='translate(273.678 0.5)' opacity='0.252'%3E%3Cg id='Groupe_981' data-name='Groupe 981'%3E%3Cg id='Groupe_980' data-name='Groupe 980' clip-path='url(%23clip-path-38)'%3E%3Cpath id='Tracé_1175' data-name='Tracé 1175' d='M.239.239,4.883,0,4.644,4.985,0,5.224Z' transform='translate(-0.322 2.236) rotate(-27.256)' fill='%237ee5e5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_985' data-name='Groupe 985' transform='translate(281.727 0.515)' opacity='0.23'%3E%3Cg id='Groupe_984' data-name='Groupe 984'%3E%3Cg id='Groupe_983' data-name='Groupe 983' clip-path='url(%23clip-path-39)'%3E%3Cpath id='Tracé_1176' data-name='Tracé 1176' d='M.243.243,4.846,0,4.6,4.919,0,5.162Z' transform='translate(-0.33 2.311) rotate(-28.48)' fill='%2381e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_988' data-name='Groupe 988' transform='translate(289.776 0.53)' opacity='0.208'%3E%3Cg id='Groupe_987' data-name='Groupe 987'%3E%3Cg id='Groupe_986' data-name='Groupe 986' clip-path='url(%23clip-path-40)'%3E%3Cpath id='Tracé_1177' data-name='Tracé 1177' d='M.247.247,4.81,0,4.562,4.854,0,5.1Z' transform='matrix(0.868, -0.496, 0.496, 0.868, -0.337, 2.385)' fill='%2383e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_991' data-name='Groupe 991' transform='translate(297.826 0.545)' opacity='0.186'%3E%3Cg id='Groupe_990' data-name='Groupe 990'%3E%3Cg id='Groupe_989' data-name='Groupe 989' clip-path='url(%23clip-path-41)'%3E%3Cpath id='Tracé_1178' data-name='Tracé 1178' d='M.251.251,4.776,0,4.525,4.792,0,5.042Z' transform='translate(-0.344 2.46) rotate(-31.01)' fill='%2386e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_994' data-name='Groupe 994' transform='translate(305.875 0.559)' opacity='0.164'%3E%3Cg id='Groupe_993' data-name='Groupe 993'%3E%3Cg id='Groupe_992' data-name='Groupe 992' clip-path='url(%23clip-path-42)'%3E%3Cpath id='Tracé_1179' data-name='Tracé 1179' d='M.254.254,4.744,0,4.491,4.731,0,4.985Z' transform='matrix(0.845, -0.535, 0.535, 0.845, -0.35, 2.536)' fill='%2389e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_997' data-name='Groupe 997' transform='translate(313.924 0.574)' opacity='0.142'%3E%3Cg id='Groupe_996' data-name='Groupe 996'%3E%3Cg id='Groupe_995' data-name='Groupe 995' clip-path='url(%23clip-path-43)'%3E%3Cpath id='Tracé_1180' data-name='Tracé 1180' d='M.257.257,4.715,0,4.458,4.673,0,4.93Z' transform='translate(-0.356 2.612) rotate(-33.641)' fill='%238ce8e8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1000' data-name='Groupe 1000' transform='translate(321.974 0.589)' opacity='0.12'%3E%3Cg id='Groupe_999' data-name='Groupe 999'%3E%3Cg id='Groupe_998' data-name='Groupe 998' clip-path='url(%23clip-path-44)'%3E%3Cpath id='Tracé_1181' data-name='Tracé 1181' d='M.259.259,4.688,0,4.429,4.617,0,4.876Z' transform='matrix(0.819, -0.574, 0.574, 0.819, -0.361, 2.689)' fill='%238fe9e9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.heading-divider.orange .heading-before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='370.544' height='8' viewBox='0 0 370.544 8'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3199' data-name='Rectangle 3199' width='370.544' height='8' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3116' data-name='Rectangle 3116' width='8' height='8' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3118' data-name='Rectangle 3118' width='7.967' height='7.967' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3120' data-name='Rectangle 3120' width='7.935' height='7.934' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3122' data-name='Rectangle 3122' width='7.901' height='7.901' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3124' data-name='Rectangle 3124' width='7.868' height='7.869' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3126' data-name='Rectangle 3126' width='7.835' height='7.836' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3128' data-name='Rectangle 3128' width='7.803' height='7.803' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3130' data-name='Rectangle 3130' width='7.77' height='7.77' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3132' data-name='Rectangle 3132' width='7.737' height='7.737' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3134' data-name='Rectangle 3134' width='7.704' height='7.704' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3136' data-name='Rectangle 3136' width='7.671' height='7.671' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_3138' data-name='Rectangle 3138' width='7.638' height='7.638' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_3140' data-name='Rectangle 3140' width='7.606' height='7.605' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3142' data-name='Rectangle 3142' width='7.573' height='7.573' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_3144' data-name='Rectangle 3144' width='7.54' height='7.54' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_3146' data-name='Rectangle 3146' width='7.507' height='7.507' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_3148' data-name='Rectangle 3148' width='7.474' height='7.474' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_3150' data-name='Rectangle 3150' width='7.441' height='7.441' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_3152' data-name='Rectangle 3152' width='7.408' height='7.408' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_3154' data-name='Rectangle 3154' width='7.375' height='7.375' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_3156' data-name='Rectangle 3156' width='7.342' height='7.343' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_3158' data-name='Rectangle 3158' width='7.31' height='7.31' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_3160' data-name='Rectangle 3160' width='7.277' height='7.277' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_3162' data-name='Rectangle 3162' width='7.244' height='7.244' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_3164' data-name='Rectangle 3164' width='7.211' height='7.211' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_3166' data-name='Rectangle 3166' width='7.178' height='7.178' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_3168' data-name='Rectangle 3168' width='7.145' height='7.145' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_3170' data-name='Rectangle 3170' width='7.113' height='7.112' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_3172' data-name='Rectangle 3172' width='7.079' height='7.08' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_3174' data-name='Rectangle 3174' width='7.047' height='7.047' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_3176' data-name='Rectangle 3176' width='7.014' height='7.014' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_3178' data-name='Rectangle 3178' width='6.981' height='6.981' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_3180' data-name='Rectangle 3180' width='6.948' height='6.948' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_3182' data-name='Rectangle 3182' width='6.915' height='6.915' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_3184' data-name='Rectangle 3184' width='6.882' height='6.882' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_3186' data-name='Rectangle 3186' width='6.849' height='6.849' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_3188' data-name='Rectangle 3188' width='6.817' height='6.817' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_3190' data-name='Rectangle 3190' width='6.784' height='6.784' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_3192' data-name='Rectangle 3192' width='6.751' height='6.751' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_3194' data-name='Rectangle 3194' width='6.718' height='6.718' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_3196' data-name='Rectangle 3196' width='6.685' height='6.685' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Line' transform='translate(363 7.999) rotate(180)'%3E%3Cg id='Groupe_2213' data-name='Groupe 2213' transform='translate(363 7.999) rotate(180)'%3E%3Cg id='Groupe_2212' data-name='Groupe 2212' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2211' data-name='Groupe 2211' transform='translate(0 0)'%3E%3Cg id='Groupe_2210' data-name='Groupe 2210' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2209' data-name='Groupe 2209' transform='translate(0 0)'%3E%3Cg id='Groupe_2208' data-name='Groupe 2208' transform='translate(0 0)'%3E%3Cg id='Groupe_2207' data-name='Groupe 2207' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2086' data-name='Groupe 2086' transform='translate(362.544)'%3E%3Cg id='Groupe_2085' data-name='Groupe 2085'%3E%3Cg id='Groupe_2084' data-name='Groupe 2084' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3115' data-name='Rectangle 3115' width='8' height='8' transform='translate(0)' fill='%23ffa000'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2089' data-name='Groupe 2089' transform='translate(353.48 0.018)' opacity='0.978'%3E%3Cg id='Groupe_2088' data-name='Groupe 2088'%3E%3Cg id='Groupe_2087' data-name='Groupe 2087' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3117' data-name='Rectangle 3117' width='7.898' height='7.898' transform='translate(0 0.069) rotate(-0.5)' fill='%23ffa103'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2092' data-name='Groupe 2092' transform='translate(344.416 0.036)' opacity='0.956'%3E%3Cg id='Groupe_2091' data-name='Groupe 2091'%3E%3Cg id='Groupe_2090' data-name='Groupe 2090' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3119' data-name='Rectangle 3119' width='7.798' height='7.798' transform='matrix(1, -0.018, 0.018, 1, 0, 0.138)' fill='%23ffa206'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2095' data-name='Groupe 2095' transform='translate(335.353 0.054)' opacity='0.934'%3E%3Cg id='Groupe_2094' data-name='Groupe 2094'%3E%3Cg id='Groupe_2093' data-name='Groupe 2093' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3121' data-name='Rectangle 3121' width='7.698' height='7.698' transform='translate(0 0.207) rotate(-1.539)' fill='%23ffa30a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2098' data-name='Groupe 2098' transform='translate(326.289 0.073)' opacity='0.912'%3E%3Cg id='Groupe_2097' data-name='Groupe 2097'%3E%3Cg id='Groupe_2096' data-name='Groupe 2096' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3123' data-name='Rectangle 3123' width='7.598' height='7.598' transform='translate(0 0.275) rotate(-2.075)' fill='%23ffa50d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2101' data-name='Groupe 2101' transform='translate(317.226 0.091)' opacity='0.89'%3E%3Cg id='Groupe_2100' data-name='Groupe 2100'%3E%3Cg id='Groupe_2099' data-name='Groupe 2099' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3125' data-name='Rectangle 3125' width='7.499' height='7.499' transform='matrix(0.999, -0.046, 0.046, 0.999, 0, 0.344)' fill='%23ffa610'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2104' data-name='Groupe 2104' transform='translate(308.162 0.109)' opacity='0.868'%3E%3Cg id='Groupe_2103' data-name='Groupe 2103'%3E%3Cg id='Groupe_2102' data-name='Groupe 2102' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3127' data-name='Rectangle 3127' width='7.401' height='7.401' transform='translate(0 0.413) rotate(-3.199)' fill='%23ffa713'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2107' data-name='Groupe 2107' transform='translate(299.098 0.127)' opacity='0.846'%3E%3Cg id='Groupe_2106' data-name='Groupe 2106'%3E%3Cg id='Groupe_2105' data-name='Groupe 2105' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3129' data-name='Rectangle 3129' width='7.304' height='7.304' transform='translate(0 0.482) rotate(-3.783)' fill='%23ffa816'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2110' data-name='Groupe 2110' transform='translate(290.035 0.145)' opacity='0.824'%3E%3Cg id='Groupe_2109' data-name='Groupe 2109'%3E%3Cg id='Groupe_2108' data-name='Groupe 2108' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3131' data-name='Rectangle 3131' width='7.208' height='7.207' transform='translate(0 0.551) rotate(-4.383)' fill='%23ffaa1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2113' data-name='Groupe 2113' transform='translate(280.971 0.163)' opacity='0.802'%3E%3Cg id='Groupe_2112' data-name='Groupe 2112'%3E%3Cg id='Groupe_2111' data-name='Groupe 2111' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3133' data-name='Rectangle 3133' width='7.112' height='7.112' transform='translate(0 0.619) rotate(-4.995)' fill='%23ffab1d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2116' data-name='Groupe 2116' transform='translate(271.907 0.182)' opacity='0.78'%3E%3Cg id='Groupe_2115' data-name='Groupe 2115'%3E%3Cg id='Groupe_2114' data-name='Groupe 2114' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3135' data-name='Rectangle 3135' width='7.017' height='7.017' transform='matrix(0.995, -0.098, 0.098, 0.995, 0, 0.688)' fill='%23ffac20'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2119' data-name='Groupe 2119' transform='translate(262.844 0.2)' opacity='0.758'%3E%3Cg id='Groupe_2118' data-name='Groupe 2118'%3E%3Cg id='Groupe_2117' data-name='Groupe 2117' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_3137' data-name='Rectangle 3137' width='6.923' height='6.923' transform='matrix(0.994, -0.109, 0.109, 0.994, 0, 0.757)' fill='%23ffad23'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2122' data-name='Groupe 2122' transform='translate(253.78 0.218)' opacity='0.736'%3E%3Cg id='Groupe_2121' data-name='Groupe 2121'%3E%3Cg id='Groupe_2120' data-name='Groupe 2120' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_3139' data-name='Rectangle 3139' width='6.83' height='6.83' transform='translate(0 0.826) rotate(-6.946)' fill='%23ffae26'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2125' data-name='Groupe 2125' transform='translate(244.717 0.236)' opacity='0.714'%3E%3Cg id='Groupe_2124' data-name='Groupe 2124'%3E%3Cg id='Groupe_2123' data-name='Groupe 2123' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3141' data-name='Rectangle 3141' width='6.738' height='6.738' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 0.895)' fill='%23ffaf2a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2128' data-name='Groupe 2128' transform='translate(235.653 0.254)' opacity='0.692'%3E%3Cg id='Groupe_2127' data-name='Groupe 2127'%3E%3Cg id='Groupe_2126' data-name='Groupe 2126' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_3143' data-name='Rectangle 3143' width='6.646' height='6.646' transform='matrix(0.989, -0.145, 0.145, 0.989, 0, 0.964)' fill='%23ffb12d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2131' data-name='Groupe 2131' transform='translate(226.59 0.272)' opacity='0.67'%3E%3Cg id='Groupe_2130' data-name='Groupe 2130'%3E%3Cg id='Groupe_2129' data-name='Groupe 2129' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_3145' data-name='Rectangle 3145' width='6.556' height='6.556' transform='translate(0 1.032) rotate(-9.059)' fill='%23ffb230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2134' data-name='Groupe 2134' transform='translate(217.526 0.29)' opacity='0.648'%3E%3Cg id='Groupe_2133' data-name='Groupe 2133'%3E%3Cg id='Groupe_2132' data-name='Groupe 2132' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_3147' data-name='Rectangle 3147' width='6.467' height='6.467' transform='translate(0 1.101) rotate(-9.803)' fill='%23ffb333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2137' data-name='Groupe 2137' transform='translate(208.463 0.309)' opacity='0.626'%3E%3Cg id='Groupe_2136' data-name='Groupe 2136'%3E%3Cg id='Groupe_2135' data-name='Groupe 2135' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_3149' data-name='Rectangle 3149' width='6.379' height='6.379' transform='translate(0 1.17) rotate(-10.568)' fill='%23ffb436'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2140' data-name='Groupe 2140' transform='translate(199.399 0.327)' opacity='0.604'%3E%3Cg id='Groupe_2139' data-name='Groupe 2139'%3E%3Cg id='Groupe_2138' data-name='Groupe 2138' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_3151' data-name='Rectangle 3151' width='6.293' height='6.293' transform='translate(0 1.239) rotate(-11.355)' fill='%23ffb539'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2143' data-name='Groupe 2143' transform='translate(190.336 0.345)' opacity='0.582'%3E%3Cg id='Groupe_2142' data-name='Groupe 2142'%3E%3Cg id='Groupe_2141' data-name='Groupe 2141' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_3153' data-name='Rectangle 3153' width='6.207' height='6.207' transform='matrix(0.978, -0.211, 0.211, 0.978, 0, 1.308)' fill='%23ffb73d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2146' data-name='Groupe 2146' transform='translate(181.272 0.363)' opacity='0.56'%3E%3Cg id='Groupe_2145' data-name='Groupe 2145'%3E%3Cg id='Groupe_2144' data-name='Groupe 2144' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_3155' data-name='Rectangle 3155' width='6.123' height='6.123' transform='translate(0 1.377) rotate(-12.994)' fill='%23ffb840'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2149' data-name='Groupe 2149' transform='translate(172.208 0.381)' opacity='0.538'%3E%3Cg id='Groupe_2148' data-name='Groupe 2148'%3E%3Cg id='Groupe_2147' data-name='Groupe 2147' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_3157' data-name='Rectangle 3157' width='6.04' height='6.04' transform='translate(0 1.445) rotate(-13.844)' fill='%23ffb943'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2152' data-name='Groupe 2152' transform='translate(163.145 0.399)' opacity='0.516'%3E%3Cg id='Groupe_2151' data-name='Groupe 2151'%3E%3Cg id='Groupe_2150' data-name='Groupe 2150' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_3159' data-name='Rectangle 3159' width='5.958' height='5.958' transform='translate(0 1.514) rotate(-14.722)' fill='%23ffba46'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2155' data-name='Groupe 2155' transform='translate(154.081 0.417)' opacity='0.494'%3E%3Cg id='Groupe_2154' data-name='Groupe 2154'%3E%3Cg id='Groupe_2153' data-name='Groupe 2153' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_3161' data-name='Rectangle 3161' width='5.878' height='5.878' transform='translate(0 1.583) rotate(-15.623)' fill='%23ffbb49'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2158' data-name='Groupe 2158' transform='translate(145.017 0.436)' opacity='0.472'%3E%3Cg id='Groupe_2157' data-name='Groupe 2157'%3E%3Cg id='Groupe_2156' data-name='Groupe 2156' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_3163' data-name='Rectangle 3163' width='5.799' height='5.799' transform='translate(0 1.652) rotate(-16.55)' fill='%23ffbc4d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2161' data-name='Groupe 2161' transform='translate(135.954 0.454)' opacity='0.45'%3E%3Cg id='Groupe_2160' data-name='Groupe 2160'%3E%3Cg id='Groupe_2159' data-name='Groupe 2159' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_3165' data-name='Rectangle 3165' width='5.722' height='5.722' transform='translate(0 1.721) rotate(-17.5)' fill='%23ffbe50'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2164' data-name='Groupe 2164' transform='translate(126.89 0.472)' opacity='0.428'%3E%3Cg id='Groupe_2163' data-name='Groupe 2163'%3E%3Cg id='Groupe_2162' data-name='Groupe 2162' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_3167' data-name='Rectangle 3167' width='5.647' height='5.647' transform='matrix(0.948, -0.317, 0.317, 0.948, 0, 1.79)' fill='%23ffbf53'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2167' data-name='Groupe 2167' transform='translate(117.826 0.49)' opacity='0.406'%3E%3Cg id='Groupe_2166' data-name='Groupe 2166'%3E%3Cg id='Groupe_2165' data-name='Groupe 2165' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_3169' data-name='Rectangle 3169' width='5.573' height='5.573' transform='matrix(0.943, -0.333, 0.333, 0.943, 0, 1.858)' fill='%23ffc056'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2170' data-name='Groupe 2170' transform='translate(108.763 0.508)' opacity='0.384'%3E%3Cg id='Groupe_2169' data-name='Groupe 2169'%3E%3Cg id='Groupe_2168' data-name='Groupe 2168' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_3171' data-name='Rectangle 3171' width='5.501' height='5.501' transform='translate(0 1.927) rotate(-20.507)' fill='%23ffc159'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2173' data-name='Groupe 2173' transform='translate(99.699 0.526)' opacity='0.362'%3E%3Cg id='Groupe_2172' data-name='Groupe 2172'%3E%3Cg id='Groupe_2171' data-name='Groupe 2171' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_3173' data-name='Rectangle 3173' width='5.431' height='5.431' transform='translate(0 1.996) rotate(-21.565)' fill='%23ffc25d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2176' data-name='Groupe 2176' transform='translate(90.636 0.544)' opacity='0.34'%3E%3Cg id='Groupe_2175' data-name='Groupe 2175'%3E%3Cg id='Groupe_2174' data-name='Groupe 2174' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_3175' data-name='Rectangle 3175' width='5.363' height='5.363' transform='translate(0 2.065) rotate(-22.647)' fill='%23ffc460'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2179' data-name='Groupe 2179' transform='translate(81.572 0.563)' opacity='0.318'%3E%3Cg id='Groupe_2178' data-name='Groupe 2178'%3E%3Cg id='Groupe_2177' data-name='Groupe 2177' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_3177' data-name='Rectangle 3177' width='5.296' height='5.296' transform='translate(0 2.134) rotate(-23.759)' fill='%23ffc563'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2182' data-name='Groupe 2182' transform='translate(72.509 0.581)' opacity='0.296'%3E%3Cg id='Groupe_2181' data-name='Groupe 2181'%3E%3Cg id='Groupe_2180' data-name='Groupe 2180' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_3179' data-name='Rectangle 3179' width='5.232' height='5.232' transform='translate(0 2.203) rotate(-24.899)' fill='%23ffc666'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2185' data-name='Groupe 2185' transform='translate(63.445 0.599)' opacity='0.274'%3E%3Cg id='Groupe_2184' data-name='Groupe 2184'%3E%3Cg id='Groupe_2183' data-name='Groupe 2183' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_3181' data-name='Rectangle 3181' width='5.169' height='5.17' transform='matrix(0.898, -0.439, 0.439, 0.898, 0, 2.271)' fill='%23ffc769'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2188' data-name='Groupe 2188' transform='translate(54.382 0.617)' opacity='0.252'%3E%3Cg id='Groupe_2187' data-name='Groupe 2187'%3E%3Cg id='Groupe_2186' data-name='Groupe 2186' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_3183' data-name='Rectangle 3183' width='5.109' height='5.11' transform='translate(0 2.34) rotate(-27.256)' fill='%23ffc86c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2191' data-name='Groupe 2191' transform='translate(45.318 0.635)' opacity='0.23'%3E%3Cg id='Groupe_2190' data-name='Groupe 2190'%3E%3Cg id='Groupe_2189' data-name='Groupe 2189' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_3185' data-name='Rectangle 3185' width='5.052' height='5.052' transform='translate(0 2.409) rotate(-28.48)' fill='%23ffc970'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2194' data-name='Groupe 2194' transform='translate(36.254 0.653)' opacity='0.208'%3E%3Cg id='Groupe_2193' data-name='Groupe 2193'%3E%3Cg id='Groupe_2192' data-name='Groupe 2192' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_3187' data-name='Rectangle 3187' width='4.996' height='4.996' transform='translate(0 2.478) rotate(-29.731)' fill='%23ffcb73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2197' data-name='Groupe 2197' transform='translate(27.191 0.672)' opacity='0.186'%3E%3Cg id='Groupe_2196' data-name='Groupe 2196'%3E%3Cg id='Groupe_2195' data-name='Groupe 2195' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_3189' data-name='Rectangle 3189' width='4.943' height='4.943' transform='translate(0 2.547) rotate(-31.01)' fill='%23ffcc76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2200' data-name='Groupe 2200' transform='translate(18.127 0.69)' opacity='0.164'%3E%3Cg id='Groupe_2199' data-name='Groupe 2199'%3E%3Cg id='Groupe_2198' data-name='Groupe 2198' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_3191' data-name='Rectangle 3191' width='4.893' height='4.893' transform='translate(0 2.616) rotate(-32.315)' fill='%23ffcd79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2203' data-name='Groupe 2203' transform='translate(9.064 0.708)' opacity='0.142'%3E%3Cg id='Groupe_2202' data-name='Groupe 2202'%3E%3Cg id='Groupe_2201' data-name='Groupe 2201' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_3193' data-name='Rectangle 3193' width='4.845' height='4.845' transform='matrix(0.833, -0.554, 0.554, 0.833, 0, 2.684)' fill='%23ffce7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2206' data-name='Groupe 2206' transform='translate(0 0.726)' opacity='0.12'%3E%3Cg id='Groupe_2205' data-name='Groupe 2205'%3E%3Cg id='Groupe_2204' data-name='Groupe 2204' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_3195' data-name='Rectangle 3195' width='4.8' height='4.8' transform='translate(0 2.753) rotate(-34.999)' fill='%23ffd080'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.heading-divider.orange .heading-after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='370.543' height='8' viewBox='0 0 370.543 8'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3199' data-name='Rectangle 3199' width='370.543' height='8' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3116' data-name='Rectangle 3116' width='8' height='8' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3118' data-name='Rectangle 3118' width='7.967' height='7.967' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3120' data-name='Rectangle 3120' width='7.935' height='7.934' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3122' data-name='Rectangle 3122' width='7.901' height='7.901' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3124' data-name='Rectangle 3124' width='7.868' height='7.869' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3126' data-name='Rectangle 3126' width='7.835' height='7.836' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3128' data-name='Rectangle 3128' width='7.803' height='7.803' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3130' data-name='Rectangle 3130' width='7.77' height='7.77' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3132' data-name='Rectangle 3132' width='7.737' height='7.737' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3134' data-name='Rectangle 3134' width='7.704' height='7.704' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3136' data-name='Rectangle 3136' width='7.671' height='7.671' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_3138' data-name='Rectangle 3138' width='7.638' height='7.638' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_3140' data-name='Rectangle 3140' width='7.606' height='7.605' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3142' data-name='Rectangle 3142' width='7.573' height='7.573' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_3144' data-name='Rectangle 3144' width='7.54' height='7.54' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_3146' data-name='Rectangle 3146' width='7.507' height='7.507' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_3148' data-name='Rectangle 3148' width='7.474' height='7.474' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_3150' data-name='Rectangle 3150' width='7.441' height='7.441' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_3152' data-name='Rectangle 3152' width='7.408' height='7.408' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_3154' data-name='Rectangle 3154' width='7.375' height='7.375' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_3156' data-name='Rectangle 3156' width='7.342' height='7.343' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_3158' data-name='Rectangle 3158' width='7.31' height='7.31' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_3160' data-name='Rectangle 3160' width='7.277' height='7.277' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_3162' data-name='Rectangle 3162' width='7.244' height='7.244' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_3164' data-name='Rectangle 3164' width='7.211' height='7.211' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_3166' data-name='Rectangle 3166' width='7.178' height='7.178' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_3168' data-name='Rectangle 3168' width='7.145' height='7.145' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_3170' data-name='Rectangle 3170' width='7.113' height='7.112' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_3172' data-name='Rectangle 3172' width='7.079' height='7.08' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_3174' data-name='Rectangle 3174' width='7.047' height='7.047' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_3176' data-name='Rectangle 3176' width='7.014' height='7.014' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_3178' data-name='Rectangle 3178' width='6.981' height='6.981' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_3180' data-name='Rectangle 3180' width='6.948' height='6.948' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_3182' data-name='Rectangle 3182' width='6.915' height='6.915' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_3184' data-name='Rectangle 3184' width='6.882' height='6.882' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_3186' data-name='Rectangle 3186' width='6.849' height='6.849' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_3188' data-name='Rectangle 3188' width='6.817' height='6.817' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_3190' data-name='Rectangle 3190' width='6.784' height='6.784' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_3192' data-name='Rectangle 3192' width='6.751' height='6.751' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_3194' data-name='Rectangle 3194' width='6.718' height='6.718' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_3196' data-name='Rectangle 3196' width='6.685' height='6.685' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Groupe_1007' data-name='Groupe 1007' transform='translate(8.087 0.002)'%3E%3Cg id='Groupe_2214' data-name='Groupe 2214' transform='translate(-9)'%3E%3Cg id='Groupe_2215' data-name='Groupe 2215' transform='translate(0.913 -0.002)'%3E%3Cg id='Groupe_2212' data-name='Groupe 2212' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2211' data-name='Groupe 2211' transform='translate(0 0)'%3E%3Cg id='Groupe_2210' data-name='Groupe 2210' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2209' data-name='Groupe 2209' transform='translate(0 0)'%3E%3Cg id='Groupe_2208' data-name='Groupe 2208' transform='translate(0 0)'%3E%3Cg id='Groupe_2207' data-name='Groupe 2207' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2086' data-name='Groupe 2086' transform='translate(0)'%3E%3Cg id='Groupe_2085' data-name='Groupe 2085'%3E%3Cg id='Groupe_2084' data-name='Groupe 2084' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3115' data-name='Rectangle 3115' width='8' height='8' transform='translate(0)' fill='%23ffa000'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2089' data-name='Groupe 2089' transform='translate(9.097 0.018)' opacity='0.978'%3E%3Cg id='Groupe_2088' data-name='Groupe 2088'%3E%3Cg id='Groupe_2087' data-name='Groupe 2087' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3117' data-name='Rectangle 3117' width='7.898' height='7.898' transform='matrix(-1, -0.009, 0.009, -1, 7.898, 7.967)' fill='%23ffa103'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2092' data-name='Groupe 2092' transform='translate(18.193 0.036)' opacity='0.956'%3E%3Cg id='Groupe_2091' data-name='Groupe 2091' transform='translate(0)'%3E%3Cg id='Groupe_2090' data-name='Groupe 2090' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3119' data-name='Rectangle 3119' width='7.798' height='7.798' transform='translate(7.797 7.934) rotate(-178.987)' fill='%23ffa206'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2095' data-name='Groupe 2095' transform='translate(27.289 0.054)' opacity='0.934'%3E%3Cg id='Groupe_2094' data-name='Groupe 2094' transform='translate(0)'%3E%3Cg id='Groupe_2093' data-name='Groupe 2093' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3121' data-name='Rectangle 3121' width='7.698' height='7.698' transform='translate(7.695 7.901) rotate(-178.461)' fill='%23ffa30a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2098' data-name='Groupe 2098' transform='translate(36.386 0.073)' opacity='0.912'%3E%3Cg id='Groupe_2097' data-name='Groupe 2097' transform='translate(0)'%3E%3Cg id='Groupe_2096' data-name='Groupe 2096' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3123' data-name='Rectangle 3123' width='7.598' height='7.598' transform='translate(7.593 7.868) rotate(-177.925)' fill='%23ffa50d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2101' data-name='Groupe 2101' transform='translate(45.482 0.091)' opacity='0.89'%3E%3Cg id='Groupe_2100' data-name='Groupe 2100'%3E%3Cg id='Groupe_2099' data-name='Groupe 2099' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3125' data-name='Rectangle 3125' width='7.499' height='7.499' transform='matrix(-0.999, -0.046, 0.046, -0.999, 7.492, 7.835)' fill='%23ffa610'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2104' data-name='Groupe 2104' transform='translate(54.579 0.109)' opacity='0.868'%3E%3Cg id='Groupe_2103' data-name='Groupe 2103' transform='translate(0)'%3E%3Cg id='Groupe_2102' data-name='Groupe 2102' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3127' data-name='Rectangle 3127' width='7.401' height='7.401' transform='translate(7.389 7.803) rotate(-176.801)' fill='%23ffa713'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2107' data-name='Groupe 2107' transform='translate(63.675 0.127)' opacity='0.846'%3E%3Cg id='Groupe_2106' data-name='Groupe 2106' transform='translate(0)'%3E%3Cg id='Groupe_2105' data-name='Groupe 2105' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3129' data-name='Rectangle 3129' width='7.304' height='7.304' transform='translate(7.288 7.77) rotate(-176.217)' fill='%23ffa816'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2110' data-name='Groupe 2110' transform='translate(72.772 0.145)' opacity='0.824'%3E%3Cg id='Groupe_2109' data-name='Groupe 2109'%3E%3Cg id='Groupe_2108' data-name='Groupe 2108' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3131' data-name='Rectangle 3131' width='7.208' height='7.207' transform='translate(7.186 7.737) rotate(-175.617)' fill='%23ffaa1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2113' data-name='Groupe 2113' transform='translate(81.868 0.163)' opacity='0.802'%3E%3Cg id='Groupe_2112' data-name='Groupe 2112' transform='translate(0)'%3E%3Cg id='Groupe_2111' data-name='Groupe 2111' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3133' data-name='Rectangle 3133' width='7.112' height='7.112' transform='matrix(-0.996, -0.087, 0.087, -0.996, 7.085, 7.704)' fill='%23ffab1d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2116' data-name='Groupe 2116' transform='translate(90.965 0.182)' opacity='0.78'%3E%3Cg id='Groupe_2115' data-name='Groupe 2115' transform='translate(0)'%3E%3Cg id='Groupe_2114' data-name='Groupe 2114' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3135' data-name='Rectangle 3135' width='7.017' height='7.017' transform='translate(6.983 7.671) rotate(-174.372)' fill='%23ffac20'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2119' data-name='Groupe 2119' transform='translate(100.061 0.2)' opacity='0.758'%3E%3Cg id='Groupe_2118' data-name='Groupe 2118'%3E%3Cg id='Groupe_2117' data-name='Groupe 2117' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_3137' data-name='Rectangle 3137' width='6.923' height='6.923' transform='translate(6.881 7.638) rotate(-173.722)' fill='%23ffad23'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2122' data-name='Groupe 2122' transform='translate(109.157 0.218)' opacity='0.736'%3E%3Cg id='Groupe_2121' data-name='Groupe 2121' transform='translate(0)'%3E%3Cg id='Groupe_2120' data-name='Groupe 2120' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_3139' data-name='Rectangle 3139' width='6.83' height='6.83' transform='translate(6.78 7.606) rotate(-173.054)' fill='%23ffae26'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2125' data-name='Groupe 2125' transform='translate(118.254 0.236)' opacity='0.714'%3E%3Cg id='Groupe_2124' data-name='Groupe 2124' transform='translate(0)'%3E%3Cg id='Groupe_2123' data-name='Groupe 2123' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3141' data-name='Rectangle 3141' width='6.738' height='6.738' transform='matrix(-0.991, -0.133, 0.133, -0.991, 6.678, 7.573)' fill='%23ffaf2a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2128' data-name='Groupe 2128' transform='translate(127.35 0.254)' opacity='0.692'%3E%3Cg id='Groupe_2127' data-name='Groupe 2127' transform='translate(0)'%3E%3Cg id='Groupe_2126' data-name='Groupe 2126' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_3143' data-name='Rectangle 3143' width='6.646' height='6.646' transform='translate(6.576 7.54) rotate(-171.662)' fill='%23ffb12d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2131' data-name='Groupe 2131' transform='translate(136.447 0.272)' opacity='0.67'%3E%3Cg id='Groupe_2130' data-name='Groupe 2130'%3E%3Cg id='Groupe_2129' data-name='Groupe 2129' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_3145' data-name='Rectangle 3145' width='6.556' height='6.556' transform='translate(6.475 7.507) rotate(-170.941)' fill='%23ffb230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2134' data-name='Groupe 2134' transform='translate(145.544 0.29)' opacity='0.648'%3E%3Cg id='Groupe_2133' data-name='Groupe 2133' transform='translate(0)'%3E%3Cg id='Groupe_2132' data-name='Groupe 2132' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_3147' data-name='Rectangle 3147' width='6.467' height='6.467' transform='translate(6.373 7.474) rotate(-170.197)' fill='%23ffb333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2137' data-name='Groupe 2137' transform='translate(154.64 0.309)' opacity='0.626'%3E%3Cg id='Groupe_2136' data-name='Groupe 2136' transform='translate(0)'%3E%3Cg id='Groupe_2135' data-name='Groupe 2135' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_3149' data-name='Rectangle 3149' width='6.379' height='6.379' transform='translate(6.271 7.441) rotate(-169.432)' fill='%23ffb436'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2140' data-name='Groupe 2140' transform='translate(163.736 0.327)' opacity='0.604'%3E%3Cg id='Groupe_2139' data-name='Groupe 2139' transform='translate(0)'%3E%3Cg id='Groupe_2138' data-name='Groupe 2138' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_3151' data-name='Rectangle 3151' width='6.293' height='6.293' transform='matrix(-0.98, -0.197, 0.197, -0.98, 6.169, 7.408)' fill='%23ffb539'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2143' data-name='Groupe 2143' transform='translate(172.833 0.345)' opacity='0.582'%3E%3Cg id='Groupe_2142' data-name='Groupe 2142' transform='translate(0)'%3E%3Cg id='Groupe_2141' data-name='Groupe 2141' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_3153' data-name='Rectangle 3153' width='6.207' height='6.207' transform='translate(6.068 7.375) rotate(-167.836)' fill='%23ffb73d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2146' data-name='Groupe 2146' transform='translate(181.929 0.363)' opacity='0.56'%3E%3Cg id='Groupe_2145' data-name='Groupe 2145' transform='translate(0)'%3E%3Cg id='Groupe_2144' data-name='Groupe 2144' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_3155' data-name='Rectangle 3155' width='6.123' height='6.123' transform='matrix(-0.974, -0.225, 0.225, -0.974, 5.966, 7.342)' fill='%23ffb840'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2149' data-name='Groupe 2149' transform='translate(191.026 0.381)' opacity='0.538'%3E%3Cg id='Groupe_2148' data-name='Groupe 2148' transform='translate(0)'%3E%3Cg id='Groupe_2147' data-name='Groupe 2147' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_3157' data-name='Rectangle 3157' width='6.04' height='6.04' transform='matrix(-0.971, -0.239, 0.239, -0.971, 5.864, 7.31)' fill='%23ffb943'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2152' data-name='Groupe 2152' transform='translate(200.122 0.399)' opacity='0.516'%3E%3Cg id='Groupe_2151' data-name='Groupe 2151' transform='translate(0)'%3E%3Cg id='Groupe_2150' data-name='Groupe 2150' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_3159' data-name='Rectangle 3159' width='5.958' height='5.958' transform='matrix(-0.967, -0.254, 0.254, -0.967, 5.763, 7.277)' fill='%23ffba46'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2155' data-name='Groupe 2155' transform='translate(209.219 0.417)' opacity='0.494'%3E%3Cg id='Groupe_2154' data-name='Groupe 2154' transform='translate(0)'%3E%3Cg id='Groupe_2153' data-name='Groupe 2153' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_3161' data-name='Rectangle 3161' width='5.878' height='5.878' transform='translate(5.661 7.244) rotate(-164.377)' fill='%23ffbb49'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2158' data-name='Groupe 2158' transform='translate(218.315 0.436)' opacity='0.472'%3E%3Cg id='Groupe_2157' data-name='Groupe 2157' transform='translate(0)'%3E%3Cg id='Groupe_2156' data-name='Groupe 2156' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_3163' data-name='Rectangle 3163' width='5.799' height='5.799' transform='translate(5.559 7.211) rotate(-163.45)' fill='%23ffbc4d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2161' data-name='Groupe 2161' transform='translate(227.412 0.454)' opacity='0.45'%3E%3Cg id='Groupe_2160' data-name='Groupe 2160' transform='translate(0)'%3E%3Cg id='Groupe_2159' data-name='Groupe 2159' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_3165' data-name='Rectangle 3165' width='5.722' height='5.722' transform='matrix(-0.954, -0.301, 0.301, -0.954, 5.457, 7.178)' fill='%23ffbe50'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2164' data-name='Groupe 2164' transform='translate(236.508 0.472)' opacity='0.428'%3E%3Cg id='Groupe_2163' data-name='Groupe 2163' transform='translate(0)'%3E%3Cg id='Groupe_2162' data-name='Groupe 2162' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_3167' data-name='Rectangle 3167' width='5.647' height='5.647' transform='translate(5.355 7.145) rotate(-161.522)' fill='%23ffbf53'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2167' data-name='Groupe 2167' transform='translate(245.604 0.49)' opacity='0.406'%3E%3Cg id='Groupe_2166' data-name='Groupe 2166' transform='translate(0)'%3E%3Cg id='Groupe_2165' data-name='Groupe 2165' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_3169' data-name='Rectangle 3169' width='5.573' height='5.573' transform='translate(5.254 7.112) rotate(-160.523)' fill='%23ffc056'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2170' data-name='Groupe 2170' transform='translate(254.701 0.508)' opacity='0.384'%3E%3Cg id='Groupe_2169' data-name='Groupe 2169' transform='translate(0)'%3E%3Cg id='Groupe_2168' data-name='Groupe 2168' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_3171' data-name='Rectangle 3171' width='5.501' height='5.501' transform='matrix(-0.937, -0.35, 0.35, -0.937, 5.152, 7.08)' fill='%23ffc159'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2173' data-name='Groupe 2173' transform='translate(263.797 0.526)' opacity='0.362'%3E%3Cg id='Groupe_2172' data-name='Groupe 2172' transform='translate(0)'%3E%3Cg id='Groupe_2171' data-name='Groupe 2171' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_3173' data-name='Rectangle 3173' width='5.431' height='5.431' transform='translate(5.051 7.047) rotate(-158.435)' fill='%23ffc25d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2176' data-name='Groupe 2176' transform='translate(272.894 0.544)' opacity='0.34'%3E%3Cg id='Groupe_2175' data-name='Groupe 2175' transform='translate(0)'%3E%3Cg id='Groupe_2174' data-name='Groupe 2174' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_3175' data-name='Rectangle 3175' width='5.363' height='5.363' transform='translate(4.949 7.014) rotate(-157.353)' fill='%23ffc460'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2179' data-name='Groupe 2179' transform='translate(281.99 0.563)' opacity='0.318'%3E%3Cg id='Groupe_2178' data-name='Groupe 2178' transform='translate(0)'%3E%3Cg id='Groupe_2177' data-name='Groupe 2177' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_3177' data-name='Rectangle 3177' width='5.296' height='5.296' transform='translate(4.847 6.981) rotate(-156.241)' fill='%23ffc563'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2182' data-name='Groupe 2182' transform='translate(291.087 0.581)' opacity='0.296'%3E%3Cg id='Groupe_2181' data-name='Groupe 2181' transform='translate(0)'%3E%3Cg id='Groupe_2180' data-name='Groupe 2180' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_3179' data-name='Rectangle 3179' width='5.232' height='5.232' transform='matrix(-0.907, -0.421, 0.421, -0.907, 4.746, 6.948)' fill='%23ffc666'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2185' data-name='Groupe 2185' transform='translate(300.183 0.599)' opacity='0.274'%3E%3Cg id='Groupe_2184' data-name='Groupe 2184' transform='translate(0)'%3E%3Cg id='Groupe_2183' data-name='Groupe 2183' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_3181' data-name='Rectangle 3181' width='5.169' height='5.17' transform='translate(4.644 6.915) rotate(-153.937)' fill='%23ffc769'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2188' data-name='Groupe 2188' transform='translate(309.28 0.617)' opacity='0.252'%3E%3Cg id='Groupe_2187' data-name='Groupe 2187' transform='translate(0)'%3E%3Cg id='Groupe_2186' data-name='Groupe 2186' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_3183' data-name='Rectangle 3183' width='5.109' height='5.11' transform='translate(4.542 6.882) rotate(-152.744)' fill='%23ffc86c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2191' data-name='Groupe 2191' transform='translate(318.376 0.635)' opacity='0.23'%3E%3Cg id='Groupe_2190' data-name='Groupe 2190' transform='translate(0)'%3E%3Cg id='Groupe_2189' data-name='Groupe 2189' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_3185' data-name='Rectangle 3185' width='5.052' height='5.052' transform='translate(4.441 6.849) rotate(-151.52)' fill='%23ffc970'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2194' data-name='Groupe 2194' transform='translate(327.473 0.653)' opacity='0.208'%3E%3Cg id='Groupe_2193' data-name='Groupe 2193' transform='translate(0)'%3E%3Cg id='Groupe_2192' data-name='Groupe 2192' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_3187' data-name='Rectangle 3187' width='4.996' height='4.996' transform='matrix(-0.868, -0.496, 0.496, -0.868, 4.339, 6.817)' fill='%23ffcb73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2197' data-name='Groupe 2197' transform='translate(336.569 0.672)' opacity='0.186'%3E%3Cg id='Groupe_2196' data-name='Groupe 2196' transform='translate(0)'%3E%3Cg id='Groupe_2195' data-name='Groupe 2195' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_3189' data-name='Rectangle 3189' width='4.943' height='4.943' transform='matrix(-0.857, -0.515, 0.515, -0.857, 4.237, 6.784)' fill='%23ffcc76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2200' data-name='Groupe 2200' transform='translate(345.665 0.69)' opacity='0.164'%3E%3Cg id='Groupe_2199' data-name='Groupe 2199' transform='translate(0)'%3E%3Cg id='Groupe_2198' data-name='Groupe 2198' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_3191' data-name='Rectangle 3191' width='4.893' height='4.893' transform='translate(4.135 6.751) rotate(-147.685)' fill='%23ffcd79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2203' data-name='Groupe 2203' transform='translate(354.762 0.708)' opacity='0.142'%3E%3Cg id='Groupe_2202' data-name='Groupe 2202' transform='translate(0)'%3E%3Cg id='Groupe_2201' data-name='Groupe 2201' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_3193' data-name='Rectangle 3193' width='4.845' height='4.845' transform='translate(4.034 6.718) rotate(-146.359)' fill='%23ffce7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2206' data-name='Groupe 2206' transform='translate(363.858 0.726)' opacity='0.12'%3E%3Cg id='Groupe_2205' data-name='Groupe 2205' transform='translate(0)'%3E%3Cg id='Groupe_2204' data-name='Groupe 2204' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_3195' data-name='Rectangle 3195' width='4.8' height='4.8' transform='translate(3.932 6.685) rotate(-145.001)' fill='%23ffd080'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.heading-divider.yellow .heading-before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='370.543' height='8' viewBox='0 0 370.543 8'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3114' data-name='Rectangle 3114' width='370.543' height='8' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3031' data-name='Rectangle 3031' width='8' height='8' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3033' data-name='Rectangle 3033' width='7.967' height='7.967' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3035' data-name='Rectangle 3035' width='7.934' height='7.934' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3037' data-name='Rectangle 3037' width='7.901' height='7.901' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3039' data-name='Rectangle 3039' width='7.868' height='7.868' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3041' data-name='Rectangle 3041' width='7.835' height='7.836' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3043' data-name='Rectangle 3043' width='7.803' height='7.803' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3045' data-name='Rectangle 3045' width='7.77' height='7.77' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3047' data-name='Rectangle 3047' width='7.737' height='7.737' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3049' data-name='Rectangle 3049' width='7.704' height='7.704' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3051' data-name='Rectangle 3051' width='7.671' height='7.671' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_3053' data-name='Rectangle 3053' width='7.638' height='7.638' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_3055' data-name='Rectangle 3055' width='7.606' height='7.606' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3057' data-name='Rectangle 3057' width='7.572' height='7.573' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_3059' data-name='Rectangle 3059' width='7.54' height='7.54' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_3061' data-name='Rectangle 3061' width='7.507' height='7.507' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_3063' data-name='Rectangle 3063' width='7.474' height='7.474' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_3065' data-name='Rectangle 3065' width='7.441' height='7.441' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_3067' data-name='Rectangle 3067' width='7.408' height='7.408' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_3069' data-name='Rectangle 3069' width='7.375' height='7.375' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_3071' data-name='Rectangle 3071' width='7.342' height='7.343' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_3073' data-name='Rectangle 3073' width='7.31' height='7.31' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_3075' data-name='Rectangle 3075' width='7.277' height='7.277' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_3077' data-name='Rectangle 3077' width='7.244' height='7.244' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_3079' data-name='Rectangle 3079' width='7.211' height='7.211' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_3081' data-name='Rectangle 3081' width='7.178' height='7.178' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_3083' data-name='Rectangle 3083' width='7.146' height='7.145' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_3085' data-name='Rectangle 3085' width='7.112' height='7.112' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_3087' data-name='Rectangle 3087' width='7.079' height='7.08' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_3089' data-name='Rectangle 3089' width='7.047' height='7.047' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_3091' data-name='Rectangle 3091' width='7.014' height='7.014' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_3093' data-name='Rectangle 3093' width='6.981' height='6.981' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_3095' data-name='Rectangle 3095' width='6.948' height='6.948' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_3097' data-name='Rectangle 3097' width='6.915' height='6.915' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_3099' data-name='Rectangle 3099' width='6.882' height='6.882' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_3101' data-name='Rectangle 3101' width='6.849' height='6.849' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_3103' data-name='Rectangle 3103' width='6.817' height='6.817' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_3105' data-name='Rectangle 3105' width='6.784' height='6.784' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_3107' data-name='Rectangle 3107' width='6.751' height='6.751' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_3109' data-name='Rectangle 3109' width='6.718' height='6.718' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_3111' data-name='Rectangle 3111' width='6.685' height='6.685' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Groupe_2083' data-name='Groupe 2083' transform='translate(361.544)'%3E%3Cg id='Groupe_2082' data-name='Groupe 2082' transform='translate(-361.544 0)'%3E%3Cg id='Groupe_2081' data-name='Groupe 2081' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2080' data-name='Groupe 2080' transform='translate(0 0)'%3E%3Cg id='Groupe_2079' data-name='Groupe 2079' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2078' data-name='Groupe 2078' transform='translate(0 0)'%3E%3Cg id='Groupe_2077' data-name='Groupe 2077' transform='translate(0 0)'%3E%3Cg id='Groupe_2076' data-name='Groupe 2076' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1955' data-name='Groupe 1955' transform='translate(362.543)'%3E%3Cg id='Groupe_1954' data-name='Groupe 1954' transform='translate(0)'%3E%3Cg id='Groupe_1953' data-name='Groupe 1953' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3030' data-name='Rectangle 3030' width='8' height='8' transform='translate(0 0)' fill='%23ffdc00'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1958' data-name='Groupe 1958' transform='translate(353.48 0.015)' opacity='0.978'%3E%3Cg id='Groupe_1957' data-name='Groupe 1957' transform='translate(0)'%3E%3Cg id='Groupe_1956' data-name='Groupe 1956' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3032' data-name='Rectangle 3032' width='7.898' height='7.898' transform='matrix(-1, -0.009, 0.009, -1, 7.898, 7.967)' fill='%23ffdc03'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1961' data-name='Groupe 1961' transform='translate(344.416 0.029)' opacity='0.956'%3E%3Cg id='Groupe_1960' data-name='Groupe 1960' transform='translate(0)'%3E%3Cg id='Groupe_1959' data-name='Groupe 1959' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3034' data-name='Rectangle 3034' width='7.798' height='7.798' transform='translate(7.797 7.934) rotate(-178.987)' fill='%23ffdd06'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1964' data-name='Groupe 1964' transform='translate(335.353 0.044)' opacity='0.934'%3E%3Cg id='Groupe_1963' data-name='Groupe 1963' transform='translate(0)'%3E%3Cg id='Groupe_1962' data-name='Groupe 1962' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3036' data-name='Rectangle 3036' width='7.698' height='7.698' transform='translate(7.695 7.901) rotate(-178.465)' fill='%23ffdd0a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1967' data-name='Groupe 1967' transform='translate(326.289 0.059)' opacity='0.912'%3E%3Cg id='Groupe_1966' data-name='Groupe 1966' transform='translate(0)'%3E%3Cg id='Groupe_1965' data-name='Groupe 1965' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3038' data-name='Rectangle 3038' width='7.598' height='7.598' transform='translate(7.593 7.869) rotate(-177.925)' fill='%23ffde0d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1970' data-name='Groupe 1970' transform='translate(317.226 0.074)' opacity='0.89'%3E%3Cg id='Groupe_1969' data-name='Groupe 1969' transform='translate(0)'%3E%3Cg id='Groupe_1968' data-name='Groupe 1968' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3040' data-name='Rectangle 3040' width='7.499' height='7.499' transform='matrix(-0.999, -0.046, 0.046, -0.999, 7.491, 7.836)' fill='%23ffde10'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1973' data-name='Groupe 1973' transform='translate(308.162 0.088)' opacity='0.868'%3E%3Cg id='Groupe_1972' data-name='Groupe 1972' transform='translate(0)'%3E%3Cg id='Groupe_1971' data-name='Groupe 1971' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3042' data-name='Rectangle 3042' width='7.401' height='7.401' transform='translate(7.39 7.803) rotate(-176.801)' fill='%23ffdf13'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1976' data-name='Groupe 1976' transform='translate(299.098 0.103)' opacity='0.846'%3E%3Cg id='Groupe_1975' data-name='Groupe 1975' transform='translate(0)'%3E%3Cg id='Groupe_1974' data-name='Groupe 1974' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3044' data-name='Rectangle 3044' width='7.304' height='7.304' transform='translate(7.288 7.77) rotate(-176.217)' fill='%23ffdf16'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1979' data-name='Groupe 1979' transform='translate(290.035 0.118)' opacity='0.824'%3E%3Cg id='Groupe_1978' data-name='Groupe 1978'%3E%3Cg id='Groupe_1977' data-name='Groupe 1977' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3046' data-name='Rectangle 3046' width='7.208' height='7.207' transform='translate(7.186 7.737) rotate(-175.617)' fill='%23ffdf1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1982' data-name='Groupe 1982' transform='translate(280.971 0.133)' opacity='0.802'%3E%3Cg id='Groupe_1981' data-name='Groupe 1981' transform='translate(0)'%3E%3Cg id='Groupe_1980' data-name='Groupe 1980' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3048' data-name='Rectangle 3048' width='7.112' height='7.112' transform='matrix(-0.996, -0.087, 0.087, -0.996, 7.085, 7.704)' fill='%23ffe01d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1985' data-name='Groupe 1985' transform='translate(271.907 0.147)' opacity='0.78'%3E%3Cg id='Groupe_1984' data-name='Groupe 1984' transform='translate(0)'%3E%3Cg id='Groupe_1983' data-name='Groupe 1983' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3050' data-name='Rectangle 3050' width='7.017' height='7.017' transform='translate(6.983 7.671) rotate(-174.372)' fill='%23ffe020'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1988' data-name='Groupe 1988' transform='translate(262.844 0.162)' opacity='0.758'%3E%3Cg id='Groupe_1987' data-name='Groupe 1987' transform='translate(0)'%3E%3Cg id='Groupe_1986' data-name='Groupe 1986' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_3052' data-name='Rectangle 3052' width='6.923' height='6.923' transform='translate(6.881 7.638) rotate(-173.722)' fill='%23ffe123'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1991' data-name='Groupe 1991' transform='translate(253.78 0.177)' opacity='0.736'%3E%3Cg id='Groupe_1990' data-name='Groupe 1990' transform='translate(0)'%3E%3Cg id='Groupe_1989' data-name='Groupe 1989' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_3054' data-name='Rectangle 3054' width='6.83' height='6.83' transform='translate(6.78 7.606) rotate(-173.054)' fill='%23ffe126'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1994' data-name='Groupe 1994' transform='translate(244.717 0.191)' opacity='0.714'%3E%3Cg id='Groupe_1993' data-name='Groupe 1993' transform='translate(0)'%3E%3Cg id='Groupe_1992' data-name='Groupe 1992' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3056' data-name='Rectangle 3056' width='6.738' height='6.738' transform='translate(6.678 7.573) rotate(-172.368)' fill='%23ffe22a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1997' data-name='Groupe 1997' transform='translate(235.653 0.206)' opacity='0.692'%3E%3Cg id='Groupe_1996' data-name='Groupe 1996' transform='translate(0)'%3E%3Cg id='Groupe_1995' data-name='Groupe 1995' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_3058' data-name='Rectangle 3058' width='6.647' height='6.646' transform='translate(6.576 7.54) rotate(-171.662)' fill='%23ffe22d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2000' data-name='Groupe 2000' transform='translate(226.59 0.221)' opacity='0.67'%3E%3Cg id='Groupe_1999' data-name='Groupe 1999' transform='translate(0)'%3E%3Cg id='Groupe_1998' data-name='Groupe 1998' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_3060' data-name='Rectangle 3060' width='6.556' height='6.556' transform='translate(6.475 7.507) rotate(-170.941)' fill='%23ffe230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2003' data-name='Groupe 2003' transform='translate(217.526 0.236)' opacity='0.648'%3E%3Cg id='Groupe_2002' data-name='Groupe 2002' transform='translate(0)'%3E%3Cg id='Groupe_2001' data-name='Groupe 2001' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_3062' data-name='Rectangle 3062' width='6.467' height='6.467' transform='translate(6.373 7.474) rotate(-170.197)' fill='%23ffe333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2006' data-name='Groupe 2006' transform='translate(208.463 0.25)' opacity='0.626'%3E%3Cg id='Groupe_2005' data-name='Groupe 2005' transform='translate(0)'%3E%3Cg id='Groupe_2004' data-name='Groupe 2004' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_3064' data-name='Rectangle 3064' width='6.379' height='6.379' transform='translate(6.271 7.441) rotate(-169.432)' fill='%23ffe336'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2009' data-name='Groupe 2009' transform='translate(199.399 0.265)' opacity='0.604'%3E%3Cg id='Groupe_2008' data-name='Groupe 2008' transform='translate(0)'%3E%3Cg id='Groupe_2007' data-name='Groupe 2007' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_3066' data-name='Rectangle 3066' width='6.293' height='6.293' transform='matrix(-0.98, -0.197, 0.197, -0.98, 6.17, 7.408)' fill='%23ffe439'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2012' data-name='Groupe 2012' transform='translate(190.335 0.28)' opacity='0.582'%3E%3Cg id='Groupe_2011' data-name='Groupe 2011' transform='translate(0)'%3E%3Cg id='Groupe_2010' data-name='Groupe 2010' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_3068' data-name='Rectangle 3068' width='6.207' height='6.207' transform='translate(6.068 7.375) rotate(-167.836)' fill='%23ffe43d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2015' data-name='Groupe 2015' transform='translate(181.272 0.294)' opacity='0.56'%3E%3Cg id='Groupe_2014' data-name='Groupe 2014' transform='translate(0)'%3E%3Cg id='Groupe_2013' data-name='Groupe 2013' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_3070' data-name='Rectangle 3070' width='6.123' height='6.123' transform='translate(5.966 7.343) rotate(-167.006)' fill='%23ffe540'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2018' data-name='Groupe 2018' transform='translate(172.208 0.309)' opacity='0.538'%3E%3Cg id='Groupe_2017' data-name='Groupe 2017' transform='translate(0)'%3E%3Cg id='Groupe_2016' data-name='Groupe 2016' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_3072' data-name='Rectangle 3072' width='6.04' height='6.04' transform='matrix(-0.971, -0.239, 0.239, -0.971, 5.864, 7.31)' fill='%23ffe543'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2021' data-name='Groupe 2021' transform='translate(163.145 0.324)' opacity='0.516'%3E%3Cg id='Groupe_2020' data-name='Groupe 2020' transform='translate(0)'%3E%3Cg id='Groupe_2019' data-name='Groupe 2019' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_3074' data-name='Rectangle 3074' width='5.958' height='5.958' transform='matrix(-0.967, -0.254, 0.254, -0.967, 5.762, 7.277)' fill='%23ffe546'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2024' data-name='Groupe 2024' transform='translate(154.081 0.339)' opacity='0.494'%3E%3Cg id='Groupe_2023' data-name='Groupe 2023' transform='translate(0)'%3E%3Cg id='Groupe_2022' data-name='Groupe 2022' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_3076' data-name='Rectangle 3076' width='5.878' height='5.878' transform='translate(5.661 7.244) rotate(-164.377)' fill='%23ffe649'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2027' data-name='Groupe 2027' transform='translate(145.017 0.353)' opacity='0.472'%3E%3Cg id='Groupe_2026' data-name='Groupe 2026' transform='translate(0)'%3E%3Cg id='Groupe_2025' data-name='Groupe 2025' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_3078' data-name='Rectangle 3078' width='5.799' height='5.799' transform='translate(5.559 7.211) rotate(-163.45)' fill='%23ffe74d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2030' data-name='Groupe 2030' transform='translate(135.954 0.368)' opacity='0.45'%3E%3Cg id='Groupe_2029' data-name='Groupe 2029' transform='translate(0)'%3E%3Cg id='Groupe_2028' data-name='Groupe 2028' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_3080' data-name='Rectangle 3080' width='5.722' height='5.722' transform='translate(5.457 7.178) rotate(-162.5)' fill='%23ffe750'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2033' data-name='Groupe 2033' transform='translate(126.89 0.383)' opacity='0.428'%3E%3Cg id='Groupe_2032' data-name='Groupe 2032' transform='translate(0)'%3E%3Cg id='Groupe_2031' data-name='Groupe 2031' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_3082' data-name='Rectangle 3082' width='5.647' height='5.647' transform='translate(5.356 7.145) rotate(-161.522)' fill='%23ffe753'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2036' data-name='Groupe 2036' transform='translate(117.827 0.398)' opacity='0.406'%3E%3Cg id='Groupe_2035' data-name='Groupe 2035' transform='translate(0)'%3E%3Cg id='Groupe_2034' data-name='Groupe 2034' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_3084' data-name='Rectangle 3084' width='5.573' height='5.573' transform='translate(5.254 7.112) rotate(-160.523)' fill='%23ffe856'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2039' data-name='Groupe 2039' transform='translate(108.763 0.412)' opacity='0.384'%3E%3Cg id='Groupe_2038' data-name='Groupe 2038' transform='translate(0)'%3E%3Cg id='Groupe_2037' data-name='Groupe 2037' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_3086' data-name='Rectangle 3086' width='5.501' height='5.501' transform='matrix(-0.937, -0.35, 0.35, -0.937, 5.152, 7.08)' fill='%23ffe859'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2042' data-name='Groupe 2042' transform='translate(99.699 0.427)' opacity='0.362'%3E%3Cg id='Groupe_2041' data-name='Groupe 2041' transform='translate(0)'%3E%3Cg id='Groupe_2040' data-name='Groupe 2040' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_3088' data-name='Rectangle 3088' width='5.431' height='5.431' transform='translate(5.051 7.047) rotate(-158.436)' fill='%23ffe95d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2045' data-name='Groupe 2045' transform='translate(90.636 0.442)' opacity='0.34'%3E%3Cg id='Groupe_2044' data-name='Groupe 2044' transform='translate(0)'%3E%3Cg id='Groupe_2043' data-name='Groupe 2043' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_3090' data-name='Rectangle 3090' width='5.363' height='5.363' transform='translate(4.949 7.014) rotate(-157.353)' fill='%23ffe960'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2048' data-name='Groupe 2048' transform='translate(81.572 0.456)' opacity='0.318'%3E%3Cg id='Groupe_2047' data-name='Groupe 2047' transform='translate(0)'%3E%3Cg id='Groupe_2046' data-name='Groupe 2046' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_3092' data-name='Rectangle 3092' width='5.296' height='5.296' transform='translate(4.847 6.981) rotate(-156.241)' fill='%23ffea63'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2051' data-name='Groupe 2051' transform='translate(72.509 0.471)' opacity='0.296'%3E%3Cg id='Groupe_2050' data-name='Groupe 2050' transform='translate(0)'%3E%3Cg id='Groupe_2049' data-name='Groupe 2049' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_3094' data-name='Rectangle 3094' width='5.232' height='5.232' transform='translate(4.746 6.948) rotate(-155.101)' fill='%23ffea66'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2054' data-name='Groupe 2054' transform='translate(63.445 0.486)' opacity='0.274'%3E%3Cg id='Groupe_2053' data-name='Groupe 2053'%3E%3Cg id='Groupe_2052' data-name='Groupe 2052' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_3096' data-name='Rectangle 3096' width='5.169' height='5.17' transform='translate(4.644 6.915) rotate(-153.937)' fill='%23ffea69'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2057' data-name='Groupe 2057' transform='translate(54.382 0.501)' opacity='0.252'%3E%3Cg id='Groupe_2056' data-name='Groupe 2056' transform='translate(0)'%3E%3Cg id='Groupe_2055' data-name='Groupe 2055' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_3098' data-name='Rectangle 3098' width='5.109' height='5.11' transform='translate(4.542 6.882) rotate(-152.744)' fill='%23ffeb6c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2060' data-name='Groupe 2060' transform='translate(45.318 0.515)' opacity='0.23'%3E%3Cg id='Groupe_2059' data-name='Groupe 2059' transform='translate(0)'%3E%3Cg id='Groupe_2058' data-name='Groupe 2058' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_3100' data-name='Rectangle 3100' width='5.052' height='5.052' transform='matrix(-0.879, -0.477, 0.477, -0.879, 4.441, 6.849)' fill='%23ffeb70'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2063' data-name='Groupe 2063' transform='translate(36.255 0.53)' opacity='0.208'%3E%3Cg id='Groupe_2062' data-name='Groupe 2062' transform='translate(0)'%3E%3Cg id='Groupe_2061' data-name='Groupe 2061' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_3102' data-name='Rectangle 3102' width='4.996' height='4.996' transform='matrix(-0.868, -0.496, 0.496, -0.868, 4.339, 6.817)' fill='%23ffec73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2066' data-name='Groupe 2066' transform='translate(27.191 0.545)' opacity='0.186'%3E%3Cg id='Groupe_2065' data-name='Groupe 2065' transform='translate(0)'%3E%3Cg id='Groupe_2064' data-name='Groupe 2064' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_3104' data-name='Rectangle 3104' width='4.943' height='4.943' transform='matrix(-0.857, -0.515, 0.515, -0.857, 4.237, 6.784)' fill='%23ffec76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2069' data-name='Groupe 2069' transform='translate(18.127 0.559)' opacity='0.164'%3E%3Cg id='Groupe_2068' data-name='Groupe 2068' transform='translate(0)'%3E%3Cg id='Groupe_2067' data-name='Groupe 2067' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_3106' data-name='Rectangle 3106' width='4.893' height='4.893' transform='translate(4.136 6.751) rotate(-147.685)' fill='%23ffed79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2072' data-name='Groupe 2072' transform='translate(9.064 0.574)' opacity='0.142'%3E%3Cg id='Groupe_2071' data-name='Groupe 2071' transform='translate(0)'%3E%3Cg id='Groupe_2070' data-name='Groupe 2070' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_3108' data-name='Rectangle 3108' width='4.845' height='4.845' transform='translate(4.034 6.718) rotate(-146.359)' fill='%23ffed7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2075' data-name='Groupe 2075' transform='translate(0 0.589)' opacity='0.12'%3E%3Cg id='Groupe_2074' data-name='Groupe 2074'%3E%3Cg id='Groupe_2073' data-name='Groupe 2073' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_3110' data-name='Rectangle 3110' width='4.8' height='4.8' transform='matrix(-0.819, -0.574, 0.574, -0.819, 3.932, 6.685)' fill='%23ffed80'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.heading-divider.yellow .heading-after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='370.544' height='8' viewBox='0 0 370.544 8'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3114' data-name='Rectangle 3114' width='370.544' height='8' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3031' data-name='Rectangle 3031' width='8' height='8' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3033' data-name='Rectangle 3033' width='7.967' height='7.967' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3035' data-name='Rectangle 3035' width='7.934' height='7.934' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3037' data-name='Rectangle 3037' width='7.901' height='7.901' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3039' data-name='Rectangle 3039' width='7.868' height='7.869' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3041' data-name='Rectangle 3041' width='7.835' height='7.836' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3043' data-name='Rectangle 3043' width='7.803' height='7.803' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3045' data-name='Rectangle 3045' width='7.77' height='7.77' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3047' data-name='Rectangle 3047' width='7.737' height='7.737' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3049' data-name='Rectangle 3049' width='7.704' height='7.704' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3051' data-name='Rectangle 3051' width='7.671' height='7.671' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_3053' data-name='Rectangle 3053' width='7.638' height='7.638' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_3055' data-name='Rectangle 3055' width='7.606' height='7.606' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3057' data-name='Rectangle 3057' width='7.572' height='7.573' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_3059' data-name='Rectangle 3059' width='7.54' height='7.54' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_3061' data-name='Rectangle 3061' width='7.507' height='7.507' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_3063' data-name='Rectangle 3063' width='7.474' height='7.474' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_3065' data-name='Rectangle 3065' width='7.441' height='7.441' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_3067' data-name='Rectangle 3067' width='7.408' height='7.408' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_3069' data-name='Rectangle 3069' width='7.375' height='7.375' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_3071' data-name='Rectangle 3071' width='7.342' height='7.343' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_3073' data-name='Rectangle 3073' width='7.31' height='7.31' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_3075' data-name='Rectangle 3075' width='7.277' height='7.277' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_3077' data-name='Rectangle 3077' width='7.244' height='7.244' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_3079' data-name='Rectangle 3079' width='7.211' height='7.211' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_3081' data-name='Rectangle 3081' width='7.178' height='7.178' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_3083' data-name='Rectangle 3083' width='7.146' height='7.145' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_3085' data-name='Rectangle 3085' width='7.112' height='7.112' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_3087' data-name='Rectangle 3087' width='7.079' height='7.08' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_3089' data-name='Rectangle 3089' width='7.047' height='7.047' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_3091' data-name='Rectangle 3091' width='7.014' height='7.014' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_3093' data-name='Rectangle 3093' width='6.981' height='6.981' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_3095' data-name='Rectangle 3095' width='6.948' height='6.948' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_3097' data-name='Rectangle 3097' width='6.915' height='6.915' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_3099' data-name='Rectangle 3099' width='6.882' height='6.882' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_3101' data-name='Rectangle 3101' width='6.849' height='6.849' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_3103' data-name='Rectangle 3103' width='6.817' height='6.817' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_3105' data-name='Rectangle 3105' width='6.784' height='6.784' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_3107' data-name='Rectangle 3107' width='6.751' height='6.751' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_3109' data-name='Rectangle 3109' width='6.718' height='6.718' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_3111' data-name='Rectangle 3111' width='6.685' height='6.685' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Groupe_1007' data-name='Groupe 1007' transform='translate(9 0.002)'%3E%3Cg id='Groupe_2082' data-name='Groupe 2082' transform='translate(-9 -0.002)'%3E%3Cg id='Groupe_de_masques_2081' data-name='Groupe de masques 2081' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2080' data-name='Groupe 2080' transform='translate(0 0)'%3E%3Cg id='Groupe_2079' data-name='Groupe 2079' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2078' data-name='Groupe 2078' transform='translate(0 0)'%3E%3Cg id='Groupe_2077' data-name='Groupe 2077' transform='translate(0 0)'%3E%3Cg id='Groupe_2076' data-name='Groupe 2076' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1955' data-name='Groupe 1955'%3E%3Cg id='Groupe_1954' data-name='Groupe 1954'%3E%3Cg id='Groupe_1953' data-name='Groupe 1953' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3030' data-name='Rectangle 3030' width='8' height='8' transform='translate(0 0)' fill='%23ffdc00'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1958' data-name='Groupe 1958' transform='translate(9.096 0.015)' opacity='0.978'%3E%3Cg id='Groupe_1957' data-name='Groupe 1957'%3E%3Cg id='Groupe_1956' data-name='Groupe 1956' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3032' data-name='Rectangle 3032' width='7.898' height='7.898' transform='matrix(1, -0.009, 0.009, 1, 0, 0.069)' fill='%23ffdc03'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1961' data-name='Groupe 1961' transform='translate(18.193 0.029)' opacity='0.956'%3E%3Cg id='Groupe_1960' data-name='Groupe 1960'%3E%3Cg id='Groupe_1959' data-name='Groupe 1959' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3034' data-name='Rectangle 3034' width='7.798' height='7.798' transform='translate(0 0.138) rotate(-1.013)' fill='%23ffdd06'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1964' data-name='Groupe 1964' transform='translate(27.289 0.044)' opacity='0.934'%3E%3Cg id='Groupe_1963' data-name='Groupe 1963'%3E%3Cg id='Groupe_1962' data-name='Groupe 1962' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3036' data-name='Rectangle 3036' width='7.698' height='7.698' transform='translate(0 0.206) rotate(-1.535)' fill='%23ffdd0a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1967' data-name='Groupe 1967' transform='translate(36.386 0.059)' opacity='0.912'%3E%3Cg id='Groupe_1966' data-name='Groupe 1966'%3E%3Cg id='Groupe_1965' data-name='Groupe 1965' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3038' data-name='Rectangle 3038' width='7.598' height='7.598' transform='translate(0 0.275) rotate(-2.075)' fill='%23ffde0d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1970' data-name='Groupe 1970' transform='translate(45.482 0.074)' opacity='0.89'%3E%3Cg id='Groupe_1969' data-name='Groupe 1969'%3E%3Cg id='Groupe_1968' data-name='Groupe 1968' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3040' data-name='Rectangle 3040' width='7.499' height='7.499' transform='matrix(0.999, -0.046, 0.046, 0.999, 0, 0.344)' fill='%23ffde10'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1973' data-name='Groupe 1973' transform='translate(54.579 0.088)' opacity='0.868'%3E%3Cg id='Groupe_1972' data-name='Groupe 1972'%3E%3Cg id='Groupe_1971' data-name='Groupe 1971' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3042' data-name='Rectangle 3042' width='7.401' height='7.401' transform='translate(0 0.413) rotate(-3.199)' fill='%23ffdf13'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1976' data-name='Groupe 1976' transform='translate(63.675 0.103)' opacity='0.846'%3E%3Cg id='Groupe_1975' data-name='Groupe 1975'%3E%3Cg id='Groupe_1974' data-name='Groupe 1974' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3044' data-name='Rectangle 3044' width='7.304' height='7.304' transform='translate(0 0.482) rotate(-3.783)' fill='%23ffdf16'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1979' data-name='Groupe 1979' transform='translate(72.772 0.118)' opacity='0.824'%3E%3Cg id='Groupe_1978' data-name='Groupe 1978'%3E%3Cg id='Groupe_1977' data-name='Groupe 1977' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3046' data-name='Rectangle 3046' width='7.208' height='7.207' transform='translate(0 0.551) rotate(-4.383)' fill='%23ffdf1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1982' data-name='Groupe 1982' transform='translate(81.868 0.133)' opacity='0.802'%3E%3Cg id='Groupe_1981' data-name='Groupe 1981'%3E%3Cg id='Groupe_1980' data-name='Groupe 1980' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3048' data-name='Rectangle 3048' width='7.112' height='7.112' transform='translate(0 0.619) rotate(-4.995)' fill='%23ffe01d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1985' data-name='Groupe 1985' transform='translate(90.965 0.147)' opacity='0.78'%3E%3Cg id='Groupe_1984' data-name='Groupe 1984'%3E%3Cg id='Groupe_1983' data-name='Groupe 1983' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3050' data-name='Rectangle 3050' width='7.017' height='7.017' transform='matrix(0.995, -0.098, 0.098, 0.995, 0, 0.688)' fill='%23ffe020'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1988' data-name='Groupe 1988' transform='translate(100.061 0.162)' opacity='0.758'%3E%3Cg id='Groupe_1987' data-name='Groupe 1987'%3E%3Cg id='Groupe_1986' data-name='Groupe 1986' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_3052' data-name='Rectangle 3052' width='6.923' height='6.923' transform='translate(0 0.757) rotate(-6.278)' fill='%23ffe123'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1991' data-name='Groupe 1991' transform='translate(109.157 0.177)' opacity='0.736'%3E%3Cg id='Groupe_1990' data-name='Groupe 1990'%3E%3Cg id='Groupe_1989' data-name='Groupe 1989' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_3054' data-name='Rectangle 3054' width='6.83' height='6.83' transform='translate(0 0.826) rotate(-6.946)' fill='%23ffe126'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1994' data-name='Groupe 1994' transform='translate(118.254 0.191)' opacity='0.714'%3E%3Cg id='Groupe_1993' data-name='Groupe 1993'%3E%3Cg id='Groupe_1992' data-name='Groupe 1992' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3056' data-name='Rectangle 3056' width='6.738' height='6.738' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 0.895)' fill='%23ffe22a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1997' data-name='Groupe 1997' transform='translate(127.35 0.206)' opacity='0.692'%3E%3Cg id='Groupe_1996' data-name='Groupe 1996'%3E%3Cg id='Groupe_1995' data-name='Groupe 1995' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_3058' data-name='Rectangle 3058' width='6.647' height='6.646' transform='translate(0 0.964) rotate(-8.338)' fill='%23ffe22d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2000' data-name='Groupe 2000' transform='translate(136.447 0.221)' opacity='0.67'%3E%3Cg id='Groupe_1999' data-name='Groupe 1999'%3E%3Cg id='Groupe_1998' data-name='Groupe 1998' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_3060' data-name='Rectangle 3060' width='6.556' height='6.556' transform='translate(0 1.032) rotate(-9.059)' fill='%23ffe230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2003' data-name='Groupe 2003' transform='translate(145.543 0.236)' opacity='0.648'%3E%3Cg id='Groupe_2002' data-name='Groupe 2002'%3E%3Cg id='Groupe_2001' data-name='Groupe 2001' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_3062' data-name='Rectangle 3062' width='6.467' height='6.467' transform='translate(0 1.101) rotate(-9.803)' fill='%23ffe333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2006' data-name='Groupe 2006' transform='translate(154.64 0.25)' opacity='0.626'%3E%3Cg id='Groupe_2005' data-name='Groupe 2005'%3E%3Cg id='Groupe_2004' data-name='Groupe 2004' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_3064' data-name='Rectangle 3064' width='6.379' height='6.379' transform='translate(0 1.17) rotate(-10.568)' fill='%23ffe336'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2009' data-name='Groupe 2009' transform='translate(163.736 0.265)' opacity='0.604'%3E%3Cg id='Groupe_2008' data-name='Groupe 2008'%3E%3Cg id='Groupe_2007' data-name='Groupe 2007' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_3066' data-name='Rectangle 3066' width='6.293' height='6.293' transform='matrix(0.98, -0.197, 0.197, 0.98, 0, 1.239)' fill='%23ffe439'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2012' data-name='Groupe 2012' transform='translate(172.833 0.28)' opacity='0.582'%3E%3Cg id='Groupe_2011' data-name='Groupe 2011'%3E%3Cg id='Groupe_2010' data-name='Groupe 2010' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_3068' data-name='Rectangle 3068' width='6.207' height='6.207' transform='translate(0 1.308) rotate(-12.164)' fill='%23ffe43d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2015' data-name='Groupe 2015' transform='translate(181.929 0.294)' opacity='0.56'%3E%3Cg id='Groupe_2014' data-name='Groupe 2014'%3E%3Cg id='Groupe_2013' data-name='Groupe 2013' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_3070' data-name='Rectangle 3070' width='6.123' height='6.123' transform='matrix(0.974, -0.225, 0.225, 0.974, 0, 1.377)' fill='%23ffe540'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2018' data-name='Groupe 2018' transform='translate(191.025 0.309)' opacity='0.538'%3E%3Cg id='Groupe_2017' data-name='Groupe 2017'%3E%3Cg id='Groupe_2016' data-name='Groupe 2016' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_3072' data-name='Rectangle 3072' width='6.04' height='6.04' transform='matrix(0.971, -0.239, 0.239, 0.971, 0, 1.445)' fill='%23ffe543'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2021' data-name='Groupe 2021' transform='translate(200.122 0.324)' opacity='0.516'%3E%3Cg id='Groupe_2020' data-name='Groupe 2020'%3E%3Cg id='Groupe_2019' data-name='Groupe 2019' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_3074' data-name='Rectangle 3074' width='5.958' height='5.958' transform='matrix(0.967, -0.254, 0.254, 0.967, 0, 1.514)' fill='%23ffe546'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2024' data-name='Groupe 2024' transform='translate(209.219 0.339)' opacity='0.494'%3E%3Cg id='Groupe_2023' data-name='Groupe 2023'%3E%3Cg id='Groupe_2022' data-name='Groupe 2022' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_3076' data-name='Rectangle 3076' width='5.878' height='5.878' transform='translate(0 1.583) rotate(-15.623)' fill='%23ffe649'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2027' data-name='Groupe 2027' transform='translate(218.315 0.353)' opacity='0.472'%3E%3Cg id='Groupe_2026' data-name='Groupe 2026'%3E%3Cg id='Groupe_2025' data-name='Groupe 2025' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_3078' data-name='Rectangle 3078' width='5.799' height='5.799' transform='translate(0 1.652) rotate(-16.55)' fill='%23ffe74d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2030' data-name='Groupe 2030' transform='translate(227.412 0.368)' opacity='0.45'%3E%3Cg id='Groupe_2029' data-name='Groupe 2029'%3E%3Cg id='Groupe_2028' data-name='Groupe 2028' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_3080' data-name='Rectangle 3080' width='5.722' height='5.722' transform='translate(0 1.721) rotate(-17.5)' fill='%23ffe750'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2033' data-name='Groupe 2033' transform='translate(236.508 0.383)' opacity='0.428'%3E%3Cg id='Groupe_2032' data-name='Groupe 2032'%3E%3Cg id='Groupe_2031' data-name='Groupe 2031' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_3082' data-name='Rectangle 3082' width='5.647' height='5.647' transform='translate(0 1.79) rotate(-18.478)' fill='%23ffe753'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2036' data-name='Groupe 2036' transform='translate(245.604 0.398)' opacity='0.406'%3E%3Cg id='Groupe_2035' data-name='Groupe 2035'%3E%3Cg id='Groupe_2034' data-name='Groupe 2034' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_3084' data-name='Rectangle 3084' width='5.573' height='5.573' transform='translate(0 1.858) rotate(-19.477)' fill='%23ffe856'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2039' data-name='Groupe 2039' transform='translate(254.701 0.412)' opacity='0.384'%3E%3Cg id='Groupe_2038' data-name='Groupe 2038'%3E%3Cg id='Groupe_2037' data-name='Groupe 2037' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_3086' data-name='Rectangle 3086' width='5.501' height='5.501' transform='translate(0 1.927) rotate(-20.507)' fill='%23ffe859'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2042' data-name='Groupe 2042' transform='translate(263.797 0.427)' opacity='0.362'%3E%3Cg id='Groupe_2041' data-name='Groupe 2041'%3E%3Cg id='Groupe_2040' data-name='Groupe 2040' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_3088' data-name='Rectangle 3088' width='5.431' height='5.431' transform='translate(0 1.996) rotate(-21.564)' fill='%23ffe95d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2045' data-name='Groupe 2045' transform='translate(272.894 0.442)' opacity='0.34'%3E%3Cg id='Groupe_2044' data-name='Groupe 2044'%3E%3Cg id='Groupe_2043' data-name='Groupe 2043' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_3090' data-name='Rectangle 3090' width='5.363' height='5.363' transform='matrix(0.923, -0.385, 0.385, 0.923, 0, 2.065)' fill='%23ffe960'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2048' data-name='Groupe 2048' transform='translate(281.99 0.456)' opacity='0.318'%3E%3Cg id='Groupe_2047' data-name='Groupe 2047'%3E%3Cg id='Groupe_2046' data-name='Groupe 2046' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_3092' data-name='Rectangle 3092' width='5.296' height='5.296' transform='matrix(0.915, -0.403, 0.403, 0.915, 0, 2.134)' fill='%23ffea63'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2051' data-name='Groupe 2051' transform='translate(291.087 0.471)' opacity='0.296'%3E%3Cg id='Groupe_2050' data-name='Groupe 2050'%3E%3Cg id='Groupe_2049' data-name='Groupe 2049' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_3094' data-name='Rectangle 3094' width='5.232' height='5.232' transform='translate(0 2.203) rotate(-24.899)' fill='%23ffea66'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2054' data-name='Groupe 2054' transform='translate(300.183 0.486)' opacity='0.274'%3E%3Cg id='Groupe_2053' data-name='Groupe 2053'%3E%3Cg id='Groupe_2052' data-name='Groupe 2052' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_3096' data-name='Rectangle 3096' width='5.169' height='5.17' transform='matrix(0.898, -0.439, 0.439, 0.898, 0, 2.271)' fill='%23ffea69'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2057' data-name='Groupe 2057' transform='translate(309.28 0.501)' opacity='0.252'%3E%3Cg id='Groupe_2056' data-name='Groupe 2056'%3E%3Cg id='Groupe_2055' data-name='Groupe 2055' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_3098' data-name='Rectangle 3098' width='5.109' height='5.11' transform='translate(0 2.34) rotate(-27.256)' fill='%23ffeb6c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2060' data-name='Groupe 2060' transform='translate(318.376 0.515)' opacity='0.23'%3E%3Cg id='Groupe_2059' data-name='Groupe 2059'%3E%3Cg id='Groupe_2058' data-name='Groupe 2058' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_3100' data-name='Rectangle 3100' width='5.052' height='5.052' transform='translate(0 2.409) rotate(-28.48)' fill='%23ffeb70'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2063' data-name='Groupe 2063' transform='translate(327.472 0.53)' opacity='0.208'%3E%3Cg id='Groupe_2062' data-name='Groupe 2062'%3E%3Cg id='Groupe_2061' data-name='Groupe 2061' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_3102' data-name='Rectangle 3102' width='4.996' height='4.996' transform='matrix(0.868, -0.496, 0.496, 0.868, 0, 2.478)' fill='%23ffec73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2066' data-name='Groupe 2066' transform='translate(336.569 0.545)' opacity='0.186'%3E%3Cg id='Groupe_2065' data-name='Groupe 2065'%3E%3Cg id='Groupe_2064' data-name='Groupe 2064' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_3104' data-name='Rectangle 3104' width='4.943' height='4.943' transform='translate(0 2.547) rotate(-31.01)' fill='%23ffec76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2069' data-name='Groupe 2069' transform='translate(345.665 0.559)' opacity='0.164'%3E%3Cg id='Groupe_2068' data-name='Groupe 2068'%3E%3Cg id='Groupe_2067' data-name='Groupe 2067' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_3106' data-name='Rectangle 3106' width='4.893' height='4.893' transform='matrix(0.845, -0.535, 0.535, 0.845, 0, 2.616)' fill='%23ffed79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2072' data-name='Groupe 2072' transform='translate(354.762 0.574)' opacity='0.142'%3E%3Cg id='Groupe_2071' data-name='Groupe 2071'%3E%3Cg id='Groupe_2070' data-name='Groupe 2070' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_3108' data-name='Rectangle 3108' width='4.845' height='4.845' transform='translate(0 2.684) rotate(-33.641)' fill='%23ffed7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2075' data-name='Groupe 2075' transform='translate(363.859 0.589)' opacity='0.12'%3E%3Cg id='Groupe_2074' data-name='Groupe 2074'%3E%3Cg id='Groupe_2073' data-name='Groupe 2073' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_3110' data-name='Rectangle 3110' width='4.8' height='4.8' transform='matrix(0.819, -0.574, 0.574, 0.819, 0, 2.753)' fill='%23ffed80'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.heading-divider span {
  white-space: nowrap;
}

.header-excerpt {
  max-width: var(--max-width);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
  font-family: "Made";
  font-weight: 500;
  color: var(--blue-med);
  max-width: 63.25%;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .header-excerpt {
    max-width: 100%;
  }
}

h1 {
  line-height: 130%;
}

h2 {
  font-size: 26px;
  line-height: 130%;
  font-weight: 400;
}
h2 strong {
  font-weight: 500;
}

h3 {
  color: var(--blue);
  font-size: 24px;
  line-height: 120%;
  font-weight: 400;
  font-family: "Made";
}
h3 strong {
  font-weight: 500;
}

p {
  margin-bottom: 12px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

.subtitle, .is-style-subtitle {
  font-size: 20px;
  line-height: 140%;
  font-weight: 400;
  font-family: "Made";
}
.subtitle strong, .is-style-subtitle strong {
  font-size: 20px !important;
}

p {
  font-weight: 400;
  letter-spacing: 0.5px;
}
p strong {
  letter-spacing: 0.5px;
}

span {
  letter-spacing: 0.5px;
}

blockquote {
  font-style: italic;
  color: var(--blue-med);
  font-weight: 400;
}

.has-orange-color {
  color: var(--orange);
}

.has-orange-dark-color {
  color: var(--orange-dark);
}

.has-cyan-color {
  color: var(--cyan);
}

.has-cyan-light-color {
  color: var(--cyan-light);
}

.has-cyan-med-color {
  color: var(--cyan-med);
}

.has-blue-color {
  color: var(--blue);
}

.has-blue-med-color {
  color: var(--blue-med);
}

.has-yellow-color {
  color: var(--yellow);
}

.has-yellow-dark-color {
  color: var(--yellow-dark);
}

.is-style-Made {
  font-family: "Made EVO";
}

.is-style-separator {
  background-color: transparent !important;
  font-family: "Made EVO";
}

h1.has-background, h2.has-background, h3.has-background {
  padding: 0;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff; /* Fallback for when there is no custom background color defined. */
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto; /* Make sure images are scaled correctly. */
  max-width: 100%; /* Adhere to container width. */
}

figure {
  margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

.container {
  max-width: var(--max-width);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
}
.container--full {
  padding-left: var(--container-padding-main);
  padding-right: var(--container-padding-main);
}
.container--xerox {
  margin-top: 72px;
}
.container .default_template_holder {
  padding-top: 0;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit], .btn {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 12px 24px;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover, .btn:hover {
  border-color: #ccc #bbb #aaa;
}
button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus, .btn:active, .btn:focus {
  border-color: #aaa #bbb #bbb;
}

.button {
  margin-top: 12px;
}
.button--double {
  position: relative;
  display: inline-flex;
  gap: 12px;
  padding-bottom: 15px;
  font-weight: bold;
  padding-top: 15px;
  text-transform: uppercase;
  color: var(--cyan);
  overflow: hidden;
  font-family: "Made";
  letter-spacing: 2px;
  font-size: 14px;
  background-color: transparent;
}
.button--double:hover {
  background-color: transparent;
}
.button--double:hover:after {
  transform: translateX(-50%);
}
.button--double.orange {
  color: var(--orange-med);
}
.button--double.orange:before {
  background: transparent linear-gradient(89deg, rgba(255, 160, 0, 0) 0%, #FFA000 50%, #FFA000 50%, rgba(255, 160, 0, 0) 100%) 0% 0% no-repeat padding-box;
}
.button--double.orange:after {
  background: transparent linear-gradient(271deg, rgba(255, 220, 0, 0) 0%, #FFA000 50%, #FFA000 50%, rgba(255, 220, 0, 0) 100%) 0% 0% no-repeat padding-box;
}
.button--double.yellow {
  color: var(--orange-med);
}
.button--double.yellow:before {
  background: transparent linear-gradient(89deg, rgba(255, 220, 0, 0) 0%, #FFDC00 50%, #FFDC00 50%, rgba(255, 220, 0, 0) 100%) 0% 0% no-repeat padding-box;
}
.button--double.yellow:after {
  background: transparent linear-gradient(271deg, rgba(255, 220, 0, 0) 0%, #FFDC00 50%, #FFDC00 50%, rgba(255, 220, 0, 0) 100%) 0% 0% no-repeat padding-box;
}
.button--double.cyan:before {
  background: transparent linear-gradient(89deg, rgba(30, 210, 210, 0) 0%, #1ED2D2 50%, #1ED2D2 50%, rgba(30, 210, 210, 0) 100%) 0% 0% no-repeat padding-box;
}
.button--double.cyan:after {
  background: transparent linear-gradient(271deg, rgba(30, 210, 210, 0) 0%, #1ED2D2 50%, #1ED2D2 50%, rgba(30, 210, 210, 0) 100%) 0% 0% no-repeat padding-box;
}
.button--double:before {
  transition: all ease-in-out 0.2s;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  height: 5px;
  width: 200%;
  right: 0;
  background: transparent linear-gradient(89deg, #00404E 0%, rgba(0, 64, 78, 0) 50%, rgba(0, 64, 78, 0) 50%, #00404E 100%) 0% 0% no-repeat padding-box;
}
.button--double:hover:before {
  transform: translateX(50%);
}
.button--double:after {
  transition: all ease-in-out 0.2s;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 200%;
  background: transparent linear-gradient(271deg, #00404E 0%, rgba(0, 64, 78, 0) 50%, rgba(0, 64, 78, 0) 50%, #00404E 100%) 0% 0% no-repeat padding-box;
}
.button--arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: "Made EVO";
  gap: 12px;
  font-weight: 500;
  color: var(--cyan-med);
  overflow: hidden;
}
.button--arrow .text {
  font-size: 20px;
}
.button--arrow:hover {
  background-color: transparent;
}
.button--arrow:hover .arrow:before {
  transform: rotate(-45deg);
}
.button--arrow .arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: transparent;
}
.button--arrow .arrow:before {
  transition: all ease-in-out 0.2s;
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid var(--blue);
  transform: rotate(45deg);
}
.button--arrow.orange {
  color: var(--orange-dark);
}
.button--arrow.orange .arrow:before {
  border: 2px solid var(--orange-med);
}
.button--arrow.yellow {
  color: var(--orange-med);
}
.button--arrow.yellow .arrow:before {
  border: 2px solid var(--yellow);
}
.button--arrow.cyan .arrow:before {
  border: 2px solid var(--cyan);
}
.button--arrow--small {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: "Made EVO";
  gap: 12px;
  padding-bottom: 15px;
  font-weight: bold;
  padding-top: 15px;
  color: var(--cyan-med);
  overflow: hidden;
}
.button--arrow--small .text {
  font-size: 18px;
}
.button--arrow--small:hover .arrow:before {
  transform: rotate(-45deg);
}
.button--arrow--small .arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}
.button--arrow--small .arrow svg {
  max-width: 16px;
}
.button--arrow--small .arrow:before {
  transition: all ease-in-out 0.2s;
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid var(--blue);
  transform: rotate(45deg);
}
.button--arrow--small.orange {
  color: var(--orange-dark);
}
.button--arrow--small.orange .arrow:before {
  border: 2px solid var(--orange-med);
}
.button--arrow--small.yellow {
  color: var(--orange-med);
}
.button--arrow--small.yellow .arrow:before {
  border: 2px solid var(--yellow);
}
.button--arrow--small.cyan .arrow:before {
  border: 2px solid var(--cyan-med);
}
.button--download {
  position: relative;
  display: inline-flex;
  flex-flow: column;
  align-items: center;
  padding: 12px 24px;
  gap: 12px;
  padding-bottom: 15px;
  font-weight: bold;
  padding-top: 15px;
  font-family: "Made EVO";
  color: var(--cyan-med);
  overflow: hidden;
  border: 2px solid var(--blue);
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  background-color: transparent;
}
.button--download.orange {
  color: var(--orange);
  border: 2px solid var(--orange-med);
}
.button--download.orange:hover {
  background: linear-gradient(90deg, rgba(255, 160, 0, 0.28) 0%, rgba(255, 244, 226, 0.28) 100%);
}
.button--download.yellow {
  color: var(--orange-med);
  border: 2px solid var(--yellow);
}
.button--download.yellow:hover {
  background: linear-gradient(90deg, rgba(255, 220, 0, 0.28) 0%, rgba(255, 252, 235, 0.28) 100%);
}
.button--download.cyan {
  color: var(--cyan);
  border: 2px solid var(--cyan);
}
.button--download.cyan:hover {
  background: linear-gradient(90deg, rgba(85, 190, 190, 0.28) 0%, rgba(234, 255, 255, 0.28) 100%);
}
.button--download .text {
  max-width: 160px;
  text-align: center;
}
.button--gradient {
  position: relative;
  display: inline-flex;
  flex-flow: column;
  align-items: center;
  padding: 22px 48px;
  min-height: 88px;
  font-weight: 400;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  overflow: hidden;
  color: var(--blue);
  background-position: -50%;
}
.button--gradient .text {
  font-weight: bold;
  color: var(--cyan);
  font-family: "Made EVO";
}
.button--gradient:hover {
  background-position: 50%;
}
.button--gradient.white_orange {
  background: transparent linear-gradient(270deg, #FFFFFF 0%, rgba(255, 160, 0, 0.28) 50%, rgba(255, 160, 0, 0.28) 50%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  background-size: 200% 100%;
}
.button--gradient.white_orange .text {
  color: var(--orange);
}
.button--gradient.white_orange:hover {
  background-size: 200% 100%;
  background: transparent linear-gradient(270deg, #FFFFFF 0%, rgba(255, 160, 0, 0.28) 50%, rgba(255, 160, 0, 0.28) 50%, #FFFFFF 100%) 100% 0% no-repeat padding-box;
}
.button--gradient.white_cyan {
  background: transparent linear-gradient(270deg, #FFFFFF 0%, #DDF8F8 50%, #DDF8F8 50%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  background-size: 200% 100%;
}
.button--gradient.white_cyan .text {
  color: var(--cyan);
}
.button--gradient.white_cyan:hover {
  background: transparent linear-gradient(270deg, #FFFFFF 0%, #DDF8F8 50%, #DDF8F8 50%, #FFFFFF 100%) 100% 0% no-repeat padding-box;
  background-size: 200% 100%;
}
.button--gradient.white_yellow {
  background: transparent linear-gradient(270deg, #FFFFFF 0%, rgba(255, 220, 0, 0.28) 50%, rgba(255, 220, 0, 0.28) 50%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  background-size: 200% 100%;
}
.button--gradient.white_yellow .text {
  color: var(--orange);
}
.button--gradient.white_yellow:hover {
  background: transparent linear-gradient(270deg, #FFFFFF 0%, rgba(255, 220, 0, 0.28) 50%, rgba(255, 220, 0, 0.28) 50%, #FFFFFF 100%) 100% 0% no-repeat padding-box;
  background-size: 200% 100%;
}
.button--gradient--arrow {
  position: relative;
  display: inline-flex;
  flex-flow: row;
  align-items: center;
  padding: 24px 48px;
  gap: 12px;
  min-height: 88px;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  font-weight: 400;
  font-family: "Made EVO";
  overflow: hidden;
  color: var(--blue);
}
.button--gradient--arrow .arrow {
  display: flex;
  align-items: center;
}
.button--gradient--arrow .arrow svg {
  max-height: 20px;
}
.button--gradient--arrow .text {
  font-weight: bold;
  color: var(--cyan);
}
.button--gradient--arrow.white_orange {
  background: transparent linear-gradient(270deg, #FFFFFF 0%, rgba(255, 160, 0, 0.28) 50%, rgba(255, 160, 0, 0.28) 50%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  background-size: 200% 100%;
}
.button--gradient--arrow.white_orange .text {
  color: var(--orange);
}
.button--gradient--arrow.white_orange:hover {
  background: transparent linear-gradient(270deg, #FFFFFF 0%, rgba(255, 160, 0, 0.28) 50%, rgba(255, 160, 0, 0.28) 50%, #FFFFFF 100%) 100% 0% no-repeat padding-box;
  background-size: 200% 100%;
}
.button--gradient--arrow.white_cyan {
  background: transparent linear-gradient(270deg, #FFFFFF 0%, #DDF8F8 50%, #DDF8F8 50%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  background-size: 200% 100%;
}
.button--gradient--arrow.white_cyan .text {
  color: var(--cyan);
}
.button--gradient--arrow.white_cyan:hover {
  background: transparent linear-gradient(270deg, #FFFFFF 0%, #DDF8F8 50%, #DDF8F8 50%, #FFFFFF 100%) 100% 0% no-repeat padding-box;
  background-size: 200% 100%;
}
.button--gradient--arrow.white_yellow {
  background: transparent linear-gradient(270deg, #FFFFFF 0%, rgba(255, 220, 0, 0.28) 50%, rgba(255, 220, 0, 0.28) 50%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  background-size: 200% 100%;
}
.button--gradient--arrow.white_yellow .text {
  color: var(--orange);
}
.button--gradient--arrow.white_yellow:hover {
  background: transparent linear-gradient(270deg, #FFFFFF 0%, rgba(255, 220, 0, 0.28) 50%, rgba(255, 220, 0, 0.28) 50%, #FFFFFF 100%) 100% 0% no-repeat padding-box;
  background-size: 200% 100%;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  padding: 12px 16px;
  border: none;
  border: 2px solid #f5f5f5;
  background-color: #F5F5F5;
  outline: none;
}
button[type=submit] {
  padding: 12px 16px;
  border: 2px solid #f5f5f5;
  background-color: white;
  border-radius: 0;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-row--search label,
.form-row--search input {
  width: 100%;
}

textarea {
  width: 100%;
}

.checkbox {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  position: relative;
}
.checkbox + .parsley-errors-list li {
  padding-top: 0;
  padding-bottom: 1rem;
}
.checkbox.checkbox-radio .checkmark {
  border-radius: 1rem;
}
.checkbox.checkbox-radio .checkmark:after {
  background-color: white;
  height: 0.4rem;
  width: 0.4rem;
  border-radius: 0.4rem;
  top: unset;
  border-width: unset;
}
.checkbox p,
.checkbox a {
  font-size: 14px;
  font-weight: 400;
  color: var(--blue);
}
.checkbox:hover {
  cursor: pointer;
}
.checkbox:hover input ~ .checkmark {
  background-color: white;
}
.checkbox input:checked ~ .checkmark {
  background-color: white;
}
.checkbox input:checked ~ .checkmark:after {
  display: block;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox .checkmark {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: white;
  border: 1px solid var(--cyan-med);
}
.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: 2px;
  width: 6px;
  height: 8px;
  border: solid var(--cyan-med);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.checkbox p {
  text-align: left;
  margin-left: 2rem;
  margin-top: 0;
  line-height: 120%;
  margin-bottom: 0;
}

.ts-wrapper {
  width: 100%;
  color: var(--blue);
  font-family: Roboto;
  font-weight: 500;
  font-size: 15.2px;
  font-size: 0.95rem;
  line-height: 140%;
}
.ts-wrapper .ts-dropdown .option {
  color: var(--blue);
  font-family: Roboto;
  font-weight: 500;
  font-size: 15.2px;
  font-size: 0.95rem;
  line-height: 140%;
  width: 100%;
  padding: 12px 16px;
}
.ts-wrapper .ts-control {
  padding: 0;
  border-radius: 0;
  border: none;
}
.ts-wrapper .ts-control .item {
  color: var(--blue);
  font-family: Roboto;
  font-weight: 500;
  font-size: 15.2px;
  font-size: 0.95rem;
  line-height: 140%;
  width: 100%;
  padding: 12px 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.ts-wrapper .ts-control .item:after {
  content: "";
  display: block;
  height: 6px;
  width: 12px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.053' height='4.441' viewBox='0 0 8.053 4.441'%3E%3Cpath id='Arrow' d='M8.053,0,3.866,2.635,0,.219V2.083L3.854,4.441l4.2-2.577Z' transform='translate(0 0)' fill='%2300404e'/%3E%3C/svg%3E%0A");
}

.parsley-errors-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  font-size: 12px;
  color: var(--orange-dark);
}

.form-wrapper {
  background-color: #E3F9F9;
  padding: 72px;
  width: auto;
}
@media screen and (max-width: 640px) {
  .form-wrapper {
    padding: 24px;
  }
}
.form-wrapper form.hide {
  display: none;
}
.form-wrapper form + .notification.hide {
  display: none;
}
.form-wrapper button {
  background-color: transparent;
  justify-content: center;
  cursor: pointer;
  border: none;
}
.form-wrapper button .text {
  font-size: 24px;
}
.form-wrapper .form__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 24px;
}
@media screen and (max-width: 640px) {
  .form-wrapper .form__group {
    grid-template-columns: 1fr;
  }
}
.form-wrapper .form__group.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-wrapper label {
  font-weight: 500;
  font-family: "Made";
  color: var(--cyan-med);
  margin-bottom: 6px;
}
.form-wrapper .form-row {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  margin-bottom: 24px;
}
.form-wrapper .form-row input,
.form-wrapper .form-row select,
.form-wrapper .form-row textarea {
  width: 100%;
  background-color: white;
}

.form-ticket {
  display: none;
  position: fixed;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  width: 100%;
  top: 100px;
  left: 0;
  overflow: scroll;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 999;
  padding: 72px 0;
}
.form-ticket.show {
  display: flex;
}
.form-ticket .form-wrapper {
  background-color: #f7f7f7;
  position: relative;
  overflow: auto;
}
.form-ticket .form-wrapper .toggle-ticket {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 24px;
  right: 24px;
}
.form-ticket .form-wrapper .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

.toggle-ticket {
  cursor: pointer;
}

fieldset {
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
}
fieldset .button {
  margin-top: 0;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  text-decoration: none;
  color: var(--cyan);
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

.categories ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.categories ul li {
  margin-bottom: 48px;
}
.categories a.link {
  text-transform: uppercase;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  padding-bottom: 12px;
  color: var(--blue-med);
  font-weight: 700;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  opacity: 0.5;
}
.categories a.link:hover, .categories a.link.active {
  opacity: 1;
}
.categories a.link:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background: transparent linear-gradient(86deg, #387F80 0%, rgba(0, 64, 78, 0) 100%) 0% 0% no-repeat padding-box;
}
.categories a.link--bleu {
  opacity: 0.5;
}
.categories a.link--bleu:after {
  background: transparent linear-gradient(88deg, #387F80 0%, rgba(0, 64, 78, 0) 100%) 0% 0% no-repeat padding-box;
}
.categories a.link--cyan {
  opacity: 0.5;
  color: var(--cyan);
}
.categories a.link--cyan:after {
  background: transparent linear-gradient(88deg, #1ED2D2 0%, rgba(30, 210, 210, 0) 100%) 0% 0% no-repeat padding-box;
}
.categories a.link--orange {
  opacity: 0.5;
  color: var(--orange);
}
.categories a.link--orange:after {
  background: transparent linear-gradient(88deg, #ED9200 0%, rgba(237, 146, 0, 0) 100%) 0% 0% no-repeat padding-box;
}
.categories a.link--jaune {
  opacity: 0.5;
  color: var(--orange);
}
.categories a.link--jaune:after {
  background: transparent linear-gradient(89deg, #FFDC00 0%, rgba(255, 220, 0, 0) 100%) 0% 0% no-repeat padding-box;
}

.xwr-navigation ul.menu {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.xwr-navigation ul.menu li {
  border: none;
}
.xwr-navigation .xwr-widget-category .sub-menu {
  padding-left: 0;
}
.xwr-navigation .xwr-widget-category .sub-menu li {
  border: none;
}
.xwr-navigation .xwr-widget-category > a {
  margin-bottom: 48px;
}
.xwr-navigation .xwr-widget-category a {
  color: var(--blue-med) !important;
}
.xwr-navigation .xwr-widget-category a.xwr-widget-navigation-link {
  text-transform: uppercase;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  padding-bottom: 12px;
  color: var(--blue-med);
  font-weight: 700;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  opacity: 0.5;
  margin-bottom: 12px;
}
.xwr-navigation .xwr-widget-category a.xwr-widget-navigation-link:hover, .xwr-navigation .xwr-widget-category a.xwr-widget-navigation-link.active {
  opacity: 1;
}
.xwr-navigation .xwr-widget-category a.xwr-widget-navigation-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background: transparent linear-gradient(86deg, #387F80 0%, rgba(0, 64, 78, 0) 100%) 0% 0% no-repeat padding-box;
}
.xwr-navigation .xwr-widget-category a.xwr-widget-navigation-link--bleu {
  opacity: 0.5;
}
.xwr-navigation .xwr-widget-category a.xwr-widget-navigation-link--bleu:after {
  background: transparent linear-gradient(88deg, #387F80 0%, rgba(0, 64, 78, 0) 100%) 0% 0% no-repeat padding-box;
}
.xwr-navigation .xwr-widget-category a.xwr-widget-navigation-link--cyan {
  opacity: 0.5;
  color: var(--cyan);
}
.xwr-navigation .xwr-widget-category a.xwr-widget-navigation-link--cyan:after {
  background: transparent linear-gradient(88deg, #1ED2D2 0%, rgba(30, 210, 210, 0) 100%) 0% 0% no-repeat padding-box;
}
.xwr-navigation .xwr-widget-category a.xwr-widget-navigation-link--orange {
  opacity: 0.5;
  color: var(--orange);
}
.xwr-navigation .xwr-widget-category a.xwr-widget-navigation-link--orange:after {
  background: transparent linear-gradient(88deg, #ED9200 0%, rgba(237, 146, 0, 0) 100%) 0% 0% no-repeat padding-box;
}
.xwr-navigation .xwr-widget-category a.xwr-widget-navigation-link--jaune {
  opacity: 0.5;
  color: var(--orange);
}
.xwr-navigation .xwr-widget-category a.xwr-widget-navigation-link--jaune:after {
  background: transparent linear-gradient(89deg, #FFDC00 0%, rgba(255, 220, 0, 0) 100%) 0% 0% no-repeat padding-box;
}
.xwr-navigation li.active > a.xwr-widget-navigation-link, .xwr-navigation :hover > a.xwr-widget-navigation-link {
  opacity: 1;
}

.article__metas {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--blue-med);
  font-weight: 300;
}
@media screen and (max-width: 640px) {
  .article__metas {
    flex-flow: column;
  }
}
.article__metas a,
.article__metas time {
  color: var(--blue-med);
  font-weight: 300;
}
.article__metas .link {
  text-transform: uppercase;
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  padding-bottom: 12px;
  font-weight: 700;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  text-decoration: none;
  padding-bottom: 4px;
}
.article__metas .link:hover span:after {
  width: 100%;
}
.article__metas .link span {
  letter-spacing: 1.26px;
  color: var(--blue-med);
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  position: relative;
}
.article__metas .link span:after {
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--blue-med);
  display: block;
  position: absolute;
  bottom: 0;
}
.article__metas .link--cyan span {
  color: var(--cyan);
}
.article__metas .link--cyan span:after {
  background-color: var(--cyan);
}
.article__metas .link--orange span {
  color: var(--orange);
}
.article__metas .link--orange span:after {
  background-color: var(--orange);
}
.article__metas .link--jaune span {
  color: var(--orange);
}
.article__metas .link--jaune span:after {
  background-color: var(--yellow);
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.admin-bar #masthead {
  top: 32px;
}

#masthead {
  background-color: white;
  z-index: 1;
  overflow-y: visible;
  position: fixed;
  width: 100%;
  top: 0;
}
#masthead + #content {
  margin-top: 100px;
}
#masthead + #content main > .text-content:first-of-type {
  margin-top: 48px;
}
#masthead + #content main > .container .heading-divider:first-of-type {
  padding-top: 48px;
}
#masthead .menu-header > a {
  text-decoration: none;
  color: var(--blue);
  font-weight: 500;
  font-family: "Made";
  cursor: pointer;
}
#masthead .drop-shadow {
  position: absolute;
  bottom: 0;
  background-color: white;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
  width: 100%;
  height: 100%;
  z-index: -1;
}
#masthead > .container {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  padding-top: 21.5px;
  background-color: white;
  justify-content: flex-start;
  gap: 20px;
  max-width: var(--max-width);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
  padding-left: var(--container-padding-main);
  padding-right: var(--container-padding-main);
}
@media screen and (max-width: 1024px) {
  #masthead > .container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
#masthead .site-branding {
  line-height: 0;
  padding-bottom: 21px;
}
#masthead .site-branding .mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  #masthead .site-branding {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #masthead .site-branding .custom-logo-link {
    display: none;
  }
  #masthead .site-branding .mobile {
    display: block;
  }
}
#masthead .site-branding a {
  line-height: 0;
}

.main-navigation > .toggle-menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  .main-navigation {
    order: 1;
  }
  .main-navigation > .toggle-menu {
    all: unset;
    cursor: pointer;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 21px;
  }
  .main-navigation > .toggle-menu span {
    width: 28px;
    height: 3px;
    display: block;
    background-color: var(--blue);
  }
}
.main-navigation .header-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.main-navigation .header-navigation__mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .main-navigation .header-navigation__mobile {
    display: grid;
    z-index: 1;
    background-color: white;
    grid-template-columns: 1fr auto 1fr;
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 21.5px;
    padding-top: 21.5px;
  }
  .main-navigation .header-navigation__mobile .logo {
    grid-column: 2;
  }
  .main-navigation .header-navigation__mobile .logo img {
    max-width: 200px;
  }
  .main-navigation .header-navigation__mobile .toggle-menu {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1024px) {
  .main-navigation .header-navigation {
    background-color: white;
    flex-flow: column;
    align-items: flex-start;
    position: fixed;
    display: none;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    max-width: var(--max-width);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin: 0 auto;
    width: 100%;
    gap: 0;
    overflow: scroll;
  }
  .main-navigation .header-navigation.show {
    display: flex;
  }
  .main-navigation .header-navigation > div {
    width: 100%;
  }
}
.main-navigation .header-navigation ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
}
.main-navigation .header-navigation ul.sub-menu li {
  margin-left: 12px;
}
.main-navigation .header-navigation #header-generique {
  --menu-main-color: #7CA9B2;
  --menu-secondary-color: #7CA9B2;
}
.main-navigation .header-navigation #header-generique .chevron svg * {
  fill: var(--cyan-med);
}
.main-navigation .header-navigation #menu-blog .mobile_only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .main-navigation .header-navigation #menu-blog .mobile_only {
    display: block;
  }
}
.main-navigation .header-navigation #menu-blog .menu .menu-header {
  padding-bottom: 21px;
}
.main-navigation .header-navigation #menu-blog .menu .menu-header a {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .main-navigation .header-navigation #menu-blog .menu .menu-header {
    display: flex;
    align-items: center;
    padding: 12px 0;
    min-height: 60px;
    border-bottom: 1px solid #D8D8D8;
  }
  .main-navigation .header-navigation #menu-blog .menu .menu-header.hide {
    display: none;
  }
}
.main-navigation .header-navigation #menu-blog .menu .menu-header:hover:after {
  width: 100%;
}
.main-navigation .header-navigation #menu-blog .menu .menu-header__title {
  color: var(--blue);
}
.main-navigation .header-navigation #menu-blog .menu .menu-header:after {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--blue);
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}
@media screen and (max-width: 1024px) {
  .main-navigation .header-navigation #menu-blog .menu .menu-header:after {
    display: none;
  }
}
.main-navigation .header-navigation .menu .menu-header {
  padding-bottom: 21px;
}
@media screen and (max-width: 1024px) {
  .main-navigation .header-navigation .menu .menu-header {
    padding-bottom: 0;
    z-index: 0;
    background-color: white;
  }
}
.main-navigation .header-navigation .menu .menu-header__title {
  color: var(--blue);
  font-family: "Made";
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  cursor: pointer;
  background-color: white;
}
@media screen and (max-width: 1024px) {
  .main-navigation .header-navigation .menu .menu-header__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    min-height: 60px;
    border-bottom: 1px solid #D8D8D8;
  }
}
.main-navigation .header-navigation .menu .menu-header__title .chevron {
  display: none;
}
@media screen and (max-width: 1024px) {
  .main-navigation .header-navigation .menu .menu-header__title .chevron {
    display: block;
    background-color: var(--menu-secondary-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
  }
  .main-navigation .header-navigation .menu .menu-header__title .chevron svg {
    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  }
  .main-navigation .header-navigation .menu .menu-header__title .chevron svg * {
    fill: var(--menu-main-color);
  }
}
.main-navigation .header-navigation .menu .menu-header__title a {
  color: var(--blue);
}
.main-navigation .header-navigation .menu .menu-header:after {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  margin-top: 4px;
  background-color: var(--menu-main-color);
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}
@media screen and (max-width: 1024px) {
  .main-navigation .header-navigation .menu .menu-header:after {
    display: none;
  }
}
.main-navigation .header-navigation .menu .menu-header.hide {
  display: none;
}
.main-navigation .header-navigation .menu .menu-header.active .chevron svg {
  transform: rotate(-90deg);
}
.main-navigation .header-navigation .menu .menu-header.active:after {
  width: 100%;
}
.main-navigation .header-navigation .menu .menu-header.active .menu-container {
  transform: translateY(0);
  filter: drop-shadow(0px -1px 3px rgba(0, 0, 0, 0.161));
  transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media screen and (max-width: 1024px) {
  .main-navigation .header-navigation .menu .menu-header.active {
    z-index: 0;
    position: relative;
  }
  .main-navigation .header-navigation .menu .menu-header.active .menu-container {
    position: relative;
    top: 0;
    z-index: -1;
    filter: unset;
  }
  .main-navigation .header-navigation .menu .menu-header.active .menu-container .container {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
  .main-navigation .header-navigation .menu .menu-header.active .menu-container .container ul {
    grid-template-columns: 1fr;
  }
}
.main-navigation .header-navigation .menu .menu-header .menu-container {
  transform: translateY(-100%);
  display: block;
  position: absolute;
  left: 0;
  z-index: -1;
  top: 88px;
  width: 100%;
  background-color: white;
}
.main-navigation .header-navigation .menu .menu-header .menu-container.active {
  transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .main-navigation .header-navigation .menu .menu-header .menu-container {
    transform: translateY(-300%);
  }
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container {
  position: relative;
  max-width: var(--max-width);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
  padding-top: 32px;
  padding-left: var(--container-padding-main);
  padding-right: var(--container-padding-main);
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container ul {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr 1fr;
  width: 100%;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-bottom: 24px;
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container ul > li {
  text-transform: uppercase;
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container ul > li > a {
  color: var(--blue);
  font-weight: 500;
  font-family: "Made";
  cursor: pointer;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container ul > li > a:hover {
  color: var(--menu-main-color);
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container li {
  padding-top: 6px;
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container li.icon {
  max-height: unset;
  margin-top: 0;
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container li.icon span {
  background-color: var(--menu-secondary-color);
  display: flex;
  width: 100%;
  justify-self: flex-end;
  align-items: center;
  justify-content: center;
  bottom: 0;
  padding: 24px 48px;
  max-height: unset;
  margin-top: 0;
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container li.icon span img {
  max-height: 54px;
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container li.icon.empty {
  background-color: transparent;
  min-height: 84px;
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container .sub-menu {
  display: flex;
  flex-flow: column;
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container .sub-menu li {
  margin-left: 0;
  text-transform: none;
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container .sub-menu li a {
  color: #9DA1B2;
  font-weight: 400;
  transition: all ease-in-out 0.2s;
}
.main-navigation .header-navigation .menu .menu-header .menu-container .container .sub-menu li a:hover {
  color: var(--menu-main-color);
}

.toggle-search {
  cursor: pointer;
}

.search-navigation {
  background-color: #f7f7f7;
  position: fixed;
  top: 102px;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateY(-100%);
  display: block;
  z-index: -2;
  width: 100%;
}
.search-navigation.show {
  transform: translateY(0%);
}
.search-navigation .container-search {
  display: flex;
}
.search-navigation .container-search .container-min {
  max-width: 74.25%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .search-navigation .container-search .container-min {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.search-navigation .container-search .container-min input {
  background-color: white;
}

.secondary-navigation {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-self: end;
}
@media screen and (max-width: 1024px) {
  .secondary-navigation {
    order: 3;
  }
  .secondary-navigation a {
    display: none;
  }
}

.animate-svg {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-flow: column;
  height: 60px;
  width: 60px;
  position: relative;
  margin-bottom: 21px;
  border: 2px solid transparent;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}
.animate-svg.cyan:hover {
  border-color: var(--cyan);
}
.animate-svg:hover {
  border: 2px solid var(--orange);
}
.animate-svg:hover .hide {
  opacity: 1;
}
.animate-svg svg {
  position: absolute;
}
.animate-svg svg .hide {
  opacity: 0;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.site-footer {
  margin-top: 72px;
  padding: 72px 0;
  background-color: var(--blue);
}
.site-footer .container {
  padding-left: var(--container-padding-main);
  padding-right: var(--container-padding-main);
}
.site-footer .newsletter p {
  color: #ffffff;
}
.site-footer .newsletter .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 640px) {
  .site-footer .newsletter .container {
    flex-flow: column;
    align-items: center;
  }
}
.site-footer .newsletter .container h3 {
  font-family: "Made EVO";
  color: var(--cyan);
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: 500;
  letter-spacing: 0;
}
.site-footer .newsletter .container fieldset {
  border-bottom: 1px solid #387F80;
  justify-content: space-between;
}
.site-footer .newsletter .container fieldset input {
  background-color: transparent;
  color: white;
  border: none;
  padding-left: 0;
  font-weight: 300;
}
.site-footer .newsletter .container fieldset button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding-right: 0;
}
.site-footer .newsletter .container fieldset + .checkbox p,
.site-footer .newsletter .container fieldset + .checkbox a {
  color: white;
  font-weight: 300;
}
.site-footer .newsletter .container fieldset + .checkbox a {
  text-decoration: underline;
}
.site-footer .social-footer {
  margin-bottom: 72px;
}
.site-footer .informations .logo {
  margin-bottom: 48px;
}
.site-footer .informations address {
  display: flex;
  flex-flow: column;
}
.site-footer .informations address span {
  color: var(--cyan-light);
  font-style: normal;
}
.site-footer .informations a {
  display: flex;
  align-items: center;
  color: var(--cyan-light);
  padding-bottom: 12px;
  gap: 12px;
}
.site-footer .footer-menus {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 640px) {
  .site-footer .footer-menus {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.site-footer .footer-menus > div {
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  padding-right: 24px;
}
@media screen and (max-width: 640px) {
  .site-footer .footer-menus > div {
    border-left: none;
    padding-right: 0;
  }
}
.site-footer .footer-menus > div:first-of-type, .site-footer .footer-menus > div:nth-child(2) {
  border-left: none;
}
.site-footer .footer-menus ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.site-footer .footer-menus ul li {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 6px;
}
.site-footer .footer-menus ul li.menu-item-has-children > a {
  padding-bottom: 12px;
  display: block;
}
.site-footer .footer-menus ul li a {
  color: white;
  font-size: 12px;
}
.site-footer .footer-menus ul li.container > ul > li > a {
  color: var(--menu-secondary-color);
  font-family: "Made EVO";
  font-size: 16px;
  font-weight: bold;
}
.site-footer .footer-menus .menu {
  list-style: none;
  padding-left: 48px;
}
@media screen and (max-width: 640px) {
  .site-footer .footer-menus .menu {
    padding-left: 0;
  }
}
.site-footer .footer-menus .menu#header-solutions {
  padding-left: 0;
}
.site-footer .footer-menus .menu#header-generique {
  --menu-main-color: white;
  --menu-secondary-color: white;
}
.site-footer .footer-menus .menu#header-generique .menu-container a {
  font-size: 12px;
  font-family: "Roboto";
}
.site-footer .footer-menus .menu .icon {
  display: none;
}
.site-footer .footer-menus .menu .menu-header__title .chevron {
  display: none;
}
.site-footer .footer-menus .menu .menu-header__title a {
  font-family: "Made EVO";
  color: var(--menu-main-color);
  line-height: 140%;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
  font-weight: bold;
}

.sub-footer {
  padding: 72px 0;
  background: transparent linear-gradient(90deg, #55BEBE 0%, #EAFFFF 100%) 0% 0% no-repeat padding-box;
}
.sub-footer .legal {
  text-align: center;
}
.sub-footer .legal p {
  color: var(--cyan-med);
  font-size: 12px;
}
.sub-footer .legal a {
  color: var(--blue-med);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sub-footer .legal a:last-of-type:after {
  display: none;
}
.sub-footer .legal a:after {
  content: "|";
  display: flex;
}
.sub-footer .container {
  padding-left: var(--container-padding-main);
  padding-right: var(--container-padding-main);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
}
@media screen and (max-width: 640px) {
  .sub-footer .container {
    flex-flow: column;
  }
}
.sub-footer .container .menu-header__title {
  display: none;
}
.sub-footer .container img {
  max-width: 220px;
  max-height: 100px;
  width: auto;
}
.sub-footer .container ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.sub-footer .container ul a {
  font-size: 14px;
}
.sub-footer .container ul a:after {
  display: none;
}
.sub-footer .container .menu-container {
  margin-left: 0;
}
.sub-footer .container .menu-container .container {
  padding-left: 0;
  padding-right: 0;
}
.sub-footer .container .menu-container .container .empty {
  display: none;
}
.sub-footer .container .menu-container .container ul {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 12px;
}
.sub-footer .container .menu-container .container ul li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sub-footer .container .menu-container .container ul li:first-of-type:after {
  content: "";
}
.sub-footer .container .menu-container .container ul li:last-of-type:after {
  content: "";
}
.sub-footer .container .menu-container .container ul li:after {
  content: "|";
  font-weight: 400;
  color: var(--blue-med);
}
.sub-footer .container .menu-container .container ul a {
  color: var(--blue-med);
  font-weight: 400;
}

.page-template-xerox-template .xwr-container h2,
.page-template-xerox-template .xwr-container h3 {
  font-family: "Made";
  font-size: 24px;
  font-weight: bold;
}
.page-template-xerox-template .xwr-container * {
  font-family: "Made";
  font-weight: 500;
  font-size: 15.2px;
  font-size: 0.95rem;
  line-height: 140%;
}
.page-template-xerox-template .xwr-container .width-sidebar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  grid-template-rows: 1;
  align-items: flex-start;
}
@media screen and (max-width: 640px) {
  .page-template-xerox-template .xwr-container .width-sidebar {
    grid-template-columns: 1fr;
  }
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-navigation {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 12px;
}
@media screen and (max-width: 640px) {
  .page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-navigation {
    grid-column: 1;
    position: relative;
    top: unset;
  }
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-navigation .navbar-header {
  display: none;
}
.page-template-xerox-template .xwr-container .width-sidebar .xra-produits-page-fr {
  width: 100%;
  grid-column: span 2;
}
@media screen and (max-width: 640px) {
  .page-template-xerox-template .xwr-container .width-sidebar .xra-produits-page-fr {
    grid-column: span 1;
  }
}
.page-template-xerox-template .xwr-container .width-sidebar .xra-produits-page-fr .xwr-widget-content {
  display: block;
}
.page-template-xerox-template .xwr-container .width-sidebar .xra-consommables-fr {
  width: 100%;
  grid-column: span 2;
}
.page-template-xerox-template .xwr-container .width-sidebar .xra-consommables-fr .vertical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  grid-auto-flow: column;
}
@media screen and (max-width: 640px) {
  .page-template-xerox-template .xwr-container .width-sidebar .xra-consommables-fr .vertical {
    display: flex;
    flex-flow: column;
  }
}
.page-template-xerox-template .xwr-container .width-sidebar .xra-consommables-fr .vertical .thumbnail {
  line-height: 0;
}
.page-template-xerox-template .xwr-container .width-sidebar .xra-consommables-fr .vertical .thumbnail img {
  width: 100%;
  padding-bottom: 0;
}
.page-template-xerox-template .xwr-container .width-sidebar .xra-consommables-fr .vertical .caption {
  padding: 12px 24px;
  background-color: var(--cyan-light);
  height: auto !important;
}
.page-template-xerox-template .xwr-container .width-sidebar .xra-consommables-fr .vertical .caption .xarw-excerpt {
  padding-bottom: 0;
  padding-top: 0;
}
.page-template-xerox-template .xwr-container .width-sidebar .xra-consommables-fr .vertical .caption .xarw-excerpt p {
  font-family: "Made";
  font-weight: 500;
  letter-spacing: 0.43px;
  font-size: 15.2px;
  font-size: 0.95rem;
  line-height: 140%;
}
.page-template-xerox-template .xwr-container .width-sidebar .xra-consommables-fr .vertical .caption .xarw-excerpt + .container-fluid p {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, auto);
}
@media screen and (max-width: 640px) {
  .page-template-xerox-template .xwr-container .width-sidebar .xra-consommables-fr .vertical .caption .xarw-excerpt + .container-fluid p {
    grid-template-columns: 1fr;
  }
}
.page-template-xerox-template .xwr-container .width-sidebar .xra-consommables-fr .vertical .caption .xarw-excerpt + .container-fluid p .btn {
  cursor: pointer;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0 !important;
  background-color: var(--orange);
  border-color: var(--orange);
  border: 2px solid var(--orange);
  color: white;
  font-family: "Made EVO";
  border-radius: 0;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 0;
}
.page-template-xerox-template .xwr-container .width-sidebar .xra-consommables-fr .vertical .caption .xarw-excerpt + .container-fluid p .btn:hover {
  border-color: var(--orange-med);
  background-color: var(--orange-med);
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  color: var(--blue-med);
}
@media screen and (max-width: 640px) {
  .page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content {
    grid-template-columns: 1fr;
  }
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row + hr,
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content hr {
  display: none;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content #xwr-widget-top .row {
  height: 100%;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .col-lg-12 {
  height: 100%;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  grid-auto-rows: 1fr;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row .col-lg-9 {
  padding: 12px 24px;
  background-color: var(--cyan-light);
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row .xarw-excerpt {
  padding-bottom: 0;
  padding-top: 0;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row .xarw-excerpt p {
  font-family: "Made";
  font-weight: 500;
  font-size: 15.2px;
  font-size: 0.95rem;
  line-height: 140%;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row .xarw-features p {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, auto);
}
@media screen and (max-width: 640px) {
  .page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row .xarw-features p {
    grid-template-columns: 1fr;
  }
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row .xarw-features p .btn {
  cursor: pointer;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0 !important;
  background-color: var(--orange);
  border-color: var(--orange);
  border: 2px solid var(--orange);
  color: white;
  font-family: "Made EVO";
  border-radius: 0;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row .xarw-features p .btn:hover {
  border-color: var(--orange-med);
  background-color: var(--orange-med);
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row .xarw-features p .btn.xarw-action {
  background-color: white;
  color: var(--orange);
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row .xarw-features p .btn.xarw-action:hover {
  background-color: var(--orange-med);
  color: white;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row .xarw-features .collapse {
  max-height: 0;
  overflow: hidden;
  display: none;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row .xarw-features .collapse.in {
  height: auto !important;
  display: block;
  max-height: 600px;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .row .row .xarw-features .collapsing {
  height: auto !important;
  display: block;
  max-height: 600px;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .wpb-content-wrapper {
  display: grid;
  grid-template-columns: auto auto;
  gap: 24px;
  grid-auto-rows: 1fr;
}
@media screen and (max-width: 640px) {
  .page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .wpb-content-wrapper {
    grid-template-columns: 1fr;
    grid-auto-rows: unset;
  }
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .wpb-content-wrapper .vc_row-fluid.category-product-line {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .wpb-content-wrapper .vc_row-fluid.category-product-line[data-xwr-widget-page-category-slug=solutions-de-production-fr] {
  display: none;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .wpb-content-wrapper .full_section_inner {
  display: grid;
  grid-template-rows: 1.2fr 1fr;
  height: 100%;
}
@media screen and (max-width: 640px) {
  .page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .wpb-content-wrapper .full_section_inner {
    grid-template-rows: unset;
  }
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .wpb-content-wrapper .full_section_inner .category-infos {
  padding: 12px 24px;
  background-color: var(--cyan-light);
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .wpb-content-wrapper .full_section_inner .category-infos p a {
  letter-spacing: 0.43px;
  font-family: "Made";
  font-weight: 500;
  font-size: 15.2px;
  font-size: 0.95rem;
  line-height: 140%;
  color: var(--blue-med);
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .wpb-content-wrapper .full_section_inner .category-infos h3,
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .wpb-content-wrapper .full_section_inner .category-infos a {
  color: var(--blue);
  text-transform: none;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .wpb-content-wrapper .full_section_inner .category-infos h3 a {
  font-family: "Made";
  font-size: 24px;
  font-weight: bold;
}
.page-template-xerox-template .xwr-container .width-sidebar .xwr-widget-content .wpb-content-wrapper .full_section_inner .wpb_column {
  width: 100%;
}

.articles {
  display: grid;
  grid-template-columns: 70% calc(30% - 48px);
  gap: 48px;
  align-items: start;
  position: relative;
}
@media screen and (max-width: 640px) {
  .articles {
    display: flex;
    flex-flow: column;
  }
}
.articles .logo {
  grid-column: span 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 94px 0 64px 0;
}
@media screen and (max-width: 640px) {
  .articles .logo {
    grid-column: span 1;
    margin: 64px auto;
  }
}
.articles main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media screen and (max-width: 640px) {
  .articles main {
    grid-template-columns: 1fr;
    order: 1;
  }
}
.articles aside {
  position: sticky;
  top: 48px;
  padding-left: 48px;
}
@media screen and (max-width: 640px) {
  .articles aside {
    grid-template-columns: 1fr;
    order: 2;
    padding-left: 0;
    position: relative;
  }
}
.articles aside form {
  margin-bottom: 48px;
}
.articles aside form p {
  margin: 0;
}
.articles aside h3 {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  color: var(--blue-med);
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 48px;
}
.articles aside .aside-newsletter h3 {
  font-size: 20px;
  color: var(--cyan);
  margin-bottom: 0;
  font-weight: bold;
}
.articles aside .aside-newsletter h3 + p {
  font-family: "Made EVO";
  font-weight: bold;
  color: var(--cyan-med);
  font-size: 18px;
}
.articles aside .aside-newsletter fieldset {
  background-color: #DBE8E8;
  justify-content: space-between;
}
.articles aside .aside-newsletter fieldset input {
  background-color: transparent;
  border: none;
}
.articles aside .aside-newsletter fieldset button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.articles aside .aside-newsletter fieldset + .checkbox {
  gap: 12px;
}
.articles aside .aside-newsletter fieldset + .checkbox p {
  padding-left: 34px;
}
.articles aside .aside-newsletter fieldset + .checkbox a {
  text-decoration: underline;
}

.search .heading-divider {
  padding-top: 48px;
}
.search .container-min {
  max-width: 74.25%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .search .container-min {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

#breadcrumbs {
  padding: 24px 0;
  margin: 0;
}
#breadcrumbs > span {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  gap: 12px;
}
#breadcrumbs .square {
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--orange);
}

.post-single header {
  max-width: 74.25%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 1024px) {
  .post-single header {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.post-single header h1 {
  font-weight: 500;
}
.post-single aside .post-container {
  max-width: var(--max-width);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.post-single aside .button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

#main {
  position: relative;
  z-index: 0;
}
#main > main {
  display: flex;
  flex-flow: column;
}

.article {
  font-family: "Made";
}
.article--sticky {
  margin-top: 78px;
  display: grid;
  grid-template-columns: 34.18% auto;
  gap: 18.39%;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .article--sticky {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.article--sticky .article-thumbnail {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 640px) {
  .article--sticky .article-thumbnail {
    overflow: hidden;
  }
}
.article--sticky .article-thumbnail picture {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 100%;
  width: 100%;
  margin-left: 10%;
  display: flex;
}
@media screen and (max-width: 640px) {
  .article--sticky .article-thumbnail picture {
    margin-left: 0;
  }
}
.article--sticky .article-thumbnail picture:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  background-color: var(--blue-med);
  opacity: 0.28;
  transform: rotate(15deg);
}
@media screen and (max-width: 640px) {
  .article--sticky .article-thumbnail picture:before {
    display: none;
  }
}
.article--sticky .article-thumbnail picture img {
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.article--sticky .article-content {
  color: var(--blue-med);
}
.article--sticky .article-content h3 {
  color: var(--blue);
  font-size: 24px;
  line-height: 140%;
  font-weight: 500;
}
.article--sticky .article-content p {
  letter-spacing: 0.43px;
  font-weight: 500;
}
.article--vertical {
  background-color: var(--cyan-light);
}
.article--vertical time {
  font-size: 12px;
  font-weight: 300;
}
.article--vertical .article-thumbnail {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.article--vertical .article-thumbnail:hover .overlay {
  opacity: 1;
}
.article--vertical .article-thumbnail .overlay {
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  opacity: 0;
  background-color: rgba(0, 64, 78, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.article--vertical .article-thumbnail picture {
  position: relative;
  aspect-ratio: 36/24;
  max-width: 100%;
  width: 100%;
  display: flex;
}
.article--vertical .article-thumbnail picture img {
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.article--vertical .article-content {
  padding: 48px;
  color: var(--blue-med);
}
@media screen and (max-width: 640px) {
  .article--vertical .article-content {
    padding: 24px;
  }
}
.article--vertical .article-content * {
  line-height: 23px;
  letter-spacing: 0.43px;
}
.article--vertical .article-content h3 {
  color: var(--blue);
  margin: 0;
  font-weight: 500;
}
.article--vertical .article-content time {
  margin-top: 1rem;
  display: block;
}
.article--vertical .article-content p {
  letter-spacing: 0.43px;
}
.article__metas > span {
  text-transform: uppercase;
}

.float-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.social-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.single-navigation {
  margin: 72px 0;
}
.single-navigation .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .single-navigation .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.single-navigation .container .center {
  display: flex;
  align-items: center;
  flex-flow: column;
}
.single-navigation .container .navlink {
  justify-self: flex-start;
}
.single-navigation .container .navlink:last-of-type {
  justify-self: flex-end;
}
.single-navigation .container [rel=prev] {
  font-weight: 500;
  position: relative;
  display: flex;
  gap: 12px;
  padding-bottom: 15px;
  padding-right: 15px;
  text-transform: uppercase;
  color: var(--blue);
  overflow: hidden;
}
.single-navigation .container [rel=prev]:hover:after {
  transform: translateX(-50%);
}
.single-navigation .container [rel=prev]:after {
  transition: all ease-in-out 0.2s;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 200%;
  left: 0;
  background: transparent linear-gradient(89deg, #00404E 0%, rgba(0, 64, 78, 0) 50%, rgba(0, 64, 78, 0) 50%, #00404E 100%) 0% 0% no-repeat padding-box;
}
.single-navigation .container [rel=next] {
  color: var(--blue);
  position: relative;
  display: flex;
  gap: 12px;
  font-weight: 500;
  padding-bottom: 15px;
  padding-left: 15px;
  overflow: hidden;
  text-transform: uppercase;
}
.single-navigation .container [rel=next]:hover:after {
  transform: translateX(50%);
}
.single-navigation .container [rel=next]:after {
  transition: all ease-in-out 0.2s;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 5px;
  width: 200%;
  background: transparent linear-gradient(271deg, #00404E 0%, rgba(0, 64, 78, 0) 50%, rgba(0, 64, 78, 0) 50%, #00404E 100%) 0% 0% no-repeat padding-box;
}

.list-related {
  margin: 72px 0;
}
.list-related .container {
  display: flex;
  flex-flow: row wrap;
  /* size of one column */
  gap: 48px;
  justify-content: center;
}
.list-related .container article {
  width: calc(33% - 29px);
}
@media screen and (max-width: 640px) {
  .list-related .container article {
    width: 100%;
  }
}

.custom-columns {
  margin: 48px 0;
  width: 100%;
}
.custom-columns.has-bg.grey {
  background: #FAFAFA;
}
.custom-columns.has-bg.orange-to-transparent {
  background: linear-gradient(90deg, rgba(255, 160, 0, 0.28) 0%, rgba(255, 244, 226, 0.28) 100%);
}
.custom-columns.has-bg.yellow-to-transparent {
  background: linear-gradient(90deg, rgba(255, 220, 0, 0.28) 0%, rgba(255, 252, 235, 0.28) 100%);
}
.custom-columns.has-bg.cyan-to-transparent {
  background: linear-gradient(90deg, rgba(85, 190, 190, 0.28) 0%, rgba(234, 255, 255, 0.28) 100%);
}
.custom-columns.has-bg .has-background {
  background: none !important;
  padding: 0px !important;
  margin-bottom: 0px !important;
}
.custom-columns .text-content {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
.custom-columns .text-content.heading h2 {
  margin-bottom: 0;
}
.custom-columns .text-content.heading h2.is-style-Made {
  margin-bottom: 24px;
}
.custom-columns .text-content.heading + .subtitle p {
  margin-top: 0;
  margin-bottom: 24px;
}
.custom-columns .text-content.heading + .subtitle p strong {
  font-weight: 500;
}
.custom-columns .text-content.subtitle + .subtitle p {
  margin-top: 0;
}
.custom-columns .text-content .container-min {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
.custom-columns .has-3-columns {
  gap: 48px;
}
.custom-columns .has-2-columns {
  gap: 48px;
}
.custom-columns .has-1-columns .text-content {
  max-width: var(--max-width);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
}
.custom-columns .has-1-columns .text-content .container-min {
  max-width: 74.25%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .custom-columns .has-1-columns .text-content .container-min {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.custom-columns.has-bg {
  padding: 48px 0;
}
.custom-columns.cyan-light {
  background-color: var(--cyan-light);
}

.align {
  display: flex;
  max-width: 100%;
  height: auto;
  max-height: 450px;
}
.align.left {
  justify-content: flex-start;
}
.align.right {
  justify-content: flex-end;
}
.align.center {
  justify-content: center;
}

.wp-block-group.is-content-justification-center {
  gap: 48px;
}
@media screen and (max-width: 640px) {
  .wp-block-group.is-content-justification-center {
    flex-flow: column;
  }
}

.single-header .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media screen and (max-width: 640px) {
  .single-header .container {
    grid-template-columns: 1fr;
  }
}
.single-header__picture {
  display: flex;
  flex-flow: column;
}
.single-header__picture picture {
  position: relative;
  padding-top: calc(var(--max-width) / 2 * 0.66);
}
@media screen and (max-width: 640px) {
  .single-header__picture picture {
    padding-top: 60%;
  }
}
.single-header__picture picture img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.single-header__picture .heading-divider {
  margin-top: 24px;
}
.image-header {
  position: relative;
}
.image-header__divider {
  content: "";
  height: 15px;
  width: 50vw;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  position: absolute;
  bottom: 32px;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .image-header__divider {
    width: 100%;
    height: 30px;
  }
}
.image-header__divider.orange {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='730' height='15.761' viewBox='0 0 730 15.761'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_2874' data-name='Rectangle 2874' width='730' height='15.761' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_2791' data-name='Rectangle 2791' width='15.87' height='15.87' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_2793' data-name='Rectangle 2793' width='15.696' height='15.696' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_2795' data-name='Rectangle 2795' width='15.632' height='15.631' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_2797' data-name='Rectangle 2797' width='15.566' height='15.566' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_2799' data-name='Rectangle 2799' width='15.501' height='15.502' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_2801' data-name='Rectangle 2801' width='15.436' height='15.437' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_2803' data-name='Rectangle 2803' width='15.372' height='15.372' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_2805' data-name='Rectangle 2805' width='15.308' height='15.307' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_2807' data-name='Rectangle 2807' width='15.242' height='15.242' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_2809' data-name='Rectangle 2809' width='15.177' height='15.178' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_2811' data-name='Rectangle 2811' width='15.113' height='15.113' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_2813' data-name='Rectangle 2813' width='15.048' height='15.048' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_2815' data-name='Rectangle 2815' width='14.984' height='14.983' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_2817' data-name='Rectangle 2817' width='14.919' height='14.919' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_2819' data-name='Rectangle 2819' width='14.854' height='14.854' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_2821' data-name='Rectangle 2821' width='14.789' height='14.789' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_2823' data-name='Rectangle 2823' width='14.725' height='14.724' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_2825' data-name='Rectangle 2825' width='14.66' height='14.66' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_2827' data-name='Rectangle 2827' width='14.595' height='14.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_2829' data-name='Rectangle 2829' width='14.53' height='14.53' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_2831' data-name='Rectangle 2831' width='14.465' height='14.465' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_2833' data-name='Rectangle 2833' width='14.4' height='14.401' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_2835' data-name='Rectangle 2835' width='14.336' height='14.336' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_2837' data-name='Rectangle 2837' width='14.271' height='14.271' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_2839' data-name='Rectangle 2839' width='14.207' height='14.206' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_2841' data-name='Rectangle 2841' width='14.141' height='14.142' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_2843' data-name='Rectangle 2843' width='14.076' height='14.077' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_2845' data-name='Rectangle 2845' width='14.012' height='14.012' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_2847' data-name='Rectangle 2847' width='13.947' height='13.947' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_2849' data-name='Rectangle 2849' width='13.883' height='13.883' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_2851' data-name='Rectangle 2851' width='13.818' height='13.818' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_2853' data-name='Rectangle 2853' width='13.752' height='13.753' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_2855' data-name='Rectangle 2855' width='13.688' height='13.688' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_2857' data-name='Rectangle 2857' width='13.623' height='13.624' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_2859' data-name='Rectangle 2859' width='13.559' height='13.559' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_2861' data-name='Rectangle 2861' width='13.494' height='13.494' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_2863' data-name='Rectangle 2863' width='13.429' height='13.429' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_2865' data-name='Rectangle 2865' width='13.365' height='13.364' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_2867' data-name='Rectangle 2867' width='13.3' height='13.3' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_2869' data-name='Rectangle 2869' width='13.235' height='13.235' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_2871' data-name='Rectangle 2871' width='13.17' height='13.17' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-orange' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1702' data-name='Groupe 1702' transform='translate(0 0)'%3E%3Cg id='Groupe_1701' data-name='Groupe 1701' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1700' data-name='Groupe 1700' transform='translate(0 0)'%3E%3Cg id='Groupe_1699' data-name='Groupe 1699' transform='translate(0 0)'%3E%3Cg id='Groupe_1698' data-name='Groupe 1698' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1577' data-name='Groupe 1577' transform='translate(714.13 -0.106)'%3E%3Cg id='Groupe_1576' data-name='Groupe 1576' transform='translate(0)'%3E%3Cg id='Groupe_1575' data-name='Groupe 1575' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_2790' data-name='Rectangle 2790' width='15.87' height='15.87' transform='translate(0)' fill='%23ffa000'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1580' data-name='Groupe 1580' transform='translate(696.383 0.036)' opacity='0.978'%3E%3Cg id='Groupe_1579' data-name='Groupe 1579'%3E%3Cg id='Groupe_1578' data-name='Groupe 1578' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_2792' data-name='Rectangle 2792' width='15.561' height='15.561' transform='translate(0 0.136) rotate(-0.5)' fill='%23ffa103'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1583' data-name='Groupe 1583' transform='translate(678.527 0.072)' opacity='0.956'%3E%3Cg id='Groupe_1582' data-name='Groupe 1582'%3E%3Cg id='Groupe_1581' data-name='Groupe 1581' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_2794' data-name='Rectangle 2794' width='15.363' height='15.362' transform='matrix(1, -0.018, 0.018, 1, 0, 0.271)' fill='%23ffa206'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1586' data-name='Groupe 1586' transform='translate(660.672 0.107)' opacity='0.934'%3E%3Cg id='Groupe_1585' data-name='Groupe 1585'%3E%3Cg id='Groupe_1584' data-name='Groupe 1584' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_2796' data-name='Rectangle 2796' width='15.165' height='15.165' transform='translate(0 0.407) rotate(-1.539)' fill='%23ffa30a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1589' data-name='Groupe 1589' transform='translate(642.815 0.143)' opacity='0.912'%3E%3Cg id='Groupe_1588' data-name='Groupe 1588'%3E%3Cg id='Groupe_1587' data-name='Groupe 1587' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_2798' data-name='Rectangle 2798' width='14.969' height='14.969' transform='translate(0 0.542) rotate(-2.075)' fill='%23ffa50d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1592' data-name='Groupe 1592' transform='translate(624.96 0.179)' opacity='0.89'%3E%3Cg id='Groupe_1591' data-name='Groupe 1591'%3E%3Cg id='Groupe_1590' data-name='Groupe 1590' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_2800' data-name='Rectangle 2800' width='14.774' height='14.774' transform='matrix(0.999, -0.046, 0.046, 0.999, 0, 0.678)' fill='%23ffa610'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1595' data-name='Groupe 1595' transform='translate(607.103 0.215)' opacity='0.868'%3E%3Cg id='Groupe_1594' data-name='Groupe 1594'%3E%3Cg id='Groupe_1593' data-name='Groupe 1593' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_2802' data-name='Rectangle 2802' width='14.581' height='14.581' transform='translate(0 0.814) rotate(-3.199)' fill='%23ffa713'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1598' data-name='Groupe 1598' transform='translate(589.247 0.25)' opacity='0.846'%3E%3Cg id='Groupe_1597' data-name='Groupe 1597'%3E%3Cg id='Groupe_1596' data-name='Groupe 1596' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_2804' data-name='Rectangle 2804' width='14.39' height='14.389' transform='translate(0 0.949) rotate(-3.783)' fill='%23ffa816'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1601' data-name='Groupe 1601' transform='translate(571.392 0.286)' opacity='0.824'%3E%3Cg id='Groupe_1600' data-name='Groupe 1600'%3E%3Cg id='Groupe_1599' data-name='Groupe 1599' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_2806' data-name='Rectangle 2806' width='14.199' height='14.199' transform='translate(0 1.085) rotate(-4.383)' fill='%23ffaa1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1604' data-name='Groupe 1604' transform='translate(553.535 0.322)' opacity='0.802'%3E%3Cg id='Groupe_1603' data-name='Groupe 1603'%3E%3Cg id='Groupe_1602' data-name='Groupe 1602' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_2808' data-name='Rectangle 2808' width='14.011' height='14.011' transform='translate(0 1.22) rotate(-4.995)' fill='%23ffab1d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1607' data-name='Groupe 1607' transform='translate(535.679 0.358)' opacity='0.78'%3E%3Cg id='Groupe_1606' data-name='Groupe 1606'%3E%3Cg id='Groupe_1605' data-name='Groupe 1605' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_2810' data-name='Rectangle 2810' width='13.823' height='13.824' transform='matrix(0.995, -0.098, 0.098, 0.995, 0.001, 1.356)' fill='%23ffac20'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1610' data-name='Groupe 1610' transform='translate(517.824 0.393)' opacity='0.758'%3E%3Cg id='Groupe_1609' data-name='Groupe 1609'%3E%3Cg id='Groupe_1608' data-name='Groupe 1608' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_2812' data-name='Rectangle 2812' width='13.638' height='13.638' transform='matrix(0.994, -0.109, 0.109, 0.994, 0, 1.491)' fill='%23ffad23'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1613' data-name='Groupe 1613' transform='translate(499.967 0.429)' opacity='0.736'%3E%3Cg id='Groupe_1612' data-name='Groupe 1612'%3E%3Cg id='Groupe_1611' data-name='Groupe 1611' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_2814' data-name='Rectangle 2814' width='13.455' height='13.455' transform='translate(0 1.627) rotate(-6.946)' fill='%23ffae26'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1616' data-name='Groupe 1616' transform='translate(482.111 0.465)' opacity='0.714'%3E%3Cg id='Groupe_1615' data-name='Groupe 1615'%3E%3Cg id='Groupe_1614' data-name='Groupe 1614' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_2816' data-name='Rectangle 2816' width='13.274' height='13.274' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 1.763)' fill='%23ffaf2a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1619' data-name='Groupe 1619' transform='translate(464.256 0.501)' opacity='0.692'%3E%3Cg id='Groupe_1618' data-name='Groupe 1618'%3E%3Cg id='Groupe_1617' data-name='Groupe 1617' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_2818' data-name='Rectangle 2818' width='13.094' height='13.094' transform='matrix(0.989, -0.145, 0.145, 0.989, 0, 1.899)' fill='%23ffb12d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1622' data-name='Groupe 1622' transform='translate(446.399 0.536)' opacity='0.67'%3E%3Cg id='Groupe_1621' data-name='Groupe 1621'%3E%3Cg id='Groupe_1620' data-name='Groupe 1620' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_2820' data-name='Rectangle 2820' width='12.916' height='12.916' transform='translate(0 2.034) rotate(-9.059)' fill='%23ffb230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1625' data-name='Groupe 1625' transform='translate(428.543 0.572)' opacity='0.648'%3E%3Cg id='Groupe_1624' data-name='Groupe 1624'%3E%3Cg id='Groupe_1623' data-name='Groupe 1623' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_2822' data-name='Rectangle 2822' width='12.741' height='12.741' transform='translate(0.001 2.169) rotate(-9.803)' fill='%23ffb333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1628' data-name='Groupe 1628' transform='translate(410.688 0.608)' opacity='0.626'%3E%3Cg id='Groupe_1627' data-name='Groupe 1627'%3E%3Cg id='Groupe_1626' data-name='Groupe 1626' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_2824' data-name='Rectangle 2824' width='12.568' height='12.568' transform='translate(0 2.305) rotate(-10.568)' fill='%23ffb436'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1631' data-name='Groupe 1631' transform='translate(392.831 0.644)' opacity='0.604'%3E%3Cg id='Groupe_1630' data-name='Groupe 1630'%3E%3Cg id='Groupe_1629' data-name='Groupe 1629' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_2826' data-name='Rectangle 2826' width='12.397' height='12.397' transform='translate(0 2.441) rotate(-11.355)' fill='%23ffb539'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1634' data-name='Groupe 1634' transform='translate(374.976 0.679)' opacity='0.582'%3E%3Cg id='Groupe_1633' data-name='Groupe 1633'%3E%3Cg id='Groupe_1632' data-name='Groupe 1632' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_2828' data-name='Rectangle 2828' width='12.228' height='12.228' transform='matrix(0.978, -0.211, 0.211, 0.978, 0, 2.577)' fill='%23ffb73d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1637' data-name='Groupe 1637' transform='translate(357.12 0.715)' opacity='0.56'%3E%3Cg id='Groupe_1636' data-name='Groupe 1636'%3E%3Cg id='Groupe_1635' data-name='Groupe 1635' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_2830' data-name='Rectangle 2830' width='12.063' height='12.062' transform='translate(0 2.712) rotate(-12.994)' fill='%23ffb840'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1640' data-name='Groupe 1640' transform='translate(339.263 0.751)' opacity='0.538'%3E%3Cg id='Groupe_1639' data-name='Groupe 1639'%3E%3Cg id='Groupe_1638' data-name='Groupe 1638' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_2832' data-name='Rectangle 2832' width='11.899' height='11.899' transform='translate(0 2.847) rotate(-13.844)' fill='%23ffb943'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1643' data-name='Groupe 1643' transform='translate(321.408 0.787)' opacity='0.516'%3E%3Cg id='Groupe_1642' data-name='Groupe 1642'%3E%3Cg id='Groupe_1641' data-name='Groupe 1641' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_2834' data-name='Rectangle 2834' width='11.738' height='11.738' transform='translate(0 2.983) rotate(-14.722)' fill='%23ffba46'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1646' data-name='Groupe 1646' transform='translate(303.552 0.822)' opacity='0.494'%3E%3Cg id='Groupe_1645' data-name='Groupe 1645'%3E%3Cg id='Groupe_1644' data-name='Groupe 1644' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_2836' data-name='Rectangle 2836' width='11.58' height='11.58' transform='translate(0 3.119) rotate(-15.623)' fill='%23ffbb49'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1649' data-name='Groupe 1649' transform='translate(285.695 0.858)' opacity='0.472'%3E%3Cg id='Groupe_1648' data-name='Groupe 1648'%3E%3Cg id='Groupe_1647' data-name='Groupe 1647' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_2838' data-name='Rectangle 2838' width='11.425' height='11.425' transform='translate(0.001 3.254) rotate(-16.55)' fill='%23ffbc4d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1652' data-name='Groupe 1652' transform='translate(267.84 0.894)' opacity='0.45'%3E%3Cg id='Groupe_1651' data-name='Groupe 1651'%3E%3Cg id='Groupe_1650' data-name='Groupe 1650' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_2840' data-name='Rectangle 2840' width='11.274' height='11.273' transform='translate(0 3.39) rotate(-17.5)' fill='%23ffbe50'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1655' data-name='Groupe 1655' transform='translate(249.984 0.93)' opacity='0.428'%3E%3Cg id='Groupe_1654' data-name='Groupe 1654'%3E%3Cg id='Groupe_1653' data-name='Groupe 1653' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_2842' data-name='Rectangle 2842' width='11.125' height='11.125' transform='matrix(0.948, -0.317, 0.317, 0.948, 0, 3.526)' fill='%23ffbf53'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1658' data-name='Groupe 1658' transform='translate(232.127 0.965)' opacity='0.406'%3E%3Cg id='Groupe_1657' data-name='Groupe 1657'%3E%3Cg id='Groupe_1656' data-name='Groupe 1656' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_2844' data-name='Rectangle 2844' width='10.979' height='10.979' transform='matrix(0.943, -0.333, 0.333, 0.943, 0, 3.661)' fill='%23ffc056'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1661' data-name='Groupe 1661' transform='translate(214.272 1.001)' opacity='0.384'%3E%3Cg id='Groupe_1660' data-name='Groupe 1660'%3E%3Cg id='Groupe_1659' data-name='Groupe 1659' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_2846' data-name='Rectangle 2846' width='10.837' height='10.837' transform='translate(0 3.797) rotate(-20.507)' fill='%23ffc159'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1664' data-name='Groupe 1664' transform='translate(196.416 1.037)' opacity='0.362'%3E%3Cg id='Groupe_1663' data-name='Groupe 1663'%3E%3Cg id='Groupe_1662' data-name='Groupe 1662' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_2848' data-name='Rectangle 2848' width='10.699' height='10.699' transform='translate(0 3.932) rotate(-21.565)' fill='%23ffc25d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1667' data-name='Groupe 1667' transform='translate(178.559 1.073)' opacity='0.34'%3E%3Cg id='Groupe_1666' data-name='Groupe 1666'%3E%3Cg id='Groupe_1665' data-name='Groupe 1665' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_2850' data-name='Rectangle 2850' width='10.565' height='10.565' transform='translate(0 4.068) rotate(-22.647)' fill='%23ffc460'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1670' data-name='Groupe 1670' transform='translate(160.704 1.108)' opacity='0.318'%3E%3Cg id='Groupe_1669' data-name='Groupe 1669'%3E%3Cg id='Groupe_1668' data-name='Groupe 1668' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_2852' data-name='Rectangle 2852' width='10.434' height='10.434' transform='translate(0 4.204) rotate(-23.759)' fill='%23ffc563'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1673' data-name='Groupe 1673' transform='translate(142.848 1.144)' opacity='0.296'%3E%3Cg id='Groupe_1672' data-name='Groupe 1672'%3E%3Cg id='Groupe_1671' data-name='Groupe 1671' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_2854' data-name='Rectangle 2854' width='10.307' height='10.307' transform='translate(0 4.34) rotate(-24.899)' fill='%23ffc666'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1676' data-name='Groupe 1676' transform='translate(124.992 1.18)' opacity='0.274'%3E%3Cg id='Groupe_1675' data-name='Groupe 1675'%3E%3Cg id='Groupe_1674' data-name='Groupe 1674' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_2856' data-name='Rectangle 2856' width='10.184' height='10.184' transform='matrix(0.898, -0.439, 0.439, 0.898, 0, 4.474)' fill='%23ffc769'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1679' data-name='Groupe 1679' transform='translate(107.136 1.216)' opacity='0.252'%3E%3Cg id='Groupe_1678' data-name='Groupe 1678'%3E%3Cg id='Groupe_1677' data-name='Groupe 1677' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_2858' data-name='Rectangle 2858' width='10.066' height='10.067' transform='translate(0 4.61) rotate(-27.256)' fill='%23ffc86c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1682' data-name='Groupe 1682' transform='translate(89.28 1.251)' opacity='0.23'%3E%3Cg id='Groupe_1681' data-name='Groupe 1681'%3E%3Cg id='Groupe_1680' data-name='Groupe 1680' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_2860' data-name='Rectangle 2860' width='9.953' height='9.953' transform='translate(0 4.746) rotate(-28.48)' fill='%23ffc970'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1685' data-name='Groupe 1685' transform='translate(71.424 1.287)' opacity='0.208'%3E%3Cg id='Groupe_1684' data-name='Groupe 1684'%3E%3Cg id='Groupe_1683' data-name='Groupe 1683' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_2862' data-name='Rectangle 2862' width='9.843' height='9.843' transform='translate(0 4.882) rotate(-29.731)' fill='%23ffcb73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1688' data-name='Groupe 1688' transform='translate(53.568 1.323)' opacity='0.186'%3E%3Cg id='Groupe_1687' data-name='Groupe 1687'%3E%3Cg id='Groupe_1686' data-name='Groupe 1686' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_2864' data-name='Rectangle 2864' width='9.739' height='9.739' transform='translate(0 5.017) rotate(-31.01)' fill='%23ffcc76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1691' data-name='Groupe 1691' transform='translate(35.712 1.359)' opacity='0.164'%3E%3Cg id='Groupe_1690' data-name='Groupe 1690'%3E%3Cg id='Groupe_1689' data-name='Groupe 1689' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_2866' data-name='Rectangle 2866' width='9.64' height='9.639' transform='translate(0 5.153) rotate(-32.315)' fill='%23ffcd79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1694' data-name='Groupe 1694' transform='translate(17.856 1.395)' opacity='0.142'%3E%3Cg id='Groupe_1693' data-name='Groupe 1693'%3E%3Cg id='Groupe_1692' data-name='Groupe 1692' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_2868' data-name='Rectangle 2868' width='9.545' height='9.546' transform='matrix(0.833, -0.554, 0.554, 0.833, 0, 5.288)' fill='%23ffce7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1697' data-name='Groupe 1697' transform='translate(0 1.43)' opacity='0.12'%3E%3Cg id='Groupe_1696' data-name='Groupe 1696'%3E%3Cg id='Groupe_1695' data-name='Groupe 1695' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_2870' data-name='Rectangle 2870' width='9.456' height='9.456' transform='translate(0 5.424) rotate(-34.999)' fill='%23ffd080'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.image-header__divider.yellow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='683' height='14.746' viewBox='0 0 683 14.746'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3397' data-name='Rectangle 3397' width='683' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3314' data-name='Rectangle 3314' width='14.746' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3316' data-name='Rectangle 3316' width='14.685' height='14.685' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3318' data-name='Rectangle 3318' width='14.625' height='14.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3320' data-name='Rectangle 3320' width='14.564' height='14.564' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3322' data-name='Rectangle 3322' width='14.503' height='14.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3324' data-name='Rectangle 3324' width='14.443' height='14.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3326' data-name='Rectangle 3326' width='14.382' height='14.382' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3328' data-name='Rectangle 3328' width='14.322' height='14.322' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3330' data-name='Rectangle 3330' width='14.261' height='14.261' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3332' data-name='Rectangle 3332' width='14.201' height='14.201' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3334' data-name='Rectangle 3334' width='14.14' height='14.14' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_3336' data-name='Rectangle 3336' width='14.079' height='14.079' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_3338' data-name='Rectangle 3338' width='14.019' height='14.019' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3340' data-name='Rectangle 3340' width='13.958' height='13.958' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_3342' data-name='Rectangle 3342' width='13.898' height='13.898' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_3344' data-name='Rectangle 3344' width='13.837' height='13.837' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_3346' data-name='Rectangle 3346' width='13.776' height='13.776' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_3348' data-name='Rectangle 3348' width='13.716' height='13.716' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_3350' data-name='Rectangle 3350' width='13.655' height='13.655' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_3352' data-name='Rectangle 3352' width='13.595' height='13.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_3354' data-name='Rectangle 3354' width='13.534' height='13.534' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_3356' data-name='Rectangle 3356' width='13.474' height='13.473' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_3358' data-name='Rectangle 3358' width='13.413' height='13.413' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_3360' data-name='Rectangle 3360' width='13.352' height='13.352' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_3362' data-name='Rectangle 3362' width='13.292' height='13.292' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_3364' data-name='Rectangle 3364' width='13.231' height='13.231' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_3366' data-name='Rectangle 3366' width='13.171' height='13.17' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_3368' data-name='Rectangle 3368' width='13.11' height='13.11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_3370' data-name='Rectangle 3370' width='13.049' height='13.049' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_3372' data-name='Rectangle 3372' width='12.989' height='12.989' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_3374' data-name='Rectangle 3374' width='12.928' height='12.928' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_3376' data-name='Rectangle 3376' width='12.868' height='12.868' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_3378' data-name='Rectangle 3378' width='12.807' height='12.807' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_3380' data-name='Rectangle 3380' width='12.746' height='12.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_3382' data-name='Rectangle 3382' width='12.686' height='12.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_3384' data-name='Rectangle 3384' width='12.625' height='12.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_3386' data-name='Rectangle 3386' width='12.565' height='12.565' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_3388' data-name='Rectangle 3388' width='12.504' height='12.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_3390' data-name='Rectangle 3390' width='12.444' height='12.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_3392' data-name='Rectangle 3392' width='12.383' height='12.383' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_3394' data-name='Rectangle 3394' width='12.322' height='12.322' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-yellow' transform='translate(683 14.746) rotate(180)' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2500' data-name='Groupe 2500' transform='translate(0 0)'%3E%3Cg id='Groupe_2499' data-name='Groupe 2499' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2498' data-name='Groupe 2498' transform='translate(0 0)'%3E%3Cg id='Groupe_2497' data-name='Groupe 2497' transform='translate(0 0)'%3E%3Cg id='Groupe_2496' data-name='Groupe 2496' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2375' data-name='Groupe 2375'%3E%3Cg id='Groupe_2374' data-name='Groupe 2374'%3E%3Cg id='Groupe_2373' data-name='Groupe 2373' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3313' data-name='Rectangle 3313' width='14.746' height='14.746' transform='translate(0 0)' fill='%23ffdc00'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2378' data-name='Groupe 2378' transform='translate(16.767 0.027)' opacity='0.978'%3E%3Cg id='Groupe_2377' data-name='Groupe 2377'%3E%3Cg id='Groupe_2376' data-name='Groupe 2376' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3315' data-name='Rectangle 3315' width='14.559' height='14.559' transform='matrix(1, -0.009, 0.009, 1, 0, 0.127)' fill='%23ffdc03'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2381' data-name='Groupe 2381' transform='translate(33.534 0.054)' opacity='0.956'%3E%3Cg id='Groupe_2380' data-name='Groupe 2380'%3E%3Cg id='Groupe_2379' data-name='Groupe 2379' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3317' data-name='Rectangle 3317' width='14.374' height='14.373' transform='translate(0 0.254) rotate(-1.013)' fill='%23ffdd06'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2384' data-name='Groupe 2384' transform='translate(50.301 0.081)' opacity='0.934'%3E%3Cg id='Groupe_2383' data-name='Groupe 2383'%3E%3Cg id='Groupe_2382' data-name='Groupe 2382' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3319' data-name='Rectangle 3319' width='14.188' height='14.189' transform='translate(0 0.38) rotate(-1.535)' fill='%23ffdd0a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2387' data-name='Groupe 2387' transform='translate(67.068 0.109)' opacity='0.912'%3E%3Cg id='Groupe_2386' data-name='Groupe 2386'%3E%3Cg id='Groupe_2385' data-name='Groupe 2385' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3321' data-name='Rectangle 3321' width='14.005' height='14.005' transform='translate(0 0.507) rotate(-2.075)' fill='%23ffde0d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2390' data-name='Groupe 2390' transform='translate(83.835 0.136)' opacity='0.89'%3E%3Cg id='Groupe_2389' data-name='Groupe 2389'%3E%3Cg id='Groupe_2388' data-name='Groupe 2388' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3323' data-name='Rectangle 3323' width='13.823' height='13.823' transform='matrix(0.999, -0.046, 0.046, 0.999, 0, 0.635)' fill='%23ffde10'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2393' data-name='Groupe 2393' transform='translate(100.602 0.163)' opacity='0.868'%3E%3Cg id='Groupe_2392' data-name='Groupe 2392'%3E%3Cg id='Groupe_2391' data-name='Groupe 2391' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3325' data-name='Rectangle 3325' width='13.642' height='13.642' transform='translate(0 0.761) rotate(-3.199)' fill='%23ffdf13'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2396' data-name='Groupe 2396' transform='translate(117.368 0.19)' opacity='0.846'%3E%3Cg id='Groupe_2395' data-name='Groupe 2395'%3E%3Cg id='Groupe_2394' data-name='Groupe 2394' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3327' data-name='Rectangle 3327' width='13.463' height='13.463' transform='translate(0 0.888) rotate(-3.783)' fill='%23ffdf16'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2399' data-name='Groupe 2399' transform='translate(134.136 0.217)' opacity='0.824'%3E%3Cg id='Groupe_2398' data-name='Groupe 2398'%3E%3Cg id='Groupe_2397' data-name='Groupe 2397' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3329' data-name='Rectangle 3329' width='13.285' height='13.285' transform='translate(0 1.015) rotate(-4.383)' fill='%23ffdf1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2402' data-name='Groupe 2402' transform='translate(150.902 0.244)' opacity='0.802'%3E%3Cg id='Groupe_2401' data-name='Groupe 2401'%3E%3Cg id='Groupe_2400' data-name='Groupe 2400' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3331' data-name='Rectangle 3331' width='13.109' height='13.109' transform='translate(0.001 1.142) rotate(-4.995)' fill='%23ffe01d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2405' data-name='Groupe 2405' transform='translate(167.669 0.271)' opacity='0.78'%3E%3Cg id='Groupe_2404' data-name='Groupe 2404'%3E%3Cg id='Groupe_2403' data-name='Groupe 2403' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3333' data-name='Rectangle 3333' width='12.933' height='12.934' transform='matrix(0.995, -0.098, 0.098, 0.995, 0, 1.269)' fill='%23ffe020'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2408' data-name='Groupe 2408' transform='translate(184.437 0.299)' opacity='0.758'%3E%3Cg id='Groupe_2407' data-name='Groupe 2407'%3E%3Cg id='Groupe_2406' data-name='Groupe 2406' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_3335' data-name='Rectangle 3335' width='12.76' height='12.761' transform='translate(0 1.395) rotate(-6.278)' fill='%23ffe123'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2411' data-name='Groupe 2411' transform='translate(201.203 0.326)' opacity='0.736'%3E%3Cg id='Groupe_2410' data-name='Groupe 2410'%3E%3Cg id='Groupe_2409' data-name='Groupe 2409' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_3337' data-name='Rectangle 3337' width='12.589' height='12.589' transform='translate(0 1.522) rotate(-6.946)' fill='%23ffe126'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2414' data-name='Groupe 2414' transform='translate(217.971 0.353)' opacity='0.714'%3E%3Cg id='Groupe_2413' data-name='Groupe 2413'%3E%3Cg id='Groupe_2412' data-name='Groupe 2412' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3339' data-name='Rectangle 3339' width='12.419' height='12.419' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 1.649)' fill='%23ffe22a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2417' data-name='Groupe 2417' transform='translate(234.737 0.38)' opacity='0.692'%3E%3Cg id='Groupe_2416' data-name='Groupe 2416'%3E%3Cg id='Groupe_2415' data-name='Groupe 2415' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_3341' data-name='Rectangle 3341' width='12.251' height='12.251' transform='translate(0 1.776) rotate(-8.338)' fill='%23ffe22d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2420' data-name='Groupe 2420' transform='translate(251.504 0.407)' opacity='0.67'%3E%3Cg id='Groupe_2419' data-name='Groupe 2419'%3E%3Cg id='Groupe_2418' data-name='Groupe 2418' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_3343' data-name='Rectangle 3343' width='12.084' height='12.085' transform='translate(0 1.903) rotate(-9.059)' fill='%23ffe230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2423' data-name='Groupe 2423' transform='translate(268.271 0.434)' opacity='0.648'%3E%3Cg id='Groupe_2422' data-name='Groupe 2422'%3E%3Cg id='Groupe_2421' data-name='Groupe 2421' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_3345' data-name='Rectangle 3345' width='11.92' height='11.921' transform='translate(0.001 2.03) rotate(-9.803)' fill='%23ffe333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2426' data-name='Groupe 2426' transform='translate(285.038 0.461)' opacity='0.626'%3E%3Cg id='Groupe_2425' data-name='Groupe 2425'%3E%3Cg id='Groupe_2424' data-name='Groupe 2424' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_3347' data-name='Rectangle 3347' width='11.759' height='11.759' transform='translate(0 2.157) rotate(-10.568)' fill='%23ffe336'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2429' data-name='Groupe 2429' transform='translate(301.805 0.489)' opacity='0.604'%3E%3Cg id='Groupe_2428' data-name='Groupe 2428'%3E%3Cg id='Groupe_2427' data-name='Groupe 2427' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_3349' data-name='Rectangle 3349' width='11.599' height='11.599' transform='matrix(0.98, -0.197, 0.197, 0.98, 0, 2.284)' fill='%23ffe439'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2432' data-name='Groupe 2432' transform='translate(318.572 0.516)' opacity='0.582'%3E%3Cg id='Groupe_2431' data-name='Groupe 2431'%3E%3Cg id='Groupe_2430' data-name='Groupe 2430' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_3351' data-name='Rectangle 3351' width='11.441' height='11.441' transform='translate(0 2.411) rotate(-12.164)' fill='%23ffe43d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2435' data-name='Groupe 2435' transform='translate(335.339 0.543)' opacity='0.56'%3E%3Cg id='Groupe_2434' data-name='Groupe 2434'%3E%3Cg id='Groupe_2433' data-name='Groupe 2433' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_3353' data-name='Rectangle 3353' width='11.286' height='11.286' transform='matrix(0.974, -0.225, 0.225, 0.974, 0, 2.537)' fill='%23ffe540'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2438' data-name='Groupe 2438' transform='translate(352.105 0.57)' opacity='0.538'%3E%3Cg id='Groupe_2437' data-name='Groupe 2437'%3E%3Cg id='Groupe_2436' data-name='Groupe 2436' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_3355' data-name='Rectangle 3355' width='11.132' height='11.133' transform='matrix(0.971, -0.239, 0.239, 0.971, 0.001, 2.664)' fill='%23ffe543'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2441' data-name='Groupe 2441' transform='translate(368.873 0.597)' opacity='0.516'%3E%3Cg id='Groupe_2440' data-name='Groupe 2440'%3E%3Cg id='Groupe_2439' data-name='Groupe 2439' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_3357' data-name='Rectangle 3357' width='10.982' height='10.982' transform='matrix(0.967, -0.254, 0.254, 0.967, 0, 2.791)' fill='%23ffe546'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2444' data-name='Groupe 2444' transform='translate(385.64 0.624)' opacity='0.494'%3E%3Cg id='Groupe_2443' data-name='Groupe 2443'%3E%3Cg id='Groupe_2442' data-name='Groupe 2442' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_3359' data-name='Rectangle 3359' width='10.834' height='10.834' transform='translate(0 2.918) rotate(-15.623)' fill='%23ffe649'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2447' data-name='Groupe 2447' transform='translate(402.406 0.651)' opacity='0.472'%3E%3Cg id='Groupe_2446' data-name='Groupe 2446'%3E%3Cg id='Groupe_2445' data-name='Groupe 2445' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_3361' data-name='Rectangle 3361' width='10.689' height='10.689' transform='translate(0 3.045) rotate(-16.55)' fill='%23ffe74d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2450' data-name='Groupe 2450' transform='translate(419.174 0.678)' opacity='0.45'%3E%3Cg id='Groupe_2449' data-name='Groupe 2449'%3E%3Cg id='Groupe_2448' data-name='Groupe 2448' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_3363' data-name='Rectangle 3363' width='10.548' height='10.548' transform='translate(0 3.172) rotate(-17.5)' fill='%23ffe750'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2453' data-name='Groupe 2453' transform='translate(435.94 0.706)' opacity='0.428'%3E%3Cg id='Groupe_2452' data-name='Groupe 2452'%3E%3Cg id='Groupe_2451' data-name='Groupe 2451' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_3365' data-name='Rectangle 3365' width='10.409' height='10.408' transform='translate(0 3.299) rotate(-18.478)' fill='%23ffe753'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2456' data-name='Groupe 2456' transform='translate(452.707 0.733)' opacity='0.406'%3E%3Cg id='Groupe_2455' data-name='Groupe 2455'%3E%3Cg id='Groupe_2454' data-name='Groupe 2454' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_3367' data-name='Rectangle 3367' width='10.272' height='10.272' transform='translate(0 3.425) rotate(-19.477)' fill='%23ffe856'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2459' data-name='Groupe 2459' transform='translate(469.475 0.76)' opacity='0.384'%3E%3Cg id='Groupe_2458' data-name='Groupe 2458'%3E%3Cg id='Groupe_2457' data-name='Groupe 2457' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_3369' data-name='Rectangle 3369' width='10.14' height='10.14' transform='translate(0 3.552) rotate(-20.507)' fill='%23ffe859'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2462' data-name='Groupe 2462' transform='translate(486.241 0.787)' opacity='0.362'%3E%3Cg id='Groupe_2461' data-name='Groupe 2461'%3E%3Cg id='Groupe_2460' data-name='Groupe 2460' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_3371' data-name='Rectangle 3371' width='10.01' height='10.01' transform='translate(0 3.679) rotate(-21.564)' fill='%23ffe95d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2465' data-name='Groupe 2465' transform='translate(503.008 0.814)' opacity='0.34'%3E%3Cg id='Groupe_2464' data-name='Groupe 2464'%3E%3Cg id='Groupe_2463' data-name='Groupe 2463' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_3373' data-name='Rectangle 3373' width='9.884' height='9.884' transform='matrix(0.923, -0.385, 0.385, 0.923, 0, 3.806)' fill='%23ffe960'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2468' data-name='Groupe 2468' transform='translate(519.775 0.841)' opacity='0.318'%3E%3Cg id='Groupe_2467' data-name='Groupe 2467'%3E%3Cg id='Groupe_2466' data-name='Groupe 2466' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_3375' data-name='Rectangle 3375' width='9.762' height='9.762' transform='matrix(0.915, -0.403, 0.403, 0.915, 0, 3.933)' fill='%23ffea63'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2471' data-name='Groupe 2471' transform='translate(536.542 0.868)' opacity='0.296'%3E%3Cg id='Groupe_2470' data-name='Groupe 2470'%3E%3Cg id='Groupe_2469' data-name='Groupe 2469' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_3377' data-name='Rectangle 3377' width='9.644' height='9.643' transform='translate(0 4.06) rotate(-24.899)' fill='%23ffea66'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2474' data-name='Groupe 2474' transform='translate(553.309 0.896)' opacity='0.274'%3E%3Cg id='Groupe_2473' data-name='Groupe 2473'%3E%3Cg id='Groupe_2472' data-name='Groupe 2472' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_3379' data-name='Rectangle 3379' width='9.528' height='9.529' transform='matrix(0.898, -0.439, 0.439, 0.898, 0, 4.187)' fill='%23ffea69'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2477' data-name='Groupe 2477' transform='translate(570.076 0.923)' opacity='0.252'%3E%3Cg id='Groupe_2476' data-name='Groupe 2476'%3E%3Cg id='Groupe_2475' data-name='Groupe 2475' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_3381' data-name='Rectangle 3381' width='9.418' height='9.418' transform='translate(0 4.313) rotate(-27.256)' fill='%23ffeb6c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2480' data-name='Groupe 2480' transform='translate(586.843 0.95)' opacity='0.23'%3E%3Cg id='Groupe_2479' data-name='Groupe 2479'%3E%3Cg id='Groupe_2478' data-name='Groupe 2478' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_3383' data-name='Rectangle 3383' width='9.312' height='9.312' transform='translate(0 4.44) rotate(-28.48)' fill='%23ffeb70'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2483' data-name='Groupe 2483' transform='translate(603.61 0.977)' opacity='0.208'%3E%3Cg id='Groupe_2482' data-name='Groupe 2482'%3E%3Cg id='Groupe_2481' data-name='Groupe 2481' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_3385' data-name='Rectangle 3385' width='9.21' height='9.21' transform='matrix(0.868, -0.496, 0.496, 0.868, 0, 4.567)' fill='%23ffec73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2486' data-name='Groupe 2486' transform='translate(620.377 1.004)' opacity='0.186'%3E%3Cg id='Groupe_2485' data-name='Groupe 2485'%3E%3Cg id='Groupe_2484' data-name='Groupe 2484' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_3387' data-name='Rectangle 3387' width='9.112' height='9.112' transform='translate(0 4.694) rotate(-31.01)' fill='%23ffec76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2489' data-name='Groupe 2489' transform='translate(637.143 1.031)' opacity='0.164'%3E%3Cg id='Groupe_2488' data-name='Groupe 2488'%3E%3Cg id='Groupe_2487' data-name='Groupe 2487' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_3389' data-name='Rectangle 3389' width='9.019' height='9.019' transform='matrix(0.845, -0.535, 0.535, 0.845, 0, 4.822)' fill='%23ffed79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2492' data-name='Groupe 2492' transform='translate(653.911 1.058)' opacity='0.142'%3E%3Cg id='Groupe_2491' data-name='Groupe 2491'%3E%3Cg id='Groupe_2490' data-name='Groupe 2490' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_3391' data-name='Rectangle 3391' width='8.93' height='8.931' transform='translate(0 4.947) rotate(-33.641)' fill='%23ffed7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2495' data-name='Groupe 2495' transform='translate(670.678 1.086)' opacity='0.12'%3E%3Cg id='Groupe_2494' data-name='Groupe 2494'%3E%3Cg id='Groupe_2493' data-name='Groupe 2493' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_3393' data-name='Rectangle 3393' width='8.847' height='8.847' transform='matrix(0.819, -0.574, 0.574, 0.819, 0, 5.075)' fill='%23ffed80'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.image-header__divider.cyan {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='683' height='14.746' viewBox='0 0 683 14.746'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3312' data-name='Rectangle 3312' width='683' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3229' data-name='Rectangle 3229' width='14.746' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3231' data-name='Rectangle 3231' width='14.685' height='14.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3233' data-name='Rectangle 3233' width='14.625' height='14.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3235' data-name='Rectangle 3235' width='14.564' height='14.564' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3237' data-name='Rectangle 3237' width='14.503' height='14.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3239' data-name='Rectangle 3239' width='14.443' height='14.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3241' data-name='Rectangle 3241' width='14.382' height='14.382' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3243' data-name='Rectangle 3243' width='14.322' height='14.322' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3245' data-name='Rectangle 3245' width='14.261' height='14.261' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3247' data-name='Rectangle 3247' width='14.201' height='14.201' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3249' data-name='Rectangle 3249' width='14.14' height='14.14' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_3251' data-name='Rectangle 3251' width='14.079' height='14.08' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_3253' data-name='Rectangle 3253' width='14.019' height='14.019' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3255' data-name='Rectangle 3255' width='13.958' height='13.958' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_3257' data-name='Rectangle 3257' width='13.898' height='13.898' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_3259' data-name='Rectangle 3259' width='13.837' height='13.837' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_3261' data-name='Rectangle 3261' width='13.776' height='13.777' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_3263' data-name='Rectangle 3263' width='13.716' height='13.716' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_3265' data-name='Rectangle 3265' width='13.655' height='13.655' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_3267' data-name='Rectangle 3267' width='13.595' height='13.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_3269' data-name='Rectangle 3269' width='13.534' height='13.534' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_3271' data-name='Rectangle 3271' width='13.474' height='13.474' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_3273' data-name='Rectangle 3273' width='13.413' height='13.413' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_3275' data-name='Rectangle 3275' width='13.352' height='13.352' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_3277' data-name='Rectangle 3277' width='13.292' height='13.292' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_3279' data-name='Rectangle 3279' width='13.231' height='13.231' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_3281' data-name='Rectangle 3281' width='13.171' height='13.171' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_3283' data-name='Rectangle 3283' width='13.11' height='13.11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_3285' data-name='Rectangle 3285' width='13.049' height='13.049' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_3287' data-name='Rectangle 3287' width='12.989' height='12.989' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_3289' data-name='Rectangle 3289' width='12.928' height='12.928' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_3291' data-name='Rectangle 3291' width='12.868' height='12.868' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_3293' data-name='Rectangle 3293' width='12.807' height='12.807' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_3295' data-name='Rectangle 3295' width='12.746' height='12.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_3297' data-name='Rectangle 3297' width='12.686' height='12.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_3299' data-name='Rectangle 3299' width='12.625' height='12.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_3301' data-name='Rectangle 3301' width='12.565' height='12.565' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_3303' data-name='Rectangle 3303' width='12.504' height='12.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_3305' data-name='Rectangle 3305' width='12.444' height='12.444' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_3307' data-name='Rectangle 3307' width='12.383' height='12.383' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_3309' data-name='Rectangle 3309' width='12.322' height='12.322' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-blue-right' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2369' data-name='Groupe 2369' transform='translate(0 0)'%3E%3Cg id='Groupe_2368' data-name='Groupe 2368' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2367' data-name='Groupe 2367' transform='translate(0 0)'%3E%3Cg id='Groupe_2366' data-name='Groupe 2366' transform='translate(0 0)'%3E%3Cg id='Groupe_2365' data-name='Groupe 2365' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2244' data-name='Groupe 2244' transform='translate(668.254)'%3E%3Cg id='Groupe_2243' data-name='Groupe 2243'%3E%3Cg id='Groupe_2242' data-name='Groupe 2242' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3228' data-name='Rectangle 3228' width='14.746' height='14.746' transform='translate(0 0)' fill='%231ed2d2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2247' data-name='Groupe 2247' transform='translate(651.548 0.027)' opacity='0.978'%3E%3Cg id='Groupe_2246' data-name='Groupe 2246'%3E%3Cg id='Groupe_2245' data-name='Groupe 2245' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3230' data-name='Rectangle 3230' width='14.559' height='14.559' transform='matrix(-1, -0.009, 0.009, -1, 14.558, 14.686)' fill='%2321d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2250' data-name='Groupe 2250' transform='translate(634.841 0.054)' opacity='0.956'%3E%3Cg id='Groupe_2249' data-name='Groupe 2249'%3E%3Cg id='Groupe_2248' data-name='Groupe 2248' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3232' data-name='Rectangle 3232' width='14.374' height='14.373' transform='translate(14.371 14.625) rotate(-178.987)' fill='%2324d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2253' data-name='Groupe 2253' transform='translate(618.135 0.081)' opacity='0.934'%3E%3Cg id='Groupe_2252' data-name='Groupe 2252'%3E%3Cg id='Groupe_2251' data-name='Groupe 2251' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3234' data-name='Rectangle 3234' width='14.188' height='14.189' transform='translate(14.183 14.564) rotate(-178.465)' fill='%2327d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2256' data-name='Groupe 2256' transform='translate(601.429 0.109)' opacity='0.912'%3E%3Cg id='Groupe_2255' data-name='Groupe 2255'%3E%3Cg id='Groupe_2254' data-name='Groupe 2254' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3236' data-name='Rectangle 3236' width='14.005' height='14.005' transform='translate(13.996 14.504) rotate(-177.925)' fill='%2329d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2259' data-name='Groupe 2259' transform='translate(584.723 0.136)' opacity='0.89'%3E%3Cg id='Groupe_2258' data-name='Groupe 2258'%3E%3Cg id='Groupe_2257' data-name='Groupe 2257' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3238' data-name='Rectangle 3238' width='13.823' height='13.823' transform='matrix(-0.999, -0.046, 0.046, -0.999, 13.808, 14.443)' fill='%232cd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2262' data-name='Groupe 2262' transform='translate(568.016 0.163)' opacity='0.868'%3E%3Cg id='Groupe_2261' data-name='Groupe 2261'%3E%3Cg id='Groupe_2260' data-name='Groupe 2260' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3240' data-name='Rectangle 3240' width='13.642' height='13.642' transform='translate(13.621 14.382) rotate(-176.801)' fill='%232fd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2265' data-name='Groupe 2265' transform='translate(551.309 0.19)' opacity='0.846'%3E%3Cg id='Groupe_2264' data-name='Groupe 2264'%3E%3Cg id='Groupe_2263' data-name='Groupe 2263' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3242' data-name='Rectangle 3242' width='13.463' height='13.463' transform='translate(13.434 14.322) rotate(-176.217)' fill='%2332d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2268' data-name='Groupe 2268' transform='translate(534.604 0.217)' opacity='0.824'%3E%3Cg id='Groupe_2267' data-name='Groupe 2267'%3E%3Cg id='Groupe_2266' data-name='Groupe 2266' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3244' data-name='Rectangle 3244' width='13.285' height='13.285' transform='translate(13.246 14.261) rotate(-175.617)' fill='%2335d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2271' data-name='Groupe 2271' transform='translate(517.897 0.244)' opacity='0.802'%3E%3Cg id='Groupe_2270' data-name='Groupe 2270'%3E%3Cg id='Groupe_2269' data-name='Groupe 2269' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3246' data-name='Rectangle 3246' width='13.109' height='13.109' transform='matrix(-0.996, -0.087, 0.087, -0.996, 13.059, 14.201)' fill='%2337d7d7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2274' data-name='Groupe 2274' transform='translate(501.19 0.271)' opacity='0.78'%3E%3Cg id='Groupe_2273' data-name='Groupe 2273'%3E%3Cg id='Groupe_2272' data-name='Groupe 2272' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3248' data-name='Rectangle 3248' width='12.933' height='12.934' transform='translate(12.872 14.14) rotate(-174.372)' fill='%233ad8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2277' data-name='Groupe 2277' transform='translate(484.484 0.299)' opacity='0.758'%3E%3Cg id='Groupe_2276' data-name='Groupe 2276'%3E%3Cg id='Groupe_2275' data-name='Groupe 2275' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_3250' data-name='Rectangle 3250' width='12.76' height='12.761' transform='translate(12.684 14.08) rotate(-173.722)' fill='%233dd8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2280' data-name='Groupe 2280' transform='translate(467.778 0.326)' opacity='0.736'%3E%3Cg id='Groupe_2279' data-name='Groupe 2279'%3E%3Cg id='Groupe_2278' data-name='Groupe 2278' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_3252' data-name='Rectangle 3252' width='12.589' height='12.589' transform='translate(12.496 14.019) rotate(-173.054)' fill='%2340d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2283' data-name='Groupe 2283' transform='translate(451.072 0.353)' opacity='0.714'%3E%3Cg id='Groupe_2282' data-name='Groupe 2282'%3E%3Cg id='Groupe_2281' data-name='Groupe 2281' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3254' data-name='Rectangle 3254' width='12.419' height='12.419' transform='translate(12.309 13.958) rotate(-172.368)' fill='%2343d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2286' data-name='Groupe 2286' transform='translate(434.365 0.38)' opacity='0.692'%3E%3Cg id='Groupe_2285' data-name='Groupe 2285'%3E%3Cg id='Groupe_2284' data-name='Groupe 2284' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_3256' data-name='Rectangle 3256' width='12.251' height='12.251' transform='translate(12.121 13.898) rotate(-171.662)' fill='%2345dada'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2289' data-name='Groupe 2289' transform='translate(417.659 0.407)' opacity='0.67'%3E%3Cg id='Groupe_2288' data-name='Groupe 2288'%3E%3Cg id='Groupe_2287' data-name='Groupe 2287' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_3258' data-name='Rectangle 3258' width='12.084' height='12.085' transform='translate(11.934 13.837) rotate(-170.941)' fill='%2348dbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2292' data-name='Groupe 2292' transform='translate(400.953 0.434)' opacity='0.648'%3E%3Cg id='Groupe_2291' data-name='Groupe 2291'%3E%3Cg id='Groupe_2290' data-name='Groupe 2290' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_3260' data-name='Rectangle 3260' width='11.92' height='11.921' transform='translate(11.746 13.777) rotate(-170.197)' fill='%234bdbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2295' data-name='Groupe 2295' transform='translate(384.246 0.461)' opacity='0.626'%3E%3Cg id='Groupe_2294' data-name='Groupe 2294'%3E%3Cg id='Groupe_2293' data-name='Groupe 2293' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_3262' data-name='Rectangle 3262' width='11.759' height='11.759' transform='translate(11.559 13.716) rotate(-169.432)' fill='%234edcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2298' data-name='Groupe 2298' transform='translate(367.54 0.489)' opacity='0.604'%3E%3Cg id='Groupe_2297' data-name='Groupe 2297'%3E%3Cg id='Groupe_2296' data-name='Groupe 2296' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_3264' data-name='Rectangle 3264' width='11.599' height='11.599' transform='matrix(-0.98, -0.197, 0.197, -0.98, 11.372, 13.655)' fill='%2351dcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2301' data-name='Groupe 2301' transform='translate(350.834 0.516)' opacity='0.582'%3E%3Cg id='Groupe_2300' data-name='Groupe 2300'%3E%3Cg id='Groupe_2299' data-name='Groupe 2299' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_3266' data-name='Rectangle 3266' width='11.441' height='11.441' transform='translate(11.184 13.595) rotate(-167.836)' fill='%2353dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2304' data-name='Groupe 2304' transform='translate(334.127 0.543)' opacity='0.56'%3E%3Cg id='Groupe_2303' data-name='Groupe 2303'%3E%3Cg id='Groupe_2302' data-name='Groupe 2302' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_3268' data-name='Rectangle 3268' width='11.286' height='11.286' transform='translate(10.997 13.534) rotate(-167.006)' fill='%2356dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2307' data-name='Groupe 2307' transform='translate(317.42 0.57)' opacity='0.538'%3E%3Cg id='Groupe_2306' data-name='Groupe 2306'%3E%3Cg id='Groupe_2305' data-name='Groupe 2305' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_3270' data-name='Rectangle 3270' width='11.132' height='11.133' transform='matrix(-0.971, -0.239, 0.239, -0.971, 10.81, 13.474)' fill='%2359dede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2310' data-name='Groupe 2310' transform='translate(300.715 0.597)' opacity='0.516'%3E%3Cg id='Groupe_2309' data-name='Groupe 2309'%3E%3Cg id='Groupe_2308' data-name='Groupe 2308' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_3272' data-name='Rectangle 3272' width='10.982' height='10.982' transform='matrix(-0.967, -0.254, 0.254, -0.967, 10.622, 13.413)' fill='%235cdede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2313' data-name='Groupe 2313' transform='translate(284.008 0.624)' opacity='0.494'%3E%3Cg id='Groupe_2312' data-name='Groupe 2312'%3E%3Cg id='Groupe_2311' data-name='Groupe 2311' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_3274' data-name='Rectangle 3274' width='10.834' height='10.835' transform='translate(10.434 13.352) rotate(-164.377)' fill='%235fdfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2316' data-name='Groupe 2316' transform='translate(267.301 0.651)' opacity='0.472'%3E%3Cg id='Groupe_2315' data-name='Groupe 2315'%3E%3Cg id='Groupe_2314' data-name='Groupe 2314' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_3276' data-name='Rectangle 3276' width='10.689' height='10.689' transform='translate(10.247 13.292) rotate(-163.45)' fill='%2361dfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2319' data-name='Groupe 2319' transform='translate(250.596 0.678)' opacity='0.45'%3E%3Cg id='Groupe_2318' data-name='Groupe 2318'%3E%3Cg id='Groupe_2317' data-name='Groupe 2317' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_3278' data-name='Rectangle 3278' width='10.548' height='10.548' transform='translate(10.059 13.231) rotate(-162.5)' fill='%2364e0e0'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2322' data-name='Groupe 2322' transform='translate(233.889 0.706)' opacity='0.428'%3E%3Cg id='Groupe_2321' data-name='Groupe 2321'%3E%3Cg id='Groupe_2320' data-name='Groupe 2320' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_3280' data-name='Rectangle 3280' width='10.408' height='10.408' transform='translate(9.872 13.171) rotate(-161.522)' fill='%2367e1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2325' data-name='Groupe 2325' transform='translate(217.183 0.733)' opacity='0.406'%3E%3Cg id='Groupe_2324' data-name='Groupe 2324'%3E%3Cg id='Groupe_2323' data-name='Groupe 2323' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_3282' data-name='Rectangle 3282' width='10.272' height='10.272' transform='translate(9.684 13.11) rotate(-160.523)' fill='%236ae1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2328' data-name='Groupe 2328' transform='translate(200.476 0.76)' opacity='0.384'%3E%3Cg id='Groupe_2327' data-name='Groupe 2327'%3E%3Cg id='Groupe_2326' data-name='Groupe 2326' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_3284' data-name='Rectangle 3284' width='10.139' height='10.14' transform='matrix(-0.937, -0.35, 0.35, -0.937, 9.497, 13.049)' fill='%236de2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2331' data-name='Groupe 2331' transform='translate(183.77 0.787)' opacity='0.362'%3E%3Cg id='Groupe_2330' data-name='Groupe 2330'%3E%3Cg id='Groupe_2329' data-name='Groupe 2329' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_3286' data-name='Rectangle 3286' width='10.01' height='10.01' transform='translate(9.31 12.989) rotate(-158.436)' fill='%2370e2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2334' data-name='Groupe 2334' transform='translate(167.064 0.814)' opacity='0.34'%3E%3Cg id='Groupe_2333' data-name='Groupe 2333'%3E%3Cg id='Groupe_2332' data-name='Groupe 2332' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_3288' data-name='Rectangle 3288' width='9.884' height='9.885' transform='translate(9.122 12.928) rotate(-157.353)' fill='%2372e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2337' data-name='Groupe 2337' transform='translate(150.357 0.841)' opacity='0.318'%3E%3Cg id='Groupe_2336' data-name='Groupe 2336'%3E%3Cg id='Groupe_2335' data-name='Groupe 2335' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_3290' data-name='Rectangle 3290' width='9.762' height='9.762' transform='translate(8.935 12.868) rotate(-156.241)' fill='%2375e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2340' data-name='Groupe 2340' transform='translate(133.651 0.868)' opacity='0.296'%3E%3Cg id='Groupe_2339' data-name='Groupe 2339'%3E%3Cg id='Groupe_2338' data-name='Groupe 2338' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_3292' data-name='Rectangle 3292' width='9.644' height='9.643' transform='translate(8.747 12.807) rotate(-155.101)' fill='%2378e4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2343' data-name='Groupe 2343' transform='translate(116.945 0.896)' opacity='0.274'%3E%3Cg id='Groupe_2342' data-name='Groupe 2342'%3E%3Cg id='Groupe_2341' data-name='Groupe 2341' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_3294' data-name='Rectangle 3294' width='9.528' height='9.529' transform='translate(8.559 12.746) rotate(-153.937)' fill='%237be4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2346' data-name='Groupe 2346' transform='translate(100.238 0.923)' opacity='0.252'%3E%3Cg id='Groupe_2345' data-name='Groupe 2345'%3E%3Cg id='Groupe_2344' data-name='Groupe 2344' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_3296' data-name='Rectangle 3296' width='9.418' height='9.419' transform='translate(8.372 12.686) rotate(-152.744)' fill='%237ee5e5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2349' data-name='Groupe 2349' transform='translate(83.532 0.95)' opacity='0.23'%3E%3Cg id='Groupe_2348' data-name='Groupe 2348'%3E%3Cg id='Groupe_2347' data-name='Groupe 2347' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_3298' data-name='Rectangle 3298' width='9.312' height='9.312' transform='matrix(-0.879, -0.477, 0.477, -0.879, 8.185, 12.625)' fill='%2381e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2352' data-name='Groupe 2352' transform='translate(66.826 0.977)' opacity='0.208'%3E%3Cg id='Groupe_2351' data-name='Groupe 2351'%3E%3Cg id='Groupe_2350' data-name='Groupe 2350' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_3300' data-name='Rectangle 3300' width='9.21' height='9.21' transform='matrix(-0.868, -0.496, 0.496, -0.868, 7.997, 12.565)' fill='%2383e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2355' data-name='Groupe 2355' transform='translate(50.119 1.004)' opacity='0.186'%3E%3Cg id='Groupe_2354' data-name='Groupe 2354'%3E%3Cg id='Groupe_2353' data-name='Groupe 2353' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_3302' data-name='Rectangle 3302' width='9.112' height='9.112' transform='matrix(-0.857, -0.515, 0.515, -0.857, 7.81, 12.504)' fill='%2386e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2358' data-name='Groupe 2358' transform='translate(33.412 1.031)' opacity='0.164'%3E%3Cg id='Groupe_2357' data-name='Groupe 2357'%3E%3Cg id='Groupe_2356' data-name='Groupe 2356' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_3304' data-name='Rectangle 3304' width='9.019' height='9.019' transform='translate(7.623 12.443) rotate(-147.685)' fill='%2389e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2361' data-name='Groupe 2361' transform='translate(16.707 1.058)' opacity='0.142'%3E%3Cg id='Groupe_2360' data-name='Groupe 2360'%3E%3Cg id='Groupe_2359' data-name='Groupe 2359' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_3306' data-name='Rectangle 3306' width='8.93' height='8.931' transform='translate(7.435 12.383) rotate(-146.359)' fill='%238ce8e8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2364' data-name='Groupe 2364' transform='translate(0 1.086)' opacity='0.12'%3E%3Cg id='Groupe_2363' data-name='Groupe 2363'%3E%3Cg id='Groupe_2362' data-name='Groupe 2362' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_3308' data-name='Rectangle 3308' width='8.847' height='8.847' transform='matrix(-0.819, -0.574, 0.574, -0.819, 7.248, 12.322)' fill='%238fe9e9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.image-header__divider.blue {
  background-image: url("data:image/svg+xml,%3Csvg id='Divider-blue' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='730' height='17.996' viewBox='0 0 730 17.996'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_2959' data-name='Rectangle 2959' width='730' height='17.996' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_2876' data-name='Rectangle 2876' width='15.761' height='17.996' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_2878' data-name='Rectangle 2878' width='15.696' height='17.922' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_2880' data-name='Rectangle 2880' width='15.631' height='17.848' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_2882' data-name='Rectangle 2882' width='15.566' height='17.774' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_2884' data-name='Rectangle 2884' width='15.501' height='17.7' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_2886' data-name='Rectangle 2886' width='15.437' height='17.626' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_2888' data-name='Rectangle 2888' width='15.372' height='17.552' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_2890' data-name='Rectangle 2890' width='15.308' height='17.478' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_2892' data-name='Rectangle 2892' width='15.242' height='17.404' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_2894' data-name='Rectangle 2894' width='15.178' height='17.331' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_2896' data-name='Rectangle 2896' width='15.113' height='17.257' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_2898' data-name='Rectangle 2898' width='15.048' height='17.183' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_2900' data-name='Rectangle 2900' width='14.984' height='17.109' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_2902' data-name='Rectangle 2902' width='14.918' height='17.035' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_2904' data-name='Rectangle 2904' width='14.854' height='16.961' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_2906' data-name='Rectangle 2906' width='14.789' height='16.887' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_2908' data-name='Rectangle 2908' width='14.724' height='16.813' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_2910' data-name='Rectangle 2910' width='14.66' height='16.739' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_2912' data-name='Rectangle 2912' width='14.595' height='16.665' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_2914' data-name='Rectangle 2914' width='14.53' height='16.591' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_2916' data-name='Rectangle 2916' width='14.465' height='16.517' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_2918' data-name='Rectangle 2918' width='14.401' height='16.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_2920' data-name='Rectangle 2920' width='14.336' height='16.369' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_2922' data-name='Rectangle 2922' width='14.271' height='16.295' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_2924' data-name='Rectangle 2924' width='14.207' height='16.221' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_2926' data-name='Rectangle 2926' width='14.141' height='16.147' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_2928' data-name='Rectangle 2928' width='14.077' height='16.073' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_2930' data-name='Rectangle 2930' width='14.012' height='15.999' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_2932' data-name='Rectangle 2932' width='13.947' height='15.926' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_2934' data-name='Rectangle 2934' width='13.883' height='15.852' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_2936' data-name='Rectangle 2936' width='13.817' height='15.778' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_2938' data-name='Rectangle 2938' width='13.753' height='15.704' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_2940' data-name='Rectangle 2940' width='13.688' height='15.63' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_2942' data-name='Rectangle 2942' width='13.623' height='15.556' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_2944' data-name='Rectangle 2944' width='13.559' height='15.482' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_2946' data-name='Rectangle 2946' width='13.494' height='15.408' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_2948' data-name='Rectangle 2948' width='13.429' height='15.334' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_2950' data-name='Rectangle 2950' width='13.364' height='15.26' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_2952' data-name='Rectangle 2952' width='13.3' height='15.186' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_2954' data-name='Rectangle 2954' width='13.235' height='15.112' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_2956' data-name='Rectangle 2956' width='13.17' height='15.038' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Groupe_1833' data-name='Groupe 1833' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1832' data-name='Groupe 1832' transform='translate(0 0)'%3E%3Cg id='Groupe_1831' data-name='Groupe 1831' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1830' data-name='Groupe 1830' transform='translate(0 0)'%3E%3Cg id='Groupe_1829' data-name='Groupe 1829'%3E%3Cg id='Groupe_1828' data-name='Groupe 1828' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1707' data-name='Groupe 1707' transform='translate(714.239)'%3E%3Cg id='Groupe_1706' data-name='Groupe 1706'%3E%3Cg id='Groupe_1705' data-name='Groupe 1705' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_2875' data-name='Rectangle 2875' width='15.761' height='17.996' transform='translate(0 0)' fill='%231ed2d2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1710' data-name='Groupe 1710' transform='translate(696.383 0.033)' opacity='0.978'%3E%3Cg id='Groupe_1709' data-name='Groupe 1709'%3E%3Cg id='Groupe_1708' data-name='Groupe 1708' clip-path='url(%23clip-path-5)'%3E%3Cpath id='Tracé_2101' data-name='Tracé 2101' d='M0,0,15.561.019l.019,17.768L.019,17.768Z' transform='matrix(-1, -0.009, 0.009, -1, 15.56, 17.922)' fill='%2321d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1713' data-name='Groupe 1713' transform='translate(678.527 0.066)' opacity='0.956'%3E%3Cg id='Groupe_1712' data-name='Groupe 1712'%3E%3Cg id='Groupe_1711' data-name='Groupe 1711' clip-path='url(%23clip-path-6)'%3E%3Cpath id='Tracé_2102' data-name='Tracé 2102' d='M0,0,15.363.039,15.4,17.579.039,17.541Z' transform='translate(15.36 17.848) rotate(-178.987)' fill='%2324d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1716' data-name='Groupe 1716' transform='translate(660.671 0.099)' opacity='0.934'%3E%3Cg id='Groupe_1715' data-name='Groupe 1715'%3E%3Cg id='Groupe_1714' data-name='Groupe 1714' clip-path='url(%23clip-path-7)'%3E%3Cpath id='Tracé_2103' data-name='Tracé 2103' d='M0,0,15.166.058l.058,17.315L.058,17.315Z' transform='translate(15.16 17.774) rotate(-178.465)' fill='%2327d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1719' data-name='Groupe 1719' transform='translate(642.815 0.132)' opacity='0.912'%3E%3Cg id='Groupe_1718' data-name='Groupe 1718'%3E%3Cg id='Groupe_1717' data-name='Groupe 1717' clip-path='url(%23clip-path-8)'%3E%3Cpath id='Tracé_2104' data-name='Tracé 2104' d='M0,0,14.972.077l.077,17.089L.077,17.089Z' transform='translate(14.959 17.7) rotate(-177.925)' fill='%2329d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1722' data-name='Groupe 1722' transform='translate(624.96 0.166)' opacity='0.89'%3E%3Cg id='Groupe_1721' data-name='Groupe 1721'%3E%3Cg id='Groupe_1720' data-name='Groupe 1720' clip-path='url(%23clip-path-9)'%3E%3Cpath id='Tracé_2105' data-name='Tracé 2105' d='M0,0,14.779.1l.1,16.865L.1,16.865Z' transform='matrix(-0.999, -0.046, 0.046, -0.999, 14.759, 17.626)' fill='%232cd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1725' data-name='Groupe 1725' transform='translate(607.103 0.199)' opacity='0.868'%3E%3Cg id='Groupe_1724' data-name='Groupe 1724'%3E%3Cg id='Groupe_1723' data-name='Groupe 1723' clip-path='url(%23clip-path-10)'%3E%3Cpath id='Tracé_2106' data-name='Tracé 2106' d='M0,0,14.587.115,14.7,16.758.115,16.642Z' transform='translate(14.559 17.552) rotate(-176.801)' fill='%232fd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1728' data-name='Groupe 1728' transform='translate(589.247 0.232)' opacity='0.846'%3E%3Cg id='Groupe_1727' data-name='Groupe 1727'%3E%3Cg id='Groupe_1726' data-name='Groupe 1726' clip-path='url(%23clip-path-11)'%3E%3Cpath id='Tracé_2107' data-name='Tracé 2107' d='M0,0,14.4.134l.134,16.421-14.4-.134Z' transform='translate(14.358 17.478) rotate(-176.217)' fill='%2332d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1731' data-name='Groupe 1731' transform='translate(571.392 0.265)' opacity='0.824'%3E%3Cg id='Groupe_1730' data-name='Groupe 1730'%3E%3Cg id='Groupe_1729' data-name='Groupe 1729' clip-path='url(%23clip-path-12)'%3E%3Cpath id='Tracé_2108' data-name='Tracé 2108' d='M0,0,14.211.153l.153,16.2L.153,16.2Z' transform='translate(14.158 17.405) rotate(-175.617)' fill='%2335d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1734' data-name='Groupe 1734' transform='translate(553.535 0.298)' opacity='0.802'%3E%3Cg id='Groupe_1733' data-name='Groupe 1733'%3E%3Cg id='Groupe_1732' data-name='Groupe 1732' clip-path='url(%23clip-path-13)'%3E%3Cpath id='Tracé_2109' data-name='Tracé 2109' d='M0,0,14.026.172,14.2,16.156.172,15.983Z' transform='matrix(-0.996, -0.087, 0.087, -0.996, 13.958, 17.331)' fill='%2337d7d7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1737' data-name='Groupe 1737' transform='translate(535.679 0.331)' opacity='0.78'%3E%3Cg id='Groupe_1736' data-name='Groupe 1736'%3E%3Cg id='Groupe_1735' data-name='Groupe 1735' clip-path='url(%23clip-path-14)'%3E%3Cpath id='Tracé_2110' data-name='Tracé 2110' d='M0,0,13.842.191l.191,15.766L.191,15.766Z' transform='translate(13.757 17.257) rotate(-174.372)' fill='%233ad8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1740' data-name='Groupe 1740' transform='translate(517.824 0.364)' opacity='0.758'%3E%3Cg id='Groupe_1739' data-name='Groupe 1739'%3E%3Cg id='Groupe_1738' data-name='Groupe 1738' clip-path='url(%23clip-path-15)'%3E%3Cpath id='Tracé_2111' data-name='Tracé 2111' d='M0,0,13.662.21l.21,15.55L.21,15.55Z' transform='translate(13.557 17.183) rotate(-173.722)' fill='%233dd8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1743' data-name='Groupe 1743' transform='translate(499.967 0.397)' opacity='0.736'%3E%3Cg id='Groupe_1742' data-name='Groupe 1742'%3E%3Cg id='Groupe_1741' data-name='Groupe 1741' clip-path='url(%23clip-path-16)'%3E%3Cpath id='Tracé_2112' data-name='Tracé 2112' d='M0,0,13.483.229l.229,15.336L.229,15.336Z' transform='translate(13.356 17.109) rotate(-173.054)' fill='%2340d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1746' data-name='Groupe 1746' transform='translate(482.112 0.431)' opacity='0.714'%3E%3Cg id='Groupe_1745' data-name='Groupe 1745'%3E%3Cg id='Groupe_1744' data-name='Groupe 1744' clip-path='url(%23clip-path-17)'%3E%3Cpath id='Tracé_2113' data-name='Tracé 2113' d='M0,0,13.307.248l.248,15.123L.248,15.123Z' transform='translate(13.156 17.035) rotate(-172.368)' fill='%2343d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1749' data-name='Groupe 1749' transform='translate(464.256 0.464)' opacity='0.692'%3E%3Cg id='Groupe_1748' data-name='Groupe 1748'%3E%3Cg id='Groupe_1747' data-name='Groupe 1747' clip-path='url(%23clip-path-18)'%3E%3Cpath id='Tracé_2114' data-name='Tracé 2114' d='M0,0,13.133.266,13.4,15.178.266,14.912Z' transform='translate(12.956 16.961) rotate(-171.662)' fill='%2345dada'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1752' data-name='Groupe 1752' transform='translate(446.399 0.497)' opacity='0.67'%3E%3Cg id='Groupe_1751' data-name='Groupe 1751'%3E%3Cg id='Groupe_1750' data-name='Groupe 1750' clip-path='url(%23clip-path-19)'%3E%3Cpath id='Tracé_2115' data-name='Tracé 2115' d='M0,0,12.961.285l.285,14.7L.285,14.7Z' transform='translate(12.755 16.887) rotate(-170.941)' fill='%2348dbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1755' data-name='Groupe 1755' transform='translate(428.544 0.53)' opacity='0.648'%3E%3Cg id='Groupe_1754' data-name='Groupe 1754'%3E%3Cg id='Groupe_1753' data-name='Groupe 1753' clip-path='url(%23clip-path-20)'%3E%3Cpath id='Tracé_2116' data-name='Tracé 2116' d='M0,0,12.793.3l.3,14.5L.3,14.5Z' transform='translate(12.554 16.813) rotate(-170.197)' fill='%234bdbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1758' data-name='Groupe 1758' transform='translate(410.688 0.563)' opacity='0.626'%3E%3Cg id='Groupe_1757' data-name='Groupe 1757'%3E%3Cg id='Groupe_1756' data-name='Groupe 1756' clip-path='url(%23clip-path-21)'%3E%3Cpath id='Tracé_2117' data-name='Tracé 2117' d='M0,0,12.628.321l.321,14.29L.321,14.29Z' transform='translate(12.354 16.739) rotate(-169.432)' fill='%234edcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1761' data-name='Groupe 1761' transform='translate(392.831 0.596)' opacity='0.604'%3E%3Cg id='Groupe_1760' data-name='Groupe 1760'%3E%3Cg id='Groupe_1759' data-name='Groupe 1759' clip-path='url(%23clip-path-22)'%3E%3Cpath id='Tracé_2118' data-name='Tracé 2118' d='M0,0,12.465.339,12.8,14.426.339,14.087Z' transform='matrix(-0.98, -0.197, 0.197, -0.98, 12.154, 16.665)' fill='%2351dcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1764' data-name='Groupe 1764' transform='translate(374.976 0.629)' opacity='0.582'%3E%3Cg id='Groupe_1763' data-name='Groupe 1763'%3E%3Cg id='Groupe_1762' data-name='Groupe 1762' clip-path='url(%23clip-path-23)'%3E%3Cpath id='Tracé_2119' data-name='Tracé 2119' d='M0,0,12.305.357l.357,13.885L.357,13.885Z' transform='translate(11.954 16.591) rotate(-167.836)' fill='%2353dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1767' data-name='Groupe 1767' transform='translate(357.12 0.662)' opacity='0.56'%3E%3Cg id='Groupe_1766' data-name='Groupe 1766'%3E%3Cg id='Groupe_1765' data-name='Groupe 1765' clip-path='url(%23clip-path-24)'%3E%3Cpath id='Tracé_2120' data-name='Tracé 2120' d='M0,0,12.149.375l.375,13.687L.375,13.687Z' transform='translate(11.754 16.517) rotate(-167.006)' fill='%2356dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1770' data-name='Groupe 1770' transform='translate(339.263 0.695)' opacity='0.538'%3E%3Cg id='Groupe_1769' data-name='Groupe 1769'%3E%3Cg id='Groupe_1768' data-name='Groupe 1768' clip-path='url(%23clip-path-25)'%3E%3Cpath id='Tracé_2121' data-name='Tracé 2121' d='M0,0,12,.392l.392,13.49-12-.392Z' transform='matrix(-0.971, -0.239, 0.239, -0.971, 11.553, 16.443)' fill='%2359dede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1773' data-name='Groupe 1773' transform='translate(321.408 0.729)' opacity='0.516'%3E%3Cg id='Groupe_1772' data-name='Groupe 1772'%3E%3Cg id='Groupe_1771' data-name='Groupe 1771' clip-path='url(%23clip-path-26)'%3E%3Cpath id='Tracé_2122' data-name='Tracé 2122' d='M0,0,11.846.409l.409,13.3L.409,13.3Z' transform='matrix(-0.967, -0.254, 0.254, -0.967, 11.352, 16.369)' fill='%235cdede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1776' data-name='Groupe 1776' transform='translate(303.552 0.762)' opacity='0.494'%3E%3Cg id='Groupe_1775' data-name='Groupe 1775'%3E%3Cg id='Groupe_1774' data-name='Groupe 1774' clip-path='url(%23clip-path-27)'%3E%3Cpath id='Tracé_2123' data-name='Tracé 2123' d='M0,0,11.7.426l.426,13.1L.426,13.1Z' transform='translate(11.152 16.295) rotate(-164.377)' fill='%235fdfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1779' data-name='Groupe 1779' transform='translate(285.695 0.795)' opacity='0.472'%3E%3Cg id='Groupe_1778' data-name='Groupe 1778'%3E%3Cg id='Groupe_1777' data-name='Groupe 1777' clip-path='url(%23clip-path-28)'%3E%3Cpath id='Tracé_2124' data-name='Tracé 2124' d='M0,0,11.556.442,12,13.356.442,12.914Z' transform='translate(10.952 16.221) rotate(-163.45)' fill='%2361dfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1782' data-name='Groupe 1782' transform='translate(267.84 0.828)' opacity='0.45'%3E%3Cg id='Groupe_1781' data-name='Groupe 1781'%3E%3Cg id='Groupe_1780' data-name='Groupe 1780' clip-path='url(%23clip-path-29)'%3E%3Cpath id='Tracé_2125' data-name='Tracé 2125' d='M0,0,11.418.459l.459,12.728L.459,12.728Z' transform='translate(10.751 16.147) rotate(-162.5)' fill='%2364e0e0'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1785' data-name='Groupe 1785' transform='translate(249.984 0.861)' opacity='0.428'%3E%3Cg id='Groupe_1784' data-name='Groupe 1784'%3E%3Cg id='Groupe_1783' data-name='Groupe 1783' clip-path='url(%23clip-path-30)'%3E%3Cpath id='Tracé_2126' data-name='Tracé 2126' d='M0,0,11.283.474l.474,12.544L.474,12.544Z' transform='translate(10.551 16.073) rotate(-161.522)' fill='%2367e1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1788' data-name='Groupe 1788' transform='translate(232.128 0.894)' opacity='0.406'%3E%3Cg id='Groupe_1787' data-name='Groupe 1787'%3E%3Cg id='Groupe_1786' data-name='Groupe 1786' clip-path='url(%23clip-path-31)'%3E%3Cpath id='Tracé_2127' data-name='Tracé 2127' d='M0,0,11.152.49l.49,12.363L.49,12.363Z' transform='translate(10.35 15.999) rotate(-160.523)' fill='%236ae1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1791' data-name='Groupe 1791' transform='translate(214.272 0.927)' opacity='0.384'%3E%3Cg id='Groupe_1790' data-name='Groupe 1790'%3E%3Cg id='Groupe_1789' data-name='Groupe 1789' clip-path='url(%23clip-path-32)'%3E%3Cpath id='Tracé_2128' data-name='Tracé 2128' d='M0,0,11.026.5l.5,12.186L.5,12.186Z' transform='matrix(-0.937, -0.35, 0.35, -0.937, 10.151, 15.926)' fill='%236de2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1794' data-name='Groupe 1794' transform='translate(196.416 0.96)' opacity='0.362'%3E%3Cg id='Groupe_1793' data-name='Groupe 1793'%3E%3Cg id='Groupe_1792' data-name='Groupe 1792' clip-path='url(%23clip-path-33)'%3E%3Cpath id='Tracé_2129' data-name='Tracé 2129' d='M0,0,10.9.519l.519,12.012-10.9-.519Z' transform='translate(9.95 15.852) rotate(-158.436)' fill='%2370e2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1797' data-name='Groupe 1797' transform='translate(178.56 0.994)' opacity='0.34'%3E%3Cg id='Groupe_1796' data-name='Groupe 1796'%3E%3Cg id='Groupe_1795' data-name='Groupe 1795' clip-path='url(%23clip-path-34)'%3E%3Cpath id='Tracé_2130' data-name='Tracé 2130' d='M0,0,10.787.533l.533,11.841L.533,11.841Z' transform='translate(9.75 15.778) rotate(-157.353)' fill='%2372e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1800' data-name='Groupe 1800' transform='translate(160.704 1.027)' opacity='0.318'%3E%3Cg id='Groupe_1799' data-name='Groupe 1799'%3E%3Cg id='Groupe_1798' data-name='Groupe 1798' clip-path='url(%23clip-path-35)'%3E%3Cpath id='Tracé_2131' data-name='Tracé 2131' d='M0,0,10.674.546l.546,11.674L.546,11.674Z' transform='translate(9.549 15.704) rotate(-156.241)' fill='%2375e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1803' data-name='Groupe 1803' transform='translate(142.848 1.06)' opacity='0.296'%3E%3Cg id='Groupe_1802' data-name='Groupe 1802'%3E%3Cg id='Groupe_1801' data-name='Groupe 1801' clip-path='url(%23clip-path-36)'%3E%3Cpath id='Tracé_2132' data-name='Tracé 2132' d='M0,0,10.567.558l.558,11.51L.558,11.51Z' transform='translate(9.349 15.63) rotate(-155.101)' fill='%2378e4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1806' data-name='Groupe 1806' transform='translate(124.992 1.093)' opacity='0.274'%3E%3Cg id='Groupe_1805' data-name='Groupe 1805'%3E%3Cg id='Groupe_1804' data-name='Groupe 1804' clip-path='url(%23clip-path-37)'%3E%3Cpath id='Tracé_2133' data-name='Tracé 2133' d='M0,0,10.463.57l.57,11.35L.57,11.35Z' transform='translate(9.148 15.556) rotate(-153.937)' fill='%237be4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1809' data-name='Groupe 1809' transform='translate(107.136 1.126)' opacity='0.252'%3E%3Cg id='Groupe_1808' data-name='Groupe 1808'%3E%3Cg id='Groupe_1807' data-name='Groupe 1807' clip-path='url(%23clip-path-38)'%3E%3Cpath id='Tracé_2134' data-name='Tracé 2134' d='M0,0,10.365.581l.581,11.195L.581,11.195Z' transform='translate(8.948 15.482) rotate(-152.744)' fill='%237ee5e5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1812' data-name='Groupe 1812' transform='translate(89.28 1.159)' opacity='0.23'%3E%3Cg id='Groupe_1811' data-name='Groupe 1811'%3E%3Cg id='Groupe_1810' data-name='Groupe 1810' clip-path='url(%23clip-path-39)'%3E%3Cpath id='Tracé_2135' data-name='Tracé 2135' d='M0,0,10.274.592l.592,11.043L.592,11.043Z' transform='matrix(-0.879, -0.477, 0.477, -0.879, 8.748, 15.408)' fill='%2381e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1815' data-name='Groupe 1815' transform='translate(71.424 1.192)' opacity='0.208'%3E%3Cg id='Groupe_1814' data-name='Groupe 1814'%3E%3Cg id='Groupe_1813' data-name='Groupe 1813' clip-path='url(%23clip-path-40)'%3E%3Cpath id='Tracé_2136' data-name='Tracé 2136' d='M0,0,10.187.6l.6,10.9L.6,10.9Z' transform='matrix(-0.868, -0.496, 0.496, -0.868, 8.547, 15.334)' fill='%2383e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1818' data-name='Groupe 1818' transform='translate(53.568 1.226)' opacity='0.186'%3E%3Cg id='Groupe_1817' data-name='Groupe 1817'%3E%3Cg id='Groupe_1816' data-name='Groupe 1816' clip-path='url(%23clip-path-41)'%3E%3Cpath id='Tracé_2137' data-name='Tracé 2137' d='M0,0,10.106.61l.61,10.754L.61,10.754Z' transform='matrix(-0.857, -0.515, 0.515, -0.857, 8.347, 15.26)' fill='%2386e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1821' data-name='Groupe 1821' transform='translate(35.712 1.259)' opacity='0.164'%3E%3Cg id='Groupe_1820' data-name='Groupe 1820'%3E%3Cg id='Groupe_1819' data-name='Groupe 1819' clip-path='url(%23clip-path-42)'%3E%3Cpath id='Tracé_2138' data-name='Tracé 2138' d='M0,0,10.031.618l.618,10.616L.618,10.616Z' transform='translate(8.147 15.186) rotate(-147.685)' fill='%2389e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1824' data-name='Groupe 1824' transform='translate(17.856 1.292)' opacity='0.142'%3E%3Cg id='Groupe_1823' data-name='Groupe 1823'%3E%3Cg id='Groupe_1822' data-name='Groupe 1822' clip-path='url(%23clip-path-43)'%3E%3Cpath id='Tracé_2139' data-name='Tracé 2139' d='M0,0,9.961.624l.624,10.484L.624,10.484Z' transform='translate(7.946 15.112) rotate(-146.359)' fill='%238ce8e8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1827' data-name='Groupe 1827' transform='translate(0 1.325)' opacity='0.12'%3E%3Cg id='Groupe_1826' data-name='Groupe 1826'%3E%3Cg id='Groupe_1825' data-name='Groupe 1825' clip-path='url(%23clip-path-44)'%3E%3Cpath id='Tracé_2140' data-name='Tracé 2140' d='M0,0,9.9.63l.63,10.356-9.9-.63Z' transform='matrix(-0.819, -0.574, 0.574, -0.819, 7.747, 15.038)' fill='%238fe9e9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.image-header.orange picture:after {
  background: #D8FFFF 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(89deg, #FFE4B7 0%, transparent 25%, transparent 100%) 0% 0% no-repeat padding-box;
}
.image-header.yellow picture:after {
  background: transparent linear-gradient(89deg, #FFF5B7 0%, transparent 25%, transparent 100%) 0% 0% no-repeat padding-box;
}
.image-header.cyan picture:after {
  background: #D8FFFF 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(89deg, #BFF2F2 0%, transparent 25%, transparent 100%) 0% 0% no-repeat padding-box;
}
.image-header.blue picture:after {
  background: #D8FFFF 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(89deg, var(--blue) 0%, transparent 25%, transparent 100%) 0% 0% no-repeat padding-box;
}
.image-header picture {
  display: block;
  display: block;
  position: relative;
  padding-top: calc(var(--max-width) / 2 * 0.66);
}
.image-header picture:after {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .image-header picture {
    padding-top: calc(var(--max-width) / 2 * 0.34);
  }
}
.image-header picture img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.image-header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -45px;
  margin-bottom: 45px;
  height: 90px;
  width: 90px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.image-header__icon:before {
  position: absolute;
  content: "";
  background-color: white;
  height: 90px;
  width: 90px;
  display: block;
  transform: rotate(45deg);
  box-shadow: 3px 0px 5px rgba(0, 0, 0, 0.1607843137);
}
.image-header__icon svg {
  position: relative;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 64px 0;
}
.separator.left {
  justify-content: flex-start;
}
.separator.left .bg {
  transform: rotate(180deg);
}
.separator .bg {
  content: "";
  height: 15px;
  width: 50vw;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  bottom: 32px;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .separator .bg {
    width: 100%;
    height: 30px;
  }
}
.separator .bg.orange {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='730' height='15.761' viewBox='0 0 730 15.761'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_2874' data-name='Rectangle 2874' width='730' height='15.761' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_2791' data-name='Rectangle 2791' width='15.87' height='15.87' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_2793' data-name='Rectangle 2793' width='15.696' height='15.696' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_2795' data-name='Rectangle 2795' width='15.632' height='15.631' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_2797' data-name='Rectangle 2797' width='15.566' height='15.566' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_2799' data-name='Rectangle 2799' width='15.501' height='15.502' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_2801' data-name='Rectangle 2801' width='15.436' height='15.437' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_2803' data-name='Rectangle 2803' width='15.372' height='15.372' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_2805' data-name='Rectangle 2805' width='15.308' height='15.307' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_2807' data-name='Rectangle 2807' width='15.242' height='15.242' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_2809' data-name='Rectangle 2809' width='15.177' height='15.178' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_2811' data-name='Rectangle 2811' width='15.113' height='15.113' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_2813' data-name='Rectangle 2813' width='15.048' height='15.048' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_2815' data-name='Rectangle 2815' width='14.984' height='14.983' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_2817' data-name='Rectangle 2817' width='14.919' height='14.919' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_2819' data-name='Rectangle 2819' width='14.854' height='14.854' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_2821' data-name='Rectangle 2821' width='14.789' height='14.789' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_2823' data-name='Rectangle 2823' width='14.725' height='14.724' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_2825' data-name='Rectangle 2825' width='14.66' height='14.66' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_2827' data-name='Rectangle 2827' width='14.595' height='14.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_2829' data-name='Rectangle 2829' width='14.53' height='14.53' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_2831' data-name='Rectangle 2831' width='14.465' height='14.465' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_2833' data-name='Rectangle 2833' width='14.4' height='14.401' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_2835' data-name='Rectangle 2835' width='14.336' height='14.336' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_2837' data-name='Rectangle 2837' width='14.271' height='14.271' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_2839' data-name='Rectangle 2839' width='14.207' height='14.206' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_2841' data-name='Rectangle 2841' width='14.141' height='14.142' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_2843' data-name='Rectangle 2843' width='14.076' height='14.077' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_2845' data-name='Rectangle 2845' width='14.012' height='14.012' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_2847' data-name='Rectangle 2847' width='13.947' height='13.947' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_2849' data-name='Rectangle 2849' width='13.883' height='13.883' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_2851' data-name='Rectangle 2851' width='13.818' height='13.818' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_2853' data-name='Rectangle 2853' width='13.752' height='13.753' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_2855' data-name='Rectangle 2855' width='13.688' height='13.688' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_2857' data-name='Rectangle 2857' width='13.623' height='13.624' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_2859' data-name='Rectangle 2859' width='13.559' height='13.559' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_2861' data-name='Rectangle 2861' width='13.494' height='13.494' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_2863' data-name='Rectangle 2863' width='13.429' height='13.429' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_2865' data-name='Rectangle 2865' width='13.365' height='13.364' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_2867' data-name='Rectangle 2867' width='13.3' height='13.3' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_2869' data-name='Rectangle 2869' width='13.235' height='13.235' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_2871' data-name='Rectangle 2871' width='13.17' height='13.17' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-orange' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1702' data-name='Groupe 1702' transform='translate(0 0)'%3E%3Cg id='Groupe_1701' data-name='Groupe 1701' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1700' data-name='Groupe 1700' transform='translate(0 0)'%3E%3Cg id='Groupe_1699' data-name='Groupe 1699' transform='translate(0 0)'%3E%3Cg id='Groupe_1698' data-name='Groupe 1698' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1577' data-name='Groupe 1577' transform='translate(714.13 -0.106)'%3E%3Cg id='Groupe_1576' data-name='Groupe 1576' transform='translate(0)'%3E%3Cg id='Groupe_1575' data-name='Groupe 1575' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_2790' data-name='Rectangle 2790' width='15.87' height='15.87' transform='translate(0)' fill='%23ffa000'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1580' data-name='Groupe 1580' transform='translate(696.383 0.036)' opacity='0.978'%3E%3Cg id='Groupe_1579' data-name='Groupe 1579'%3E%3Cg id='Groupe_1578' data-name='Groupe 1578' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_2792' data-name='Rectangle 2792' width='15.561' height='15.561' transform='translate(0 0.136) rotate(-0.5)' fill='%23ffa103'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1583' data-name='Groupe 1583' transform='translate(678.527 0.072)' opacity='0.956'%3E%3Cg id='Groupe_1582' data-name='Groupe 1582'%3E%3Cg id='Groupe_1581' data-name='Groupe 1581' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_2794' data-name='Rectangle 2794' width='15.363' height='15.362' transform='matrix(1, -0.018, 0.018, 1, 0, 0.271)' fill='%23ffa206'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1586' data-name='Groupe 1586' transform='translate(660.672 0.107)' opacity='0.934'%3E%3Cg id='Groupe_1585' data-name='Groupe 1585'%3E%3Cg id='Groupe_1584' data-name='Groupe 1584' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_2796' data-name='Rectangle 2796' width='15.165' height='15.165' transform='translate(0 0.407) rotate(-1.539)' fill='%23ffa30a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1589' data-name='Groupe 1589' transform='translate(642.815 0.143)' opacity='0.912'%3E%3Cg id='Groupe_1588' data-name='Groupe 1588'%3E%3Cg id='Groupe_1587' data-name='Groupe 1587' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_2798' data-name='Rectangle 2798' width='14.969' height='14.969' transform='translate(0 0.542) rotate(-2.075)' fill='%23ffa50d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1592' data-name='Groupe 1592' transform='translate(624.96 0.179)' opacity='0.89'%3E%3Cg id='Groupe_1591' data-name='Groupe 1591'%3E%3Cg id='Groupe_1590' data-name='Groupe 1590' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_2800' data-name='Rectangle 2800' width='14.774' height='14.774' transform='matrix(0.999, -0.046, 0.046, 0.999, 0, 0.678)' fill='%23ffa610'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1595' data-name='Groupe 1595' transform='translate(607.103 0.215)' opacity='0.868'%3E%3Cg id='Groupe_1594' data-name='Groupe 1594'%3E%3Cg id='Groupe_1593' data-name='Groupe 1593' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_2802' data-name='Rectangle 2802' width='14.581' height='14.581' transform='translate(0 0.814) rotate(-3.199)' fill='%23ffa713'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1598' data-name='Groupe 1598' transform='translate(589.247 0.25)' opacity='0.846'%3E%3Cg id='Groupe_1597' data-name='Groupe 1597'%3E%3Cg id='Groupe_1596' data-name='Groupe 1596' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_2804' data-name='Rectangle 2804' width='14.39' height='14.389' transform='translate(0 0.949) rotate(-3.783)' fill='%23ffa816'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1601' data-name='Groupe 1601' transform='translate(571.392 0.286)' opacity='0.824'%3E%3Cg id='Groupe_1600' data-name='Groupe 1600'%3E%3Cg id='Groupe_1599' data-name='Groupe 1599' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_2806' data-name='Rectangle 2806' width='14.199' height='14.199' transform='translate(0 1.085) rotate(-4.383)' fill='%23ffaa1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1604' data-name='Groupe 1604' transform='translate(553.535 0.322)' opacity='0.802'%3E%3Cg id='Groupe_1603' data-name='Groupe 1603'%3E%3Cg id='Groupe_1602' data-name='Groupe 1602' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_2808' data-name='Rectangle 2808' width='14.011' height='14.011' transform='translate(0 1.22) rotate(-4.995)' fill='%23ffab1d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1607' data-name='Groupe 1607' transform='translate(535.679 0.358)' opacity='0.78'%3E%3Cg id='Groupe_1606' data-name='Groupe 1606'%3E%3Cg id='Groupe_1605' data-name='Groupe 1605' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_2810' data-name='Rectangle 2810' width='13.823' height='13.824' transform='matrix(0.995, -0.098, 0.098, 0.995, 0.001, 1.356)' fill='%23ffac20'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1610' data-name='Groupe 1610' transform='translate(517.824 0.393)' opacity='0.758'%3E%3Cg id='Groupe_1609' data-name='Groupe 1609'%3E%3Cg id='Groupe_1608' data-name='Groupe 1608' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_2812' data-name='Rectangle 2812' width='13.638' height='13.638' transform='matrix(0.994, -0.109, 0.109, 0.994, 0, 1.491)' fill='%23ffad23'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1613' data-name='Groupe 1613' transform='translate(499.967 0.429)' opacity='0.736'%3E%3Cg id='Groupe_1612' data-name='Groupe 1612'%3E%3Cg id='Groupe_1611' data-name='Groupe 1611' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_2814' data-name='Rectangle 2814' width='13.455' height='13.455' transform='translate(0 1.627) rotate(-6.946)' fill='%23ffae26'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1616' data-name='Groupe 1616' transform='translate(482.111 0.465)' opacity='0.714'%3E%3Cg id='Groupe_1615' data-name='Groupe 1615'%3E%3Cg id='Groupe_1614' data-name='Groupe 1614' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_2816' data-name='Rectangle 2816' width='13.274' height='13.274' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 1.763)' fill='%23ffaf2a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1619' data-name='Groupe 1619' transform='translate(464.256 0.501)' opacity='0.692'%3E%3Cg id='Groupe_1618' data-name='Groupe 1618'%3E%3Cg id='Groupe_1617' data-name='Groupe 1617' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_2818' data-name='Rectangle 2818' width='13.094' height='13.094' transform='matrix(0.989, -0.145, 0.145, 0.989, 0, 1.899)' fill='%23ffb12d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1622' data-name='Groupe 1622' transform='translate(446.399 0.536)' opacity='0.67'%3E%3Cg id='Groupe_1621' data-name='Groupe 1621'%3E%3Cg id='Groupe_1620' data-name='Groupe 1620' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_2820' data-name='Rectangle 2820' width='12.916' height='12.916' transform='translate(0 2.034) rotate(-9.059)' fill='%23ffb230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1625' data-name='Groupe 1625' transform='translate(428.543 0.572)' opacity='0.648'%3E%3Cg id='Groupe_1624' data-name='Groupe 1624'%3E%3Cg id='Groupe_1623' data-name='Groupe 1623' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_2822' data-name='Rectangle 2822' width='12.741' height='12.741' transform='translate(0.001 2.169) rotate(-9.803)' fill='%23ffb333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1628' data-name='Groupe 1628' transform='translate(410.688 0.608)' opacity='0.626'%3E%3Cg id='Groupe_1627' data-name='Groupe 1627'%3E%3Cg id='Groupe_1626' data-name='Groupe 1626' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_2824' data-name='Rectangle 2824' width='12.568' height='12.568' transform='translate(0 2.305) rotate(-10.568)' fill='%23ffb436'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1631' data-name='Groupe 1631' transform='translate(392.831 0.644)' opacity='0.604'%3E%3Cg id='Groupe_1630' data-name='Groupe 1630'%3E%3Cg id='Groupe_1629' data-name='Groupe 1629' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_2826' data-name='Rectangle 2826' width='12.397' height='12.397' transform='translate(0 2.441) rotate(-11.355)' fill='%23ffb539'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1634' data-name='Groupe 1634' transform='translate(374.976 0.679)' opacity='0.582'%3E%3Cg id='Groupe_1633' data-name='Groupe 1633'%3E%3Cg id='Groupe_1632' data-name='Groupe 1632' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_2828' data-name='Rectangle 2828' width='12.228' height='12.228' transform='matrix(0.978, -0.211, 0.211, 0.978, 0, 2.577)' fill='%23ffb73d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1637' data-name='Groupe 1637' transform='translate(357.12 0.715)' opacity='0.56'%3E%3Cg id='Groupe_1636' data-name='Groupe 1636'%3E%3Cg id='Groupe_1635' data-name='Groupe 1635' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_2830' data-name='Rectangle 2830' width='12.063' height='12.062' transform='translate(0 2.712) rotate(-12.994)' fill='%23ffb840'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1640' data-name='Groupe 1640' transform='translate(339.263 0.751)' opacity='0.538'%3E%3Cg id='Groupe_1639' data-name='Groupe 1639'%3E%3Cg id='Groupe_1638' data-name='Groupe 1638' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_2832' data-name='Rectangle 2832' width='11.899' height='11.899' transform='translate(0 2.847) rotate(-13.844)' fill='%23ffb943'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1643' data-name='Groupe 1643' transform='translate(321.408 0.787)' opacity='0.516'%3E%3Cg id='Groupe_1642' data-name='Groupe 1642'%3E%3Cg id='Groupe_1641' data-name='Groupe 1641' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_2834' data-name='Rectangle 2834' width='11.738' height='11.738' transform='translate(0 2.983) rotate(-14.722)' fill='%23ffba46'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1646' data-name='Groupe 1646' transform='translate(303.552 0.822)' opacity='0.494'%3E%3Cg id='Groupe_1645' data-name='Groupe 1645'%3E%3Cg id='Groupe_1644' data-name='Groupe 1644' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_2836' data-name='Rectangle 2836' width='11.58' height='11.58' transform='translate(0 3.119) rotate(-15.623)' fill='%23ffbb49'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1649' data-name='Groupe 1649' transform='translate(285.695 0.858)' opacity='0.472'%3E%3Cg id='Groupe_1648' data-name='Groupe 1648'%3E%3Cg id='Groupe_1647' data-name='Groupe 1647' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_2838' data-name='Rectangle 2838' width='11.425' height='11.425' transform='translate(0.001 3.254) rotate(-16.55)' fill='%23ffbc4d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1652' data-name='Groupe 1652' transform='translate(267.84 0.894)' opacity='0.45'%3E%3Cg id='Groupe_1651' data-name='Groupe 1651'%3E%3Cg id='Groupe_1650' data-name='Groupe 1650' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_2840' data-name='Rectangle 2840' width='11.274' height='11.273' transform='translate(0 3.39) rotate(-17.5)' fill='%23ffbe50'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1655' data-name='Groupe 1655' transform='translate(249.984 0.93)' opacity='0.428'%3E%3Cg id='Groupe_1654' data-name='Groupe 1654'%3E%3Cg id='Groupe_1653' data-name='Groupe 1653' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_2842' data-name='Rectangle 2842' width='11.125' height='11.125' transform='matrix(0.948, -0.317, 0.317, 0.948, 0, 3.526)' fill='%23ffbf53'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1658' data-name='Groupe 1658' transform='translate(232.127 0.965)' opacity='0.406'%3E%3Cg id='Groupe_1657' data-name='Groupe 1657'%3E%3Cg id='Groupe_1656' data-name='Groupe 1656' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_2844' data-name='Rectangle 2844' width='10.979' height='10.979' transform='matrix(0.943, -0.333, 0.333, 0.943, 0, 3.661)' fill='%23ffc056'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1661' data-name='Groupe 1661' transform='translate(214.272 1.001)' opacity='0.384'%3E%3Cg id='Groupe_1660' data-name='Groupe 1660'%3E%3Cg id='Groupe_1659' data-name='Groupe 1659' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_2846' data-name='Rectangle 2846' width='10.837' height='10.837' transform='translate(0 3.797) rotate(-20.507)' fill='%23ffc159'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1664' data-name='Groupe 1664' transform='translate(196.416 1.037)' opacity='0.362'%3E%3Cg id='Groupe_1663' data-name='Groupe 1663'%3E%3Cg id='Groupe_1662' data-name='Groupe 1662' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_2848' data-name='Rectangle 2848' width='10.699' height='10.699' transform='translate(0 3.932) rotate(-21.565)' fill='%23ffc25d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1667' data-name='Groupe 1667' transform='translate(178.559 1.073)' opacity='0.34'%3E%3Cg id='Groupe_1666' data-name='Groupe 1666'%3E%3Cg id='Groupe_1665' data-name='Groupe 1665' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_2850' data-name='Rectangle 2850' width='10.565' height='10.565' transform='translate(0 4.068) rotate(-22.647)' fill='%23ffc460'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1670' data-name='Groupe 1670' transform='translate(160.704 1.108)' opacity='0.318'%3E%3Cg id='Groupe_1669' data-name='Groupe 1669'%3E%3Cg id='Groupe_1668' data-name='Groupe 1668' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_2852' data-name='Rectangle 2852' width='10.434' height='10.434' transform='translate(0 4.204) rotate(-23.759)' fill='%23ffc563'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1673' data-name='Groupe 1673' transform='translate(142.848 1.144)' opacity='0.296'%3E%3Cg id='Groupe_1672' data-name='Groupe 1672'%3E%3Cg id='Groupe_1671' data-name='Groupe 1671' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_2854' data-name='Rectangle 2854' width='10.307' height='10.307' transform='translate(0 4.34) rotate(-24.899)' fill='%23ffc666'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1676' data-name='Groupe 1676' transform='translate(124.992 1.18)' opacity='0.274'%3E%3Cg id='Groupe_1675' data-name='Groupe 1675'%3E%3Cg id='Groupe_1674' data-name='Groupe 1674' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_2856' data-name='Rectangle 2856' width='10.184' height='10.184' transform='matrix(0.898, -0.439, 0.439, 0.898, 0, 4.474)' fill='%23ffc769'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1679' data-name='Groupe 1679' transform='translate(107.136 1.216)' opacity='0.252'%3E%3Cg id='Groupe_1678' data-name='Groupe 1678'%3E%3Cg id='Groupe_1677' data-name='Groupe 1677' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_2858' data-name='Rectangle 2858' width='10.066' height='10.067' transform='translate(0 4.61) rotate(-27.256)' fill='%23ffc86c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1682' data-name='Groupe 1682' transform='translate(89.28 1.251)' opacity='0.23'%3E%3Cg id='Groupe_1681' data-name='Groupe 1681'%3E%3Cg id='Groupe_1680' data-name='Groupe 1680' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_2860' data-name='Rectangle 2860' width='9.953' height='9.953' transform='translate(0 4.746) rotate(-28.48)' fill='%23ffc970'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1685' data-name='Groupe 1685' transform='translate(71.424 1.287)' opacity='0.208'%3E%3Cg id='Groupe_1684' data-name='Groupe 1684'%3E%3Cg id='Groupe_1683' data-name='Groupe 1683' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_2862' data-name='Rectangle 2862' width='9.843' height='9.843' transform='translate(0 4.882) rotate(-29.731)' fill='%23ffcb73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1688' data-name='Groupe 1688' transform='translate(53.568 1.323)' opacity='0.186'%3E%3Cg id='Groupe_1687' data-name='Groupe 1687'%3E%3Cg id='Groupe_1686' data-name='Groupe 1686' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_2864' data-name='Rectangle 2864' width='9.739' height='9.739' transform='translate(0 5.017) rotate(-31.01)' fill='%23ffcc76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1691' data-name='Groupe 1691' transform='translate(35.712 1.359)' opacity='0.164'%3E%3Cg id='Groupe_1690' data-name='Groupe 1690'%3E%3Cg id='Groupe_1689' data-name='Groupe 1689' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_2866' data-name='Rectangle 2866' width='9.64' height='9.639' transform='translate(0 5.153) rotate(-32.315)' fill='%23ffcd79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1694' data-name='Groupe 1694' transform='translate(17.856 1.395)' opacity='0.142'%3E%3Cg id='Groupe_1693' data-name='Groupe 1693'%3E%3Cg id='Groupe_1692' data-name='Groupe 1692' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_2868' data-name='Rectangle 2868' width='9.545' height='9.546' transform='matrix(0.833, -0.554, 0.554, 0.833, 0, 5.288)' fill='%23ffce7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1697' data-name='Groupe 1697' transform='translate(0 1.43)' opacity='0.12'%3E%3Cg id='Groupe_1696' data-name='Groupe 1696'%3E%3Cg id='Groupe_1695' data-name='Groupe 1695' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_2870' data-name='Rectangle 2870' width='9.456' height='9.456' transform='translate(0 5.424) rotate(-34.999)' fill='%23ffd080'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.separator .bg.yellow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='683' height='14.746' viewBox='0 0 683 14.746'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3397' data-name='Rectangle 3397' width='683' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3314' data-name='Rectangle 3314' width='14.746' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3316' data-name='Rectangle 3316' width='14.685' height='14.685' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3318' data-name='Rectangle 3318' width='14.625' height='14.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3320' data-name='Rectangle 3320' width='14.564' height='14.564' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3322' data-name='Rectangle 3322' width='14.503' height='14.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3324' data-name='Rectangle 3324' width='14.443' height='14.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3326' data-name='Rectangle 3326' width='14.382' height='14.382' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3328' data-name='Rectangle 3328' width='14.322' height='14.322' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3330' data-name='Rectangle 3330' width='14.261' height='14.261' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3332' data-name='Rectangle 3332' width='14.201' height='14.201' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3334' data-name='Rectangle 3334' width='14.14' height='14.14' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_3336' data-name='Rectangle 3336' width='14.079' height='14.079' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_3338' data-name='Rectangle 3338' width='14.019' height='14.019' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3340' data-name='Rectangle 3340' width='13.958' height='13.958' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_3342' data-name='Rectangle 3342' width='13.898' height='13.898' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_3344' data-name='Rectangle 3344' width='13.837' height='13.837' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_3346' data-name='Rectangle 3346' width='13.776' height='13.776' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_3348' data-name='Rectangle 3348' width='13.716' height='13.716' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_3350' data-name='Rectangle 3350' width='13.655' height='13.655' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_3352' data-name='Rectangle 3352' width='13.595' height='13.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_3354' data-name='Rectangle 3354' width='13.534' height='13.534' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_3356' data-name='Rectangle 3356' width='13.474' height='13.473' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_3358' data-name='Rectangle 3358' width='13.413' height='13.413' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_3360' data-name='Rectangle 3360' width='13.352' height='13.352' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_3362' data-name='Rectangle 3362' width='13.292' height='13.292' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_3364' data-name='Rectangle 3364' width='13.231' height='13.231' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_3366' data-name='Rectangle 3366' width='13.171' height='13.17' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_3368' data-name='Rectangle 3368' width='13.11' height='13.11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_3370' data-name='Rectangle 3370' width='13.049' height='13.049' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_3372' data-name='Rectangle 3372' width='12.989' height='12.989' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_3374' data-name='Rectangle 3374' width='12.928' height='12.928' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_3376' data-name='Rectangle 3376' width='12.868' height='12.868' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_3378' data-name='Rectangle 3378' width='12.807' height='12.807' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_3380' data-name='Rectangle 3380' width='12.746' height='12.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_3382' data-name='Rectangle 3382' width='12.686' height='12.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_3384' data-name='Rectangle 3384' width='12.625' height='12.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_3386' data-name='Rectangle 3386' width='12.565' height='12.565' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_3388' data-name='Rectangle 3388' width='12.504' height='12.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_3390' data-name='Rectangle 3390' width='12.444' height='12.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_3392' data-name='Rectangle 3392' width='12.383' height='12.383' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_3394' data-name='Rectangle 3394' width='12.322' height='12.322' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-yellow' transform='translate(683 14.746) rotate(180)' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2500' data-name='Groupe 2500' transform='translate(0 0)'%3E%3Cg id='Groupe_2499' data-name='Groupe 2499' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2498' data-name='Groupe 2498' transform='translate(0 0)'%3E%3Cg id='Groupe_2497' data-name='Groupe 2497' transform='translate(0 0)'%3E%3Cg id='Groupe_2496' data-name='Groupe 2496' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2375' data-name='Groupe 2375'%3E%3Cg id='Groupe_2374' data-name='Groupe 2374'%3E%3Cg id='Groupe_2373' data-name='Groupe 2373' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3313' data-name='Rectangle 3313' width='14.746' height='14.746' transform='translate(0 0)' fill='%23ffdc00'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2378' data-name='Groupe 2378' transform='translate(16.767 0.027)' opacity='0.978'%3E%3Cg id='Groupe_2377' data-name='Groupe 2377'%3E%3Cg id='Groupe_2376' data-name='Groupe 2376' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3315' data-name='Rectangle 3315' width='14.559' height='14.559' transform='matrix(1, -0.009, 0.009, 1, 0, 0.127)' fill='%23ffdc03'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2381' data-name='Groupe 2381' transform='translate(33.534 0.054)' opacity='0.956'%3E%3Cg id='Groupe_2380' data-name='Groupe 2380'%3E%3Cg id='Groupe_2379' data-name='Groupe 2379' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3317' data-name='Rectangle 3317' width='14.374' height='14.373' transform='translate(0 0.254) rotate(-1.013)' fill='%23ffdd06'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2384' data-name='Groupe 2384' transform='translate(50.301 0.081)' opacity='0.934'%3E%3Cg id='Groupe_2383' data-name='Groupe 2383'%3E%3Cg id='Groupe_2382' data-name='Groupe 2382' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3319' data-name='Rectangle 3319' width='14.188' height='14.189' transform='translate(0 0.38) rotate(-1.535)' fill='%23ffdd0a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2387' data-name='Groupe 2387' transform='translate(67.068 0.109)' opacity='0.912'%3E%3Cg id='Groupe_2386' data-name='Groupe 2386'%3E%3Cg id='Groupe_2385' data-name='Groupe 2385' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3321' data-name='Rectangle 3321' width='14.005' height='14.005' transform='translate(0 0.507) rotate(-2.075)' fill='%23ffde0d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2390' data-name='Groupe 2390' transform='translate(83.835 0.136)' opacity='0.89'%3E%3Cg id='Groupe_2389' data-name='Groupe 2389'%3E%3Cg id='Groupe_2388' data-name='Groupe 2388' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3323' data-name='Rectangle 3323' width='13.823' height='13.823' transform='matrix(0.999, -0.046, 0.046, 0.999, 0, 0.635)' fill='%23ffde10'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2393' data-name='Groupe 2393' transform='translate(100.602 0.163)' opacity='0.868'%3E%3Cg id='Groupe_2392' data-name='Groupe 2392'%3E%3Cg id='Groupe_2391' data-name='Groupe 2391' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3325' data-name='Rectangle 3325' width='13.642' height='13.642' transform='translate(0 0.761) rotate(-3.199)' fill='%23ffdf13'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2396' data-name='Groupe 2396' transform='translate(117.368 0.19)' opacity='0.846'%3E%3Cg id='Groupe_2395' data-name='Groupe 2395'%3E%3Cg id='Groupe_2394' data-name='Groupe 2394' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3327' data-name='Rectangle 3327' width='13.463' height='13.463' transform='translate(0 0.888) rotate(-3.783)' fill='%23ffdf16'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2399' data-name='Groupe 2399' transform='translate(134.136 0.217)' opacity='0.824'%3E%3Cg id='Groupe_2398' data-name='Groupe 2398'%3E%3Cg id='Groupe_2397' data-name='Groupe 2397' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3329' data-name='Rectangle 3329' width='13.285' height='13.285' transform='translate(0 1.015) rotate(-4.383)' fill='%23ffdf1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2402' data-name='Groupe 2402' transform='translate(150.902 0.244)' opacity='0.802'%3E%3Cg id='Groupe_2401' data-name='Groupe 2401'%3E%3Cg id='Groupe_2400' data-name='Groupe 2400' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3331' data-name='Rectangle 3331' width='13.109' height='13.109' transform='translate(0.001 1.142) rotate(-4.995)' fill='%23ffe01d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2405' data-name='Groupe 2405' transform='translate(167.669 0.271)' opacity='0.78'%3E%3Cg id='Groupe_2404' data-name='Groupe 2404'%3E%3Cg id='Groupe_2403' data-name='Groupe 2403' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3333' data-name='Rectangle 3333' width='12.933' height='12.934' transform='matrix(0.995, -0.098, 0.098, 0.995, 0, 1.269)' fill='%23ffe020'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2408' data-name='Groupe 2408' transform='translate(184.437 0.299)' opacity='0.758'%3E%3Cg id='Groupe_2407' data-name='Groupe 2407'%3E%3Cg id='Groupe_2406' data-name='Groupe 2406' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_3335' data-name='Rectangle 3335' width='12.76' height='12.761' transform='translate(0 1.395) rotate(-6.278)' fill='%23ffe123'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2411' data-name='Groupe 2411' transform='translate(201.203 0.326)' opacity='0.736'%3E%3Cg id='Groupe_2410' data-name='Groupe 2410'%3E%3Cg id='Groupe_2409' data-name='Groupe 2409' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_3337' data-name='Rectangle 3337' width='12.589' height='12.589' transform='translate(0 1.522) rotate(-6.946)' fill='%23ffe126'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2414' data-name='Groupe 2414' transform='translate(217.971 0.353)' opacity='0.714'%3E%3Cg id='Groupe_2413' data-name='Groupe 2413'%3E%3Cg id='Groupe_2412' data-name='Groupe 2412' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3339' data-name='Rectangle 3339' width='12.419' height='12.419' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 1.649)' fill='%23ffe22a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2417' data-name='Groupe 2417' transform='translate(234.737 0.38)' opacity='0.692'%3E%3Cg id='Groupe_2416' data-name='Groupe 2416'%3E%3Cg id='Groupe_2415' data-name='Groupe 2415' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_3341' data-name='Rectangle 3341' width='12.251' height='12.251' transform='translate(0 1.776) rotate(-8.338)' fill='%23ffe22d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2420' data-name='Groupe 2420' transform='translate(251.504 0.407)' opacity='0.67'%3E%3Cg id='Groupe_2419' data-name='Groupe 2419'%3E%3Cg id='Groupe_2418' data-name='Groupe 2418' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_3343' data-name='Rectangle 3343' width='12.084' height='12.085' transform='translate(0 1.903) rotate(-9.059)' fill='%23ffe230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2423' data-name='Groupe 2423' transform='translate(268.271 0.434)' opacity='0.648'%3E%3Cg id='Groupe_2422' data-name='Groupe 2422'%3E%3Cg id='Groupe_2421' data-name='Groupe 2421' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_3345' data-name='Rectangle 3345' width='11.92' height='11.921' transform='translate(0.001 2.03) rotate(-9.803)' fill='%23ffe333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2426' data-name='Groupe 2426' transform='translate(285.038 0.461)' opacity='0.626'%3E%3Cg id='Groupe_2425' data-name='Groupe 2425'%3E%3Cg id='Groupe_2424' data-name='Groupe 2424' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_3347' data-name='Rectangle 3347' width='11.759' height='11.759' transform='translate(0 2.157) rotate(-10.568)' fill='%23ffe336'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2429' data-name='Groupe 2429' transform='translate(301.805 0.489)' opacity='0.604'%3E%3Cg id='Groupe_2428' data-name='Groupe 2428'%3E%3Cg id='Groupe_2427' data-name='Groupe 2427' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_3349' data-name='Rectangle 3349' width='11.599' height='11.599' transform='matrix(0.98, -0.197, 0.197, 0.98, 0, 2.284)' fill='%23ffe439'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2432' data-name='Groupe 2432' transform='translate(318.572 0.516)' opacity='0.582'%3E%3Cg id='Groupe_2431' data-name='Groupe 2431'%3E%3Cg id='Groupe_2430' data-name='Groupe 2430' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_3351' data-name='Rectangle 3351' width='11.441' height='11.441' transform='translate(0 2.411) rotate(-12.164)' fill='%23ffe43d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2435' data-name='Groupe 2435' transform='translate(335.339 0.543)' opacity='0.56'%3E%3Cg id='Groupe_2434' data-name='Groupe 2434'%3E%3Cg id='Groupe_2433' data-name='Groupe 2433' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_3353' data-name='Rectangle 3353' width='11.286' height='11.286' transform='matrix(0.974, -0.225, 0.225, 0.974, 0, 2.537)' fill='%23ffe540'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2438' data-name='Groupe 2438' transform='translate(352.105 0.57)' opacity='0.538'%3E%3Cg id='Groupe_2437' data-name='Groupe 2437'%3E%3Cg id='Groupe_2436' data-name='Groupe 2436' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_3355' data-name='Rectangle 3355' width='11.132' height='11.133' transform='matrix(0.971, -0.239, 0.239, 0.971, 0.001, 2.664)' fill='%23ffe543'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2441' data-name='Groupe 2441' transform='translate(368.873 0.597)' opacity='0.516'%3E%3Cg id='Groupe_2440' data-name='Groupe 2440'%3E%3Cg id='Groupe_2439' data-name='Groupe 2439' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_3357' data-name='Rectangle 3357' width='10.982' height='10.982' transform='matrix(0.967, -0.254, 0.254, 0.967, 0, 2.791)' fill='%23ffe546'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2444' data-name='Groupe 2444' transform='translate(385.64 0.624)' opacity='0.494'%3E%3Cg id='Groupe_2443' data-name='Groupe 2443'%3E%3Cg id='Groupe_2442' data-name='Groupe 2442' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_3359' data-name='Rectangle 3359' width='10.834' height='10.834' transform='translate(0 2.918) rotate(-15.623)' fill='%23ffe649'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2447' data-name='Groupe 2447' transform='translate(402.406 0.651)' opacity='0.472'%3E%3Cg id='Groupe_2446' data-name='Groupe 2446'%3E%3Cg id='Groupe_2445' data-name='Groupe 2445' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_3361' data-name='Rectangle 3361' width='10.689' height='10.689' transform='translate(0 3.045) rotate(-16.55)' fill='%23ffe74d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2450' data-name='Groupe 2450' transform='translate(419.174 0.678)' opacity='0.45'%3E%3Cg id='Groupe_2449' data-name='Groupe 2449'%3E%3Cg id='Groupe_2448' data-name='Groupe 2448' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_3363' data-name='Rectangle 3363' width='10.548' height='10.548' transform='translate(0 3.172) rotate(-17.5)' fill='%23ffe750'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2453' data-name='Groupe 2453' transform='translate(435.94 0.706)' opacity='0.428'%3E%3Cg id='Groupe_2452' data-name='Groupe 2452'%3E%3Cg id='Groupe_2451' data-name='Groupe 2451' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_3365' data-name='Rectangle 3365' width='10.409' height='10.408' transform='translate(0 3.299) rotate(-18.478)' fill='%23ffe753'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2456' data-name='Groupe 2456' transform='translate(452.707 0.733)' opacity='0.406'%3E%3Cg id='Groupe_2455' data-name='Groupe 2455'%3E%3Cg id='Groupe_2454' data-name='Groupe 2454' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_3367' data-name='Rectangle 3367' width='10.272' height='10.272' transform='translate(0 3.425) rotate(-19.477)' fill='%23ffe856'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2459' data-name='Groupe 2459' transform='translate(469.475 0.76)' opacity='0.384'%3E%3Cg id='Groupe_2458' data-name='Groupe 2458'%3E%3Cg id='Groupe_2457' data-name='Groupe 2457' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_3369' data-name='Rectangle 3369' width='10.14' height='10.14' transform='translate(0 3.552) rotate(-20.507)' fill='%23ffe859'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2462' data-name='Groupe 2462' transform='translate(486.241 0.787)' opacity='0.362'%3E%3Cg id='Groupe_2461' data-name='Groupe 2461'%3E%3Cg id='Groupe_2460' data-name='Groupe 2460' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_3371' data-name='Rectangle 3371' width='10.01' height='10.01' transform='translate(0 3.679) rotate(-21.564)' fill='%23ffe95d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2465' data-name='Groupe 2465' transform='translate(503.008 0.814)' opacity='0.34'%3E%3Cg id='Groupe_2464' data-name='Groupe 2464'%3E%3Cg id='Groupe_2463' data-name='Groupe 2463' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_3373' data-name='Rectangle 3373' width='9.884' height='9.884' transform='matrix(0.923, -0.385, 0.385, 0.923, 0, 3.806)' fill='%23ffe960'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2468' data-name='Groupe 2468' transform='translate(519.775 0.841)' opacity='0.318'%3E%3Cg id='Groupe_2467' data-name='Groupe 2467'%3E%3Cg id='Groupe_2466' data-name='Groupe 2466' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_3375' data-name='Rectangle 3375' width='9.762' height='9.762' transform='matrix(0.915, -0.403, 0.403, 0.915, 0, 3.933)' fill='%23ffea63'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2471' data-name='Groupe 2471' transform='translate(536.542 0.868)' opacity='0.296'%3E%3Cg id='Groupe_2470' data-name='Groupe 2470'%3E%3Cg id='Groupe_2469' data-name='Groupe 2469' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_3377' data-name='Rectangle 3377' width='9.644' height='9.643' transform='translate(0 4.06) rotate(-24.899)' fill='%23ffea66'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2474' data-name='Groupe 2474' transform='translate(553.309 0.896)' opacity='0.274'%3E%3Cg id='Groupe_2473' data-name='Groupe 2473'%3E%3Cg id='Groupe_2472' data-name='Groupe 2472' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_3379' data-name='Rectangle 3379' width='9.528' height='9.529' transform='matrix(0.898, -0.439, 0.439, 0.898, 0, 4.187)' fill='%23ffea69'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2477' data-name='Groupe 2477' transform='translate(570.076 0.923)' opacity='0.252'%3E%3Cg id='Groupe_2476' data-name='Groupe 2476'%3E%3Cg id='Groupe_2475' data-name='Groupe 2475' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_3381' data-name='Rectangle 3381' width='9.418' height='9.418' transform='translate(0 4.313) rotate(-27.256)' fill='%23ffeb6c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2480' data-name='Groupe 2480' transform='translate(586.843 0.95)' opacity='0.23'%3E%3Cg id='Groupe_2479' data-name='Groupe 2479'%3E%3Cg id='Groupe_2478' data-name='Groupe 2478' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_3383' data-name='Rectangle 3383' width='9.312' height='9.312' transform='translate(0 4.44) rotate(-28.48)' fill='%23ffeb70'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2483' data-name='Groupe 2483' transform='translate(603.61 0.977)' opacity='0.208'%3E%3Cg id='Groupe_2482' data-name='Groupe 2482'%3E%3Cg id='Groupe_2481' data-name='Groupe 2481' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_3385' data-name='Rectangle 3385' width='9.21' height='9.21' transform='matrix(0.868, -0.496, 0.496, 0.868, 0, 4.567)' fill='%23ffec73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2486' data-name='Groupe 2486' transform='translate(620.377 1.004)' opacity='0.186'%3E%3Cg id='Groupe_2485' data-name='Groupe 2485'%3E%3Cg id='Groupe_2484' data-name='Groupe 2484' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_3387' data-name='Rectangle 3387' width='9.112' height='9.112' transform='translate(0 4.694) rotate(-31.01)' fill='%23ffec76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2489' data-name='Groupe 2489' transform='translate(637.143 1.031)' opacity='0.164'%3E%3Cg id='Groupe_2488' data-name='Groupe 2488'%3E%3Cg id='Groupe_2487' data-name='Groupe 2487' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_3389' data-name='Rectangle 3389' width='9.019' height='9.019' transform='matrix(0.845, -0.535, 0.535, 0.845, 0, 4.822)' fill='%23ffed79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2492' data-name='Groupe 2492' transform='translate(653.911 1.058)' opacity='0.142'%3E%3Cg id='Groupe_2491' data-name='Groupe 2491'%3E%3Cg id='Groupe_2490' data-name='Groupe 2490' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_3391' data-name='Rectangle 3391' width='8.93' height='8.931' transform='translate(0 4.947) rotate(-33.641)' fill='%23ffed7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2495' data-name='Groupe 2495' transform='translate(670.678 1.086)' opacity='0.12'%3E%3Cg id='Groupe_2494' data-name='Groupe 2494'%3E%3Cg id='Groupe_2493' data-name='Groupe 2493' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_3393' data-name='Rectangle 3393' width='8.847' height='8.847' transform='matrix(0.819, -0.574, 0.574, 0.819, 0, 5.075)' fill='%23ffed80'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.separator .bg.cyan {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='683' height='14.746' viewBox='0 0 683 14.746'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3312' data-name='Rectangle 3312' width='683' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3229' data-name='Rectangle 3229' width='14.746' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3231' data-name='Rectangle 3231' width='14.685' height='14.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3233' data-name='Rectangle 3233' width='14.625' height='14.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3235' data-name='Rectangle 3235' width='14.564' height='14.564' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3237' data-name='Rectangle 3237' width='14.503' height='14.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3239' data-name='Rectangle 3239' width='14.443' height='14.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3241' data-name='Rectangle 3241' width='14.382' height='14.382' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3243' data-name='Rectangle 3243' width='14.322' height='14.322' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3245' data-name='Rectangle 3245' width='14.261' height='14.261' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3247' data-name='Rectangle 3247' width='14.201' height='14.201' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3249' data-name='Rectangle 3249' width='14.14' height='14.14' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_3251' data-name='Rectangle 3251' width='14.079' height='14.08' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_3253' data-name='Rectangle 3253' width='14.019' height='14.019' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3255' data-name='Rectangle 3255' width='13.958' height='13.958' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_3257' data-name='Rectangle 3257' width='13.898' height='13.898' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_3259' data-name='Rectangle 3259' width='13.837' height='13.837' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_3261' data-name='Rectangle 3261' width='13.776' height='13.777' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_3263' data-name='Rectangle 3263' width='13.716' height='13.716' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_3265' data-name='Rectangle 3265' width='13.655' height='13.655' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_3267' data-name='Rectangle 3267' width='13.595' height='13.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_3269' data-name='Rectangle 3269' width='13.534' height='13.534' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_3271' data-name='Rectangle 3271' width='13.474' height='13.474' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_3273' data-name='Rectangle 3273' width='13.413' height='13.413' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_3275' data-name='Rectangle 3275' width='13.352' height='13.352' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_3277' data-name='Rectangle 3277' width='13.292' height='13.292' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_3279' data-name='Rectangle 3279' width='13.231' height='13.231' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_3281' data-name='Rectangle 3281' width='13.171' height='13.171' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_3283' data-name='Rectangle 3283' width='13.11' height='13.11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_3285' data-name='Rectangle 3285' width='13.049' height='13.049' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_3287' data-name='Rectangle 3287' width='12.989' height='12.989' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_3289' data-name='Rectangle 3289' width='12.928' height='12.928' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_3291' data-name='Rectangle 3291' width='12.868' height='12.868' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_3293' data-name='Rectangle 3293' width='12.807' height='12.807' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_3295' data-name='Rectangle 3295' width='12.746' height='12.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_3297' data-name='Rectangle 3297' width='12.686' height='12.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_3299' data-name='Rectangle 3299' width='12.625' height='12.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_3301' data-name='Rectangle 3301' width='12.565' height='12.565' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_3303' data-name='Rectangle 3303' width='12.504' height='12.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_3305' data-name='Rectangle 3305' width='12.444' height='12.444' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_3307' data-name='Rectangle 3307' width='12.383' height='12.383' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_3309' data-name='Rectangle 3309' width='12.322' height='12.322' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-blue-right' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2369' data-name='Groupe 2369' transform='translate(0 0)'%3E%3Cg id='Groupe_2368' data-name='Groupe 2368' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2367' data-name='Groupe 2367' transform='translate(0 0)'%3E%3Cg id='Groupe_2366' data-name='Groupe 2366' transform='translate(0 0)'%3E%3Cg id='Groupe_2365' data-name='Groupe 2365' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2244' data-name='Groupe 2244' transform='translate(668.254)'%3E%3Cg id='Groupe_2243' data-name='Groupe 2243'%3E%3Cg id='Groupe_2242' data-name='Groupe 2242' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3228' data-name='Rectangle 3228' width='14.746' height='14.746' transform='translate(0 0)' fill='%231ed2d2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2247' data-name='Groupe 2247' transform='translate(651.548 0.027)' opacity='0.978'%3E%3Cg id='Groupe_2246' data-name='Groupe 2246'%3E%3Cg id='Groupe_2245' data-name='Groupe 2245' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3230' data-name='Rectangle 3230' width='14.559' height='14.559' transform='matrix(-1, -0.009, 0.009, -1, 14.558, 14.686)' fill='%2321d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2250' data-name='Groupe 2250' transform='translate(634.841 0.054)' opacity='0.956'%3E%3Cg id='Groupe_2249' data-name='Groupe 2249'%3E%3Cg id='Groupe_2248' data-name='Groupe 2248' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3232' data-name='Rectangle 3232' width='14.374' height='14.373' transform='translate(14.371 14.625) rotate(-178.987)' fill='%2324d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2253' data-name='Groupe 2253' transform='translate(618.135 0.081)' opacity='0.934'%3E%3Cg id='Groupe_2252' data-name='Groupe 2252'%3E%3Cg id='Groupe_2251' data-name='Groupe 2251' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3234' data-name='Rectangle 3234' width='14.188' height='14.189' transform='translate(14.183 14.564) rotate(-178.465)' fill='%2327d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2256' data-name='Groupe 2256' transform='translate(601.429 0.109)' opacity='0.912'%3E%3Cg id='Groupe_2255' data-name='Groupe 2255'%3E%3Cg id='Groupe_2254' data-name='Groupe 2254' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3236' data-name='Rectangle 3236' width='14.005' height='14.005' transform='translate(13.996 14.504) rotate(-177.925)' fill='%2329d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2259' data-name='Groupe 2259' transform='translate(584.723 0.136)' opacity='0.89'%3E%3Cg id='Groupe_2258' data-name='Groupe 2258'%3E%3Cg id='Groupe_2257' data-name='Groupe 2257' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3238' data-name='Rectangle 3238' width='13.823' height='13.823' transform='matrix(-0.999, -0.046, 0.046, -0.999, 13.808, 14.443)' fill='%232cd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2262' data-name='Groupe 2262' transform='translate(568.016 0.163)' opacity='0.868'%3E%3Cg id='Groupe_2261' data-name='Groupe 2261'%3E%3Cg id='Groupe_2260' data-name='Groupe 2260' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3240' data-name='Rectangle 3240' width='13.642' height='13.642' transform='translate(13.621 14.382) rotate(-176.801)' fill='%232fd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2265' data-name='Groupe 2265' transform='translate(551.309 0.19)' opacity='0.846'%3E%3Cg id='Groupe_2264' data-name='Groupe 2264'%3E%3Cg id='Groupe_2263' data-name='Groupe 2263' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3242' data-name='Rectangle 3242' width='13.463' height='13.463' transform='translate(13.434 14.322) rotate(-176.217)' fill='%2332d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2268' data-name='Groupe 2268' transform='translate(534.604 0.217)' opacity='0.824'%3E%3Cg id='Groupe_2267' data-name='Groupe 2267'%3E%3Cg id='Groupe_2266' data-name='Groupe 2266' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3244' data-name='Rectangle 3244' width='13.285' height='13.285' transform='translate(13.246 14.261) rotate(-175.617)' fill='%2335d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2271' data-name='Groupe 2271' transform='translate(517.897 0.244)' opacity='0.802'%3E%3Cg id='Groupe_2270' data-name='Groupe 2270'%3E%3Cg id='Groupe_2269' data-name='Groupe 2269' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3246' data-name='Rectangle 3246' width='13.109' height='13.109' transform='matrix(-0.996, -0.087, 0.087, -0.996, 13.059, 14.201)' fill='%2337d7d7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2274' data-name='Groupe 2274' transform='translate(501.19 0.271)' opacity='0.78'%3E%3Cg id='Groupe_2273' data-name='Groupe 2273'%3E%3Cg id='Groupe_2272' data-name='Groupe 2272' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3248' data-name='Rectangle 3248' width='12.933' height='12.934' transform='translate(12.872 14.14) rotate(-174.372)' fill='%233ad8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2277' data-name='Groupe 2277' transform='translate(484.484 0.299)' opacity='0.758'%3E%3Cg id='Groupe_2276' data-name='Groupe 2276'%3E%3Cg id='Groupe_2275' data-name='Groupe 2275' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_3250' data-name='Rectangle 3250' width='12.76' height='12.761' transform='translate(12.684 14.08) rotate(-173.722)' fill='%233dd8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2280' data-name='Groupe 2280' transform='translate(467.778 0.326)' opacity='0.736'%3E%3Cg id='Groupe_2279' data-name='Groupe 2279'%3E%3Cg id='Groupe_2278' data-name='Groupe 2278' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_3252' data-name='Rectangle 3252' width='12.589' height='12.589' transform='translate(12.496 14.019) rotate(-173.054)' fill='%2340d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2283' data-name='Groupe 2283' transform='translate(451.072 0.353)' opacity='0.714'%3E%3Cg id='Groupe_2282' data-name='Groupe 2282'%3E%3Cg id='Groupe_2281' data-name='Groupe 2281' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3254' data-name='Rectangle 3254' width='12.419' height='12.419' transform='translate(12.309 13.958) rotate(-172.368)' fill='%2343d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2286' data-name='Groupe 2286' transform='translate(434.365 0.38)' opacity='0.692'%3E%3Cg id='Groupe_2285' data-name='Groupe 2285'%3E%3Cg id='Groupe_2284' data-name='Groupe 2284' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_3256' data-name='Rectangle 3256' width='12.251' height='12.251' transform='translate(12.121 13.898) rotate(-171.662)' fill='%2345dada'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2289' data-name='Groupe 2289' transform='translate(417.659 0.407)' opacity='0.67'%3E%3Cg id='Groupe_2288' data-name='Groupe 2288'%3E%3Cg id='Groupe_2287' data-name='Groupe 2287' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_3258' data-name='Rectangle 3258' width='12.084' height='12.085' transform='translate(11.934 13.837) rotate(-170.941)' fill='%2348dbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2292' data-name='Groupe 2292' transform='translate(400.953 0.434)' opacity='0.648'%3E%3Cg id='Groupe_2291' data-name='Groupe 2291'%3E%3Cg id='Groupe_2290' data-name='Groupe 2290' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_3260' data-name='Rectangle 3260' width='11.92' height='11.921' transform='translate(11.746 13.777) rotate(-170.197)' fill='%234bdbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2295' data-name='Groupe 2295' transform='translate(384.246 0.461)' opacity='0.626'%3E%3Cg id='Groupe_2294' data-name='Groupe 2294'%3E%3Cg id='Groupe_2293' data-name='Groupe 2293' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_3262' data-name='Rectangle 3262' width='11.759' height='11.759' transform='translate(11.559 13.716) rotate(-169.432)' fill='%234edcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2298' data-name='Groupe 2298' transform='translate(367.54 0.489)' opacity='0.604'%3E%3Cg id='Groupe_2297' data-name='Groupe 2297'%3E%3Cg id='Groupe_2296' data-name='Groupe 2296' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_3264' data-name='Rectangle 3264' width='11.599' height='11.599' transform='matrix(-0.98, -0.197, 0.197, -0.98, 11.372, 13.655)' fill='%2351dcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2301' data-name='Groupe 2301' transform='translate(350.834 0.516)' opacity='0.582'%3E%3Cg id='Groupe_2300' data-name='Groupe 2300'%3E%3Cg id='Groupe_2299' data-name='Groupe 2299' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_3266' data-name='Rectangle 3266' width='11.441' height='11.441' transform='translate(11.184 13.595) rotate(-167.836)' fill='%2353dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2304' data-name='Groupe 2304' transform='translate(334.127 0.543)' opacity='0.56'%3E%3Cg id='Groupe_2303' data-name='Groupe 2303'%3E%3Cg id='Groupe_2302' data-name='Groupe 2302' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_3268' data-name='Rectangle 3268' width='11.286' height='11.286' transform='translate(10.997 13.534) rotate(-167.006)' fill='%2356dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2307' data-name='Groupe 2307' transform='translate(317.42 0.57)' opacity='0.538'%3E%3Cg id='Groupe_2306' data-name='Groupe 2306'%3E%3Cg id='Groupe_2305' data-name='Groupe 2305' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_3270' data-name='Rectangle 3270' width='11.132' height='11.133' transform='matrix(-0.971, -0.239, 0.239, -0.971, 10.81, 13.474)' fill='%2359dede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2310' data-name='Groupe 2310' transform='translate(300.715 0.597)' opacity='0.516'%3E%3Cg id='Groupe_2309' data-name='Groupe 2309'%3E%3Cg id='Groupe_2308' data-name='Groupe 2308' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_3272' data-name='Rectangle 3272' width='10.982' height='10.982' transform='matrix(-0.967, -0.254, 0.254, -0.967, 10.622, 13.413)' fill='%235cdede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2313' data-name='Groupe 2313' transform='translate(284.008 0.624)' opacity='0.494'%3E%3Cg id='Groupe_2312' data-name='Groupe 2312'%3E%3Cg id='Groupe_2311' data-name='Groupe 2311' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_3274' data-name='Rectangle 3274' width='10.834' height='10.835' transform='translate(10.434 13.352) rotate(-164.377)' fill='%235fdfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2316' data-name='Groupe 2316' transform='translate(267.301 0.651)' opacity='0.472'%3E%3Cg id='Groupe_2315' data-name='Groupe 2315'%3E%3Cg id='Groupe_2314' data-name='Groupe 2314' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_3276' data-name='Rectangle 3276' width='10.689' height='10.689' transform='translate(10.247 13.292) rotate(-163.45)' fill='%2361dfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2319' data-name='Groupe 2319' transform='translate(250.596 0.678)' opacity='0.45'%3E%3Cg id='Groupe_2318' data-name='Groupe 2318'%3E%3Cg id='Groupe_2317' data-name='Groupe 2317' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_3278' data-name='Rectangle 3278' width='10.548' height='10.548' transform='translate(10.059 13.231) rotate(-162.5)' fill='%2364e0e0'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2322' data-name='Groupe 2322' transform='translate(233.889 0.706)' opacity='0.428'%3E%3Cg id='Groupe_2321' data-name='Groupe 2321'%3E%3Cg id='Groupe_2320' data-name='Groupe 2320' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_3280' data-name='Rectangle 3280' width='10.408' height='10.408' transform='translate(9.872 13.171) rotate(-161.522)' fill='%2367e1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2325' data-name='Groupe 2325' transform='translate(217.183 0.733)' opacity='0.406'%3E%3Cg id='Groupe_2324' data-name='Groupe 2324'%3E%3Cg id='Groupe_2323' data-name='Groupe 2323' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_3282' data-name='Rectangle 3282' width='10.272' height='10.272' transform='translate(9.684 13.11) rotate(-160.523)' fill='%236ae1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2328' data-name='Groupe 2328' transform='translate(200.476 0.76)' opacity='0.384'%3E%3Cg id='Groupe_2327' data-name='Groupe 2327'%3E%3Cg id='Groupe_2326' data-name='Groupe 2326' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_3284' data-name='Rectangle 3284' width='10.139' height='10.14' transform='matrix(-0.937, -0.35, 0.35, -0.937, 9.497, 13.049)' fill='%236de2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2331' data-name='Groupe 2331' transform='translate(183.77 0.787)' opacity='0.362'%3E%3Cg id='Groupe_2330' data-name='Groupe 2330'%3E%3Cg id='Groupe_2329' data-name='Groupe 2329' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_3286' data-name='Rectangle 3286' width='10.01' height='10.01' transform='translate(9.31 12.989) rotate(-158.436)' fill='%2370e2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2334' data-name='Groupe 2334' transform='translate(167.064 0.814)' opacity='0.34'%3E%3Cg id='Groupe_2333' data-name='Groupe 2333'%3E%3Cg id='Groupe_2332' data-name='Groupe 2332' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_3288' data-name='Rectangle 3288' width='9.884' height='9.885' transform='translate(9.122 12.928) rotate(-157.353)' fill='%2372e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2337' data-name='Groupe 2337' transform='translate(150.357 0.841)' opacity='0.318'%3E%3Cg id='Groupe_2336' data-name='Groupe 2336'%3E%3Cg id='Groupe_2335' data-name='Groupe 2335' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_3290' data-name='Rectangle 3290' width='9.762' height='9.762' transform='translate(8.935 12.868) rotate(-156.241)' fill='%2375e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2340' data-name='Groupe 2340' transform='translate(133.651 0.868)' opacity='0.296'%3E%3Cg id='Groupe_2339' data-name='Groupe 2339'%3E%3Cg id='Groupe_2338' data-name='Groupe 2338' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_3292' data-name='Rectangle 3292' width='9.644' height='9.643' transform='translate(8.747 12.807) rotate(-155.101)' fill='%2378e4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2343' data-name='Groupe 2343' transform='translate(116.945 0.896)' opacity='0.274'%3E%3Cg id='Groupe_2342' data-name='Groupe 2342'%3E%3Cg id='Groupe_2341' data-name='Groupe 2341' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_3294' data-name='Rectangle 3294' width='9.528' height='9.529' transform='translate(8.559 12.746) rotate(-153.937)' fill='%237be4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2346' data-name='Groupe 2346' transform='translate(100.238 0.923)' opacity='0.252'%3E%3Cg id='Groupe_2345' data-name='Groupe 2345'%3E%3Cg id='Groupe_2344' data-name='Groupe 2344' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_3296' data-name='Rectangle 3296' width='9.418' height='9.419' transform='translate(8.372 12.686) rotate(-152.744)' fill='%237ee5e5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2349' data-name='Groupe 2349' transform='translate(83.532 0.95)' opacity='0.23'%3E%3Cg id='Groupe_2348' data-name='Groupe 2348'%3E%3Cg id='Groupe_2347' data-name='Groupe 2347' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_3298' data-name='Rectangle 3298' width='9.312' height='9.312' transform='matrix(-0.879, -0.477, 0.477, -0.879, 8.185, 12.625)' fill='%2381e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2352' data-name='Groupe 2352' transform='translate(66.826 0.977)' opacity='0.208'%3E%3Cg id='Groupe_2351' data-name='Groupe 2351'%3E%3Cg id='Groupe_2350' data-name='Groupe 2350' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_3300' data-name='Rectangle 3300' width='9.21' height='9.21' transform='matrix(-0.868, -0.496, 0.496, -0.868, 7.997, 12.565)' fill='%2383e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2355' data-name='Groupe 2355' transform='translate(50.119 1.004)' opacity='0.186'%3E%3Cg id='Groupe_2354' data-name='Groupe 2354'%3E%3Cg id='Groupe_2353' data-name='Groupe 2353' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_3302' data-name='Rectangle 3302' width='9.112' height='9.112' transform='matrix(-0.857, -0.515, 0.515, -0.857, 7.81, 12.504)' fill='%2386e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2358' data-name='Groupe 2358' transform='translate(33.412 1.031)' opacity='0.164'%3E%3Cg id='Groupe_2357' data-name='Groupe 2357'%3E%3Cg id='Groupe_2356' data-name='Groupe 2356' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_3304' data-name='Rectangle 3304' width='9.019' height='9.019' transform='translate(7.623 12.443) rotate(-147.685)' fill='%2389e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2361' data-name='Groupe 2361' transform='translate(16.707 1.058)' opacity='0.142'%3E%3Cg id='Groupe_2360' data-name='Groupe 2360'%3E%3Cg id='Groupe_2359' data-name='Groupe 2359' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_3306' data-name='Rectangle 3306' width='8.93' height='8.931' transform='translate(7.435 12.383) rotate(-146.359)' fill='%238ce8e8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2364' data-name='Groupe 2364' transform='translate(0 1.086)' opacity='0.12'%3E%3Cg id='Groupe_2363' data-name='Groupe 2363'%3E%3Cg id='Groupe_2362' data-name='Groupe 2362' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_3308' data-name='Rectangle 3308' width='8.847' height='8.847' transform='matrix(-0.819, -0.574, 0.574, -0.819, 7.248, 12.322)' fill='%238fe9e9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.separator .bg.blue {
  background-image: url("data:image/svg+xml,%3Csvg id='Divider-blue' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='730' height='17.996' viewBox='0 0 730 17.996'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_2959' data-name='Rectangle 2959' width='730' height='17.996' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_2876' data-name='Rectangle 2876' width='15.761' height='17.996' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_2878' data-name='Rectangle 2878' width='15.696' height='17.922' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_2880' data-name='Rectangle 2880' width='15.631' height='17.848' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_2882' data-name='Rectangle 2882' width='15.566' height='17.774' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_2884' data-name='Rectangle 2884' width='15.501' height='17.7' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_2886' data-name='Rectangle 2886' width='15.437' height='17.626' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_2888' data-name='Rectangle 2888' width='15.372' height='17.552' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_2890' data-name='Rectangle 2890' width='15.308' height='17.478' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_2892' data-name='Rectangle 2892' width='15.242' height='17.404' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_2894' data-name='Rectangle 2894' width='15.178' height='17.331' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_2896' data-name='Rectangle 2896' width='15.113' height='17.257' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_2898' data-name='Rectangle 2898' width='15.048' height='17.183' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_2900' data-name='Rectangle 2900' width='14.984' height='17.109' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_2902' data-name='Rectangle 2902' width='14.918' height='17.035' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_2904' data-name='Rectangle 2904' width='14.854' height='16.961' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_2906' data-name='Rectangle 2906' width='14.789' height='16.887' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_2908' data-name='Rectangle 2908' width='14.724' height='16.813' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_2910' data-name='Rectangle 2910' width='14.66' height='16.739' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_2912' data-name='Rectangle 2912' width='14.595' height='16.665' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_2914' data-name='Rectangle 2914' width='14.53' height='16.591' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_2916' data-name='Rectangle 2916' width='14.465' height='16.517' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_2918' data-name='Rectangle 2918' width='14.401' height='16.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_2920' data-name='Rectangle 2920' width='14.336' height='16.369' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_2922' data-name='Rectangle 2922' width='14.271' height='16.295' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_2924' data-name='Rectangle 2924' width='14.207' height='16.221' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_2926' data-name='Rectangle 2926' width='14.141' height='16.147' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_2928' data-name='Rectangle 2928' width='14.077' height='16.073' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_2930' data-name='Rectangle 2930' width='14.012' height='15.999' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_2932' data-name='Rectangle 2932' width='13.947' height='15.926' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_2934' data-name='Rectangle 2934' width='13.883' height='15.852' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_2936' data-name='Rectangle 2936' width='13.817' height='15.778' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_2938' data-name='Rectangle 2938' width='13.753' height='15.704' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_2940' data-name='Rectangle 2940' width='13.688' height='15.63' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_2942' data-name='Rectangle 2942' width='13.623' height='15.556' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_2944' data-name='Rectangle 2944' width='13.559' height='15.482' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_2946' data-name='Rectangle 2946' width='13.494' height='15.408' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_2948' data-name='Rectangle 2948' width='13.429' height='15.334' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_2950' data-name='Rectangle 2950' width='13.364' height='15.26' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_2952' data-name='Rectangle 2952' width='13.3' height='15.186' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_2954' data-name='Rectangle 2954' width='13.235' height='15.112' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_2956' data-name='Rectangle 2956' width='13.17' height='15.038' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Groupe_1833' data-name='Groupe 1833' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1832' data-name='Groupe 1832' transform='translate(0 0)'%3E%3Cg id='Groupe_1831' data-name='Groupe 1831' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1830' data-name='Groupe 1830' transform='translate(0 0)'%3E%3Cg id='Groupe_1829' data-name='Groupe 1829'%3E%3Cg id='Groupe_1828' data-name='Groupe 1828' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1707' data-name='Groupe 1707' transform='translate(714.239)'%3E%3Cg id='Groupe_1706' data-name='Groupe 1706'%3E%3Cg id='Groupe_1705' data-name='Groupe 1705' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_2875' data-name='Rectangle 2875' width='15.761' height='17.996' transform='translate(0 0)' fill='%231ed2d2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1710' data-name='Groupe 1710' transform='translate(696.383 0.033)' opacity='0.978'%3E%3Cg id='Groupe_1709' data-name='Groupe 1709'%3E%3Cg id='Groupe_1708' data-name='Groupe 1708' clip-path='url(%23clip-path-5)'%3E%3Cpath id='Tracé_2101' data-name='Tracé 2101' d='M0,0,15.561.019l.019,17.768L.019,17.768Z' transform='matrix(-1, -0.009, 0.009, -1, 15.56, 17.922)' fill='%2321d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1713' data-name='Groupe 1713' transform='translate(678.527 0.066)' opacity='0.956'%3E%3Cg id='Groupe_1712' data-name='Groupe 1712'%3E%3Cg id='Groupe_1711' data-name='Groupe 1711' clip-path='url(%23clip-path-6)'%3E%3Cpath id='Tracé_2102' data-name='Tracé 2102' d='M0,0,15.363.039,15.4,17.579.039,17.541Z' transform='translate(15.36 17.848) rotate(-178.987)' fill='%2324d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1716' data-name='Groupe 1716' transform='translate(660.671 0.099)' opacity='0.934'%3E%3Cg id='Groupe_1715' data-name='Groupe 1715'%3E%3Cg id='Groupe_1714' data-name='Groupe 1714' clip-path='url(%23clip-path-7)'%3E%3Cpath id='Tracé_2103' data-name='Tracé 2103' d='M0,0,15.166.058l.058,17.315L.058,17.315Z' transform='translate(15.16 17.774) rotate(-178.465)' fill='%2327d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1719' data-name='Groupe 1719' transform='translate(642.815 0.132)' opacity='0.912'%3E%3Cg id='Groupe_1718' data-name='Groupe 1718'%3E%3Cg id='Groupe_1717' data-name='Groupe 1717' clip-path='url(%23clip-path-8)'%3E%3Cpath id='Tracé_2104' data-name='Tracé 2104' d='M0,0,14.972.077l.077,17.089L.077,17.089Z' transform='translate(14.959 17.7) rotate(-177.925)' fill='%2329d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1722' data-name='Groupe 1722' transform='translate(624.96 0.166)' opacity='0.89'%3E%3Cg id='Groupe_1721' data-name='Groupe 1721'%3E%3Cg id='Groupe_1720' data-name='Groupe 1720' clip-path='url(%23clip-path-9)'%3E%3Cpath id='Tracé_2105' data-name='Tracé 2105' d='M0,0,14.779.1l.1,16.865L.1,16.865Z' transform='matrix(-0.999, -0.046, 0.046, -0.999, 14.759, 17.626)' fill='%232cd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1725' data-name='Groupe 1725' transform='translate(607.103 0.199)' opacity='0.868'%3E%3Cg id='Groupe_1724' data-name='Groupe 1724'%3E%3Cg id='Groupe_1723' data-name='Groupe 1723' clip-path='url(%23clip-path-10)'%3E%3Cpath id='Tracé_2106' data-name='Tracé 2106' d='M0,0,14.587.115,14.7,16.758.115,16.642Z' transform='translate(14.559 17.552) rotate(-176.801)' fill='%232fd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1728' data-name='Groupe 1728' transform='translate(589.247 0.232)' opacity='0.846'%3E%3Cg id='Groupe_1727' data-name='Groupe 1727'%3E%3Cg id='Groupe_1726' data-name='Groupe 1726' clip-path='url(%23clip-path-11)'%3E%3Cpath id='Tracé_2107' data-name='Tracé 2107' d='M0,0,14.4.134l.134,16.421-14.4-.134Z' transform='translate(14.358 17.478) rotate(-176.217)' fill='%2332d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1731' data-name='Groupe 1731' transform='translate(571.392 0.265)' opacity='0.824'%3E%3Cg id='Groupe_1730' data-name='Groupe 1730'%3E%3Cg id='Groupe_1729' data-name='Groupe 1729' clip-path='url(%23clip-path-12)'%3E%3Cpath id='Tracé_2108' data-name='Tracé 2108' d='M0,0,14.211.153l.153,16.2L.153,16.2Z' transform='translate(14.158 17.405) rotate(-175.617)' fill='%2335d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1734' data-name='Groupe 1734' transform='translate(553.535 0.298)' opacity='0.802'%3E%3Cg id='Groupe_1733' data-name='Groupe 1733'%3E%3Cg id='Groupe_1732' data-name='Groupe 1732' clip-path='url(%23clip-path-13)'%3E%3Cpath id='Tracé_2109' data-name='Tracé 2109' d='M0,0,14.026.172,14.2,16.156.172,15.983Z' transform='matrix(-0.996, -0.087, 0.087, -0.996, 13.958, 17.331)' fill='%2337d7d7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1737' data-name='Groupe 1737' transform='translate(535.679 0.331)' opacity='0.78'%3E%3Cg id='Groupe_1736' data-name='Groupe 1736'%3E%3Cg id='Groupe_1735' data-name='Groupe 1735' clip-path='url(%23clip-path-14)'%3E%3Cpath id='Tracé_2110' data-name='Tracé 2110' d='M0,0,13.842.191l.191,15.766L.191,15.766Z' transform='translate(13.757 17.257) rotate(-174.372)' fill='%233ad8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1740' data-name='Groupe 1740' transform='translate(517.824 0.364)' opacity='0.758'%3E%3Cg id='Groupe_1739' data-name='Groupe 1739'%3E%3Cg id='Groupe_1738' data-name='Groupe 1738' clip-path='url(%23clip-path-15)'%3E%3Cpath id='Tracé_2111' data-name='Tracé 2111' d='M0,0,13.662.21l.21,15.55L.21,15.55Z' transform='translate(13.557 17.183) rotate(-173.722)' fill='%233dd8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1743' data-name='Groupe 1743' transform='translate(499.967 0.397)' opacity='0.736'%3E%3Cg id='Groupe_1742' data-name='Groupe 1742'%3E%3Cg id='Groupe_1741' data-name='Groupe 1741' clip-path='url(%23clip-path-16)'%3E%3Cpath id='Tracé_2112' data-name='Tracé 2112' d='M0,0,13.483.229l.229,15.336L.229,15.336Z' transform='translate(13.356 17.109) rotate(-173.054)' fill='%2340d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1746' data-name='Groupe 1746' transform='translate(482.112 0.431)' opacity='0.714'%3E%3Cg id='Groupe_1745' data-name='Groupe 1745'%3E%3Cg id='Groupe_1744' data-name='Groupe 1744' clip-path='url(%23clip-path-17)'%3E%3Cpath id='Tracé_2113' data-name='Tracé 2113' d='M0,0,13.307.248l.248,15.123L.248,15.123Z' transform='translate(13.156 17.035) rotate(-172.368)' fill='%2343d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1749' data-name='Groupe 1749' transform='translate(464.256 0.464)' opacity='0.692'%3E%3Cg id='Groupe_1748' data-name='Groupe 1748'%3E%3Cg id='Groupe_1747' data-name='Groupe 1747' clip-path='url(%23clip-path-18)'%3E%3Cpath id='Tracé_2114' data-name='Tracé 2114' d='M0,0,13.133.266,13.4,15.178.266,14.912Z' transform='translate(12.956 16.961) rotate(-171.662)' fill='%2345dada'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1752' data-name='Groupe 1752' transform='translate(446.399 0.497)' opacity='0.67'%3E%3Cg id='Groupe_1751' data-name='Groupe 1751'%3E%3Cg id='Groupe_1750' data-name='Groupe 1750' clip-path='url(%23clip-path-19)'%3E%3Cpath id='Tracé_2115' data-name='Tracé 2115' d='M0,0,12.961.285l.285,14.7L.285,14.7Z' transform='translate(12.755 16.887) rotate(-170.941)' fill='%2348dbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1755' data-name='Groupe 1755' transform='translate(428.544 0.53)' opacity='0.648'%3E%3Cg id='Groupe_1754' data-name='Groupe 1754'%3E%3Cg id='Groupe_1753' data-name='Groupe 1753' clip-path='url(%23clip-path-20)'%3E%3Cpath id='Tracé_2116' data-name='Tracé 2116' d='M0,0,12.793.3l.3,14.5L.3,14.5Z' transform='translate(12.554 16.813) rotate(-170.197)' fill='%234bdbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1758' data-name='Groupe 1758' transform='translate(410.688 0.563)' opacity='0.626'%3E%3Cg id='Groupe_1757' data-name='Groupe 1757'%3E%3Cg id='Groupe_1756' data-name='Groupe 1756' clip-path='url(%23clip-path-21)'%3E%3Cpath id='Tracé_2117' data-name='Tracé 2117' d='M0,0,12.628.321l.321,14.29L.321,14.29Z' transform='translate(12.354 16.739) rotate(-169.432)' fill='%234edcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1761' data-name='Groupe 1761' transform='translate(392.831 0.596)' opacity='0.604'%3E%3Cg id='Groupe_1760' data-name='Groupe 1760'%3E%3Cg id='Groupe_1759' data-name='Groupe 1759' clip-path='url(%23clip-path-22)'%3E%3Cpath id='Tracé_2118' data-name='Tracé 2118' d='M0,0,12.465.339,12.8,14.426.339,14.087Z' transform='matrix(-0.98, -0.197, 0.197, -0.98, 12.154, 16.665)' fill='%2351dcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1764' data-name='Groupe 1764' transform='translate(374.976 0.629)' opacity='0.582'%3E%3Cg id='Groupe_1763' data-name='Groupe 1763'%3E%3Cg id='Groupe_1762' data-name='Groupe 1762' clip-path='url(%23clip-path-23)'%3E%3Cpath id='Tracé_2119' data-name='Tracé 2119' d='M0,0,12.305.357l.357,13.885L.357,13.885Z' transform='translate(11.954 16.591) rotate(-167.836)' fill='%2353dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1767' data-name='Groupe 1767' transform='translate(357.12 0.662)' opacity='0.56'%3E%3Cg id='Groupe_1766' data-name='Groupe 1766'%3E%3Cg id='Groupe_1765' data-name='Groupe 1765' clip-path='url(%23clip-path-24)'%3E%3Cpath id='Tracé_2120' data-name='Tracé 2120' d='M0,0,12.149.375l.375,13.687L.375,13.687Z' transform='translate(11.754 16.517) rotate(-167.006)' fill='%2356dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1770' data-name='Groupe 1770' transform='translate(339.263 0.695)' opacity='0.538'%3E%3Cg id='Groupe_1769' data-name='Groupe 1769'%3E%3Cg id='Groupe_1768' data-name='Groupe 1768' clip-path='url(%23clip-path-25)'%3E%3Cpath id='Tracé_2121' data-name='Tracé 2121' d='M0,0,12,.392l.392,13.49-12-.392Z' transform='matrix(-0.971, -0.239, 0.239, -0.971, 11.553, 16.443)' fill='%2359dede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1773' data-name='Groupe 1773' transform='translate(321.408 0.729)' opacity='0.516'%3E%3Cg id='Groupe_1772' data-name='Groupe 1772'%3E%3Cg id='Groupe_1771' data-name='Groupe 1771' clip-path='url(%23clip-path-26)'%3E%3Cpath id='Tracé_2122' data-name='Tracé 2122' d='M0,0,11.846.409l.409,13.3L.409,13.3Z' transform='matrix(-0.967, -0.254, 0.254, -0.967, 11.352, 16.369)' fill='%235cdede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1776' data-name='Groupe 1776' transform='translate(303.552 0.762)' opacity='0.494'%3E%3Cg id='Groupe_1775' data-name='Groupe 1775'%3E%3Cg id='Groupe_1774' data-name='Groupe 1774' clip-path='url(%23clip-path-27)'%3E%3Cpath id='Tracé_2123' data-name='Tracé 2123' d='M0,0,11.7.426l.426,13.1L.426,13.1Z' transform='translate(11.152 16.295) rotate(-164.377)' fill='%235fdfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1779' data-name='Groupe 1779' transform='translate(285.695 0.795)' opacity='0.472'%3E%3Cg id='Groupe_1778' data-name='Groupe 1778'%3E%3Cg id='Groupe_1777' data-name='Groupe 1777' clip-path='url(%23clip-path-28)'%3E%3Cpath id='Tracé_2124' data-name='Tracé 2124' d='M0,0,11.556.442,12,13.356.442,12.914Z' transform='translate(10.952 16.221) rotate(-163.45)' fill='%2361dfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1782' data-name='Groupe 1782' transform='translate(267.84 0.828)' opacity='0.45'%3E%3Cg id='Groupe_1781' data-name='Groupe 1781'%3E%3Cg id='Groupe_1780' data-name='Groupe 1780' clip-path='url(%23clip-path-29)'%3E%3Cpath id='Tracé_2125' data-name='Tracé 2125' d='M0,0,11.418.459l.459,12.728L.459,12.728Z' transform='translate(10.751 16.147) rotate(-162.5)' fill='%2364e0e0'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1785' data-name='Groupe 1785' transform='translate(249.984 0.861)' opacity='0.428'%3E%3Cg id='Groupe_1784' data-name='Groupe 1784'%3E%3Cg id='Groupe_1783' data-name='Groupe 1783' clip-path='url(%23clip-path-30)'%3E%3Cpath id='Tracé_2126' data-name='Tracé 2126' d='M0,0,11.283.474l.474,12.544L.474,12.544Z' transform='translate(10.551 16.073) rotate(-161.522)' fill='%2367e1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1788' data-name='Groupe 1788' transform='translate(232.128 0.894)' opacity='0.406'%3E%3Cg id='Groupe_1787' data-name='Groupe 1787'%3E%3Cg id='Groupe_1786' data-name='Groupe 1786' clip-path='url(%23clip-path-31)'%3E%3Cpath id='Tracé_2127' data-name='Tracé 2127' d='M0,0,11.152.49l.49,12.363L.49,12.363Z' transform='translate(10.35 15.999) rotate(-160.523)' fill='%236ae1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1791' data-name='Groupe 1791' transform='translate(214.272 0.927)' opacity='0.384'%3E%3Cg id='Groupe_1790' data-name='Groupe 1790'%3E%3Cg id='Groupe_1789' data-name='Groupe 1789' clip-path='url(%23clip-path-32)'%3E%3Cpath id='Tracé_2128' data-name='Tracé 2128' d='M0,0,11.026.5l.5,12.186L.5,12.186Z' transform='matrix(-0.937, -0.35, 0.35, -0.937, 10.151, 15.926)' fill='%236de2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1794' data-name='Groupe 1794' transform='translate(196.416 0.96)' opacity='0.362'%3E%3Cg id='Groupe_1793' data-name='Groupe 1793'%3E%3Cg id='Groupe_1792' data-name='Groupe 1792' clip-path='url(%23clip-path-33)'%3E%3Cpath id='Tracé_2129' data-name='Tracé 2129' d='M0,0,10.9.519l.519,12.012-10.9-.519Z' transform='translate(9.95 15.852) rotate(-158.436)' fill='%2370e2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1797' data-name='Groupe 1797' transform='translate(178.56 0.994)' opacity='0.34'%3E%3Cg id='Groupe_1796' data-name='Groupe 1796'%3E%3Cg id='Groupe_1795' data-name='Groupe 1795' clip-path='url(%23clip-path-34)'%3E%3Cpath id='Tracé_2130' data-name='Tracé 2130' d='M0,0,10.787.533l.533,11.841L.533,11.841Z' transform='translate(9.75 15.778) rotate(-157.353)' fill='%2372e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1800' data-name='Groupe 1800' transform='translate(160.704 1.027)' opacity='0.318'%3E%3Cg id='Groupe_1799' data-name='Groupe 1799'%3E%3Cg id='Groupe_1798' data-name='Groupe 1798' clip-path='url(%23clip-path-35)'%3E%3Cpath id='Tracé_2131' data-name='Tracé 2131' d='M0,0,10.674.546l.546,11.674L.546,11.674Z' transform='translate(9.549 15.704) rotate(-156.241)' fill='%2375e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1803' data-name='Groupe 1803' transform='translate(142.848 1.06)' opacity='0.296'%3E%3Cg id='Groupe_1802' data-name='Groupe 1802'%3E%3Cg id='Groupe_1801' data-name='Groupe 1801' clip-path='url(%23clip-path-36)'%3E%3Cpath id='Tracé_2132' data-name='Tracé 2132' d='M0,0,10.567.558l.558,11.51L.558,11.51Z' transform='translate(9.349 15.63) rotate(-155.101)' fill='%2378e4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1806' data-name='Groupe 1806' transform='translate(124.992 1.093)' opacity='0.274'%3E%3Cg id='Groupe_1805' data-name='Groupe 1805'%3E%3Cg id='Groupe_1804' data-name='Groupe 1804' clip-path='url(%23clip-path-37)'%3E%3Cpath id='Tracé_2133' data-name='Tracé 2133' d='M0,0,10.463.57l.57,11.35L.57,11.35Z' transform='translate(9.148 15.556) rotate(-153.937)' fill='%237be4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1809' data-name='Groupe 1809' transform='translate(107.136 1.126)' opacity='0.252'%3E%3Cg id='Groupe_1808' data-name='Groupe 1808'%3E%3Cg id='Groupe_1807' data-name='Groupe 1807' clip-path='url(%23clip-path-38)'%3E%3Cpath id='Tracé_2134' data-name='Tracé 2134' d='M0,0,10.365.581l.581,11.195L.581,11.195Z' transform='translate(8.948 15.482) rotate(-152.744)' fill='%237ee5e5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1812' data-name='Groupe 1812' transform='translate(89.28 1.159)' opacity='0.23'%3E%3Cg id='Groupe_1811' data-name='Groupe 1811'%3E%3Cg id='Groupe_1810' data-name='Groupe 1810' clip-path='url(%23clip-path-39)'%3E%3Cpath id='Tracé_2135' data-name='Tracé 2135' d='M0,0,10.274.592l.592,11.043L.592,11.043Z' transform='matrix(-0.879, -0.477, 0.477, -0.879, 8.748, 15.408)' fill='%2381e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1815' data-name='Groupe 1815' transform='translate(71.424 1.192)' opacity='0.208'%3E%3Cg id='Groupe_1814' data-name='Groupe 1814'%3E%3Cg id='Groupe_1813' data-name='Groupe 1813' clip-path='url(%23clip-path-40)'%3E%3Cpath id='Tracé_2136' data-name='Tracé 2136' d='M0,0,10.187.6l.6,10.9L.6,10.9Z' transform='matrix(-0.868, -0.496, 0.496, -0.868, 8.547, 15.334)' fill='%2383e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1818' data-name='Groupe 1818' transform='translate(53.568 1.226)' opacity='0.186'%3E%3Cg id='Groupe_1817' data-name='Groupe 1817'%3E%3Cg id='Groupe_1816' data-name='Groupe 1816' clip-path='url(%23clip-path-41)'%3E%3Cpath id='Tracé_2137' data-name='Tracé 2137' d='M0,0,10.106.61l.61,10.754L.61,10.754Z' transform='matrix(-0.857, -0.515, 0.515, -0.857, 8.347, 15.26)' fill='%2386e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1821' data-name='Groupe 1821' transform='translate(35.712 1.259)' opacity='0.164'%3E%3Cg id='Groupe_1820' data-name='Groupe 1820'%3E%3Cg id='Groupe_1819' data-name='Groupe 1819' clip-path='url(%23clip-path-42)'%3E%3Cpath id='Tracé_2138' data-name='Tracé 2138' d='M0,0,10.031.618l.618,10.616L.618,10.616Z' transform='translate(8.147 15.186) rotate(-147.685)' fill='%2389e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1824' data-name='Groupe 1824' transform='translate(17.856 1.292)' opacity='0.142'%3E%3Cg id='Groupe_1823' data-name='Groupe 1823'%3E%3Cg id='Groupe_1822' data-name='Groupe 1822' clip-path='url(%23clip-path-43)'%3E%3Cpath id='Tracé_2139' data-name='Tracé 2139' d='M0,0,9.961.624l.624,10.484L.624,10.484Z' transform='translate(7.946 15.112) rotate(-146.359)' fill='%238ce8e8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1827' data-name='Groupe 1827' transform='translate(0 1.325)' opacity='0.12'%3E%3Cg id='Groupe_1826' data-name='Groupe 1826'%3E%3Cg id='Groupe_1825' data-name='Groupe 1825' clip-path='url(%23clip-path-44)'%3E%3Cpath id='Tracé_2140' data-name='Tracé 2140' d='M0,0,9.9.63l.63,10.356-9.9-.63Z' transform='matrix(-0.819, -0.574, 0.574, -0.819, 7.747, 15.038)' fill='%238fe9e9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.separator .bg.cmj {
  height: 45px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='683' height='44.257' viewBox='0 0 683 44.257'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_1686' data-name='Rectangle 1686' width='683' height='44.257' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-3'%3E%3Crect id='Rectangle_1518' data-name='Rectangle 1518' width='683' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_1437' data-name='Rectangle 1437' width='14.663' height='14.663' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_1439' data-name='Rectangle 1439' width='14.685' height='14.685' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_1441' data-name='Rectangle 1441' width='14.625' height='14.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_1443' data-name='Rectangle 1443' width='14.564' height='14.564' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_1445' data-name='Rectangle 1445' width='14.503' height='14.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_1447' data-name='Rectangle 1447' width='14.443' height='14.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_1449' data-name='Rectangle 1449' width='14.382' height='14.382' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_1451' data-name='Rectangle 1451' width='14.322' height='14.322' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_1453' data-name='Rectangle 1453' width='14.261' height='14.261' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_1455' data-name='Rectangle 1455' width='14.201' height='14.201' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_1457' data-name='Rectangle 1457' width='14.14' height='14.14' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_1459' data-name='Rectangle 1459' width='14.079' height='14.079' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_1461' data-name='Rectangle 1461' width='14.019' height='14.019' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_1463' data-name='Rectangle 1463' width='13.958' height='13.958' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_1465' data-name='Rectangle 1465' width='13.898' height='13.898' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_1467' data-name='Rectangle 1467' width='13.837' height='13.837' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_1469' data-name='Rectangle 1469' width='13.776' height='13.776' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_1471' data-name='Rectangle 1471' width='13.716' height='13.716' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_1473' data-name='Rectangle 1473' width='13.655' height='13.655' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_1475' data-name='Rectangle 1475' width='13.595' height='13.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_1477' data-name='Rectangle 1477' width='13.534' height='13.534' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_1479' data-name='Rectangle 1479' width='13.474' height='13.473' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_1481' data-name='Rectangle 1481' width='13.413' height='13.413' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_1483' data-name='Rectangle 1483' width='13.352' height='13.352' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_1485' data-name='Rectangle 1485' width='13.292' height='13.292' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_1487' data-name='Rectangle 1487' width='13.231' height='13.231' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_1489' data-name='Rectangle 1489' width='13.171' height='13.17' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_1491' data-name='Rectangle 1491' width='13.11' height='13.11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_1493' data-name='Rectangle 1493' width='13.049' height='13.049' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_1495' data-name='Rectangle 1495' width='12.989' height='12.989' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_1497' data-name='Rectangle 1497' width='12.928' height='12.928' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_1499' data-name='Rectangle 1499' width='12.868' height='12.868' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_1501' data-name='Rectangle 1501' width='12.807' height='12.807' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_1503' data-name='Rectangle 1503' width='12.746' height='12.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_1505' data-name='Rectangle 1505' width='12.686' height='12.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_1507' data-name='Rectangle 1507' width='12.625' height='12.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_1509' data-name='Rectangle 1509' width='12.565' height='12.565' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_1511' data-name='Rectangle 1511' width='12.504' height='12.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_1513' data-name='Rectangle 1513' width='12.444' height='12.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_1515' data-name='Rectangle 1515' width='12.383' height='12.383' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_1517' data-name='Rectangle 1517' width='12.322' height='12.322' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-72'%3E%3Crect id='Rectangle_1572' data-name='Rectangle 1572' width='13.171' height='13.171' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-88'%3E%3Crect id='Rectangle_1603' data-name='Rectangle 1603' width='14.746' height='14.746' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-3-multi-right' transform='translate(683 44.257) rotate(180)' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_443' data-name='Groupe 443' transform='translate(0 0)'%3E%3Cg id='Groupe_442' data-name='Groupe 442' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_189' data-name='Groupe 189' transform='translate(0 0)'%3E%3Cg id='Groupe_188' data-name='Groupe 188'%3E%3Cg id='Groupe_187' data-name='Groupe 187' clip-path='url(%23clip-path-3)'%3E%3Cg id='Groupe_66' data-name='Groupe 66' transform='translate(0.057 0)'%3E%3Cg id='Groupe_65' data-name='Groupe 65'%3E%3Cg id='Groupe_64' data-name='Groupe 64' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_1436' data-name='Rectangle 1436' width='14.663' height='14.663' transform='translate(0 0)' fill='%231ed2d2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_69' data-name='Groupe 69' transform='translate(16.767 0.027)' opacity='0.978'%3E%3Cg id='Groupe_68' data-name='Groupe 68'%3E%3Cg id='Groupe_67' data-name='Groupe 67' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_1438' data-name='Rectangle 1438' width='14.559' height='14.559' transform='translate(0 0.127) rotate(-0.5)' fill='%2321d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_72' data-name='Groupe 72' transform='translate(33.534 0.054)' opacity='0.956'%3E%3Cg id='Groupe_71' data-name='Groupe 71'%3E%3Cg id='Groupe_70' data-name='Groupe 70' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_1440' data-name='Rectangle 1440' width='14.374' height='14.373' transform='translate(0 0.254) rotate(-1.013)' fill='%2324d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_75' data-name='Groupe 75' transform='translate(50.301 0.081)' opacity='0.934'%3E%3Cg id='Groupe_74' data-name='Groupe 74'%3E%3Cg id='Groupe_73' data-name='Groupe 73' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_1442' data-name='Rectangle 1442' width='14.188' height='14.189' transform='matrix(1, -0.027, 0.027, 1, 0, 0.38)' fill='%2327d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_78' data-name='Groupe 78' transform='translate(67.068 0.109)' opacity='0.912'%3E%3Cg id='Groupe_77' data-name='Groupe 77'%3E%3Cg id='Groupe_76' data-name='Groupe 76' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_1444' data-name='Rectangle 1444' width='14.005' height='14.005' transform='translate(0 0.507) rotate(-2.075)' fill='%2329d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_81' data-name='Groupe 81' transform='translate(83.835 0.136)' opacity='0.89'%3E%3Cg id='Groupe_80' data-name='Groupe 80'%3E%3Cg id='Groupe_79' data-name='Groupe 79' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_1446' data-name='Rectangle 1446' width='13.823' height='13.823' transform='translate(0 0.635) rotate(-2.63)' fill='%232cd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_84' data-name='Groupe 84' transform='translate(100.602 0.163)' opacity='0.868'%3E%3Cg id='Groupe_83' data-name='Groupe 83'%3E%3Cg id='Groupe_82' data-name='Groupe 82' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_1448' data-name='Rectangle 1448' width='13.642' height='13.642' transform='translate(0 0.762) rotate(-3.199)' fill='%232fd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_87' data-name='Groupe 87' transform='translate(117.368 0.19)' opacity='0.846'%3E%3Cg id='Groupe_86' data-name='Groupe 86'%3E%3Cg id='Groupe_85' data-name='Groupe 85' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_1450' data-name='Rectangle 1450' width='13.463' height='13.463' transform='translate(0 0.888) rotate(-3.783)' fill='%2332d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_90' data-name='Groupe 90' transform='translate(134.136 0.217)' opacity='0.824'%3E%3Cg id='Groupe_89' data-name='Groupe 89'%3E%3Cg id='Groupe_88' data-name='Groupe 88' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_1452' data-name='Rectangle 1452' width='13.285' height='13.285' transform='matrix(0.997, -0.076, 0.076, 0.997, 0, 1.015)' fill='%2335d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_93' data-name='Groupe 93' transform='translate(150.902 0.244)' opacity='0.802'%3E%3Cg id='Groupe_92' data-name='Groupe 92'%3E%3Cg id='Groupe_91' data-name='Groupe 91' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_1454' data-name='Rectangle 1454' width='13.109' height='13.109' transform='matrix(0.996, -0.087, 0.087, 0.996, 0.001, 1.142)' fill='%2337d7d7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_96' data-name='Groupe 96' transform='translate(167.669 0.271)' opacity='0.78'%3E%3Cg id='Groupe_95' data-name='Groupe 95'%3E%3Cg id='Groupe_94' data-name='Groupe 94' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_1456' data-name='Rectangle 1456' width='12.933' height='12.934' transform='matrix(0.995, -0.098, 0.098, 0.995, 0, 1.269)' fill='%233ad8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_99' data-name='Groupe 99' transform='translate(184.437 0.299)' opacity='0.758'%3E%3Cg id='Groupe_98' data-name='Groupe 98'%3E%3Cg id='Groupe_97' data-name='Groupe 97' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_1458' data-name='Rectangle 1458' width='12.76' height='12.76' transform='translate(0 1.395) rotate(-6.278)' fill='%233dd8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_102' data-name='Groupe 102' transform='translate(201.203 0.326)' opacity='0.736'%3E%3Cg id='Groupe_101' data-name='Groupe 101'%3E%3Cg id='Groupe_100' data-name='Groupe 100' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_1460' data-name='Rectangle 1460' width='12.589' height='12.589' transform='translate(0 1.522) rotate(-6.946)' fill='%2340d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_105' data-name='Groupe 105' transform='translate(217.971 0.353)' opacity='0.714'%3E%3Cg id='Groupe_104' data-name='Groupe 104'%3E%3Cg id='Groupe_103' data-name='Groupe 103' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_1462' data-name='Rectangle 1462' width='12.419' height='12.419' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 1.649)' fill='%2343d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_108' data-name='Groupe 108' transform='translate(234.737 0.38)' opacity='0.692'%3E%3Cg id='Groupe_107' data-name='Groupe 107'%3E%3Cg id='Groupe_106' data-name='Groupe 106' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_1464' data-name='Rectangle 1464' width='12.251' height='12.251' transform='translate(0 1.776) rotate(-8.338)' fill='%2345dada'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_111' data-name='Groupe 111' transform='translate(251.504 0.407)' opacity='0.67'%3E%3Cg id='Groupe_110' data-name='Groupe 110'%3E%3Cg id='Groupe_109' data-name='Groupe 109' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_1466' data-name='Rectangle 1466' width='12.084' height='12.085' transform='translate(0 1.903) rotate(-9.059)' fill='%2348dbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_114' data-name='Groupe 114' transform='translate(268.271 0.434)' opacity='0.648'%3E%3Cg id='Groupe_113' data-name='Groupe 113'%3E%3Cg id='Groupe_112' data-name='Groupe 112' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_1468' data-name='Rectangle 1468' width='11.92' height='11.921' transform='translate(0.001 2.029) rotate(-9.803)' fill='%234bdbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_117' data-name='Groupe 117' transform='translate(285.038 0.461)' opacity='0.626'%3E%3Cg id='Groupe_116' data-name='Groupe 116'%3E%3Cg id='Groupe_115' data-name='Groupe 115' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_1470' data-name='Rectangle 1470' width='11.759' height='11.759' transform='translate(0 2.157) rotate(-10.568)' fill='%234edcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_120' data-name='Groupe 120' transform='translate(301.805 0.489)' opacity='0.604'%3E%3Cg id='Groupe_119' data-name='Groupe 119'%3E%3Cg id='Groupe_118' data-name='Groupe 118' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_1472' data-name='Rectangle 1472' width='11.599' height='11.599' transform='translate(0 2.284) rotate(-11.355)' fill='%2351dcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_123' data-name='Groupe 123' transform='translate(318.572 0.516)' opacity='0.582'%3E%3Cg id='Groupe_122' data-name='Groupe 122'%3E%3Cg id='Groupe_121' data-name='Groupe 121' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_1474' data-name='Rectangle 1474' width='11.441' height='11.441' transform='matrix(0.978, -0.211, 0.211, 0.978, 0, 2.411)' fill='%2353dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_126' data-name='Groupe 126' transform='translate(335.339 0.543)' opacity='0.56'%3E%3Cg id='Groupe_125' data-name='Groupe 125'%3E%3Cg id='Groupe_124' data-name='Groupe 124' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_1476' data-name='Rectangle 1476' width='11.286' height='11.285' transform='translate(0 2.538) rotate(-12.994)' fill='%2356dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_129' data-name='Groupe 129' transform='translate(352.105 0.57)' opacity='0.538'%3E%3Cg id='Groupe_128' data-name='Groupe 128'%3E%3Cg id='Groupe_127' data-name='Groupe 127' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_1478' data-name='Rectangle 1478' width='11.132' height='11.133' transform='translate(0.001 2.664) rotate(-13.844)' fill='%2359dede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_132' data-name='Groupe 132' transform='translate(368.873 0.597)' opacity='0.516'%3E%3Cg id='Groupe_131' data-name='Groupe 131'%3E%3Cg id='Groupe_130' data-name='Groupe 130' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_1480' data-name='Rectangle 1480' width='10.982' height='10.982' transform='translate(0 2.791) rotate(-14.722)' fill='%235cdede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_135' data-name='Groupe 135' transform='translate(385.64 0.624)' opacity='0.494'%3E%3Cg id='Groupe_134' data-name='Groupe 134'%3E%3Cg id='Groupe_133' data-name='Groupe 133' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_1482' data-name='Rectangle 1482' width='10.834' height='10.834' transform='translate(0 2.918) rotate(-15.623)' fill='%235fdfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_138' data-name='Groupe 138' transform='translate(402.406 0.651)' opacity='0.472'%3E%3Cg id='Groupe_137' data-name='Groupe 137'%3E%3Cg id='Groupe_136' data-name='Groupe 136' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_1484' data-name='Rectangle 1484' width='10.689' height='10.689' transform='translate(0 3.045) rotate(-16.55)' fill='%2361dfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_141' data-name='Groupe 141' transform='translate(419.174 0.678)' opacity='0.45'%3E%3Cg id='Groupe_140' data-name='Groupe 140'%3E%3Cg id='Groupe_139' data-name='Groupe 139' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_1486' data-name='Rectangle 1486' width='10.548' height='10.548' transform='matrix(0.954, -0.301, 0.301, 0.954, 0, 3.172)' fill='%2364e0e0'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_144' data-name='Groupe 144' transform='translate(435.94 0.706)' opacity='0.428'%3E%3Cg id='Groupe_143' data-name='Groupe 143'%3E%3Cg id='Groupe_142' data-name='Groupe 142' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_1488' data-name='Rectangle 1488' width='10.409' height='10.408' transform='translate(0 3.299) rotate(-18.478)' fill='%2367e1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_147' data-name='Groupe 147' transform='translate(452.707 0.733)' opacity='0.406'%3E%3Cg id='Groupe_146' data-name='Groupe 146'%3E%3Cg id='Groupe_145' data-name='Groupe 145' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_1490' data-name='Rectangle 1490' width='10.272' height='10.272' transform='translate(0 3.425) rotate(-19.477)' fill='%236ae1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_150' data-name='Groupe 150' transform='translate(469.475 0.76)' opacity='0.384'%3E%3Cg id='Groupe_149' data-name='Groupe 149'%3E%3Cg id='Groupe_148' data-name='Groupe 148' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_1492' data-name='Rectangle 1492' width='10.14' height='10.14' transform='translate(0 3.552) rotate(-20.507)' fill='%236de2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_153' data-name='Groupe 153' transform='translate(486.241 0.787)' opacity='0.362'%3E%3Cg id='Groupe_152' data-name='Groupe 152'%3E%3Cg id='Groupe_151' data-name='Groupe 151' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_1494' data-name='Rectangle 1494' width='10.01' height='10.01' transform='matrix(0.93, -0.368, 0.368, 0.93, 0, 3.679)' fill='%2370e2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_156' data-name='Groupe 156' transform='translate(503.008 0.814)' opacity='0.34'%3E%3Cg id='Groupe_155' data-name='Groupe 155'%3E%3Cg id='Groupe_154' data-name='Groupe 154' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_1496' data-name='Rectangle 1496' width='9.884' height='9.884' transform='translate(0 3.806) rotate(-22.647)' fill='%2372e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_159' data-name='Groupe 159' transform='translate(519.775 0.841)' opacity='0.318'%3E%3Cg id='Groupe_158' data-name='Groupe 158'%3E%3Cg id='Groupe_157' data-name='Groupe 157' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_1498' data-name='Rectangle 1498' width='9.762' height='9.762' transform='translate(0 3.933) rotate(-23.759)' fill='%2375e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_162' data-name='Groupe 162' transform='translate(536.542 0.868)' opacity='0.296'%3E%3Cg id='Groupe_161' data-name='Groupe 161'%3E%3Cg id='Groupe_160' data-name='Groupe 160' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_1500' data-name='Rectangle 1500' width='9.644' height='9.643' transform='matrix(0.907, -0.421, 0.421, 0.907, 0, 4.06)' fill='%2378e4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_165' data-name='Groupe 165' transform='translate(553.31 0.896)' opacity='0.274'%3E%3Cg id='Groupe_164' data-name='Groupe 164'%3E%3Cg id='Groupe_163' data-name='Groupe 163' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_1502' data-name='Rectangle 1502' width='9.528' height='9.529' transform='translate(0 4.187) rotate(-26.063)' fill='%237be4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_168' data-name='Groupe 168' transform='translate(570.076 0.923)' opacity='0.252'%3E%3Cg id='Groupe_167' data-name='Groupe 167'%3E%3Cg id='Groupe_166' data-name='Groupe 166' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_1504' data-name='Rectangle 1504' width='9.418' height='9.418' transform='translate(0 4.313) rotate(-27.256)' fill='%237ee5e5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_171' data-name='Groupe 171' transform='translate(586.843 0.95)' opacity='0.23'%3E%3Cg id='Groupe_170' data-name='Groupe 170'%3E%3Cg id='Groupe_169' data-name='Groupe 169' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_1506' data-name='Rectangle 1506' width='9.312' height='9.312' transform='translate(0 4.44) rotate(-28.48)' fill='%2381e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_174' data-name='Groupe 174' transform='translate(603.61 0.977)' opacity='0.208'%3E%3Cg id='Groupe_173' data-name='Groupe 173'%3E%3Cg id='Groupe_172' data-name='Groupe 172' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_1508' data-name='Rectangle 1508' width='9.21' height='9.21' transform='translate(0 4.567) rotate(-29.731)' fill='%2383e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_177' data-name='Groupe 177' transform='translate(620.377 1.004)' opacity='0.186'%3E%3Cg id='Groupe_176' data-name='Groupe 176'%3E%3Cg id='Groupe_175' data-name='Groupe 175' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_1510' data-name='Rectangle 1510' width='9.112' height='9.112' transform='translate(0 4.694) rotate(-31.01)' fill='%2386e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_180' data-name='Groupe 180' transform='translate(637.143 1.031)' opacity='0.164'%3E%3Cg id='Groupe_179' data-name='Groupe 179'%3E%3Cg id='Groupe_178' data-name='Groupe 178' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_1512' data-name='Rectangle 1512' width='9.019' height='9.019' transform='matrix(0.845, -0.535, 0.535, 0.845, 0, 4.822)' fill='%2389e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_183' data-name='Groupe 183' transform='translate(653.911 1.058)' opacity='0.142'%3E%3Cg id='Groupe_182' data-name='Groupe 182'%3E%3Cg id='Groupe_181' data-name='Groupe 181' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_1514' data-name='Rectangle 1514' width='8.93' height='8.931' transform='matrix(0.833, -0.554, 0.554, 0.833, 0, 4.947)' fill='%238ce8e8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_186' data-name='Groupe 186' transform='translate(670.678 1.086)' opacity='0.12'%3E%3Cg id='Groupe_185' data-name='Groupe 185'%3E%3Cg id='Groupe_184' data-name='Groupe 184' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_1516' data-name='Rectangle 1516' width='8.847' height='8.847' transform='matrix(0.819, -0.574, 0.574, 0.819, 0, 5.075)' fill='%238fe9e9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_315' data-name='Groupe 315' transform='translate(0 14.756)'%3E%3Cg id='Groupe_314' data-name='Groupe 314'%3E%3Cg id='Groupe_313' data-name='Groupe 313' clip-path='url(%23clip-path-3)'%3E%3Cg id='Groupe_192' data-name='Groupe 192' transform='translate(0.057 -0.092)'%3E%3Cg id='Groupe_191' data-name='Groupe 191'%3E%3Cg id='Groupe_190' data-name='Groupe 190' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_1519' data-name='Rectangle 1519' width='14.663' height='14.663' transform='translate(0 0)' fill='%23ffa000'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_195' data-name='Groupe 195' transform='translate(16.767 0.027)' opacity='0.978'%3E%3Cg id='Groupe_194' data-name='Groupe 194'%3E%3Cg id='Groupe_193' data-name='Groupe 193' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_1521' data-name='Rectangle 1521' width='14.559' height='14.559' transform='translate(0 0.127) rotate(-0.5)' fill='%23ffa103'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_198' data-name='Groupe 198' transform='translate(33.534 0.054)' opacity='0.956'%3E%3Cg id='Groupe_197' data-name='Groupe 197'%3E%3Cg id='Groupe_196' data-name='Groupe 196' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_1523' data-name='Rectangle 1523' width='14.374' height='14.373' transform='translate(0 0.254) rotate(-1.013)' fill='%23ffa206'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_201' data-name='Groupe 201' transform='translate(50.301 0.081)' opacity='0.934'%3E%3Cg id='Groupe_200' data-name='Groupe 200'%3E%3Cg id='Groupe_199' data-name='Groupe 199' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_1525' data-name='Rectangle 1525' width='14.188' height='14.189' transform='matrix(1, -0.027, 0.027, 1, 0, 0.38)' fill='%23ffa30a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_204' data-name='Groupe 204' transform='translate(67.068 0.109)' opacity='0.912'%3E%3Cg id='Groupe_203' data-name='Groupe 203'%3E%3Cg id='Groupe_202' data-name='Groupe 202' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_1527' data-name='Rectangle 1527' width='14.005' height='14.005' transform='translate(0 0.507) rotate(-2.075)' fill='%23ffa50d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_207' data-name='Groupe 207' transform='translate(83.835 0.136)' opacity='0.89'%3E%3Cg id='Groupe_206' data-name='Groupe 206'%3E%3Cg id='Groupe_205' data-name='Groupe 205' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_1529' data-name='Rectangle 1529' width='13.823' height='13.823' transform='translate(0 0.635) rotate(-2.63)' fill='%23ffa610'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_210' data-name='Groupe 210' transform='translate(100.602 0.163)' opacity='0.868'%3E%3Cg id='Groupe_209' data-name='Groupe 209'%3E%3Cg id='Groupe_208' data-name='Groupe 208' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_1531' data-name='Rectangle 1531' width='13.642' height='13.642' transform='translate(0 0.762) rotate(-3.199)' fill='%23ffa713'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_213' data-name='Groupe 213' transform='translate(117.368 0.19)' opacity='0.846'%3E%3Cg id='Groupe_212' data-name='Groupe 212'%3E%3Cg id='Groupe_211' data-name='Groupe 211' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_1533' data-name='Rectangle 1533' width='13.463' height='13.463' transform='translate(0 0.888) rotate(-3.783)' fill='%23ffa816'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_216' data-name='Groupe 216' transform='translate(134.136 0.217)' opacity='0.824'%3E%3Cg id='Groupe_215' data-name='Groupe 215'%3E%3Cg id='Groupe_214' data-name='Groupe 214' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_1535' data-name='Rectangle 1535' width='13.285' height='13.285' transform='translate(0 1.015) rotate(-4.383)' fill='%23ffaa1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_219' data-name='Groupe 219' transform='translate(150.902 0.244)' opacity='0.802'%3E%3Cg id='Groupe_218' data-name='Groupe 218'%3E%3Cg id='Groupe_217' data-name='Groupe 217' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_1537' data-name='Rectangle 1537' width='13.109' height='13.109' transform='matrix(0.996, -0.087, 0.087, 0.996, 0.001, 1.142)' fill='%23ffab1d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_222' data-name='Groupe 222' transform='translate(167.669 0.271)' opacity='0.78'%3E%3Cg id='Groupe_221' data-name='Groupe 221'%3E%3Cg id='Groupe_220' data-name='Groupe 220' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_1539' data-name='Rectangle 1539' width='12.933' height='12.934' transform='matrix(0.995, -0.098, 0.098, 0.995, 0, 1.269)' fill='%23ffac20'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_225' data-name='Groupe 225' transform='translate(184.437 0.299)' opacity='0.758'%3E%3Cg id='Groupe_224' data-name='Groupe 224'%3E%3Cg id='Groupe_223' data-name='Groupe 223' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_1541' data-name='Rectangle 1541' width='12.76' height='12.761' transform='translate(0 1.395) rotate(-6.278)' fill='%23ffad23'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_228' data-name='Groupe 228' transform='translate(201.203 0.326)' opacity='0.736'%3E%3Cg id='Groupe_227' data-name='Groupe 227'%3E%3Cg id='Groupe_226' data-name='Groupe 226' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_1543' data-name='Rectangle 1543' width='12.589' height='12.589' transform='matrix(0.993, -0.121, 0.121, 0.993, 0, 1.522)' fill='%23ffae26'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_231' data-name='Groupe 231' transform='translate(217.971 0.353)' opacity='0.714'%3E%3Cg id='Groupe_230' data-name='Groupe 230'%3E%3Cg id='Groupe_229' data-name='Groupe 229' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_1545' data-name='Rectangle 1545' width='12.419' height='12.419' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 1.649)' fill='%23ffaf2a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_234' data-name='Groupe 234' transform='translate(234.737 0.38)' opacity='0.692'%3E%3Cg id='Groupe_233' data-name='Groupe 233'%3E%3Cg id='Groupe_232' data-name='Groupe 232' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_1547' data-name='Rectangle 1547' width='12.251' height='12.251' transform='translate(0 1.776) rotate(-8.338)' fill='%23ffb12d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_237' data-name='Groupe 237' transform='translate(251.504 0.407)' opacity='0.67'%3E%3Cg id='Groupe_236' data-name='Groupe 236'%3E%3Cg id='Groupe_235' data-name='Groupe 235' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_1549' data-name='Rectangle 1549' width='12.084' height='12.085' transform='translate(0 1.903) rotate(-9.059)' fill='%23ffb230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_240' data-name='Groupe 240' transform='translate(268.271 0.434)' opacity='0.648'%3E%3Cg id='Groupe_239' data-name='Groupe 239'%3E%3Cg id='Groupe_238' data-name='Groupe 238' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_1551' data-name='Rectangle 1551' width='11.92' height='11.921' transform='translate(0.001 2.029) rotate(-9.803)' fill='%23ffb333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_243' data-name='Groupe 243' transform='translate(285.038 0.461)' opacity='0.626'%3E%3Cg id='Groupe_242' data-name='Groupe 242'%3E%3Cg id='Groupe_241' data-name='Groupe 241' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_1553' data-name='Rectangle 1553' width='11.759' height='11.759' transform='translate(0 2.157) rotate(-10.568)' fill='%23ffb436'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_246' data-name='Groupe 246' transform='translate(301.805 0.489)' opacity='0.604'%3E%3Cg id='Groupe_245' data-name='Groupe 245'%3E%3Cg id='Groupe_244' data-name='Groupe 244' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_1555' data-name='Rectangle 1555' width='11.599' height='11.599' transform='translate(0 2.284) rotate(-11.355)' fill='%23ffb539'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_249' data-name='Groupe 249' transform='translate(318.572 0.516)' opacity='0.582'%3E%3Cg id='Groupe_248' data-name='Groupe 248'%3E%3Cg id='Groupe_247' data-name='Groupe 247' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_1557' data-name='Rectangle 1557' width='11.441' height='11.441' transform='matrix(0.978, -0.211, 0.211, 0.978, 0, 2.411)' fill='%23ffb73d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_252' data-name='Groupe 252' transform='translate(335.339 0.543)' opacity='0.56'%3E%3Cg id='Groupe_251' data-name='Groupe 251'%3E%3Cg id='Groupe_250' data-name='Groupe 250' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_1559' data-name='Rectangle 1559' width='11.286' height='11.286' transform='translate(0 2.537) rotate(-12.994)' fill='%23ffb840'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_255' data-name='Groupe 255' transform='translate(352.105 0.57)' opacity='0.538'%3E%3Cg id='Groupe_254' data-name='Groupe 254'%3E%3Cg id='Groupe_253' data-name='Groupe 253' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_1561' data-name='Rectangle 1561' width='11.132' height='11.133' transform='translate(0.001 2.664) rotate(-13.844)' fill='%23ffb943'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_258' data-name='Groupe 258' transform='translate(368.873 0.597)' opacity='0.516'%3E%3Cg id='Groupe_257' data-name='Groupe 257'%3E%3Cg id='Groupe_256' data-name='Groupe 256' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_1563' data-name='Rectangle 1563' width='10.982' height='10.982' transform='translate(0 2.791) rotate(-14.722)' fill='%23ffba46'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_261' data-name='Groupe 261' transform='translate(385.64 0.624)' opacity='0.494'%3E%3Cg id='Groupe_260' data-name='Groupe 260'%3E%3Cg id='Groupe_259' data-name='Groupe 259' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_1565' data-name='Rectangle 1565' width='10.834' height='10.834' transform='translate(0 2.918) rotate(-15.623)' fill='%23ffbb49'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_264' data-name='Groupe 264' transform='translate(402.406 0.651)' opacity='0.472'%3E%3Cg id='Groupe_263' data-name='Groupe 263'%3E%3Cg id='Groupe_262' data-name='Groupe 262' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_1567' data-name='Rectangle 1567' width='10.689' height='10.689' transform='translate(0 3.045) rotate(-16.55)' fill='%23ffbc4d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_267' data-name='Groupe 267' transform='translate(419.174 0.678)' opacity='0.45'%3E%3Cg id='Groupe_266' data-name='Groupe 266'%3E%3Cg id='Groupe_265' data-name='Groupe 265' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_1569' data-name='Rectangle 1569' width='10.548' height='10.548' transform='translate(0 3.172) rotate(-17.5)' fill='%23ffbe50'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_270' data-name='Groupe 270' transform='translate(435.94 0.706)' opacity='0.428'%3E%3Cg id='Groupe_269' data-name='Groupe 269'%3E%3Cg id='Groupe_268' data-name='Groupe 268' clip-path='url(%23clip-path-72)'%3E%3Crect id='Rectangle_1571' data-name='Rectangle 1571' width='10.409' height='10.408' transform='translate(0 3.299) rotate(-18.478)' fill='%23ffbf53'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_273' data-name='Groupe 273' transform='translate(452.707 0.733)' opacity='0.406'%3E%3Cg id='Groupe_272' data-name='Groupe 272'%3E%3Cg id='Groupe_271' data-name='Groupe 271' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_1573' data-name='Rectangle 1573' width='10.272' height='10.272' transform='translate(0 3.425) rotate(-19.477)' fill='%23ffc056'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_276' data-name='Groupe 276' transform='translate(469.475 0.76)' opacity='0.384'%3E%3Cg id='Groupe_275' data-name='Groupe 275'%3E%3Cg id='Groupe_274' data-name='Groupe 274' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_1575' data-name='Rectangle 1575' width='10.14' height='10.14' transform='translate(0 3.552) rotate(-20.507)' fill='%23ffc159'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_279' data-name='Groupe 279' transform='translate(486.241 0.787)' opacity='0.362'%3E%3Cg id='Groupe_278' data-name='Groupe 278'%3E%3Cg id='Groupe_277' data-name='Groupe 277' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_1577' data-name='Rectangle 1577' width='10.01' height='10.01' transform='translate(0 3.679) rotate(-21.564)' fill='%23ffc25d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_282' data-name='Groupe 282' transform='translate(503.008 0.814)' opacity='0.34'%3E%3Cg id='Groupe_281' data-name='Groupe 281'%3E%3Cg id='Groupe_280' data-name='Groupe 280' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_1579' data-name='Rectangle 1579' width='9.884' height='9.884' transform='translate(0 3.806) rotate(-22.647)' fill='%23ffc460'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_285' data-name='Groupe 285' transform='translate(519.775 0.841)' opacity='0.318'%3E%3Cg id='Groupe_284' data-name='Groupe 284'%3E%3Cg id='Groupe_283' data-name='Groupe 283' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_1581' data-name='Rectangle 1581' width='9.762' height='9.762' transform='translate(0 3.933) rotate(-23.759)' fill='%23ffc563'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_288' data-name='Groupe 288' transform='translate(536.542 0.868)' opacity='0.296'%3E%3Cg id='Groupe_287' data-name='Groupe 287'%3E%3Cg id='Groupe_286' data-name='Groupe 286' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_1583' data-name='Rectangle 1583' width='9.644' height='9.643' transform='translate(0 4.06) rotate(-24.899)' fill='%23ffc666'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_291' data-name='Groupe 291' transform='translate(553.31 0.896)' opacity='0.274'%3E%3Cg id='Groupe_290' data-name='Groupe 290'%3E%3Cg id='Groupe_289' data-name='Groupe 289' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_1585' data-name='Rectangle 1585' width='9.528' height='9.529' transform='translate(0 4.187) rotate(-26.063)' fill='%23ffc769'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_294' data-name='Groupe 294' transform='translate(570.076 0.923)' opacity='0.252'%3E%3Cg id='Groupe_293' data-name='Groupe 293'%3E%3Cg id='Groupe_292' data-name='Groupe 292' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_1587' data-name='Rectangle 1587' width='9.418' height='9.418' transform='translate(0 4.313) rotate(-27.256)' fill='%23ffc86c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_297' data-name='Groupe 297' transform='translate(586.843 0.95)' opacity='0.23'%3E%3Cg id='Groupe_296' data-name='Groupe 296'%3E%3Cg id='Groupe_295' data-name='Groupe 295' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_1589' data-name='Rectangle 1589' width='9.312' height='9.312' transform='translate(0 4.44) rotate(-28.48)' fill='%23ffc970'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_300' data-name='Groupe 300' transform='translate(603.61 0.977)' opacity='0.208'%3E%3Cg id='Groupe_299' data-name='Groupe 299'%3E%3Cg id='Groupe_298' data-name='Groupe 298' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_1591' data-name='Rectangle 1591' width='9.21' height='9.21' transform='translate(0 4.567) rotate(-29.731)' fill='%23ffcb73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_303' data-name='Groupe 303' transform='translate(620.377 1.004)' opacity='0.186'%3E%3Cg id='Groupe_302' data-name='Groupe 302'%3E%3Cg id='Groupe_301' data-name='Groupe 301' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_1593' data-name='Rectangle 1593' width='9.112' height='9.112' transform='translate(0 4.694) rotate(-31.01)' fill='%23ffcc76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_306' data-name='Groupe 306' transform='translate(637.143 1.031)' opacity='0.164'%3E%3Cg id='Groupe_305' data-name='Groupe 305'%3E%3Cg id='Groupe_304' data-name='Groupe 304' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_1595' data-name='Rectangle 1595' width='9.019' height='9.019' transform='matrix(0.845, -0.535, 0.535, 0.845, 0, 4.822)' fill='%23ffcd79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_309' data-name='Groupe 309' transform='translate(653.911 1.058)' opacity='0.142'%3E%3Cg id='Groupe_308' data-name='Groupe 308'%3E%3Cg id='Groupe_307' data-name='Groupe 307' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_1597' data-name='Rectangle 1597' width='8.93' height='8.931' transform='translate(0 4.947) rotate(-33.641)' fill='%23ffce7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_312' data-name='Groupe 312' transform='translate(670.678 1.086)' opacity='0.12'%3E%3Cg id='Groupe_311' data-name='Groupe 311'%3E%3Cg id='Groupe_310' data-name='Groupe 310' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_1599' data-name='Rectangle 1599' width='8.847' height='8.847' transform='matrix(0.819, -0.574, 0.574, 0.819, 0, 5.075)' fill='%23ffd080'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_441' data-name='Groupe 441' transform='translate(0 29.511)'%3E%3Cg id='Groupe_440' data-name='Groupe 440'%3E%3Cg id='Groupe_439' data-name='Groupe 439' clip-path='url(%23clip-path-3)'%3E%3Cg id='Groupe_318' data-name='Groupe 318'%3E%3Cg id='Groupe_317' data-name='Groupe 317'%3E%3Cg id='Groupe_316' data-name='Groupe 316' clip-path='url(%23clip-path-88)'%3E%3Crect id='Rectangle_1602' data-name='Rectangle 1602' width='14.746' height='14.746' transform='translate(0 0)' fill='%23ffdc00'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_321' data-name='Groupe 321' transform='translate(16.767 0.027)' opacity='0.978'%3E%3Cg id='Groupe_320' data-name='Groupe 320'%3E%3Cg id='Groupe_319' data-name='Groupe 319' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_1604' data-name='Rectangle 1604' width='14.559' height='14.559' transform='matrix(1, -0.009, 0.009, 1, 0, 0.127)' fill='%23ffdc03'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_324' data-name='Groupe 324' transform='translate(33.534 0.054)' opacity='0.956'%3E%3Cg id='Groupe_323' data-name='Groupe 323'%3E%3Cg id='Groupe_322' data-name='Groupe 322' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_1606' data-name='Rectangle 1606' width='14.374' height='14.373' transform='translate(0 0.254) rotate(-1.013)' fill='%23ffdd06'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_327' data-name='Groupe 327' transform='translate(50.301 0.081)' opacity='0.934'%3E%3Cg id='Groupe_326' data-name='Groupe 326'%3E%3Cg id='Groupe_325' data-name='Groupe 325' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_1608' data-name='Rectangle 1608' width='14.188' height='14.189' transform='translate(0 0.38) rotate(-1.535)' fill='%23ffdd0a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_330' data-name='Groupe 330' transform='translate(67.068 0.109)' opacity='0.912'%3E%3Cg id='Groupe_329' data-name='Groupe 329'%3E%3Cg id='Groupe_328' data-name='Groupe 328' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_1610' data-name='Rectangle 1610' width='14.005' height='14.005' transform='translate(0 0.507) rotate(-2.075)' fill='%23ffde0d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_333' data-name='Groupe 333' transform='translate(83.835 0.136)' opacity='0.89'%3E%3Cg id='Groupe_332' data-name='Groupe 332'%3E%3Cg id='Groupe_331' data-name='Groupe 331' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_1612' data-name='Rectangle 1612' width='13.823' height='13.823' transform='matrix(0.999, -0.046, 0.046, 0.999, 0, 0.635)' fill='%23ffde10'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_336' data-name='Groupe 336' transform='translate(100.602 0.163)' opacity='0.868'%3E%3Cg id='Groupe_335' data-name='Groupe 335'%3E%3Cg id='Groupe_334' data-name='Groupe 334' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_1614' data-name='Rectangle 1614' width='13.642' height='13.642' transform='translate(0 0.761) rotate(-3.199)' fill='%23ffdf13'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_339' data-name='Groupe 339' transform='translate(117.368 0.19)' opacity='0.846'%3E%3Cg id='Groupe_338' data-name='Groupe 338'%3E%3Cg id='Groupe_337' data-name='Groupe 337' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_1616' data-name='Rectangle 1616' width='13.463' height='13.463' transform='translate(0 0.888) rotate(-3.783)' fill='%23ffdf16'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_342' data-name='Groupe 342' transform='translate(134.136 0.217)' opacity='0.824'%3E%3Cg id='Groupe_341' data-name='Groupe 341'%3E%3Cg id='Groupe_340' data-name='Groupe 340' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_1618' data-name='Rectangle 1618' width='13.285' height='13.285' transform='translate(0 1.015) rotate(-4.383)' fill='%23ffdf1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_345' data-name='Groupe 345' transform='translate(150.902 0.244)' opacity='0.802'%3E%3Cg id='Groupe_344' data-name='Groupe 344'%3E%3Cg id='Groupe_343' data-name='Groupe 343' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_1620' data-name='Rectangle 1620' width='13.109' height='13.109' transform='translate(0.001 1.142) rotate(-4.995)' fill='%23ffe01d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_348' data-name='Groupe 348' transform='translate(167.669 0.271)' opacity='0.78'%3E%3Cg id='Groupe_347' data-name='Groupe 347'%3E%3Cg id='Groupe_346' data-name='Groupe 346' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_1622' data-name='Rectangle 1622' width='12.933' height='12.934' transform='matrix(0.995, -0.098, 0.098, 0.995, 0, 1.269)' fill='%23ffe020'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_351' data-name='Groupe 351' transform='translate(184.437 0.299)' opacity='0.758'%3E%3Cg id='Groupe_350' data-name='Groupe 350'%3E%3Cg id='Groupe_349' data-name='Groupe 349' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_1624' data-name='Rectangle 1624' width='12.76' height='12.761' transform='translate(0 1.395) rotate(-6.278)' fill='%23ffe123'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_354' data-name='Groupe 354' transform='translate(201.203 0.326)' opacity='0.736'%3E%3Cg id='Groupe_353' data-name='Groupe 353'%3E%3Cg id='Groupe_352' data-name='Groupe 352' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_1626' data-name='Rectangle 1626' width='12.589' height='12.589' transform='translate(0 1.522) rotate(-6.946)' fill='%23ffe126'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_357' data-name='Groupe 357' transform='translate(217.971 0.353)' opacity='0.714'%3E%3Cg id='Groupe_356' data-name='Groupe 356'%3E%3Cg id='Groupe_355' data-name='Groupe 355' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_1628' data-name='Rectangle 1628' width='12.419' height='12.419' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 1.649)' fill='%23ffe22a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_360' data-name='Groupe 360' transform='translate(234.737 0.38)' opacity='0.692'%3E%3Cg id='Groupe_359' data-name='Groupe 359'%3E%3Cg id='Groupe_358' data-name='Groupe 358' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_1630' data-name='Rectangle 1630' width='12.251' height='12.251' transform='translate(0 1.776) rotate(-8.338)' fill='%23ffe22d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_363' data-name='Groupe 363' transform='translate(251.504 0.407)' opacity='0.67'%3E%3Cg id='Groupe_362' data-name='Groupe 362'%3E%3Cg id='Groupe_361' data-name='Groupe 361' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_1632' data-name='Rectangle 1632' width='12.084' height='12.085' transform='translate(0 1.903) rotate(-9.059)' fill='%23ffe230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_366' data-name='Groupe 366' transform='translate(268.271 0.434)' opacity='0.648'%3E%3Cg id='Groupe_365' data-name='Groupe 365'%3E%3Cg id='Groupe_364' data-name='Groupe 364' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_1634' data-name='Rectangle 1634' width='11.92' height='11.921' transform='translate(0.001 2.03) rotate(-9.803)' fill='%23ffe333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_369' data-name='Groupe 369' transform='translate(285.038 0.461)' opacity='0.626'%3E%3Cg id='Groupe_368' data-name='Groupe 368'%3E%3Cg id='Groupe_367' data-name='Groupe 367' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_1636' data-name='Rectangle 1636' width='11.759' height='11.759' transform='translate(0 2.157) rotate(-10.568)' fill='%23ffe336'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_372' data-name='Groupe 372' transform='translate(301.805 0.489)' opacity='0.604'%3E%3Cg id='Groupe_371' data-name='Groupe 371'%3E%3Cg id='Groupe_370' data-name='Groupe 370' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_1638' data-name='Rectangle 1638' width='11.599' height='11.599' transform='matrix(0.98, -0.197, 0.197, 0.98, 0, 2.284)' fill='%23ffe439'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_375' data-name='Groupe 375' transform='translate(318.572 0.516)' opacity='0.582'%3E%3Cg id='Groupe_374' data-name='Groupe 374'%3E%3Cg id='Groupe_373' data-name='Groupe 373' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_1640' data-name='Rectangle 1640' width='11.441' height='11.441' transform='translate(0 2.411) rotate(-12.164)' fill='%23ffe43d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_378' data-name='Groupe 378' transform='translate(335.339 0.543)' opacity='0.56'%3E%3Cg id='Groupe_377' data-name='Groupe 377'%3E%3Cg id='Groupe_376' data-name='Groupe 376' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_1642' data-name='Rectangle 1642' width='11.286' height='11.286' transform='matrix(0.974, -0.225, 0.225, 0.974, 0, 2.537)' fill='%23ffe540'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_381' data-name='Groupe 381' transform='translate(352.105 0.57)' opacity='0.538'%3E%3Cg id='Groupe_380' data-name='Groupe 380'%3E%3Cg id='Groupe_379' data-name='Groupe 379' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_1644' data-name='Rectangle 1644' width='11.132' height='11.133' transform='matrix(0.971, -0.239, 0.239, 0.971, 0.001, 2.664)' fill='%23ffe543'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_384' data-name='Groupe 384' transform='translate(368.873 0.597)' opacity='0.516'%3E%3Cg id='Groupe_383' data-name='Groupe 383'%3E%3Cg id='Groupe_382' data-name='Groupe 382' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_1646' data-name='Rectangle 1646' width='10.982' height='10.982' transform='matrix(0.967, -0.254, 0.254, 0.967, 0, 2.791)' fill='%23ffe546'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_387' data-name='Groupe 387' transform='translate(385.64 0.624)' opacity='0.494'%3E%3Cg id='Groupe_386' data-name='Groupe 386'%3E%3Cg id='Groupe_385' data-name='Groupe 385' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_1648' data-name='Rectangle 1648' width='10.834' height='10.834' transform='translate(0 2.918) rotate(-15.623)' fill='%23ffe649'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_390' data-name='Groupe 390' transform='translate(402.406 0.651)' opacity='0.472'%3E%3Cg id='Groupe_389' data-name='Groupe 389'%3E%3Cg id='Groupe_388' data-name='Groupe 388' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_1650' data-name='Rectangle 1650' width='10.689' height='10.689' transform='translate(0 3.045) rotate(-16.55)' fill='%23ffe74d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_393' data-name='Groupe 393' transform='translate(419.174 0.678)' opacity='0.45'%3E%3Cg id='Groupe_392' data-name='Groupe 392'%3E%3Cg id='Groupe_391' data-name='Groupe 391' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_1652' data-name='Rectangle 1652' width='10.548' height='10.548' transform='translate(0 3.172) rotate(-17.5)' fill='%23ffe750'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_396' data-name='Groupe 396' transform='translate(435.94 0.706)' opacity='0.428'%3E%3Cg id='Groupe_395' data-name='Groupe 395'%3E%3Cg id='Groupe_394' data-name='Groupe 394' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_1654' data-name='Rectangle 1654' width='10.409' height='10.408' transform='translate(0 3.299) rotate(-18.478)' fill='%23ffe753'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_399' data-name='Groupe 399' transform='translate(452.707 0.733)' opacity='0.406'%3E%3Cg id='Groupe_398' data-name='Groupe 398'%3E%3Cg id='Groupe_397' data-name='Groupe 397' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_1656' data-name='Rectangle 1656' width='10.272' height='10.272' transform='translate(0 3.425) rotate(-19.477)' fill='%23ffe856'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_402' data-name='Groupe 402' transform='translate(469.475 0.76)' opacity='0.384'%3E%3Cg id='Groupe_401' data-name='Groupe 401'%3E%3Cg id='Groupe_400' data-name='Groupe 400' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_1658' data-name='Rectangle 1658' width='10.14' height='10.14' transform='translate(0 3.552) rotate(-20.507)' fill='%23ffe859'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_405' data-name='Groupe 405' transform='translate(486.241 0.787)' opacity='0.362'%3E%3Cg id='Groupe_404' data-name='Groupe 404'%3E%3Cg id='Groupe_403' data-name='Groupe 403' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_1660' data-name='Rectangle 1660' width='10.01' height='10.01' transform='translate(0 3.679) rotate(-21.564)' fill='%23ffe95d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_408' data-name='Groupe 408' transform='translate(503.008 0.814)' opacity='0.34'%3E%3Cg id='Groupe_407' data-name='Groupe 407'%3E%3Cg id='Groupe_406' data-name='Groupe 406' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_1662' data-name='Rectangle 1662' width='9.884' height='9.884' transform='matrix(0.923, -0.385, 0.385, 0.923, 0, 3.806)' fill='%23ffe960'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_411' data-name='Groupe 411' transform='translate(519.775 0.841)' opacity='0.318'%3E%3Cg id='Groupe_410' data-name='Groupe 410'%3E%3Cg id='Groupe_409' data-name='Groupe 409' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_1664' data-name='Rectangle 1664' width='9.762' height='9.762' transform='matrix(0.915, -0.403, 0.403, 0.915, 0, 3.933)' fill='%23ffea63'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_414' data-name='Groupe 414' transform='translate(536.542 0.868)' opacity='0.296'%3E%3Cg id='Groupe_413' data-name='Groupe 413'%3E%3Cg id='Groupe_412' data-name='Groupe 412' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_1666' data-name='Rectangle 1666' width='9.644' height='9.643' transform='translate(0 4.06) rotate(-24.899)' fill='%23ffea66'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_417' data-name='Groupe 417' transform='translate(553.31 0.896)' opacity='0.274'%3E%3Cg id='Groupe_416' data-name='Groupe 416'%3E%3Cg id='Groupe_415' data-name='Groupe 415' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_1668' data-name='Rectangle 1668' width='9.528' height='9.529' transform='matrix(0.898, -0.439, 0.439, 0.898, 0, 4.187)' fill='%23ffea69'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_420' data-name='Groupe 420' transform='translate(570.076 0.923)' opacity='0.252'%3E%3Cg id='Groupe_419' data-name='Groupe 419'%3E%3Cg id='Groupe_418' data-name='Groupe 418' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_1670' data-name='Rectangle 1670' width='9.418' height='9.418' transform='translate(0 4.313) rotate(-27.256)' fill='%23ffeb6c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_423' data-name='Groupe 423' transform='translate(586.843 0.95)' opacity='0.23'%3E%3Cg id='Groupe_422' data-name='Groupe 422'%3E%3Cg id='Groupe_421' data-name='Groupe 421' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_1672' data-name='Rectangle 1672' width='9.312' height='9.312' transform='translate(0 4.44) rotate(-28.48)' fill='%23ffeb70'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_426' data-name='Groupe 426' transform='translate(603.61 0.977)' opacity='0.208'%3E%3Cg id='Groupe_425' data-name='Groupe 425'%3E%3Cg id='Groupe_424' data-name='Groupe 424' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_1674' data-name='Rectangle 1674' width='9.21' height='9.21' transform='matrix(0.868, -0.496, 0.496, 0.868, 0, 4.567)' fill='%23ffec73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_429' data-name='Groupe 429' transform='translate(620.377 1.004)' opacity='0.186'%3E%3Cg id='Groupe_428' data-name='Groupe 428'%3E%3Cg id='Groupe_427' data-name='Groupe 427' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_1676' data-name='Rectangle 1676' width='9.112' height='9.112' transform='translate(0 4.694) rotate(-31.01)' fill='%23ffec76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_432' data-name='Groupe 432' transform='translate(637.143 1.031)' opacity='0.164'%3E%3Cg id='Groupe_431' data-name='Groupe 431'%3E%3Cg id='Groupe_430' data-name='Groupe 430' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_1678' data-name='Rectangle 1678' width='9.019' height='9.019' transform='matrix(0.845, -0.535, 0.535, 0.845, 0, 4.822)' fill='%23ffed79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_435' data-name='Groupe 435' transform='translate(653.911 1.058)' opacity='0.142'%3E%3Cg id='Groupe_434' data-name='Groupe 434'%3E%3Cg id='Groupe_433' data-name='Groupe 433' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_1680' data-name='Rectangle 1680' width='8.93' height='8.931' transform='translate(0 4.947) rotate(-33.641)' fill='%23ffed7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_438' data-name='Groupe 438' transform='translate(670.678 1.086)' opacity='0.12'%3E%3Cg id='Groupe_437' data-name='Groupe 437'%3E%3Cg id='Groupe_436' data-name='Groupe 436' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_1682' data-name='Rectangle 1682' width='8.847' height='8.847' transform='matrix(0.819, -0.574, 0.574, 0.819, 0, 5.075)' fill='%23ffed80'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.list-apps {
  background-color: #DDF8F8;
  padding: 72px 0;
}
.list-apps .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
@media screen and (max-width: 640px) {
  .list-apps .container {
    grid-template-columns: 1fr;
  }
}
.list-apps .container header {
  grid-column: span 3;
}
@media screen and (max-width: 640px) {
  .list-apps .container header {
    grid-column: span 1;
  }
}
.list-apps .container header h2 {
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
}
.list-apps .container header p {
  margin-top: 0;
  color: var(--cyan-med);
  margin-bottom: 0;
}
.list-apps__item {
  display: flex;
  flex-flow: column;
  background-color: white;
  padding: 24px;
}
.list-apps__item picture {
  max-height: 80px;
  height: 100%;
  width: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.list-apps__item picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.list-apps__item .title {
  font-size: 24px;
  line-height: 120%;
  font-family: "Made";
  color: var(--blue);
  margin: 12px 0;
  font-weight: 500;
}
.list-apps__item .content {
  color: #9DA1B2;
}

.image {
  position: relative;
  display: block;
  max-width: 450px;
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  position: relative;
}
.image.square {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 8%;
}
@media screen and (max-width: 640px) {
  .image.square {
    margin-right: 8%;
    margin-left: 8%;
  }
}
.image.square:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #99EBEB;
  transform: rotate(10deg);
}
.image.square.yellow:before {
  background-color: rgba(255, 220, 0, 0.26);
}
.image.square.orange:before {
  background-color: #FFD99A;
}
.image.square img {
  position: relative;
  z-index: 0;
}
.image.gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  aspect-ratio: unset;
  max-width: 100%;
}
.image.gradient img {
  position: relative;
  z-index: 0;
}
.image.gradient:after {
  position: absolute;
  content: "";
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 50%, #BFF2F2 100%);
}
.image.gradient.orange:after {
  background: linear-gradient(90deg, transparent 50%, #FFE4B7 100%);
}
.image.gradient.yellow:after {
  background: linear-gradient(90deg, transparent 50%, #FFF5B7 100%);
}
.image:after {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.image img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.image__divider {
  content: "";
  height: 15px;
  width: 80%;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  position: absolute;
  bottom: 32px;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .image__divider {
    width: 100%;
    height: 30px;
  }
}
.image__divider.orange {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='730' height='15.761' viewBox='0 0 730 15.761'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_2874' data-name='Rectangle 2874' width='730' height='15.761' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_2791' data-name='Rectangle 2791' width='15.87' height='15.87' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_2793' data-name='Rectangle 2793' width='15.696' height='15.696' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_2795' data-name='Rectangle 2795' width='15.632' height='15.631' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_2797' data-name='Rectangle 2797' width='15.566' height='15.566' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_2799' data-name='Rectangle 2799' width='15.501' height='15.502' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_2801' data-name='Rectangle 2801' width='15.436' height='15.437' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_2803' data-name='Rectangle 2803' width='15.372' height='15.372' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_2805' data-name='Rectangle 2805' width='15.308' height='15.307' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_2807' data-name='Rectangle 2807' width='15.242' height='15.242' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_2809' data-name='Rectangle 2809' width='15.177' height='15.178' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_2811' data-name='Rectangle 2811' width='15.113' height='15.113' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_2813' data-name='Rectangle 2813' width='15.048' height='15.048' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_2815' data-name='Rectangle 2815' width='14.984' height='14.983' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_2817' data-name='Rectangle 2817' width='14.919' height='14.919' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_2819' data-name='Rectangle 2819' width='14.854' height='14.854' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_2821' data-name='Rectangle 2821' width='14.789' height='14.789' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_2823' data-name='Rectangle 2823' width='14.725' height='14.724' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_2825' data-name='Rectangle 2825' width='14.66' height='14.66' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_2827' data-name='Rectangle 2827' width='14.595' height='14.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_2829' data-name='Rectangle 2829' width='14.53' height='14.53' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_2831' data-name='Rectangle 2831' width='14.465' height='14.465' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_2833' data-name='Rectangle 2833' width='14.4' height='14.401' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_2835' data-name='Rectangle 2835' width='14.336' height='14.336' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_2837' data-name='Rectangle 2837' width='14.271' height='14.271' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_2839' data-name='Rectangle 2839' width='14.207' height='14.206' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_2841' data-name='Rectangle 2841' width='14.141' height='14.142' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_2843' data-name='Rectangle 2843' width='14.076' height='14.077' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_2845' data-name='Rectangle 2845' width='14.012' height='14.012' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_2847' data-name='Rectangle 2847' width='13.947' height='13.947' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_2849' data-name='Rectangle 2849' width='13.883' height='13.883' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_2851' data-name='Rectangle 2851' width='13.818' height='13.818' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_2853' data-name='Rectangle 2853' width='13.752' height='13.753' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_2855' data-name='Rectangle 2855' width='13.688' height='13.688' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_2857' data-name='Rectangle 2857' width='13.623' height='13.624' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_2859' data-name='Rectangle 2859' width='13.559' height='13.559' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_2861' data-name='Rectangle 2861' width='13.494' height='13.494' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_2863' data-name='Rectangle 2863' width='13.429' height='13.429' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_2865' data-name='Rectangle 2865' width='13.365' height='13.364' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_2867' data-name='Rectangle 2867' width='13.3' height='13.3' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_2869' data-name='Rectangle 2869' width='13.235' height='13.235' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_2871' data-name='Rectangle 2871' width='13.17' height='13.17' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-orange' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1702' data-name='Groupe 1702' transform='translate(0 0)'%3E%3Cg id='Groupe_1701' data-name='Groupe 1701' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1700' data-name='Groupe 1700' transform='translate(0 0)'%3E%3Cg id='Groupe_1699' data-name='Groupe 1699' transform='translate(0 0)'%3E%3Cg id='Groupe_1698' data-name='Groupe 1698' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1577' data-name='Groupe 1577' transform='translate(714.13 -0.106)'%3E%3Cg id='Groupe_1576' data-name='Groupe 1576' transform='translate(0)'%3E%3Cg id='Groupe_1575' data-name='Groupe 1575' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_2790' data-name='Rectangle 2790' width='15.87' height='15.87' transform='translate(0)' fill='%23ffa000'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1580' data-name='Groupe 1580' transform='translate(696.383 0.036)' opacity='0.978'%3E%3Cg id='Groupe_1579' data-name='Groupe 1579'%3E%3Cg id='Groupe_1578' data-name='Groupe 1578' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_2792' data-name='Rectangle 2792' width='15.561' height='15.561' transform='translate(0 0.136) rotate(-0.5)' fill='%23ffa103'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1583' data-name='Groupe 1583' transform='translate(678.527 0.072)' opacity='0.956'%3E%3Cg id='Groupe_1582' data-name='Groupe 1582'%3E%3Cg id='Groupe_1581' data-name='Groupe 1581' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_2794' data-name='Rectangle 2794' width='15.363' height='15.362' transform='matrix(1, -0.018, 0.018, 1, 0, 0.271)' fill='%23ffa206'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1586' data-name='Groupe 1586' transform='translate(660.672 0.107)' opacity='0.934'%3E%3Cg id='Groupe_1585' data-name='Groupe 1585'%3E%3Cg id='Groupe_1584' data-name='Groupe 1584' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_2796' data-name='Rectangle 2796' width='15.165' height='15.165' transform='translate(0 0.407) rotate(-1.539)' fill='%23ffa30a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1589' data-name='Groupe 1589' transform='translate(642.815 0.143)' opacity='0.912'%3E%3Cg id='Groupe_1588' data-name='Groupe 1588'%3E%3Cg id='Groupe_1587' data-name='Groupe 1587' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_2798' data-name='Rectangle 2798' width='14.969' height='14.969' transform='translate(0 0.542) rotate(-2.075)' fill='%23ffa50d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1592' data-name='Groupe 1592' transform='translate(624.96 0.179)' opacity='0.89'%3E%3Cg id='Groupe_1591' data-name='Groupe 1591'%3E%3Cg id='Groupe_1590' data-name='Groupe 1590' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_2800' data-name='Rectangle 2800' width='14.774' height='14.774' transform='matrix(0.999, -0.046, 0.046, 0.999, 0, 0.678)' fill='%23ffa610'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1595' data-name='Groupe 1595' transform='translate(607.103 0.215)' opacity='0.868'%3E%3Cg id='Groupe_1594' data-name='Groupe 1594'%3E%3Cg id='Groupe_1593' data-name='Groupe 1593' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_2802' data-name='Rectangle 2802' width='14.581' height='14.581' transform='translate(0 0.814) rotate(-3.199)' fill='%23ffa713'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1598' data-name='Groupe 1598' transform='translate(589.247 0.25)' opacity='0.846'%3E%3Cg id='Groupe_1597' data-name='Groupe 1597'%3E%3Cg id='Groupe_1596' data-name='Groupe 1596' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_2804' data-name='Rectangle 2804' width='14.39' height='14.389' transform='translate(0 0.949) rotate(-3.783)' fill='%23ffa816'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1601' data-name='Groupe 1601' transform='translate(571.392 0.286)' opacity='0.824'%3E%3Cg id='Groupe_1600' data-name='Groupe 1600'%3E%3Cg id='Groupe_1599' data-name='Groupe 1599' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_2806' data-name='Rectangle 2806' width='14.199' height='14.199' transform='translate(0 1.085) rotate(-4.383)' fill='%23ffaa1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1604' data-name='Groupe 1604' transform='translate(553.535 0.322)' opacity='0.802'%3E%3Cg id='Groupe_1603' data-name='Groupe 1603'%3E%3Cg id='Groupe_1602' data-name='Groupe 1602' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_2808' data-name='Rectangle 2808' width='14.011' height='14.011' transform='translate(0 1.22) rotate(-4.995)' fill='%23ffab1d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1607' data-name='Groupe 1607' transform='translate(535.679 0.358)' opacity='0.78'%3E%3Cg id='Groupe_1606' data-name='Groupe 1606'%3E%3Cg id='Groupe_1605' data-name='Groupe 1605' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_2810' data-name='Rectangle 2810' width='13.823' height='13.824' transform='matrix(0.995, -0.098, 0.098, 0.995, 0.001, 1.356)' fill='%23ffac20'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1610' data-name='Groupe 1610' transform='translate(517.824 0.393)' opacity='0.758'%3E%3Cg id='Groupe_1609' data-name='Groupe 1609'%3E%3Cg id='Groupe_1608' data-name='Groupe 1608' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_2812' data-name='Rectangle 2812' width='13.638' height='13.638' transform='matrix(0.994, -0.109, 0.109, 0.994, 0, 1.491)' fill='%23ffad23'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1613' data-name='Groupe 1613' transform='translate(499.967 0.429)' opacity='0.736'%3E%3Cg id='Groupe_1612' data-name='Groupe 1612'%3E%3Cg id='Groupe_1611' data-name='Groupe 1611' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_2814' data-name='Rectangle 2814' width='13.455' height='13.455' transform='translate(0 1.627) rotate(-6.946)' fill='%23ffae26'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1616' data-name='Groupe 1616' transform='translate(482.111 0.465)' opacity='0.714'%3E%3Cg id='Groupe_1615' data-name='Groupe 1615'%3E%3Cg id='Groupe_1614' data-name='Groupe 1614' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_2816' data-name='Rectangle 2816' width='13.274' height='13.274' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 1.763)' fill='%23ffaf2a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1619' data-name='Groupe 1619' transform='translate(464.256 0.501)' opacity='0.692'%3E%3Cg id='Groupe_1618' data-name='Groupe 1618'%3E%3Cg id='Groupe_1617' data-name='Groupe 1617' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_2818' data-name='Rectangle 2818' width='13.094' height='13.094' transform='matrix(0.989, -0.145, 0.145, 0.989, 0, 1.899)' fill='%23ffb12d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1622' data-name='Groupe 1622' transform='translate(446.399 0.536)' opacity='0.67'%3E%3Cg id='Groupe_1621' data-name='Groupe 1621'%3E%3Cg id='Groupe_1620' data-name='Groupe 1620' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_2820' data-name='Rectangle 2820' width='12.916' height='12.916' transform='translate(0 2.034) rotate(-9.059)' fill='%23ffb230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1625' data-name='Groupe 1625' transform='translate(428.543 0.572)' opacity='0.648'%3E%3Cg id='Groupe_1624' data-name='Groupe 1624'%3E%3Cg id='Groupe_1623' data-name='Groupe 1623' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_2822' data-name='Rectangle 2822' width='12.741' height='12.741' transform='translate(0.001 2.169) rotate(-9.803)' fill='%23ffb333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1628' data-name='Groupe 1628' transform='translate(410.688 0.608)' opacity='0.626'%3E%3Cg id='Groupe_1627' data-name='Groupe 1627'%3E%3Cg id='Groupe_1626' data-name='Groupe 1626' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_2824' data-name='Rectangle 2824' width='12.568' height='12.568' transform='translate(0 2.305) rotate(-10.568)' fill='%23ffb436'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1631' data-name='Groupe 1631' transform='translate(392.831 0.644)' opacity='0.604'%3E%3Cg id='Groupe_1630' data-name='Groupe 1630'%3E%3Cg id='Groupe_1629' data-name='Groupe 1629' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_2826' data-name='Rectangle 2826' width='12.397' height='12.397' transform='translate(0 2.441) rotate(-11.355)' fill='%23ffb539'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1634' data-name='Groupe 1634' transform='translate(374.976 0.679)' opacity='0.582'%3E%3Cg id='Groupe_1633' data-name='Groupe 1633'%3E%3Cg id='Groupe_1632' data-name='Groupe 1632' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_2828' data-name='Rectangle 2828' width='12.228' height='12.228' transform='matrix(0.978, -0.211, 0.211, 0.978, 0, 2.577)' fill='%23ffb73d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1637' data-name='Groupe 1637' transform='translate(357.12 0.715)' opacity='0.56'%3E%3Cg id='Groupe_1636' data-name='Groupe 1636'%3E%3Cg id='Groupe_1635' data-name='Groupe 1635' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_2830' data-name='Rectangle 2830' width='12.063' height='12.062' transform='translate(0 2.712) rotate(-12.994)' fill='%23ffb840'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1640' data-name='Groupe 1640' transform='translate(339.263 0.751)' opacity='0.538'%3E%3Cg id='Groupe_1639' data-name='Groupe 1639'%3E%3Cg id='Groupe_1638' data-name='Groupe 1638' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_2832' data-name='Rectangle 2832' width='11.899' height='11.899' transform='translate(0 2.847) rotate(-13.844)' fill='%23ffb943'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1643' data-name='Groupe 1643' transform='translate(321.408 0.787)' opacity='0.516'%3E%3Cg id='Groupe_1642' data-name='Groupe 1642'%3E%3Cg id='Groupe_1641' data-name='Groupe 1641' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_2834' data-name='Rectangle 2834' width='11.738' height='11.738' transform='translate(0 2.983) rotate(-14.722)' fill='%23ffba46'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1646' data-name='Groupe 1646' transform='translate(303.552 0.822)' opacity='0.494'%3E%3Cg id='Groupe_1645' data-name='Groupe 1645'%3E%3Cg id='Groupe_1644' data-name='Groupe 1644' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_2836' data-name='Rectangle 2836' width='11.58' height='11.58' transform='translate(0 3.119) rotate(-15.623)' fill='%23ffbb49'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1649' data-name='Groupe 1649' transform='translate(285.695 0.858)' opacity='0.472'%3E%3Cg id='Groupe_1648' data-name='Groupe 1648'%3E%3Cg id='Groupe_1647' data-name='Groupe 1647' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_2838' data-name='Rectangle 2838' width='11.425' height='11.425' transform='translate(0.001 3.254) rotate(-16.55)' fill='%23ffbc4d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1652' data-name='Groupe 1652' transform='translate(267.84 0.894)' opacity='0.45'%3E%3Cg id='Groupe_1651' data-name='Groupe 1651'%3E%3Cg id='Groupe_1650' data-name='Groupe 1650' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_2840' data-name='Rectangle 2840' width='11.274' height='11.273' transform='translate(0 3.39) rotate(-17.5)' fill='%23ffbe50'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1655' data-name='Groupe 1655' transform='translate(249.984 0.93)' opacity='0.428'%3E%3Cg id='Groupe_1654' data-name='Groupe 1654'%3E%3Cg id='Groupe_1653' data-name='Groupe 1653' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_2842' data-name='Rectangle 2842' width='11.125' height='11.125' transform='matrix(0.948, -0.317, 0.317, 0.948, 0, 3.526)' fill='%23ffbf53'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1658' data-name='Groupe 1658' transform='translate(232.127 0.965)' opacity='0.406'%3E%3Cg id='Groupe_1657' data-name='Groupe 1657'%3E%3Cg id='Groupe_1656' data-name='Groupe 1656' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_2844' data-name='Rectangle 2844' width='10.979' height='10.979' transform='matrix(0.943, -0.333, 0.333, 0.943, 0, 3.661)' fill='%23ffc056'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1661' data-name='Groupe 1661' transform='translate(214.272 1.001)' opacity='0.384'%3E%3Cg id='Groupe_1660' data-name='Groupe 1660'%3E%3Cg id='Groupe_1659' data-name='Groupe 1659' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_2846' data-name='Rectangle 2846' width='10.837' height='10.837' transform='translate(0 3.797) rotate(-20.507)' fill='%23ffc159'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1664' data-name='Groupe 1664' transform='translate(196.416 1.037)' opacity='0.362'%3E%3Cg id='Groupe_1663' data-name='Groupe 1663'%3E%3Cg id='Groupe_1662' data-name='Groupe 1662' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_2848' data-name='Rectangle 2848' width='10.699' height='10.699' transform='translate(0 3.932) rotate(-21.565)' fill='%23ffc25d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1667' data-name='Groupe 1667' transform='translate(178.559 1.073)' opacity='0.34'%3E%3Cg id='Groupe_1666' data-name='Groupe 1666'%3E%3Cg id='Groupe_1665' data-name='Groupe 1665' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_2850' data-name='Rectangle 2850' width='10.565' height='10.565' transform='translate(0 4.068) rotate(-22.647)' fill='%23ffc460'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1670' data-name='Groupe 1670' transform='translate(160.704 1.108)' opacity='0.318'%3E%3Cg id='Groupe_1669' data-name='Groupe 1669'%3E%3Cg id='Groupe_1668' data-name='Groupe 1668' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_2852' data-name='Rectangle 2852' width='10.434' height='10.434' transform='translate(0 4.204) rotate(-23.759)' fill='%23ffc563'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1673' data-name='Groupe 1673' transform='translate(142.848 1.144)' opacity='0.296'%3E%3Cg id='Groupe_1672' data-name='Groupe 1672'%3E%3Cg id='Groupe_1671' data-name='Groupe 1671' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_2854' data-name='Rectangle 2854' width='10.307' height='10.307' transform='translate(0 4.34) rotate(-24.899)' fill='%23ffc666'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1676' data-name='Groupe 1676' transform='translate(124.992 1.18)' opacity='0.274'%3E%3Cg id='Groupe_1675' data-name='Groupe 1675'%3E%3Cg id='Groupe_1674' data-name='Groupe 1674' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_2856' data-name='Rectangle 2856' width='10.184' height='10.184' transform='matrix(0.898, -0.439, 0.439, 0.898, 0, 4.474)' fill='%23ffc769'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1679' data-name='Groupe 1679' transform='translate(107.136 1.216)' opacity='0.252'%3E%3Cg id='Groupe_1678' data-name='Groupe 1678'%3E%3Cg id='Groupe_1677' data-name='Groupe 1677' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_2858' data-name='Rectangle 2858' width='10.066' height='10.067' transform='translate(0 4.61) rotate(-27.256)' fill='%23ffc86c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1682' data-name='Groupe 1682' transform='translate(89.28 1.251)' opacity='0.23'%3E%3Cg id='Groupe_1681' data-name='Groupe 1681'%3E%3Cg id='Groupe_1680' data-name='Groupe 1680' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_2860' data-name='Rectangle 2860' width='9.953' height='9.953' transform='translate(0 4.746) rotate(-28.48)' fill='%23ffc970'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1685' data-name='Groupe 1685' transform='translate(71.424 1.287)' opacity='0.208'%3E%3Cg id='Groupe_1684' data-name='Groupe 1684'%3E%3Cg id='Groupe_1683' data-name='Groupe 1683' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_2862' data-name='Rectangle 2862' width='9.843' height='9.843' transform='translate(0 4.882) rotate(-29.731)' fill='%23ffcb73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1688' data-name='Groupe 1688' transform='translate(53.568 1.323)' opacity='0.186'%3E%3Cg id='Groupe_1687' data-name='Groupe 1687'%3E%3Cg id='Groupe_1686' data-name='Groupe 1686' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_2864' data-name='Rectangle 2864' width='9.739' height='9.739' transform='translate(0 5.017) rotate(-31.01)' fill='%23ffcc76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1691' data-name='Groupe 1691' transform='translate(35.712 1.359)' opacity='0.164'%3E%3Cg id='Groupe_1690' data-name='Groupe 1690'%3E%3Cg id='Groupe_1689' data-name='Groupe 1689' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_2866' data-name='Rectangle 2866' width='9.64' height='9.639' transform='translate(0 5.153) rotate(-32.315)' fill='%23ffcd79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1694' data-name='Groupe 1694' transform='translate(17.856 1.395)' opacity='0.142'%3E%3Cg id='Groupe_1693' data-name='Groupe 1693'%3E%3Cg id='Groupe_1692' data-name='Groupe 1692' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_2868' data-name='Rectangle 2868' width='9.545' height='9.546' transform='matrix(0.833, -0.554, 0.554, 0.833, 0, 5.288)' fill='%23ffce7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1697' data-name='Groupe 1697' transform='translate(0 1.43)' opacity='0.12'%3E%3Cg id='Groupe_1696' data-name='Groupe 1696'%3E%3Cg id='Groupe_1695' data-name='Groupe 1695' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_2870' data-name='Rectangle 2870' width='9.456' height='9.456' transform='translate(0 5.424) rotate(-34.999)' fill='%23ffd080'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.image__divider.yellow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='683' height='14.746' viewBox='0 0 683 14.746'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3397' data-name='Rectangle 3397' width='683' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3314' data-name='Rectangle 3314' width='14.746' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3316' data-name='Rectangle 3316' width='14.685' height='14.685' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3318' data-name='Rectangle 3318' width='14.625' height='14.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3320' data-name='Rectangle 3320' width='14.564' height='14.564' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3322' data-name='Rectangle 3322' width='14.503' height='14.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3324' data-name='Rectangle 3324' width='14.443' height='14.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3326' data-name='Rectangle 3326' width='14.382' height='14.382' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3328' data-name='Rectangle 3328' width='14.322' height='14.322' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3330' data-name='Rectangle 3330' width='14.261' height='14.261' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3332' data-name='Rectangle 3332' width='14.201' height='14.201' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3334' data-name='Rectangle 3334' width='14.14' height='14.14' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_3336' data-name='Rectangle 3336' width='14.079' height='14.079' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_3338' data-name='Rectangle 3338' width='14.019' height='14.019' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3340' data-name='Rectangle 3340' width='13.958' height='13.958' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_3342' data-name='Rectangle 3342' width='13.898' height='13.898' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_3344' data-name='Rectangle 3344' width='13.837' height='13.837' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_3346' data-name='Rectangle 3346' width='13.776' height='13.776' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_3348' data-name='Rectangle 3348' width='13.716' height='13.716' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_3350' data-name='Rectangle 3350' width='13.655' height='13.655' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_3352' data-name='Rectangle 3352' width='13.595' height='13.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_3354' data-name='Rectangle 3354' width='13.534' height='13.534' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_3356' data-name='Rectangle 3356' width='13.474' height='13.473' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_3358' data-name='Rectangle 3358' width='13.413' height='13.413' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_3360' data-name='Rectangle 3360' width='13.352' height='13.352' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_3362' data-name='Rectangle 3362' width='13.292' height='13.292' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_3364' data-name='Rectangle 3364' width='13.231' height='13.231' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_3366' data-name='Rectangle 3366' width='13.171' height='13.17' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_3368' data-name='Rectangle 3368' width='13.11' height='13.11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_3370' data-name='Rectangle 3370' width='13.049' height='13.049' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_3372' data-name='Rectangle 3372' width='12.989' height='12.989' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_3374' data-name='Rectangle 3374' width='12.928' height='12.928' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_3376' data-name='Rectangle 3376' width='12.868' height='12.868' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_3378' data-name='Rectangle 3378' width='12.807' height='12.807' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_3380' data-name='Rectangle 3380' width='12.746' height='12.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_3382' data-name='Rectangle 3382' width='12.686' height='12.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_3384' data-name='Rectangle 3384' width='12.625' height='12.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_3386' data-name='Rectangle 3386' width='12.565' height='12.565' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_3388' data-name='Rectangle 3388' width='12.504' height='12.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_3390' data-name='Rectangle 3390' width='12.444' height='12.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_3392' data-name='Rectangle 3392' width='12.383' height='12.383' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_3394' data-name='Rectangle 3394' width='12.322' height='12.322' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-yellow' transform='translate(683 14.746) rotate(180)' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2500' data-name='Groupe 2500' transform='translate(0 0)'%3E%3Cg id='Groupe_2499' data-name='Groupe 2499' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2498' data-name='Groupe 2498' transform='translate(0 0)'%3E%3Cg id='Groupe_2497' data-name='Groupe 2497' transform='translate(0 0)'%3E%3Cg id='Groupe_2496' data-name='Groupe 2496' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2375' data-name='Groupe 2375'%3E%3Cg id='Groupe_2374' data-name='Groupe 2374'%3E%3Cg id='Groupe_2373' data-name='Groupe 2373' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3313' data-name='Rectangle 3313' width='14.746' height='14.746' transform='translate(0 0)' fill='%23ffdc00'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2378' data-name='Groupe 2378' transform='translate(16.767 0.027)' opacity='0.978'%3E%3Cg id='Groupe_2377' data-name='Groupe 2377'%3E%3Cg id='Groupe_2376' data-name='Groupe 2376' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3315' data-name='Rectangle 3315' width='14.559' height='14.559' transform='matrix(1, -0.009, 0.009, 1, 0, 0.127)' fill='%23ffdc03'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2381' data-name='Groupe 2381' transform='translate(33.534 0.054)' opacity='0.956'%3E%3Cg id='Groupe_2380' data-name='Groupe 2380'%3E%3Cg id='Groupe_2379' data-name='Groupe 2379' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3317' data-name='Rectangle 3317' width='14.374' height='14.373' transform='translate(0 0.254) rotate(-1.013)' fill='%23ffdd06'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2384' data-name='Groupe 2384' transform='translate(50.301 0.081)' opacity='0.934'%3E%3Cg id='Groupe_2383' data-name='Groupe 2383'%3E%3Cg id='Groupe_2382' data-name='Groupe 2382' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3319' data-name='Rectangle 3319' width='14.188' height='14.189' transform='translate(0 0.38) rotate(-1.535)' fill='%23ffdd0a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2387' data-name='Groupe 2387' transform='translate(67.068 0.109)' opacity='0.912'%3E%3Cg id='Groupe_2386' data-name='Groupe 2386'%3E%3Cg id='Groupe_2385' data-name='Groupe 2385' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3321' data-name='Rectangle 3321' width='14.005' height='14.005' transform='translate(0 0.507) rotate(-2.075)' fill='%23ffde0d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2390' data-name='Groupe 2390' transform='translate(83.835 0.136)' opacity='0.89'%3E%3Cg id='Groupe_2389' data-name='Groupe 2389'%3E%3Cg id='Groupe_2388' data-name='Groupe 2388' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3323' data-name='Rectangle 3323' width='13.823' height='13.823' transform='matrix(0.999, -0.046, 0.046, 0.999, 0, 0.635)' fill='%23ffde10'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2393' data-name='Groupe 2393' transform='translate(100.602 0.163)' opacity='0.868'%3E%3Cg id='Groupe_2392' data-name='Groupe 2392'%3E%3Cg id='Groupe_2391' data-name='Groupe 2391' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3325' data-name='Rectangle 3325' width='13.642' height='13.642' transform='translate(0 0.761) rotate(-3.199)' fill='%23ffdf13'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2396' data-name='Groupe 2396' transform='translate(117.368 0.19)' opacity='0.846'%3E%3Cg id='Groupe_2395' data-name='Groupe 2395'%3E%3Cg id='Groupe_2394' data-name='Groupe 2394' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3327' data-name='Rectangle 3327' width='13.463' height='13.463' transform='translate(0 0.888) rotate(-3.783)' fill='%23ffdf16'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2399' data-name='Groupe 2399' transform='translate(134.136 0.217)' opacity='0.824'%3E%3Cg id='Groupe_2398' data-name='Groupe 2398'%3E%3Cg id='Groupe_2397' data-name='Groupe 2397' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3329' data-name='Rectangle 3329' width='13.285' height='13.285' transform='translate(0 1.015) rotate(-4.383)' fill='%23ffdf1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2402' data-name='Groupe 2402' transform='translate(150.902 0.244)' opacity='0.802'%3E%3Cg id='Groupe_2401' data-name='Groupe 2401'%3E%3Cg id='Groupe_2400' data-name='Groupe 2400' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3331' data-name='Rectangle 3331' width='13.109' height='13.109' transform='translate(0.001 1.142) rotate(-4.995)' fill='%23ffe01d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2405' data-name='Groupe 2405' transform='translate(167.669 0.271)' opacity='0.78'%3E%3Cg id='Groupe_2404' data-name='Groupe 2404'%3E%3Cg id='Groupe_2403' data-name='Groupe 2403' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3333' data-name='Rectangle 3333' width='12.933' height='12.934' transform='matrix(0.995, -0.098, 0.098, 0.995, 0, 1.269)' fill='%23ffe020'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2408' data-name='Groupe 2408' transform='translate(184.437 0.299)' opacity='0.758'%3E%3Cg id='Groupe_2407' data-name='Groupe 2407'%3E%3Cg id='Groupe_2406' data-name='Groupe 2406' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_3335' data-name='Rectangle 3335' width='12.76' height='12.761' transform='translate(0 1.395) rotate(-6.278)' fill='%23ffe123'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2411' data-name='Groupe 2411' transform='translate(201.203 0.326)' opacity='0.736'%3E%3Cg id='Groupe_2410' data-name='Groupe 2410'%3E%3Cg id='Groupe_2409' data-name='Groupe 2409' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_3337' data-name='Rectangle 3337' width='12.589' height='12.589' transform='translate(0 1.522) rotate(-6.946)' fill='%23ffe126'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2414' data-name='Groupe 2414' transform='translate(217.971 0.353)' opacity='0.714'%3E%3Cg id='Groupe_2413' data-name='Groupe 2413'%3E%3Cg id='Groupe_2412' data-name='Groupe 2412' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3339' data-name='Rectangle 3339' width='12.419' height='12.419' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 1.649)' fill='%23ffe22a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2417' data-name='Groupe 2417' transform='translate(234.737 0.38)' opacity='0.692'%3E%3Cg id='Groupe_2416' data-name='Groupe 2416'%3E%3Cg id='Groupe_2415' data-name='Groupe 2415' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_3341' data-name='Rectangle 3341' width='12.251' height='12.251' transform='translate(0 1.776) rotate(-8.338)' fill='%23ffe22d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2420' data-name='Groupe 2420' transform='translate(251.504 0.407)' opacity='0.67'%3E%3Cg id='Groupe_2419' data-name='Groupe 2419'%3E%3Cg id='Groupe_2418' data-name='Groupe 2418' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_3343' data-name='Rectangle 3343' width='12.084' height='12.085' transform='translate(0 1.903) rotate(-9.059)' fill='%23ffe230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2423' data-name='Groupe 2423' transform='translate(268.271 0.434)' opacity='0.648'%3E%3Cg id='Groupe_2422' data-name='Groupe 2422'%3E%3Cg id='Groupe_2421' data-name='Groupe 2421' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_3345' data-name='Rectangle 3345' width='11.92' height='11.921' transform='translate(0.001 2.03) rotate(-9.803)' fill='%23ffe333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2426' data-name='Groupe 2426' transform='translate(285.038 0.461)' opacity='0.626'%3E%3Cg id='Groupe_2425' data-name='Groupe 2425'%3E%3Cg id='Groupe_2424' data-name='Groupe 2424' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_3347' data-name='Rectangle 3347' width='11.759' height='11.759' transform='translate(0 2.157) rotate(-10.568)' fill='%23ffe336'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2429' data-name='Groupe 2429' transform='translate(301.805 0.489)' opacity='0.604'%3E%3Cg id='Groupe_2428' data-name='Groupe 2428'%3E%3Cg id='Groupe_2427' data-name='Groupe 2427' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_3349' data-name='Rectangle 3349' width='11.599' height='11.599' transform='matrix(0.98, -0.197, 0.197, 0.98, 0, 2.284)' fill='%23ffe439'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2432' data-name='Groupe 2432' transform='translate(318.572 0.516)' opacity='0.582'%3E%3Cg id='Groupe_2431' data-name='Groupe 2431'%3E%3Cg id='Groupe_2430' data-name='Groupe 2430' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_3351' data-name='Rectangle 3351' width='11.441' height='11.441' transform='translate(0 2.411) rotate(-12.164)' fill='%23ffe43d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2435' data-name='Groupe 2435' transform='translate(335.339 0.543)' opacity='0.56'%3E%3Cg id='Groupe_2434' data-name='Groupe 2434'%3E%3Cg id='Groupe_2433' data-name='Groupe 2433' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_3353' data-name='Rectangle 3353' width='11.286' height='11.286' transform='matrix(0.974, -0.225, 0.225, 0.974, 0, 2.537)' fill='%23ffe540'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2438' data-name='Groupe 2438' transform='translate(352.105 0.57)' opacity='0.538'%3E%3Cg id='Groupe_2437' data-name='Groupe 2437'%3E%3Cg id='Groupe_2436' data-name='Groupe 2436' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_3355' data-name='Rectangle 3355' width='11.132' height='11.133' transform='matrix(0.971, -0.239, 0.239, 0.971, 0.001, 2.664)' fill='%23ffe543'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2441' data-name='Groupe 2441' transform='translate(368.873 0.597)' opacity='0.516'%3E%3Cg id='Groupe_2440' data-name='Groupe 2440'%3E%3Cg id='Groupe_2439' data-name='Groupe 2439' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_3357' data-name='Rectangle 3357' width='10.982' height='10.982' transform='matrix(0.967, -0.254, 0.254, 0.967, 0, 2.791)' fill='%23ffe546'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2444' data-name='Groupe 2444' transform='translate(385.64 0.624)' opacity='0.494'%3E%3Cg id='Groupe_2443' data-name='Groupe 2443'%3E%3Cg id='Groupe_2442' data-name='Groupe 2442' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_3359' data-name='Rectangle 3359' width='10.834' height='10.834' transform='translate(0 2.918) rotate(-15.623)' fill='%23ffe649'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2447' data-name='Groupe 2447' transform='translate(402.406 0.651)' opacity='0.472'%3E%3Cg id='Groupe_2446' data-name='Groupe 2446'%3E%3Cg id='Groupe_2445' data-name='Groupe 2445' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_3361' data-name='Rectangle 3361' width='10.689' height='10.689' transform='translate(0 3.045) rotate(-16.55)' fill='%23ffe74d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2450' data-name='Groupe 2450' transform='translate(419.174 0.678)' opacity='0.45'%3E%3Cg id='Groupe_2449' data-name='Groupe 2449'%3E%3Cg id='Groupe_2448' data-name='Groupe 2448' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_3363' data-name='Rectangle 3363' width='10.548' height='10.548' transform='translate(0 3.172) rotate(-17.5)' fill='%23ffe750'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2453' data-name='Groupe 2453' transform='translate(435.94 0.706)' opacity='0.428'%3E%3Cg id='Groupe_2452' data-name='Groupe 2452'%3E%3Cg id='Groupe_2451' data-name='Groupe 2451' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_3365' data-name='Rectangle 3365' width='10.409' height='10.408' transform='translate(0 3.299) rotate(-18.478)' fill='%23ffe753'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2456' data-name='Groupe 2456' transform='translate(452.707 0.733)' opacity='0.406'%3E%3Cg id='Groupe_2455' data-name='Groupe 2455'%3E%3Cg id='Groupe_2454' data-name='Groupe 2454' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_3367' data-name='Rectangle 3367' width='10.272' height='10.272' transform='translate(0 3.425) rotate(-19.477)' fill='%23ffe856'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2459' data-name='Groupe 2459' transform='translate(469.475 0.76)' opacity='0.384'%3E%3Cg id='Groupe_2458' data-name='Groupe 2458'%3E%3Cg id='Groupe_2457' data-name='Groupe 2457' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_3369' data-name='Rectangle 3369' width='10.14' height='10.14' transform='translate(0 3.552) rotate(-20.507)' fill='%23ffe859'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2462' data-name='Groupe 2462' transform='translate(486.241 0.787)' opacity='0.362'%3E%3Cg id='Groupe_2461' data-name='Groupe 2461'%3E%3Cg id='Groupe_2460' data-name='Groupe 2460' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_3371' data-name='Rectangle 3371' width='10.01' height='10.01' transform='translate(0 3.679) rotate(-21.564)' fill='%23ffe95d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2465' data-name='Groupe 2465' transform='translate(503.008 0.814)' opacity='0.34'%3E%3Cg id='Groupe_2464' data-name='Groupe 2464'%3E%3Cg id='Groupe_2463' data-name='Groupe 2463' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_3373' data-name='Rectangle 3373' width='9.884' height='9.884' transform='matrix(0.923, -0.385, 0.385, 0.923, 0, 3.806)' fill='%23ffe960'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2468' data-name='Groupe 2468' transform='translate(519.775 0.841)' opacity='0.318'%3E%3Cg id='Groupe_2467' data-name='Groupe 2467'%3E%3Cg id='Groupe_2466' data-name='Groupe 2466' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_3375' data-name='Rectangle 3375' width='9.762' height='9.762' transform='matrix(0.915, -0.403, 0.403, 0.915, 0, 3.933)' fill='%23ffea63'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2471' data-name='Groupe 2471' transform='translate(536.542 0.868)' opacity='0.296'%3E%3Cg id='Groupe_2470' data-name='Groupe 2470'%3E%3Cg id='Groupe_2469' data-name='Groupe 2469' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_3377' data-name='Rectangle 3377' width='9.644' height='9.643' transform='translate(0 4.06) rotate(-24.899)' fill='%23ffea66'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2474' data-name='Groupe 2474' transform='translate(553.309 0.896)' opacity='0.274'%3E%3Cg id='Groupe_2473' data-name='Groupe 2473'%3E%3Cg id='Groupe_2472' data-name='Groupe 2472' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_3379' data-name='Rectangle 3379' width='9.528' height='9.529' transform='matrix(0.898, -0.439, 0.439, 0.898, 0, 4.187)' fill='%23ffea69'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2477' data-name='Groupe 2477' transform='translate(570.076 0.923)' opacity='0.252'%3E%3Cg id='Groupe_2476' data-name='Groupe 2476'%3E%3Cg id='Groupe_2475' data-name='Groupe 2475' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_3381' data-name='Rectangle 3381' width='9.418' height='9.418' transform='translate(0 4.313) rotate(-27.256)' fill='%23ffeb6c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2480' data-name='Groupe 2480' transform='translate(586.843 0.95)' opacity='0.23'%3E%3Cg id='Groupe_2479' data-name='Groupe 2479'%3E%3Cg id='Groupe_2478' data-name='Groupe 2478' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_3383' data-name='Rectangle 3383' width='9.312' height='9.312' transform='translate(0 4.44) rotate(-28.48)' fill='%23ffeb70'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2483' data-name='Groupe 2483' transform='translate(603.61 0.977)' opacity='0.208'%3E%3Cg id='Groupe_2482' data-name='Groupe 2482'%3E%3Cg id='Groupe_2481' data-name='Groupe 2481' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_3385' data-name='Rectangle 3385' width='9.21' height='9.21' transform='matrix(0.868, -0.496, 0.496, 0.868, 0, 4.567)' fill='%23ffec73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2486' data-name='Groupe 2486' transform='translate(620.377 1.004)' opacity='0.186'%3E%3Cg id='Groupe_2485' data-name='Groupe 2485'%3E%3Cg id='Groupe_2484' data-name='Groupe 2484' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_3387' data-name='Rectangle 3387' width='9.112' height='9.112' transform='translate(0 4.694) rotate(-31.01)' fill='%23ffec76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2489' data-name='Groupe 2489' transform='translate(637.143 1.031)' opacity='0.164'%3E%3Cg id='Groupe_2488' data-name='Groupe 2488'%3E%3Cg id='Groupe_2487' data-name='Groupe 2487' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_3389' data-name='Rectangle 3389' width='9.019' height='9.019' transform='matrix(0.845, -0.535, 0.535, 0.845, 0, 4.822)' fill='%23ffed79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2492' data-name='Groupe 2492' transform='translate(653.911 1.058)' opacity='0.142'%3E%3Cg id='Groupe_2491' data-name='Groupe 2491'%3E%3Cg id='Groupe_2490' data-name='Groupe 2490' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_3391' data-name='Rectangle 3391' width='8.93' height='8.931' transform='translate(0 4.947) rotate(-33.641)' fill='%23ffed7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2495' data-name='Groupe 2495' transform='translate(670.678 1.086)' opacity='0.12'%3E%3Cg id='Groupe_2494' data-name='Groupe 2494'%3E%3Cg id='Groupe_2493' data-name='Groupe 2493' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_3393' data-name='Rectangle 3393' width='8.847' height='8.847' transform='matrix(0.819, -0.574, 0.574, 0.819, 0, 5.075)' fill='%23ffed80'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.image__divider.cyan {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='683' height='14.746' viewBox='0 0 683 14.746'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3312' data-name='Rectangle 3312' width='683' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3229' data-name='Rectangle 3229' width='14.746' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3231' data-name='Rectangle 3231' width='14.685' height='14.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3233' data-name='Rectangle 3233' width='14.625' height='14.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3235' data-name='Rectangle 3235' width='14.564' height='14.564' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3237' data-name='Rectangle 3237' width='14.503' height='14.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3239' data-name='Rectangle 3239' width='14.443' height='14.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3241' data-name='Rectangle 3241' width='14.382' height='14.382' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3243' data-name='Rectangle 3243' width='14.322' height='14.322' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3245' data-name='Rectangle 3245' width='14.261' height='14.261' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3247' data-name='Rectangle 3247' width='14.201' height='14.201' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3249' data-name='Rectangle 3249' width='14.14' height='14.14' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_3251' data-name='Rectangle 3251' width='14.079' height='14.08' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_3253' data-name='Rectangle 3253' width='14.019' height='14.019' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3255' data-name='Rectangle 3255' width='13.958' height='13.958' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_3257' data-name='Rectangle 3257' width='13.898' height='13.898' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_3259' data-name='Rectangle 3259' width='13.837' height='13.837' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_3261' data-name='Rectangle 3261' width='13.776' height='13.777' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_3263' data-name='Rectangle 3263' width='13.716' height='13.716' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_3265' data-name='Rectangle 3265' width='13.655' height='13.655' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_3267' data-name='Rectangle 3267' width='13.595' height='13.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_3269' data-name='Rectangle 3269' width='13.534' height='13.534' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_3271' data-name='Rectangle 3271' width='13.474' height='13.474' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_3273' data-name='Rectangle 3273' width='13.413' height='13.413' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_3275' data-name='Rectangle 3275' width='13.352' height='13.352' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_3277' data-name='Rectangle 3277' width='13.292' height='13.292' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_3279' data-name='Rectangle 3279' width='13.231' height='13.231' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_3281' data-name='Rectangle 3281' width='13.171' height='13.171' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_3283' data-name='Rectangle 3283' width='13.11' height='13.11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_3285' data-name='Rectangle 3285' width='13.049' height='13.049' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_3287' data-name='Rectangle 3287' width='12.989' height='12.989' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_3289' data-name='Rectangle 3289' width='12.928' height='12.928' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_3291' data-name='Rectangle 3291' width='12.868' height='12.868' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_3293' data-name='Rectangle 3293' width='12.807' height='12.807' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_3295' data-name='Rectangle 3295' width='12.746' height='12.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_3297' data-name='Rectangle 3297' width='12.686' height='12.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_3299' data-name='Rectangle 3299' width='12.625' height='12.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_3301' data-name='Rectangle 3301' width='12.565' height='12.565' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_3303' data-name='Rectangle 3303' width='12.504' height='12.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_3305' data-name='Rectangle 3305' width='12.444' height='12.444' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_3307' data-name='Rectangle 3307' width='12.383' height='12.383' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_3309' data-name='Rectangle 3309' width='12.322' height='12.322' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-blue-right' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2369' data-name='Groupe 2369' transform='translate(0 0)'%3E%3Cg id='Groupe_2368' data-name='Groupe 2368' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2367' data-name='Groupe 2367' transform='translate(0 0)'%3E%3Cg id='Groupe_2366' data-name='Groupe 2366' transform='translate(0 0)'%3E%3Cg id='Groupe_2365' data-name='Groupe 2365' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2244' data-name='Groupe 2244' transform='translate(668.254)'%3E%3Cg id='Groupe_2243' data-name='Groupe 2243'%3E%3Cg id='Groupe_2242' data-name='Groupe 2242' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3228' data-name='Rectangle 3228' width='14.746' height='14.746' transform='translate(0 0)' fill='%231ed2d2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2247' data-name='Groupe 2247' transform='translate(651.548 0.027)' opacity='0.978'%3E%3Cg id='Groupe_2246' data-name='Groupe 2246'%3E%3Cg id='Groupe_2245' data-name='Groupe 2245' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3230' data-name='Rectangle 3230' width='14.559' height='14.559' transform='matrix(-1, -0.009, 0.009, -1, 14.558, 14.686)' fill='%2321d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2250' data-name='Groupe 2250' transform='translate(634.841 0.054)' opacity='0.956'%3E%3Cg id='Groupe_2249' data-name='Groupe 2249'%3E%3Cg id='Groupe_2248' data-name='Groupe 2248' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3232' data-name='Rectangle 3232' width='14.374' height='14.373' transform='translate(14.371 14.625) rotate(-178.987)' fill='%2324d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2253' data-name='Groupe 2253' transform='translate(618.135 0.081)' opacity='0.934'%3E%3Cg id='Groupe_2252' data-name='Groupe 2252'%3E%3Cg id='Groupe_2251' data-name='Groupe 2251' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3234' data-name='Rectangle 3234' width='14.188' height='14.189' transform='translate(14.183 14.564) rotate(-178.465)' fill='%2327d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2256' data-name='Groupe 2256' transform='translate(601.429 0.109)' opacity='0.912'%3E%3Cg id='Groupe_2255' data-name='Groupe 2255'%3E%3Cg id='Groupe_2254' data-name='Groupe 2254' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3236' data-name='Rectangle 3236' width='14.005' height='14.005' transform='translate(13.996 14.504) rotate(-177.925)' fill='%2329d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2259' data-name='Groupe 2259' transform='translate(584.723 0.136)' opacity='0.89'%3E%3Cg id='Groupe_2258' data-name='Groupe 2258'%3E%3Cg id='Groupe_2257' data-name='Groupe 2257' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3238' data-name='Rectangle 3238' width='13.823' height='13.823' transform='matrix(-0.999, -0.046, 0.046, -0.999, 13.808, 14.443)' fill='%232cd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2262' data-name='Groupe 2262' transform='translate(568.016 0.163)' opacity='0.868'%3E%3Cg id='Groupe_2261' data-name='Groupe 2261'%3E%3Cg id='Groupe_2260' data-name='Groupe 2260' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3240' data-name='Rectangle 3240' width='13.642' height='13.642' transform='translate(13.621 14.382) rotate(-176.801)' fill='%232fd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2265' data-name='Groupe 2265' transform='translate(551.309 0.19)' opacity='0.846'%3E%3Cg id='Groupe_2264' data-name='Groupe 2264'%3E%3Cg id='Groupe_2263' data-name='Groupe 2263' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3242' data-name='Rectangle 3242' width='13.463' height='13.463' transform='translate(13.434 14.322) rotate(-176.217)' fill='%2332d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2268' data-name='Groupe 2268' transform='translate(534.604 0.217)' opacity='0.824'%3E%3Cg id='Groupe_2267' data-name='Groupe 2267'%3E%3Cg id='Groupe_2266' data-name='Groupe 2266' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3244' data-name='Rectangle 3244' width='13.285' height='13.285' transform='translate(13.246 14.261) rotate(-175.617)' fill='%2335d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2271' data-name='Groupe 2271' transform='translate(517.897 0.244)' opacity='0.802'%3E%3Cg id='Groupe_2270' data-name='Groupe 2270'%3E%3Cg id='Groupe_2269' data-name='Groupe 2269' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3246' data-name='Rectangle 3246' width='13.109' height='13.109' transform='matrix(-0.996, -0.087, 0.087, -0.996, 13.059, 14.201)' fill='%2337d7d7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2274' data-name='Groupe 2274' transform='translate(501.19 0.271)' opacity='0.78'%3E%3Cg id='Groupe_2273' data-name='Groupe 2273'%3E%3Cg id='Groupe_2272' data-name='Groupe 2272' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3248' data-name='Rectangle 3248' width='12.933' height='12.934' transform='translate(12.872 14.14) rotate(-174.372)' fill='%233ad8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2277' data-name='Groupe 2277' transform='translate(484.484 0.299)' opacity='0.758'%3E%3Cg id='Groupe_2276' data-name='Groupe 2276'%3E%3Cg id='Groupe_2275' data-name='Groupe 2275' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_3250' data-name='Rectangle 3250' width='12.76' height='12.761' transform='translate(12.684 14.08) rotate(-173.722)' fill='%233dd8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2280' data-name='Groupe 2280' transform='translate(467.778 0.326)' opacity='0.736'%3E%3Cg id='Groupe_2279' data-name='Groupe 2279'%3E%3Cg id='Groupe_2278' data-name='Groupe 2278' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_3252' data-name='Rectangle 3252' width='12.589' height='12.589' transform='translate(12.496 14.019) rotate(-173.054)' fill='%2340d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2283' data-name='Groupe 2283' transform='translate(451.072 0.353)' opacity='0.714'%3E%3Cg id='Groupe_2282' data-name='Groupe 2282'%3E%3Cg id='Groupe_2281' data-name='Groupe 2281' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3254' data-name='Rectangle 3254' width='12.419' height='12.419' transform='translate(12.309 13.958) rotate(-172.368)' fill='%2343d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2286' data-name='Groupe 2286' transform='translate(434.365 0.38)' opacity='0.692'%3E%3Cg id='Groupe_2285' data-name='Groupe 2285'%3E%3Cg id='Groupe_2284' data-name='Groupe 2284' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_3256' data-name='Rectangle 3256' width='12.251' height='12.251' transform='translate(12.121 13.898) rotate(-171.662)' fill='%2345dada'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2289' data-name='Groupe 2289' transform='translate(417.659 0.407)' opacity='0.67'%3E%3Cg id='Groupe_2288' data-name='Groupe 2288'%3E%3Cg id='Groupe_2287' data-name='Groupe 2287' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_3258' data-name='Rectangle 3258' width='12.084' height='12.085' transform='translate(11.934 13.837) rotate(-170.941)' fill='%2348dbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2292' data-name='Groupe 2292' transform='translate(400.953 0.434)' opacity='0.648'%3E%3Cg id='Groupe_2291' data-name='Groupe 2291'%3E%3Cg id='Groupe_2290' data-name='Groupe 2290' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_3260' data-name='Rectangle 3260' width='11.92' height='11.921' transform='translate(11.746 13.777) rotate(-170.197)' fill='%234bdbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2295' data-name='Groupe 2295' transform='translate(384.246 0.461)' opacity='0.626'%3E%3Cg id='Groupe_2294' data-name='Groupe 2294'%3E%3Cg id='Groupe_2293' data-name='Groupe 2293' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_3262' data-name='Rectangle 3262' width='11.759' height='11.759' transform='translate(11.559 13.716) rotate(-169.432)' fill='%234edcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2298' data-name='Groupe 2298' transform='translate(367.54 0.489)' opacity='0.604'%3E%3Cg id='Groupe_2297' data-name='Groupe 2297'%3E%3Cg id='Groupe_2296' data-name='Groupe 2296' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_3264' data-name='Rectangle 3264' width='11.599' height='11.599' transform='matrix(-0.98, -0.197, 0.197, -0.98, 11.372, 13.655)' fill='%2351dcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2301' data-name='Groupe 2301' transform='translate(350.834 0.516)' opacity='0.582'%3E%3Cg id='Groupe_2300' data-name='Groupe 2300'%3E%3Cg id='Groupe_2299' data-name='Groupe 2299' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_3266' data-name='Rectangle 3266' width='11.441' height='11.441' transform='translate(11.184 13.595) rotate(-167.836)' fill='%2353dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2304' data-name='Groupe 2304' transform='translate(334.127 0.543)' opacity='0.56'%3E%3Cg id='Groupe_2303' data-name='Groupe 2303'%3E%3Cg id='Groupe_2302' data-name='Groupe 2302' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_3268' data-name='Rectangle 3268' width='11.286' height='11.286' transform='translate(10.997 13.534) rotate(-167.006)' fill='%2356dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2307' data-name='Groupe 2307' transform='translate(317.42 0.57)' opacity='0.538'%3E%3Cg id='Groupe_2306' data-name='Groupe 2306'%3E%3Cg id='Groupe_2305' data-name='Groupe 2305' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_3270' data-name='Rectangle 3270' width='11.132' height='11.133' transform='matrix(-0.971, -0.239, 0.239, -0.971, 10.81, 13.474)' fill='%2359dede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2310' data-name='Groupe 2310' transform='translate(300.715 0.597)' opacity='0.516'%3E%3Cg id='Groupe_2309' data-name='Groupe 2309'%3E%3Cg id='Groupe_2308' data-name='Groupe 2308' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_3272' data-name='Rectangle 3272' width='10.982' height='10.982' transform='matrix(-0.967, -0.254, 0.254, -0.967, 10.622, 13.413)' fill='%235cdede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2313' data-name='Groupe 2313' transform='translate(284.008 0.624)' opacity='0.494'%3E%3Cg id='Groupe_2312' data-name='Groupe 2312'%3E%3Cg id='Groupe_2311' data-name='Groupe 2311' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_3274' data-name='Rectangle 3274' width='10.834' height='10.835' transform='translate(10.434 13.352) rotate(-164.377)' fill='%235fdfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2316' data-name='Groupe 2316' transform='translate(267.301 0.651)' opacity='0.472'%3E%3Cg id='Groupe_2315' data-name='Groupe 2315'%3E%3Cg id='Groupe_2314' data-name='Groupe 2314' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_3276' data-name='Rectangle 3276' width='10.689' height='10.689' transform='translate(10.247 13.292) rotate(-163.45)' fill='%2361dfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2319' data-name='Groupe 2319' transform='translate(250.596 0.678)' opacity='0.45'%3E%3Cg id='Groupe_2318' data-name='Groupe 2318'%3E%3Cg id='Groupe_2317' data-name='Groupe 2317' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_3278' data-name='Rectangle 3278' width='10.548' height='10.548' transform='translate(10.059 13.231) rotate(-162.5)' fill='%2364e0e0'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2322' data-name='Groupe 2322' transform='translate(233.889 0.706)' opacity='0.428'%3E%3Cg id='Groupe_2321' data-name='Groupe 2321'%3E%3Cg id='Groupe_2320' data-name='Groupe 2320' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_3280' data-name='Rectangle 3280' width='10.408' height='10.408' transform='translate(9.872 13.171) rotate(-161.522)' fill='%2367e1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2325' data-name='Groupe 2325' transform='translate(217.183 0.733)' opacity='0.406'%3E%3Cg id='Groupe_2324' data-name='Groupe 2324'%3E%3Cg id='Groupe_2323' data-name='Groupe 2323' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_3282' data-name='Rectangle 3282' width='10.272' height='10.272' transform='translate(9.684 13.11) rotate(-160.523)' fill='%236ae1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2328' data-name='Groupe 2328' transform='translate(200.476 0.76)' opacity='0.384'%3E%3Cg id='Groupe_2327' data-name='Groupe 2327'%3E%3Cg id='Groupe_2326' data-name='Groupe 2326' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_3284' data-name='Rectangle 3284' width='10.139' height='10.14' transform='matrix(-0.937, -0.35, 0.35, -0.937, 9.497, 13.049)' fill='%236de2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2331' data-name='Groupe 2331' transform='translate(183.77 0.787)' opacity='0.362'%3E%3Cg id='Groupe_2330' data-name='Groupe 2330'%3E%3Cg id='Groupe_2329' data-name='Groupe 2329' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_3286' data-name='Rectangle 3286' width='10.01' height='10.01' transform='translate(9.31 12.989) rotate(-158.436)' fill='%2370e2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2334' data-name='Groupe 2334' transform='translate(167.064 0.814)' opacity='0.34'%3E%3Cg id='Groupe_2333' data-name='Groupe 2333'%3E%3Cg id='Groupe_2332' data-name='Groupe 2332' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_3288' data-name='Rectangle 3288' width='9.884' height='9.885' transform='translate(9.122 12.928) rotate(-157.353)' fill='%2372e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2337' data-name='Groupe 2337' transform='translate(150.357 0.841)' opacity='0.318'%3E%3Cg id='Groupe_2336' data-name='Groupe 2336'%3E%3Cg id='Groupe_2335' data-name='Groupe 2335' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_3290' data-name='Rectangle 3290' width='9.762' height='9.762' transform='translate(8.935 12.868) rotate(-156.241)' fill='%2375e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2340' data-name='Groupe 2340' transform='translate(133.651 0.868)' opacity='0.296'%3E%3Cg id='Groupe_2339' data-name='Groupe 2339'%3E%3Cg id='Groupe_2338' data-name='Groupe 2338' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_3292' data-name='Rectangle 3292' width='9.644' height='9.643' transform='translate(8.747 12.807) rotate(-155.101)' fill='%2378e4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2343' data-name='Groupe 2343' transform='translate(116.945 0.896)' opacity='0.274'%3E%3Cg id='Groupe_2342' data-name='Groupe 2342'%3E%3Cg id='Groupe_2341' data-name='Groupe 2341' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_3294' data-name='Rectangle 3294' width='9.528' height='9.529' transform='translate(8.559 12.746) rotate(-153.937)' fill='%237be4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2346' data-name='Groupe 2346' transform='translate(100.238 0.923)' opacity='0.252'%3E%3Cg id='Groupe_2345' data-name='Groupe 2345'%3E%3Cg id='Groupe_2344' data-name='Groupe 2344' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_3296' data-name='Rectangle 3296' width='9.418' height='9.419' transform='translate(8.372 12.686) rotate(-152.744)' fill='%237ee5e5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2349' data-name='Groupe 2349' transform='translate(83.532 0.95)' opacity='0.23'%3E%3Cg id='Groupe_2348' data-name='Groupe 2348'%3E%3Cg id='Groupe_2347' data-name='Groupe 2347' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_3298' data-name='Rectangle 3298' width='9.312' height='9.312' transform='matrix(-0.879, -0.477, 0.477, -0.879, 8.185, 12.625)' fill='%2381e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2352' data-name='Groupe 2352' transform='translate(66.826 0.977)' opacity='0.208'%3E%3Cg id='Groupe_2351' data-name='Groupe 2351'%3E%3Cg id='Groupe_2350' data-name='Groupe 2350' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_3300' data-name='Rectangle 3300' width='9.21' height='9.21' transform='matrix(-0.868, -0.496, 0.496, -0.868, 7.997, 12.565)' fill='%2383e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2355' data-name='Groupe 2355' transform='translate(50.119 1.004)' opacity='0.186'%3E%3Cg id='Groupe_2354' data-name='Groupe 2354'%3E%3Cg id='Groupe_2353' data-name='Groupe 2353' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_3302' data-name='Rectangle 3302' width='9.112' height='9.112' transform='matrix(-0.857, -0.515, 0.515, -0.857, 7.81, 12.504)' fill='%2386e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2358' data-name='Groupe 2358' transform='translate(33.412 1.031)' opacity='0.164'%3E%3Cg id='Groupe_2357' data-name='Groupe 2357'%3E%3Cg id='Groupe_2356' data-name='Groupe 2356' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_3304' data-name='Rectangle 3304' width='9.019' height='9.019' transform='translate(7.623 12.443) rotate(-147.685)' fill='%2389e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2361' data-name='Groupe 2361' transform='translate(16.707 1.058)' opacity='0.142'%3E%3Cg id='Groupe_2360' data-name='Groupe 2360'%3E%3Cg id='Groupe_2359' data-name='Groupe 2359' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_3306' data-name='Rectangle 3306' width='8.93' height='8.931' transform='translate(7.435 12.383) rotate(-146.359)' fill='%238ce8e8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2364' data-name='Groupe 2364' transform='translate(0 1.086)' opacity='0.12'%3E%3Cg id='Groupe_2363' data-name='Groupe 2363'%3E%3Cg id='Groupe_2362' data-name='Groupe 2362' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_3308' data-name='Rectangle 3308' width='8.847' height='8.847' transform='matrix(-0.819, -0.574, 0.574, -0.819, 7.248, 12.322)' fill='%238fe9e9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.image__divider.blue {
  background-image: url("data:image/svg+xml,%3Csvg id='Divider-blue' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='730' height='17.996' viewBox='0 0 730 17.996'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_2959' data-name='Rectangle 2959' width='730' height='17.996' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_2876' data-name='Rectangle 2876' width='15.761' height='17.996' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_2878' data-name='Rectangle 2878' width='15.696' height='17.922' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_2880' data-name='Rectangle 2880' width='15.631' height='17.848' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_2882' data-name='Rectangle 2882' width='15.566' height='17.774' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_2884' data-name='Rectangle 2884' width='15.501' height='17.7' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_2886' data-name='Rectangle 2886' width='15.437' height='17.626' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_2888' data-name='Rectangle 2888' width='15.372' height='17.552' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_2890' data-name='Rectangle 2890' width='15.308' height='17.478' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_2892' data-name='Rectangle 2892' width='15.242' height='17.404' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_2894' data-name='Rectangle 2894' width='15.178' height='17.331' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_2896' data-name='Rectangle 2896' width='15.113' height='17.257' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_2898' data-name='Rectangle 2898' width='15.048' height='17.183' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_2900' data-name='Rectangle 2900' width='14.984' height='17.109' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_2902' data-name='Rectangle 2902' width='14.918' height='17.035' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_2904' data-name='Rectangle 2904' width='14.854' height='16.961' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_2906' data-name='Rectangle 2906' width='14.789' height='16.887' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_2908' data-name='Rectangle 2908' width='14.724' height='16.813' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_2910' data-name='Rectangle 2910' width='14.66' height='16.739' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_2912' data-name='Rectangle 2912' width='14.595' height='16.665' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_2914' data-name='Rectangle 2914' width='14.53' height='16.591' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_2916' data-name='Rectangle 2916' width='14.465' height='16.517' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_2918' data-name='Rectangle 2918' width='14.401' height='16.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_2920' data-name='Rectangle 2920' width='14.336' height='16.369' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_2922' data-name='Rectangle 2922' width='14.271' height='16.295' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_2924' data-name='Rectangle 2924' width='14.207' height='16.221' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_2926' data-name='Rectangle 2926' width='14.141' height='16.147' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_2928' data-name='Rectangle 2928' width='14.077' height='16.073' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_2930' data-name='Rectangle 2930' width='14.012' height='15.999' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_2932' data-name='Rectangle 2932' width='13.947' height='15.926' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_2934' data-name='Rectangle 2934' width='13.883' height='15.852' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_2936' data-name='Rectangle 2936' width='13.817' height='15.778' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_2938' data-name='Rectangle 2938' width='13.753' height='15.704' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_2940' data-name='Rectangle 2940' width='13.688' height='15.63' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_2942' data-name='Rectangle 2942' width='13.623' height='15.556' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_2944' data-name='Rectangle 2944' width='13.559' height='15.482' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_2946' data-name='Rectangle 2946' width='13.494' height='15.408' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_2948' data-name='Rectangle 2948' width='13.429' height='15.334' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_2950' data-name='Rectangle 2950' width='13.364' height='15.26' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_2952' data-name='Rectangle 2952' width='13.3' height='15.186' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_2954' data-name='Rectangle 2954' width='13.235' height='15.112' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_2956' data-name='Rectangle 2956' width='13.17' height='15.038' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Groupe_1833' data-name='Groupe 1833' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1832' data-name='Groupe 1832' transform='translate(0 0)'%3E%3Cg id='Groupe_1831' data-name='Groupe 1831' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1830' data-name='Groupe 1830' transform='translate(0 0)'%3E%3Cg id='Groupe_1829' data-name='Groupe 1829'%3E%3Cg id='Groupe_1828' data-name='Groupe 1828' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1707' data-name='Groupe 1707' transform='translate(714.239)'%3E%3Cg id='Groupe_1706' data-name='Groupe 1706'%3E%3Cg id='Groupe_1705' data-name='Groupe 1705' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_2875' data-name='Rectangle 2875' width='15.761' height='17.996' transform='translate(0 0)' fill='%231ed2d2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1710' data-name='Groupe 1710' transform='translate(696.383 0.033)' opacity='0.978'%3E%3Cg id='Groupe_1709' data-name='Groupe 1709'%3E%3Cg id='Groupe_1708' data-name='Groupe 1708' clip-path='url(%23clip-path-5)'%3E%3Cpath id='Tracé_2101' data-name='Tracé 2101' d='M0,0,15.561.019l.019,17.768L.019,17.768Z' transform='matrix(-1, -0.009, 0.009, -1, 15.56, 17.922)' fill='%2321d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1713' data-name='Groupe 1713' transform='translate(678.527 0.066)' opacity='0.956'%3E%3Cg id='Groupe_1712' data-name='Groupe 1712'%3E%3Cg id='Groupe_1711' data-name='Groupe 1711' clip-path='url(%23clip-path-6)'%3E%3Cpath id='Tracé_2102' data-name='Tracé 2102' d='M0,0,15.363.039,15.4,17.579.039,17.541Z' transform='translate(15.36 17.848) rotate(-178.987)' fill='%2324d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1716' data-name='Groupe 1716' transform='translate(660.671 0.099)' opacity='0.934'%3E%3Cg id='Groupe_1715' data-name='Groupe 1715'%3E%3Cg id='Groupe_1714' data-name='Groupe 1714' clip-path='url(%23clip-path-7)'%3E%3Cpath id='Tracé_2103' data-name='Tracé 2103' d='M0,0,15.166.058l.058,17.315L.058,17.315Z' transform='translate(15.16 17.774) rotate(-178.465)' fill='%2327d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1719' data-name='Groupe 1719' transform='translate(642.815 0.132)' opacity='0.912'%3E%3Cg id='Groupe_1718' data-name='Groupe 1718'%3E%3Cg id='Groupe_1717' data-name='Groupe 1717' clip-path='url(%23clip-path-8)'%3E%3Cpath id='Tracé_2104' data-name='Tracé 2104' d='M0,0,14.972.077l.077,17.089L.077,17.089Z' transform='translate(14.959 17.7) rotate(-177.925)' fill='%2329d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1722' data-name='Groupe 1722' transform='translate(624.96 0.166)' opacity='0.89'%3E%3Cg id='Groupe_1721' data-name='Groupe 1721'%3E%3Cg id='Groupe_1720' data-name='Groupe 1720' clip-path='url(%23clip-path-9)'%3E%3Cpath id='Tracé_2105' data-name='Tracé 2105' d='M0,0,14.779.1l.1,16.865L.1,16.865Z' transform='matrix(-0.999, -0.046, 0.046, -0.999, 14.759, 17.626)' fill='%232cd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1725' data-name='Groupe 1725' transform='translate(607.103 0.199)' opacity='0.868'%3E%3Cg id='Groupe_1724' data-name='Groupe 1724'%3E%3Cg id='Groupe_1723' data-name='Groupe 1723' clip-path='url(%23clip-path-10)'%3E%3Cpath id='Tracé_2106' data-name='Tracé 2106' d='M0,0,14.587.115,14.7,16.758.115,16.642Z' transform='translate(14.559 17.552) rotate(-176.801)' fill='%232fd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1728' data-name='Groupe 1728' transform='translate(589.247 0.232)' opacity='0.846'%3E%3Cg id='Groupe_1727' data-name='Groupe 1727'%3E%3Cg id='Groupe_1726' data-name='Groupe 1726' clip-path='url(%23clip-path-11)'%3E%3Cpath id='Tracé_2107' data-name='Tracé 2107' d='M0,0,14.4.134l.134,16.421-14.4-.134Z' transform='translate(14.358 17.478) rotate(-176.217)' fill='%2332d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1731' data-name='Groupe 1731' transform='translate(571.392 0.265)' opacity='0.824'%3E%3Cg id='Groupe_1730' data-name='Groupe 1730'%3E%3Cg id='Groupe_1729' data-name='Groupe 1729' clip-path='url(%23clip-path-12)'%3E%3Cpath id='Tracé_2108' data-name='Tracé 2108' d='M0,0,14.211.153l.153,16.2L.153,16.2Z' transform='translate(14.158 17.405) rotate(-175.617)' fill='%2335d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1734' data-name='Groupe 1734' transform='translate(553.535 0.298)' opacity='0.802'%3E%3Cg id='Groupe_1733' data-name='Groupe 1733'%3E%3Cg id='Groupe_1732' data-name='Groupe 1732' clip-path='url(%23clip-path-13)'%3E%3Cpath id='Tracé_2109' data-name='Tracé 2109' d='M0,0,14.026.172,14.2,16.156.172,15.983Z' transform='matrix(-0.996, -0.087, 0.087, -0.996, 13.958, 17.331)' fill='%2337d7d7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1737' data-name='Groupe 1737' transform='translate(535.679 0.331)' opacity='0.78'%3E%3Cg id='Groupe_1736' data-name='Groupe 1736'%3E%3Cg id='Groupe_1735' data-name='Groupe 1735' clip-path='url(%23clip-path-14)'%3E%3Cpath id='Tracé_2110' data-name='Tracé 2110' d='M0,0,13.842.191l.191,15.766L.191,15.766Z' transform='translate(13.757 17.257) rotate(-174.372)' fill='%233ad8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1740' data-name='Groupe 1740' transform='translate(517.824 0.364)' opacity='0.758'%3E%3Cg id='Groupe_1739' data-name='Groupe 1739'%3E%3Cg id='Groupe_1738' data-name='Groupe 1738' clip-path='url(%23clip-path-15)'%3E%3Cpath id='Tracé_2111' data-name='Tracé 2111' d='M0,0,13.662.21l.21,15.55L.21,15.55Z' transform='translate(13.557 17.183) rotate(-173.722)' fill='%233dd8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1743' data-name='Groupe 1743' transform='translate(499.967 0.397)' opacity='0.736'%3E%3Cg id='Groupe_1742' data-name='Groupe 1742'%3E%3Cg id='Groupe_1741' data-name='Groupe 1741' clip-path='url(%23clip-path-16)'%3E%3Cpath id='Tracé_2112' data-name='Tracé 2112' d='M0,0,13.483.229l.229,15.336L.229,15.336Z' transform='translate(13.356 17.109) rotate(-173.054)' fill='%2340d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1746' data-name='Groupe 1746' transform='translate(482.112 0.431)' opacity='0.714'%3E%3Cg id='Groupe_1745' data-name='Groupe 1745'%3E%3Cg id='Groupe_1744' data-name='Groupe 1744' clip-path='url(%23clip-path-17)'%3E%3Cpath id='Tracé_2113' data-name='Tracé 2113' d='M0,0,13.307.248l.248,15.123L.248,15.123Z' transform='translate(13.156 17.035) rotate(-172.368)' fill='%2343d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1749' data-name='Groupe 1749' transform='translate(464.256 0.464)' opacity='0.692'%3E%3Cg id='Groupe_1748' data-name='Groupe 1748'%3E%3Cg id='Groupe_1747' data-name='Groupe 1747' clip-path='url(%23clip-path-18)'%3E%3Cpath id='Tracé_2114' data-name='Tracé 2114' d='M0,0,13.133.266,13.4,15.178.266,14.912Z' transform='translate(12.956 16.961) rotate(-171.662)' fill='%2345dada'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1752' data-name='Groupe 1752' transform='translate(446.399 0.497)' opacity='0.67'%3E%3Cg id='Groupe_1751' data-name='Groupe 1751'%3E%3Cg id='Groupe_1750' data-name='Groupe 1750' clip-path='url(%23clip-path-19)'%3E%3Cpath id='Tracé_2115' data-name='Tracé 2115' d='M0,0,12.961.285l.285,14.7L.285,14.7Z' transform='translate(12.755 16.887) rotate(-170.941)' fill='%2348dbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1755' data-name='Groupe 1755' transform='translate(428.544 0.53)' opacity='0.648'%3E%3Cg id='Groupe_1754' data-name='Groupe 1754'%3E%3Cg id='Groupe_1753' data-name='Groupe 1753' clip-path='url(%23clip-path-20)'%3E%3Cpath id='Tracé_2116' data-name='Tracé 2116' d='M0,0,12.793.3l.3,14.5L.3,14.5Z' transform='translate(12.554 16.813) rotate(-170.197)' fill='%234bdbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1758' data-name='Groupe 1758' transform='translate(410.688 0.563)' opacity='0.626'%3E%3Cg id='Groupe_1757' data-name='Groupe 1757'%3E%3Cg id='Groupe_1756' data-name='Groupe 1756' clip-path='url(%23clip-path-21)'%3E%3Cpath id='Tracé_2117' data-name='Tracé 2117' d='M0,0,12.628.321l.321,14.29L.321,14.29Z' transform='translate(12.354 16.739) rotate(-169.432)' fill='%234edcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1761' data-name='Groupe 1761' transform='translate(392.831 0.596)' opacity='0.604'%3E%3Cg id='Groupe_1760' data-name='Groupe 1760'%3E%3Cg id='Groupe_1759' data-name='Groupe 1759' clip-path='url(%23clip-path-22)'%3E%3Cpath id='Tracé_2118' data-name='Tracé 2118' d='M0,0,12.465.339,12.8,14.426.339,14.087Z' transform='matrix(-0.98, -0.197, 0.197, -0.98, 12.154, 16.665)' fill='%2351dcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1764' data-name='Groupe 1764' transform='translate(374.976 0.629)' opacity='0.582'%3E%3Cg id='Groupe_1763' data-name='Groupe 1763'%3E%3Cg id='Groupe_1762' data-name='Groupe 1762' clip-path='url(%23clip-path-23)'%3E%3Cpath id='Tracé_2119' data-name='Tracé 2119' d='M0,0,12.305.357l.357,13.885L.357,13.885Z' transform='translate(11.954 16.591) rotate(-167.836)' fill='%2353dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1767' data-name='Groupe 1767' transform='translate(357.12 0.662)' opacity='0.56'%3E%3Cg id='Groupe_1766' data-name='Groupe 1766'%3E%3Cg id='Groupe_1765' data-name='Groupe 1765' clip-path='url(%23clip-path-24)'%3E%3Cpath id='Tracé_2120' data-name='Tracé 2120' d='M0,0,12.149.375l.375,13.687L.375,13.687Z' transform='translate(11.754 16.517) rotate(-167.006)' fill='%2356dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1770' data-name='Groupe 1770' transform='translate(339.263 0.695)' opacity='0.538'%3E%3Cg id='Groupe_1769' data-name='Groupe 1769'%3E%3Cg id='Groupe_1768' data-name='Groupe 1768' clip-path='url(%23clip-path-25)'%3E%3Cpath id='Tracé_2121' data-name='Tracé 2121' d='M0,0,12,.392l.392,13.49-12-.392Z' transform='matrix(-0.971, -0.239, 0.239, -0.971, 11.553, 16.443)' fill='%2359dede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1773' data-name='Groupe 1773' transform='translate(321.408 0.729)' opacity='0.516'%3E%3Cg id='Groupe_1772' data-name='Groupe 1772'%3E%3Cg id='Groupe_1771' data-name='Groupe 1771' clip-path='url(%23clip-path-26)'%3E%3Cpath id='Tracé_2122' data-name='Tracé 2122' d='M0,0,11.846.409l.409,13.3L.409,13.3Z' transform='matrix(-0.967, -0.254, 0.254, -0.967, 11.352, 16.369)' fill='%235cdede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1776' data-name='Groupe 1776' transform='translate(303.552 0.762)' opacity='0.494'%3E%3Cg id='Groupe_1775' data-name='Groupe 1775'%3E%3Cg id='Groupe_1774' data-name='Groupe 1774' clip-path='url(%23clip-path-27)'%3E%3Cpath id='Tracé_2123' data-name='Tracé 2123' d='M0,0,11.7.426l.426,13.1L.426,13.1Z' transform='translate(11.152 16.295) rotate(-164.377)' fill='%235fdfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1779' data-name='Groupe 1779' transform='translate(285.695 0.795)' opacity='0.472'%3E%3Cg id='Groupe_1778' data-name='Groupe 1778'%3E%3Cg id='Groupe_1777' data-name='Groupe 1777' clip-path='url(%23clip-path-28)'%3E%3Cpath id='Tracé_2124' data-name='Tracé 2124' d='M0,0,11.556.442,12,13.356.442,12.914Z' transform='translate(10.952 16.221) rotate(-163.45)' fill='%2361dfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1782' data-name='Groupe 1782' transform='translate(267.84 0.828)' opacity='0.45'%3E%3Cg id='Groupe_1781' data-name='Groupe 1781'%3E%3Cg id='Groupe_1780' data-name='Groupe 1780' clip-path='url(%23clip-path-29)'%3E%3Cpath id='Tracé_2125' data-name='Tracé 2125' d='M0,0,11.418.459l.459,12.728L.459,12.728Z' transform='translate(10.751 16.147) rotate(-162.5)' fill='%2364e0e0'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1785' data-name='Groupe 1785' transform='translate(249.984 0.861)' opacity='0.428'%3E%3Cg id='Groupe_1784' data-name='Groupe 1784'%3E%3Cg id='Groupe_1783' data-name='Groupe 1783' clip-path='url(%23clip-path-30)'%3E%3Cpath id='Tracé_2126' data-name='Tracé 2126' d='M0,0,11.283.474l.474,12.544L.474,12.544Z' transform='translate(10.551 16.073) rotate(-161.522)' fill='%2367e1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1788' data-name='Groupe 1788' transform='translate(232.128 0.894)' opacity='0.406'%3E%3Cg id='Groupe_1787' data-name='Groupe 1787'%3E%3Cg id='Groupe_1786' data-name='Groupe 1786' clip-path='url(%23clip-path-31)'%3E%3Cpath id='Tracé_2127' data-name='Tracé 2127' d='M0,0,11.152.49l.49,12.363L.49,12.363Z' transform='translate(10.35 15.999) rotate(-160.523)' fill='%236ae1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1791' data-name='Groupe 1791' transform='translate(214.272 0.927)' opacity='0.384'%3E%3Cg id='Groupe_1790' data-name='Groupe 1790'%3E%3Cg id='Groupe_1789' data-name='Groupe 1789' clip-path='url(%23clip-path-32)'%3E%3Cpath id='Tracé_2128' data-name='Tracé 2128' d='M0,0,11.026.5l.5,12.186L.5,12.186Z' transform='matrix(-0.937, -0.35, 0.35, -0.937, 10.151, 15.926)' fill='%236de2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1794' data-name='Groupe 1794' transform='translate(196.416 0.96)' opacity='0.362'%3E%3Cg id='Groupe_1793' data-name='Groupe 1793'%3E%3Cg id='Groupe_1792' data-name='Groupe 1792' clip-path='url(%23clip-path-33)'%3E%3Cpath id='Tracé_2129' data-name='Tracé 2129' d='M0,0,10.9.519l.519,12.012-10.9-.519Z' transform='translate(9.95 15.852) rotate(-158.436)' fill='%2370e2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1797' data-name='Groupe 1797' transform='translate(178.56 0.994)' opacity='0.34'%3E%3Cg id='Groupe_1796' data-name='Groupe 1796'%3E%3Cg id='Groupe_1795' data-name='Groupe 1795' clip-path='url(%23clip-path-34)'%3E%3Cpath id='Tracé_2130' data-name='Tracé 2130' d='M0,0,10.787.533l.533,11.841L.533,11.841Z' transform='translate(9.75 15.778) rotate(-157.353)' fill='%2372e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1800' data-name='Groupe 1800' transform='translate(160.704 1.027)' opacity='0.318'%3E%3Cg id='Groupe_1799' data-name='Groupe 1799'%3E%3Cg id='Groupe_1798' data-name='Groupe 1798' clip-path='url(%23clip-path-35)'%3E%3Cpath id='Tracé_2131' data-name='Tracé 2131' d='M0,0,10.674.546l.546,11.674L.546,11.674Z' transform='translate(9.549 15.704) rotate(-156.241)' fill='%2375e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1803' data-name='Groupe 1803' transform='translate(142.848 1.06)' opacity='0.296'%3E%3Cg id='Groupe_1802' data-name='Groupe 1802'%3E%3Cg id='Groupe_1801' data-name='Groupe 1801' clip-path='url(%23clip-path-36)'%3E%3Cpath id='Tracé_2132' data-name='Tracé 2132' d='M0,0,10.567.558l.558,11.51L.558,11.51Z' transform='translate(9.349 15.63) rotate(-155.101)' fill='%2378e4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1806' data-name='Groupe 1806' transform='translate(124.992 1.093)' opacity='0.274'%3E%3Cg id='Groupe_1805' data-name='Groupe 1805'%3E%3Cg id='Groupe_1804' data-name='Groupe 1804' clip-path='url(%23clip-path-37)'%3E%3Cpath id='Tracé_2133' data-name='Tracé 2133' d='M0,0,10.463.57l.57,11.35L.57,11.35Z' transform='translate(9.148 15.556) rotate(-153.937)' fill='%237be4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1809' data-name='Groupe 1809' transform='translate(107.136 1.126)' opacity='0.252'%3E%3Cg id='Groupe_1808' data-name='Groupe 1808'%3E%3Cg id='Groupe_1807' data-name='Groupe 1807' clip-path='url(%23clip-path-38)'%3E%3Cpath id='Tracé_2134' data-name='Tracé 2134' d='M0,0,10.365.581l.581,11.195L.581,11.195Z' transform='translate(8.948 15.482) rotate(-152.744)' fill='%237ee5e5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1812' data-name='Groupe 1812' transform='translate(89.28 1.159)' opacity='0.23'%3E%3Cg id='Groupe_1811' data-name='Groupe 1811'%3E%3Cg id='Groupe_1810' data-name='Groupe 1810' clip-path='url(%23clip-path-39)'%3E%3Cpath id='Tracé_2135' data-name='Tracé 2135' d='M0,0,10.274.592l.592,11.043L.592,11.043Z' transform='matrix(-0.879, -0.477, 0.477, -0.879, 8.748, 15.408)' fill='%2381e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1815' data-name='Groupe 1815' transform='translate(71.424 1.192)' opacity='0.208'%3E%3Cg id='Groupe_1814' data-name='Groupe 1814'%3E%3Cg id='Groupe_1813' data-name='Groupe 1813' clip-path='url(%23clip-path-40)'%3E%3Cpath id='Tracé_2136' data-name='Tracé 2136' d='M0,0,10.187.6l.6,10.9L.6,10.9Z' transform='matrix(-0.868, -0.496, 0.496, -0.868, 8.547, 15.334)' fill='%2383e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1818' data-name='Groupe 1818' transform='translate(53.568 1.226)' opacity='0.186'%3E%3Cg id='Groupe_1817' data-name='Groupe 1817'%3E%3Cg id='Groupe_1816' data-name='Groupe 1816' clip-path='url(%23clip-path-41)'%3E%3Cpath id='Tracé_2137' data-name='Tracé 2137' d='M0,0,10.106.61l.61,10.754L.61,10.754Z' transform='matrix(-0.857, -0.515, 0.515, -0.857, 8.347, 15.26)' fill='%2386e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1821' data-name='Groupe 1821' transform='translate(35.712 1.259)' opacity='0.164'%3E%3Cg id='Groupe_1820' data-name='Groupe 1820'%3E%3Cg id='Groupe_1819' data-name='Groupe 1819' clip-path='url(%23clip-path-42)'%3E%3Cpath id='Tracé_2138' data-name='Tracé 2138' d='M0,0,10.031.618l.618,10.616L.618,10.616Z' transform='translate(8.147 15.186) rotate(-147.685)' fill='%2389e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1824' data-name='Groupe 1824' transform='translate(17.856 1.292)' opacity='0.142'%3E%3Cg id='Groupe_1823' data-name='Groupe 1823'%3E%3Cg id='Groupe_1822' data-name='Groupe 1822' clip-path='url(%23clip-path-43)'%3E%3Cpath id='Tracé_2139' data-name='Tracé 2139' d='M0,0,9.961.624l.624,10.484L.624,10.484Z' transform='translate(7.946 15.112) rotate(-146.359)' fill='%238ce8e8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1827' data-name='Groupe 1827' transform='translate(0 1.325)' opacity='0.12'%3E%3Cg id='Groupe_1826' data-name='Groupe 1826'%3E%3Cg id='Groupe_1825' data-name='Groupe 1825' clip-path='url(%23clip-path-44)'%3E%3Cpath id='Tracé_2140' data-name='Tracé 2140' d='M0,0,9.9.63l.63,10.356-9.9-.63Z' transform='matrix(-0.819, -0.574, 0.574, -0.819, 7.747, 15.038)' fill='%238fe9e9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.image.left .image__divider {
  content: "";
  height: 15px;
  width: 80%;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  position: absolute;
  bottom: 32px;
  left: 0;
  transform: rotate(180deg);
  z-index: 2;
}
.image.left .image__divider.orange {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='730' height='15.761' viewBox='0 0 730 15.761'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_2874' data-name='Rectangle 2874' width='730' height='15.761' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_2791' data-name='Rectangle 2791' width='15.87' height='15.87' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_2793' data-name='Rectangle 2793' width='15.696' height='15.696' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_2795' data-name='Rectangle 2795' width='15.632' height='15.631' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_2797' data-name='Rectangle 2797' width='15.566' height='15.566' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_2799' data-name='Rectangle 2799' width='15.501' height='15.502' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_2801' data-name='Rectangle 2801' width='15.436' height='15.437' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_2803' data-name='Rectangle 2803' width='15.372' height='15.372' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_2805' data-name='Rectangle 2805' width='15.308' height='15.307' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_2807' data-name='Rectangle 2807' width='15.242' height='15.242' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_2809' data-name='Rectangle 2809' width='15.177' height='15.178' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_2811' data-name='Rectangle 2811' width='15.113' height='15.113' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_2813' data-name='Rectangle 2813' width='15.048' height='15.048' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_2815' data-name='Rectangle 2815' width='14.984' height='14.983' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_2817' data-name='Rectangle 2817' width='14.919' height='14.919' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_2819' data-name='Rectangle 2819' width='14.854' height='14.854' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_2821' data-name='Rectangle 2821' width='14.789' height='14.789' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_2823' data-name='Rectangle 2823' width='14.725' height='14.724' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_2825' data-name='Rectangle 2825' width='14.66' height='14.66' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_2827' data-name='Rectangle 2827' width='14.595' height='14.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_2829' data-name='Rectangle 2829' width='14.53' height='14.53' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_2831' data-name='Rectangle 2831' width='14.465' height='14.465' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_2833' data-name='Rectangle 2833' width='14.4' height='14.401' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_2835' data-name='Rectangle 2835' width='14.336' height='14.336' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_2837' data-name='Rectangle 2837' width='14.271' height='14.271' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_2839' data-name='Rectangle 2839' width='14.207' height='14.206' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_2841' data-name='Rectangle 2841' width='14.141' height='14.142' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_2843' data-name='Rectangle 2843' width='14.076' height='14.077' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_2845' data-name='Rectangle 2845' width='14.012' height='14.012' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_2847' data-name='Rectangle 2847' width='13.947' height='13.947' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_2849' data-name='Rectangle 2849' width='13.883' height='13.883' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_2851' data-name='Rectangle 2851' width='13.818' height='13.818' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_2853' data-name='Rectangle 2853' width='13.752' height='13.753' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_2855' data-name='Rectangle 2855' width='13.688' height='13.688' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_2857' data-name='Rectangle 2857' width='13.623' height='13.624' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_2859' data-name='Rectangle 2859' width='13.559' height='13.559' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_2861' data-name='Rectangle 2861' width='13.494' height='13.494' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_2863' data-name='Rectangle 2863' width='13.429' height='13.429' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_2865' data-name='Rectangle 2865' width='13.365' height='13.364' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_2867' data-name='Rectangle 2867' width='13.3' height='13.3' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_2869' data-name='Rectangle 2869' width='13.235' height='13.235' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_2871' data-name='Rectangle 2871' width='13.17' height='13.17' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-orange' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1702' data-name='Groupe 1702' transform='translate(0 0)'%3E%3Cg id='Groupe_1701' data-name='Groupe 1701' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1700' data-name='Groupe 1700' transform='translate(0 0)'%3E%3Cg id='Groupe_1699' data-name='Groupe 1699' transform='translate(0 0)'%3E%3Cg id='Groupe_1698' data-name='Groupe 1698' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1577' data-name='Groupe 1577' transform='translate(714.13 -0.106)'%3E%3Cg id='Groupe_1576' data-name='Groupe 1576' transform='translate(0)'%3E%3Cg id='Groupe_1575' data-name='Groupe 1575' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_2790' data-name='Rectangle 2790' width='15.87' height='15.87' transform='translate(0)' fill='%23ffa000'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1580' data-name='Groupe 1580' transform='translate(696.383 0.036)' opacity='0.978'%3E%3Cg id='Groupe_1579' data-name='Groupe 1579'%3E%3Cg id='Groupe_1578' data-name='Groupe 1578' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_2792' data-name='Rectangle 2792' width='15.561' height='15.561' transform='translate(0 0.136) rotate(-0.5)' fill='%23ffa103'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1583' data-name='Groupe 1583' transform='translate(678.527 0.072)' opacity='0.956'%3E%3Cg id='Groupe_1582' data-name='Groupe 1582'%3E%3Cg id='Groupe_1581' data-name='Groupe 1581' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_2794' data-name='Rectangle 2794' width='15.363' height='15.362' transform='matrix(1, -0.018, 0.018, 1, 0, 0.271)' fill='%23ffa206'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1586' data-name='Groupe 1586' transform='translate(660.672 0.107)' opacity='0.934'%3E%3Cg id='Groupe_1585' data-name='Groupe 1585'%3E%3Cg id='Groupe_1584' data-name='Groupe 1584' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_2796' data-name='Rectangle 2796' width='15.165' height='15.165' transform='translate(0 0.407) rotate(-1.539)' fill='%23ffa30a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1589' data-name='Groupe 1589' transform='translate(642.815 0.143)' opacity='0.912'%3E%3Cg id='Groupe_1588' data-name='Groupe 1588'%3E%3Cg id='Groupe_1587' data-name='Groupe 1587' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_2798' data-name='Rectangle 2798' width='14.969' height='14.969' transform='translate(0 0.542) rotate(-2.075)' fill='%23ffa50d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1592' data-name='Groupe 1592' transform='translate(624.96 0.179)' opacity='0.89'%3E%3Cg id='Groupe_1591' data-name='Groupe 1591'%3E%3Cg id='Groupe_1590' data-name='Groupe 1590' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_2800' data-name='Rectangle 2800' width='14.774' height='14.774' transform='matrix(0.999, -0.046, 0.046, 0.999, 0, 0.678)' fill='%23ffa610'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1595' data-name='Groupe 1595' transform='translate(607.103 0.215)' opacity='0.868'%3E%3Cg id='Groupe_1594' data-name='Groupe 1594'%3E%3Cg id='Groupe_1593' data-name='Groupe 1593' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_2802' data-name='Rectangle 2802' width='14.581' height='14.581' transform='translate(0 0.814) rotate(-3.199)' fill='%23ffa713'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1598' data-name='Groupe 1598' transform='translate(589.247 0.25)' opacity='0.846'%3E%3Cg id='Groupe_1597' data-name='Groupe 1597'%3E%3Cg id='Groupe_1596' data-name='Groupe 1596' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_2804' data-name='Rectangle 2804' width='14.39' height='14.389' transform='translate(0 0.949) rotate(-3.783)' fill='%23ffa816'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1601' data-name='Groupe 1601' transform='translate(571.392 0.286)' opacity='0.824'%3E%3Cg id='Groupe_1600' data-name='Groupe 1600'%3E%3Cg id='Groupe_1599' data-name='Groupe 1599' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_2806' data-name='Rectangle 2806' width='14.199' height='14.199' transform='translate(0 1.085) rotate(-4.383)' fill='%23ffaa1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1604' data-name='Groupe 1604' transform='translate(553.535 0.322)' opacity='0.802'%3E%3Cg id='Groupe_1603' data-name='Groupe 1603'%3E%3Cg id='Groupe_1602' data-name='Groupe 1602' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_2808' data-name='Rectangle 2808' width='14.011' height='14.011' transform='translate(0 1.22) rotate(-4.995)' fill='%23ffab1d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1607' data-name='Groupe 1607' transform='translate(535.679 0.358)' opacity='0.78'%3E%3Cg id='Groupe_1606' data-name='Groupe 1606'%3E%3Cg id='Groupe_1605' data-name='Groupe 1605' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_2810' data-name='Rectangle 2810' width='13.823' height='13.824' transform='matrix(0.995, -0.098, 0.098, 0.995, 0.001, 1.356)' fill='%23ffac20'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1610' data-name='Groupe 1610' transform='translate(517.824 0.393)' opacity='0.758'%3E%3Cg id='Groupe_1609' data-name='Groupe 1609'%3E%3Cg id='Groupe_1608' data-name='Groupe 1608' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_2812' data-name='Rectangle 2812' width='13.638' height='13.638' transform='matrix(0.994, -0.109, 0.109, 0.994, 0, 1.491)' fill='%23ffad23'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1613' data-name='Groupe 1613' transform='translate(499.967 0.429)' opacity='0.736'%3E%3Cg id='Groupe_1612' data-name='Groupe 1612'%3E%3Cg id='Groupe_1611' data-name='Groupe 1611' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_2814' data-name='Rectangle 2814' width='13.455' height='13.455' transform='translate(0 1.627) rotate(-6.946)' fill='%23ffae26'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1616' data-name='Groupe 1616' transform='translate(482.111 0.465)' opacity='0.714'%3E%3Cg id='Groupe_1615' data-name='Groupe 1615'%3E%3Cg id='Groupe_1614' data-name='Groupe 1614' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_2816' data-name='Rectangle 2816' width='13.274' height='13.274' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 1.763)' fill='%23ffaf2a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1619' data-name='Groupe 1619' transform='translate(464.256 0.501)' opacity='0.692'%3E%3Cg id='Groupe_1618' data-name='Groupe 1618'%3E%3Cg id='Groupe_1617' data-name='Groupe 1617' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_2818' data-name='Rectangle 2818' width='13.094' height='13.094' transform='matrix(0.989, -0.145, 0.145, 0.989, 0, 1.899)' fill='%23ffb12d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1622' data-name='Groupe 1622' transform='translate(446.399 0.536)' opacity='0.67'%3E%3Cg id='Groupe_1621' data-name='Groupe 1621'%3E%3Cg id='Groupe_1620' data-name='Groupe 1620' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_2820' data-name='Rectangle 2820' width='12.916' height='12.916' transform='translate(0 2.034) rotate(-9.059)' fill='%23ffb230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1625' data-name='Groupe 1625' transform='translate(428.543 0.572)' opacity='0.648'%3E%3Cg id='Groupe_1624' data-name='Groupe 1624'%3E%3Cg id='Groupe_1623' data-name='Groupe 1623' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_2822' data-name='Rectangle 2822' width='12.741' height='12.741' transform='translate(0.001 2.169) rotate(-9.803)' fill='%23ffb333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1628' data-name='Groupe 1628' transform='translate(410.688 0.608)' opacity='0.626'%3E%3Cg id='Groupe_1627' data-name='Groupe 1627'%3E%3Cg id='Groupe_1626' data-name='Groupe 1626' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_2824' data-name='Rectangle 2824' width='12.568' height='12.568' transform='translate(0 2.305) rotate(-10.568)' fill='%23ffb436'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1631' data-name='Groupe 1631' transform='translate(392.831 0.644)' opacity='0.604'%3E%3Cg id='Groupe_1630' data-name='Groupe 1630'%3E%3Cg id='Groupe_1629' data-name='Groupe 1629' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_2826' data-name='Rectangle 2826' width='12.397' height='12.397' transform='translate(0 2.441) rotate(-11.355)' fill='%23ffb539'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1634' data-name='Groupe 1634' transform='translate(374.976 0.679)' opacity='0.582'%3E%3Cg id='Groupe_1633' data-name='Groupe 1633'%3E%3Cg id='Groupe_1632' data-name='Groupe 1632' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_2828' data-name='Rectangle 2828' width='12.228' height='12.228' transform='matrix(0.978, -0.211, 0.211, 0.978, 0, 2.577)' fill='%23ffb73d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1637' data-name='Groupe 1637' transform='translate(357.12 0.715)' opacity='0.56'%3E%3Cg id='Groupe_1636' data-name='Groupe 1636'%3E%3Cg id='Groupe_1635' data-name='Groupe 1635' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_2830' data-name='Rectangle 2830' width='12.063' height='12.062' transform='translate(0 2.712) rotate(-12.994)' fill='%23ffb840'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1640' data-name='Groupe 1640' transform='translate(339.263 0.751)' opacity='0.538'%3E%3Cg id='Groupe_1639' data-name='Groupe 1639'%3E%3Cg id='Groupe_1638' data-name='Groupe 1638' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_2832' data-name='Rectangle 2832' width='11.899' height='11.899' transform='translate(0 2.847) rotate(-13.844)' fill='%23ffb943'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1643' data-name='Groupe 1643' transform='translate(321.408 0.787)' opacity='0.516'%3E%3Cg id='Groupe_1642' data-name='Groupe 1642'%3E%3Cg id='Groupe_1641' data-name='Groupe 1641' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_2834' data-name='Rectangle 2834' width='11.738' height='11.738' transform='translate(0 2.983) rotate(-14.722)' fill='%23ffba46'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1646' data-name='Groupe 1646' transform='translate(303.552 0.822)' opacity='0.494'%3E%3Cg id='Groupe_1645' data-name='Groupe 1645'%3E%3Cg id='Groupe_1644' data-name='Groupe 1644' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_2836' data-name='Rectangle 2836' width='11.58' height='11.58' transform='translate(0 3.119) rotate(-15.623)' fill='%23ffbb49'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1649' data-name='Groupe 1649' transform='translate(285.695 0.858)' opacity='0.472'%3E%3Cg id='Groupe_1648' data-name='Groupe 1648'%3E%3Cg id='Groupe_1647' data-name='Groupe 1647' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_2838' data-name='Rectangle 2838' width='11.425' height='11.425' transform='translate(0.001 3.254) rotate(-16.55)' fill='%23ffbc4d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1652' data-name='Groupe 1652' transform='translate(267.84 0.894)' opacity='0.45'%3E%3Cg id='Groupe_1651' data-name='Groupe 1651'%3E%3Cg id='Groupe_1650' data-name='Groupe 1650' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_2840' data-name='Rectangle 2840' width='11.274' height='11.273' transform='translate(0 3.39) rotate(-17.5)' fill='%23ffbe50'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1655' data-name='Groupe 1655' transform='translate(249.984 0.93)' opacity='0.428'%3E%3Cg id='Groupe_1654' data-name='Groupe 1654'%3E%3Cg id='Groupe_1653' data-name='Groupe 1653' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_2842' data-name='Rectangle 2842' width='11.125' height='11.125' transform='matrix(0.948, -0.317, 0.317, 0.948, 0, 3.526)' fill='%23ffbf53'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1658' data-name='Groupe 1658' transform='translate(232.127 0.965)' opacity='0.406'%3E%3Cg id='Groupe_1657' data-name='Groupe 1657'%3E%3Cg id='Groupe_1656' data-name='Groupe 1656' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_2844' data-name='Rectangle 2844' width='10.979' height='10.979' transform='matrix(0.943, -0.333, 0.333, 0.943, 0, 3.661)' fill='%23ffc056'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1661' data-name='Groupe 1661' transform='translate(214.272 1.001)' opacity='0.384'%3E%3Cg id='Groupe_1660' data-name='Groupe 1660'%3E%3Cg id='Groupe_1659' data-name='Groupe 1659' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_2846' data-name='Rectangle 2846' width='10.837' height='10.837' transform='translate(0 3.797) rotate(-20.507)' fill='%23ffc159'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1664' data-name='Groupe 1664' transform='translate(196.416 1.037)' opacity='0.362'%3E%3Cg id='Groupe_1663' data-name='Groupe 1663'%3E%3Cg id='Groupe_1662' data-name='Groupe 1662' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_2848' data-name='Rectangle 2848' width='10.699' height='10.699' transform='translate(0 3.932) rotate(-21.565)' fill='%23ffc25d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1667' data-name='Groupe 1667' transform='translate(178.559 1.073)' opacity='0.34'%3E%3Cg id='Groupe_1666' data-name='Groupe 1666'%3E%3Cg id='Groupe_1665' data-name='Groupe 1665' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_2850' data-name='Rectangle 2850' width='10.565' height='10.565' transform='translate(0 4.068) rotate(-22.647)' fill='%23ffc460'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1670' data-name='Groupe 1670' transform='translate(160.704 1.108)' opacity='0.318'%3E%3Cg id='Groupe_1669' data-name='Groupe 1669'%3E%3Cg id='Groupe_1668' data-name='Groupe 1668' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_2852' data-name='Rectangle 2852' width='10.434' height='10.434' transform='translate(0 4.204) rotate(-23.759)' fill='%23ffc563'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1673' data-name='Groupe 1673' transform='translate(142.848 1.144)' opacity='0.296'%3E%3Cg id='Groupe_1672' data-name='Groupe 1672'%3E%3Cg id='Groupe_1671' data-name='Groupe 1671' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_2854' data-name='Rectangle 2854' width='10.307' height='10.307' transform='translate(0 4.34) rotate(-24.899)' fill='%23ffc666'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1676' data-name='Groupe 1676' transform='translate(124.992 1.18)' opacity='0.274'%3E%3Cg id='Groupe_1675' data-name='Groupe 1675'%3E%3Cg id='Groupe_1674' data-name='Groupe 1674' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_2856' data-name='Rectangle 2856' width='10.184' height='10.184' transform='matrix(0.898, -0.439, 0.439, 0.898, 0, 4.474)' fill='%23ffc769'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1679' data-name='Groupe 1679' transform='translate(107.136 1.216)' opacity='0.252'%3E%3Cg id='Groupe_1678' data-name='Groupe 1678'%3E%3Cg id='Groupe_1677' data-name='Groupe 1677' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_2858' data-name='Rectangle 2858' width='10.066' height='10.067' transform='translate(0 4.61) rotate(-27.256)' fill='%23ffc86c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1682' data-name='Groupe 1682' transform='translate(89.28 1.251)' opacity='0.23'%3E%3Cg id='Groupe_1681' data-name='Groupe 1681'%3E%3Cg id='Groupe_1680' data-name='Groupe 1680' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_2860' data-name='Rectangle 2860' width='9.953' height='9.953' transform='translate(0 4.746) rotate(-28.48)' fill='%23ffc970'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1685' data-name='Groupe 1685' transform='translate(71.424 1.287)' opacity='0.208'%3E%3Cg id='Groupe_1684' data-name='Groupe 1684'%3E%3Cg id='Groupe_1683' data-name='Groupe 1683' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_2862' data-name='Rectangle 2862' width='9.843' height='9.843' transform='translate(0 4.882) rotate(-29.731)' fill='%23ffcb73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1688' data-name='Groupe 1688' transform='translate(53.568 1.323)' opacity='0.186'%3E%3Cg id='Groupe_1687' data-name='Groupe 1687'%3E%3Cg id='Groupe_1686' data-name='Groupe 1686' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_2864' data-name='Rectangle 2864' width='9.739' height='9.739' transform='translate(0 5.017) rotate(-31.01)' fill='%23ffcc76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1691' data-name='Groupe 1691' transform='translate(35.712 1.359)' opacity='0.164'%3E%3Cg id='Groupe_1690' data-name='Groupe 1690'%3E%3Cg id='Groupe_1689' data-name='Groupe 1689' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_2866' data-name='Rectangle 2866' width='9.64' height='9.639' transform='translate(0 5.153) rotate(-32.315)' fill='%23ffcd79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1694' data-name='Groupe 1694' transform='translate(17.856 1.395)' opacity='0.142'%3E%3Cg id='Groupe_1693' data-name='Groupe 1693'%3E%3Cg id='Groupe_1692' data-name='Groupe 1692' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_2868' data-name='Rectangle 2868' width='9.545' height='9.546' transform='matrix(0.833, -0.554, 0.554, 0.833, 0, 5.288)' fill='%23ffce7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1697' data-name='Groupe 1697' transform='translate(0 1.43)' opacity='0.12'%3E%3Cg id='Groupe_1696' data-name='Groupe 1696'%3E%3Cg id='Groupe_1695' data-name='Groupe 1695' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_2870' data-name='Rectangle 2870' width='9.456' height='9.456' transform='translate(0 5.424) rotate(-34.999)' fill='%23ffd080'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.image.left .image__divider.yellow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='683' height='14.746' viewBox='0 0 683 14.746'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3397' data-name='Rectangle 3397' width='683' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3314' data-name='Rectangle 3314' width='14.746' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3316' data-name='Rectangle 3316' width='14.685' height='14.685' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3318' data-name='Rectangle 3318' width='14.625' height='14.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3320' data-name='Rectangle 3320' width='14.564' height='14.564' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3322' data-name='Rectangle 3322' width='14.503' height='14.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3324' data-name='Rectangle 3324' width='14.443' height='14.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3326' data-name='Rectangle 3326' width='14.382' height='14.382' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3328' data-name='Rectangle 3328' width='14.322' height='14.322' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3330' data-name='Rectangle 3330' width='14.261' height='14.261' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3332' data-name='Rectangle 3332' width='14.201' height='14.201' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3334' data-name='Rectangle 3334' width='14.14' height='14.14' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_3336' data-name='Rectangle 3336' width='14.079' height='14.079' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_3338' data-name='Rectangle 3338' width='14.019' height='14.019' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3340' data-name='Rectangle 3340' width='13.958' height='13.958' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_3342' data-name='Rectangle 3342' width='13.898' height='13.898' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_3344' data-name='Rectangle 3344' width='13.837' height='13.837' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_3346' data-name='Rectangle 3346' width='13.776' height='13.776' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_3348' data-name='Rectangle 3348' width='13.716' height='13.716' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_3350' data-name='Rectangle 3350' width='13.655' height='13.655' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_3352' data-name='Rectangle 3352' width='13.595' height='13.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_3354' data-name='Rectangle 3354' width='13.534' height='13.534' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_3356' data-name='Rectangle 3356' width='13.474' height='13.473' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_3358' data-name='Rectangle 3358' width='13.413' height='13.413' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_3360' data-name='Rectangle 3360' width='13.352' height='13.352' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_3362' data-name='Rectangle 3362' width='13.292' height='13.292' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_3364' data-name='Rectangle 3364' width='13.231' height='13.231' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_3366' data-name='Rectangle 3366' width='13.171' height='13.17' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_3368' data-name='Rectangle 3368' width='13.11' height='13.11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_3370' data-name='Rectangle 3370' width='13.049' height='13.049' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_3372' data-name='Rectangle 3372' width='12.989' height='12.989' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_3374' data-name='Rectangle 3374' width='12.928' height='12.928' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_3376' data-name='Rectangle 3376' width='12.868' height='12.868' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_3378' data-name='Rectangle 3378' width='12.807' height='12.807' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_3380' data-name='Rectangle 3380' width='12.746' height='12.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_3382' data-name='Rectangle 3382' width='12.686' height='12.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_3384' data-name='Rectangle 3384' width='12.625' height='12.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_3386' data-name='Rectangle 3386' width='12.565' height='12.565' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_3388' data-name='Rectangle 3388' width='12.504' height='12.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_3390' data-name='Rectangle 3390' width='12.444' height='12.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_3392' data-name='Rectangle 3392' width='12.383' height='12.383' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_3394' data-name='Rectangle 3394' width='12.322' height='12.322' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-yellow' transform='translate(683 14.746) rotate(180)' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2500' data-name='Groupe 2500' transform='translate(0 0)'%3E%3Cg id='Groupe_2499' data-name='Groupe 2499' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2498' data-name='Groupe 2498' transform='translate(0 0)'%3E%3Cg id='Groupe_2497' data-name='Groupe 2497' transform='translate(0 0)'%3E%3Cg id='Groupe_2496' data-name='Groupe 2496' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2375' data-name='Groupe 2375'%3E%3Cg id='Groupe_2374' data-name='Groupe 2374'%3E%3Cg id='Groupe_2373' data-name='Groupe 2373' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3313' data-name='Rectangle 3313' width='14.746' height='14.746' transform='translate(0 0)' fill='%23ffdc00'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2378' data-name='Groupe 2378' transform='translate(16.767 0.027)' opacity='0.978'%3E%3Cg id='Groupe_2377' data-name='Groupe 2377'%3E%3Cg id='Groupe_2376' data-name='Groupe 2376' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3315' data-name='Rectangle 3315' width='14.559' height='14.559' transform='matrix(1, -0.009, 0.009, 1, 0, 0.127)' fill='%23ffdc03'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2381' data-name='Groupe 2381' transform='translate(33.534 0.054)' opacity='0.956'%3E%3Cg id='Groupe_2380' data-name='Groupe 2380'%3E%3Cg id='Groupe_2379' data-name='Groupe 2379' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3317' data-name='Rectangle 3317' width='14.374' height='14.373' transform='translate(0 0.254) rotate(-1.013)' fill='%23ffdd06'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2384' data-name='Groupe 2384' transform='translate(50.301 0.081)' opacity='0.934'%3E%3Cg id='Groupe_2383' data-name='Groupe 2383'%3E%3Cg id='Groupe_2382' data-name='Groupe 2382' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3319' data-name='Rectangle 3319' width='14.188' height='14.189' transform='translate(0 0.38) rotate(-1.535)' fill='%23ffdd0a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2387' data-name='Groupe 2387' transform='translate(67.068 0.109)' opacity='0.912'%3E%3Cg id='Groupe_2386' data-name='Groupe 2386'%3E%3Cg id='Groupe_2385' data-name='Groupe 2385' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3321' data-name='Rectangle 3321' width='14.005' height='14.005' transform='translate(0 0.507) rotate(-2.075)' fill='%23ffde0d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2390' data-name='Groupe 2390' transform='translate(83.835 0.136)' opacity='0.89'%3E%3Cg id='Groupe_2389' data-name='Groupe 2389'%3E%3Cg id='Groupe_2388' data-name='Groupe 2388' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3323' data-name='Rectangle 3323' width='13.823' height='13.823' transform='matrix(0.999, -0.046, 0.046, 0.999, 0, 0.635)' fill='%23ffde10'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2393' data-name='Groupe 2393' transform='translate(100.602 0.163)' opacity='0.868'%3E%3Cg id='Groupe_2392' data-name='Groupe 2392'%3E%3Cg id='Groupe_2391' data-name='Groupe 2391' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3325' data-name='Rectangle 3325' width='13.642' height='13.642' transform='translate(0 0.761) rotate(-3.199)' fill='%23ffdf13'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2396' data-name='Groupe 2396' transform='translate(117.368 0.19)' opacity='0.846'%3E%3Cg id='Groupe_2395' data-name='Groupe 2395'%3E%3Cg id='Groupe_2394' data-name='Groupe 2394' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3327' data-name='Rectangle 3327' width='13.463' height='13.463' transform='translate(0 0.888) rotate(-3.783)' fill='%23ffdf16'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2399' data-name='Groupe 2399' transform='translate(134.136 0.217)' opacity='0.824'%3E%3Cg id='Groupe_2398' data-name='Groupe 2398'%3E%3Cg id='Groupe_2397' data-name='Groupe 2397' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3329' data-name='Rectangle 3329' width='13.285' height='13.285' transform='translate(0 1.015) rotate(-4.383)' fill='%23ffdf1a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2402' data-name='Groupe 2402' transform='translate(150.902 0.244)' opacity='0.802'%3E%3Cg id='Groupe_2401' data-name='Groupe 2401'%3E%3Cg id='Groupe_2400' data-name='Groupe 2400' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3331' data-name='Rectangle 3331' width='13.109' height='13.109' transform='translate(0.001 1.142) rotate(-4.995)' fill='%23ffe01d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2405' data-name='Groupe 2405' transform='translate(167.669 0.271)' opacity='0.78'%3E%3Cg id='Groupe_2404' data-name='Groupe 2404'%3E%3Cg id='Groupe_2403' data-name='Groupe 2403' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3333' data-name='Rectangle 3333' width='12.933' height='12.934' transform='matrix(0.995, -0.098, 0.098, 0.995, 0, 1.269)' fill='%23ffe020'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2408' data-name='Groupe 2408' transform='translate(184.437 0.299)' opacity='0.758'%3E%3Cg id='Groupe_2407' data-name='Groupe 2407'%3E%3Cg id='Groupe_2406' data-name='Groupe 2406' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_3335' data-name='Rectangle 3335' width='12.76' height='12.761' transform='translate(0 1.395) rotate(-6.278)' fill='%23ffe123'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2411' data-name='Groupe 2411' transform='translate(201.203 0.326)' opacity='0.736'%3E%3Cg id='Groupe_2410' data-name='Groupe 2410'%3E%3Cg id='Groupe_2409' data-name='Groupe 2409' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_3337' data-name='Rectangle 3337' width='12.589' height='12.589' transform='translate(0 1.522) rotate(-6.946)' fill='%23ffe126'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2414' data-name='Groupe 2414' transform='translate(217.971 0.353)' opacity='0.714'%3E%3Cg id='Groupe_2413' data-name='Groupe 2413'%3E%3Cg id='Groupe_2412' data-name='Groupe 2412' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3339' data-name='Rectangle 3339' width='12.419' height='12.419' transform='matrix(0.991, -0.133, 0.133, 0.991, 0, 1.649)' fill='%23ffe22a'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2417' data-name='Groupe 2417' transform='translate(234.737 0.38)' opacity='0.692'%3E%3Cg id='Groupe_2416' data-name='Groupe 2416'%3E%3Cg id='Groupe_2415' data-name='Groupe 2415' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_3341' data-name='Rectangle 3341' width='12.251' height='12.251' transform='translate(0 1.776) rotate(-8.338)' fill='%23ffe22d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2420' data-name='Groupe 2420' transform='translate(251.504 0.407)' opacity='0.67'%3E%3Cg id='Groupe_2419' data-name='Groupe 2419'%3E%3Cg id='Groupe_2418' data-name='Groupe 2418' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_3343' data-name='Rectangle 3343' width='12.084' height='12.085' transform='translate(0 1.903) rotate(-9.059)' fill='%23ffe230'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2423' data-name='Groupe 2423' transform='translate(268.271 0.434)' opacity='0.648'%3E%3Cg id='Groupe_2422' data-name='Groupe 2422'%3E%3Cg id='Groupe_2421' data-name='Groupe 2421' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_3345' data-name='Rectangle 3345' width='11.92' height='11.921' transform='translate(0.001 2.03) rotate(-9.803)' fill='%23ffe333'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2426' data-name='Groupe 2426' transform='translate(285.038 0.461)' opacity='0.626'%3E%3Cg id='Groupe_2425' data-name='Groupe 2425'%3E%3Cg id='Groupe_2424' data-name='Groupe 2424' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_3347' data-name='Rectangle 3347' width='11.759' height='11.759' transform='translate(0 2.157) rotate(-10.568)' fill='%23ffe336'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2429' data-name='Groupe 2429' transform='translate(301.805 0.489)' opacity='0.604'%3E%3Cg id='Groupe_2428' data-name='Groupe 2428'%3E%3Cg id='Groupe_2427' data-name='Groupe 2427' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_3349' data-name='Rectangle 3349' width='11.599' height='11.599' transform='matrix(0.98, -0.197, 0.197, 0.98, 0, 2.284)' fill='%23ffe439'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2432' data-name='Groupe 2432' transform='translate(318.572 0.516)' opacity='0.582'%3E%3Cg id='Groupe_2431' data-name='Groupe 2431'%3E%3Cg id='Groupe_2430' data-name='Groupe 2430' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_3351' data-name='Rectangle 3351' width='11.441' height='11.441' transform='translate(0 2.411) rotate(-12.164)' fill='%23ffe43d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2435' data-name='Groupe 2435' transform='translate(335.339 0.543)' opacity='0.56'%3E%3Cg id='Groupe_2434' data-name='Groupe 2434'%3E%3Cg id='Groupe_2433' data-name='Groupe 2433' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_3353' data-name='Rectangle 3353' width='11.286' height='11.286' transform='matrix(0.974, -0.225, 0.225, 0.974, 0, 2.537)' fill='%23ffe540'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2438' data-name='Groupe 2438' transform='translate(352.105 0.57)' opacity='0.538'%3E%3Cg id='Groupe_2437' data-name='Groupe 2437'%3E%3Cg id='Groupe_2436' data-name='Groupe 2436' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_3355' data-name='Rectangle 3355' width='11.132' height='11.133' transform='matrix(0.971, -0.239, 0.239, 0.971, 0.001, 2.664)' fill='%23ffe543'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2441' data-name='Groupe 2441' transform='translate(368.873 0.597)' opacity='0.516'%3E%3Cg id='Groupe_2440' data-name='Groupe 2440'%3E%3Cg id='Groupe_2439' data-name='Groupe 2439' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_3357' data-name='Rectangle 3357' width='10.982' height='10.982' transform='matrix(0.967, -0.254, 0.254, 0.967, 0, 2.791)' fill='%23ffe546'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2444' data-name='Groupe 2444' transform='translate(385.64 0.624)' opacity='0.494'%3E%3Cg id='Groupe_2443' data-name='Groupe 2443'%3E%3Cg id='Groupe_2442' data-name='Groupe 2442' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_3359' data-name='Rectangle 3359' width='10.834' height='10.834' transform='translate(0 2.918) rotate(-15.623)' fill='%23ffe649'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2447' data-name='Groupe 2447' transform='translate(402.406 0.651)' opacity='0.472'%3E%3Cg id='Groupe_2446' data-name='Groupe 2446'%3E%3Cg id='Groupe_2445' data-name='Groupe 2445' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_3361' data-name='Rectangle 3361' width='10.689' height='10.689' transform='translate(0 3.045) rotate(-16.55)' fill='%23ffe74d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2450' data-name='Groupe 2450' transform='translate(419.174 0.678)' opacity='0.45'%3E%3Cg id='Groupe_2449' data-name='Groupe 2449'%3E%3Cg id='Groupe_2448' data-name='Groupe 2448' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_3363' data-name='Rectangle 3363' width='10.548' height='10.548' transform='translate(0 3.172) rotate(-17.5)' fill='%23ffe750'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2453' data-name='Groupe 2453' transform='translate(435.94 0.706)' opacity='0.428'%3E%3Cg id='Groupe_2452' data-name='Groupe 2452'%3E%3Cg id='Groupe_2451' data-name='Groupe 2451' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_3365' data-name='Rectangle 3365' width='10.409' height='10.408' transform='translate(0 3.299) rotate(-18.478)' fill='%23ffe753'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2456' data-name='Groupe 2456' transform='translate(452.707 0.733)' opacity='0.406'%3E%3Cg id='Groupe_2455' data-name='Groupe 2455'%3E%3Cg id='Groupe_2454' data-name='Groupe 2454' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_3367' data-name='Rectangle 3367' width='10.272' height='10.272' transform='translate(0 3.425) rotate(-19.477)' fill='%23ffe856'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2459' data-name='Groupe 2459' transform='translate(469.475 0.76)' opacity='0.384'%3E%3Cg id='Groupe_2458' data-name='Groupe 2458'%3E%3Cg id='Groupe_2457' data-name='Groupe 2457' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_3369' data-name='Rectangle 3369' width='10.14' height='10.14' transform='translate(0 3.552) rotate(-20.507)' fill='%23ffe859'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2462' data-name='Groupe 2462' transform='translate(486.241 0.787)' opacity='0.362'%3E%3Cg id='Groupe_2461' data-name='Groupe 2461'%3E%3Cg id='Groupe_2460' data-name='Groupe 2460' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_3371' data-name='Rectangle 3371' width='10.01' height='10.01' transform='translate(0 3.679) rotate(-21.564)' fill='%23ffe95d'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2465' data-name='Groupe 2465' transform='translate(503.008 0.814)' opacity='0.34'%3E%3Cg id='Groupe_2464' data-name='Groupe 2464'%3E%3Cg id='Groupe_2463' data-name='Groupe 2463' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_3373' data-name='Rectangle 3373' width='9.884' height='9.884' transform='matrix(0.923, -0.385, 0.385, 0.923, 0, 3.806)' fill='%23ffe960'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2468' data-name='Groupe 2468' transform='translate(519.775 0.841)' opacity='0.318'%3E%3Cg id='Groupe_2467' data-name='Groupe 2467'%3E%3Cg id='Groupe_2466' data-name='Groupe 2466' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_3375' data-name='Rectangle 3375' width='9.762' height='9.762' transform='matrix(0.915, -0.403, 0.403, 0.915, 0, 3.933)' fill='%23ffea63'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2471' data-name='Groupe 2471' transform='translate(536.542 0.868)' opacity='0.296'%3E%3Cg id='Groupe_2470' data-name='Groupe 2470'%3E%3Cg id='Groupe_2469' data-name='Groupe 2469' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_3377' data-name='Rectangle 3377' width='9.644' height='9.643' transform='translate(0 4.06) rotate(-24.899)' fill='%23ffea66'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2474' data-name='Groupe 2474' transform='translate(553.309 0.896)' opacity='0.274'%3E%3Cg id='Groupe_2473' data-name='Groupe 2473'%3E%3Cg id='Groupe_2472' data-name='Groupe 2472' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_3379' data-name='Rectangle 3379' width='9.528' height='9.529' transform='matrix(0.898, -0.439, 0.439, 0.898, 0, 4.187)' fill='%23ffea69'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2477' data-name='Groupe 2477' transform='translate(570.076 0.923)' opacity='0.252'%3E%3Cg id='Groupe_2476' data-name='Groupe 2476'%3E%3Cg id='Groupe_2475' data-name='Groupe 2475' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_3381' data-name='Rectangle 3381' width='9.418' height='9.418' transform='translate(0 4.313) rotate(-27.256)' fill='%23ffeb6c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2480' data-name='Groupe 2480' transform='translate(586.843 0.95)' opacity='0.23'%3E%3Cg id='Groupe_2479' data-name='Groupe 2479'%3E%3Cg id='Groupe_2478' data-name='Groupe 2478' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_3383' data-name='Rectangle 3383' width='9.312' height='9.312' transform='translate(0 4.44) rotate(-28.48)' fill='%23ffeb70'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2483' data-name='Groupe 2483' transform='translate(603.61 0.977)' opacity='0.208'%3E%3Cg id='Groupe_2482' data-name='Groupe 2482'%3E%3Cg id='Groupe_2481' data-name='Groupe 2481' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_3385' data-name='Rectangle 3385' width='9.21' height='9.21' transform='matrix(0.868, -0.496, 0.496, 0.868, 0, 4.567)' fill='%23ffec73'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2486' data-name='Groupe 2486' transform='translate(620.377 1.004)' opacity='0.186'%3E%3Cg id='Groupe_2485' data-name='Groupe 2485'%3E%3Cg id='Groupe_2484' data-name='Groupe 2484' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_3387' data-name='Rectangle 3387' width='9.112' height='9.112' transform='translate(0 4.694) rotate(-31.01)' fill='%23ffec76'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2489' data-name='Groupe 2489' transform='translate(637.143 1.031)' opacity='0.164'%3E%3Cg id='Groupe_2488' data-name='Groupe 2488'%3E%3Cg id='Groupe_2487' data-name='Groupe 2487' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_3389' data-name='Rectangle 3389' width='9.019' height='9.019' transform='matrix(0.845, -0.535, 0.535, 0.845, 0, 4.822)' fill='%23ffed79'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2492' data-name='Groupe 2492' transform='translate(653.911 1.058)' opacity='0.142'%3E%3Cg id='Groupe_2491' data-name='Groupe 2491'%3E%3Cg id='Groupe_2490' data-name='Groupe 2490' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_3391' data-name='Rectangle 3391' width='8.93' height='8.931' transform='translate(0 4.947) rotate(-33.641)' fill='%23ffed7c'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2495' data-name='Groupe 2495' transform='translate(670.678 1.086)' opacity='0.12'%3E%3Cg id='Groupe_2494' data-name='Groupe 2494'%3E%3Cg id='Groupe_2493' data-name='Groupe 2493' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_3393' data-name='Rectangle 3393' width='8.847' height='8.847' transform='matrix(0.819, -0.574, 0.574, 0.819, 0, 5.075)' fill='%23ffed80'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.image.left .image__divider.cyan {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='683' height='14.746' viewBox='0 0 683 14.746'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3312' data-name='Rectangle 3312' width='683' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_3229' data-name='Rectangle 3229' width='14.746' height='14.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_3231' data-name='Rectangle 3231' width='14.685' height='14.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_3233' data-name='Rectangle 3233' width='14.625' height='14.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_3235' data-name='Rectangle 3235' width='14.564' height='14.564' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_3237' data-name='Rectangle 3237' width='14.503' height='14.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_3239' data-name='Rectangle 3239' width='14.443' height='14.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_3241' data-name='Rectangle 3241' width='14.382' height='14.382' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_3243' data-name='Rectangle 3243' width='14.322' height='14.322' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_3245' data-name='Rectangle 3245' width='14.261' height='14.261' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3247' data-name='Rectangle 3247' width='14.201' height='14.201' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3249' data-name='Rectangle 3249' width='14.14' height='14.14' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_3251' data-name='Rectangle 3251' width='14.079' height='14.08' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_3253' data-name='Rectangle 3253' width='14.019' height='14.019' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3255' data-name='Rectangle 3255' width='13.958' height='13.958' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_3257' data-name='Rectangle 3257' width='13.898' height='13.898' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_3259' data-name='Rectangle 3259' width='13.837' height='13.837' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_3261' data-name='Rectangle 3261' width='13.776' height='13.777' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_3263' data-name='Rectangle 3263' width='13.716' height='13.716' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_3265' data-name='Rectangle 3265' width='13.655' height='13.655' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_3267' data-name='Rectangle 3267' width='13.595' height='13.595' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_3269' data-name='Rectangle 3269' width='13.534' height='13.534' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_3271' data-name='Rectangle 3271' width='13.474' height='13.474' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_3273' data-name='Rectangle 3273' width='13.413' height='13.413' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_3275' data-name='Rectangle 3275' width='13.352' height='13.352' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_3277' data-name='Rectangle 3277' width='13.292' height='13.292' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_3279' data-name='Rectangle 3279' width='13.231' height='13.231' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_3281' data-name='Rectangle 3281' width='13.171' height='13.171' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_3283' data-name='Rectangle 3283' width='13.11' height='13.11' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_3285' data-name='Rectangle 3285' width='13.049' height='13.049' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_3287' data-name='Rectangle 3287' width='12.989' height='12.989' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_3289' data-name='Rectangle 3289' width='12.928' height='12.928' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_3291' data-name='Rectangle 3291' width='12.868' height='12.868' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_3293' data-name='Rectangle 3293' width='12.807' height='12.807' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_3295' data-name='Rectangle 3295' width='12.746' height='12.746' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_3297' data-name='Rectangle 3297' width='12.686' height='12.686' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_3299' data-name='Rectangle 3299' width='12.625' height='12.625' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_3301' data-name='Rectangle 3301' width='12.565' height='12.565' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_3303' data-name='Rectangle 3303' width='12.504' height='12.504' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_3305' data-name='Rectangle 3305' width='12.444' height='12.444' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_3307' data-name='Rectangle 3307' width='12.383' height='12.383' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_3309' data-name='Rectangle 3309' width='12.322' height='12.322' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-blue-right' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2369' data-name='Groupe 2369' transform='translate(0 0)'%3E%3Cg id='Groupe_2368' data-name='Groupe 2368' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2367' data-name='Groupe 2367' transform='translate(0 0)'%3E%3Cg id='Groupe_2366' data-name='Groupe 2366' transform='translate(0 0)'%3E%3Cg id='Groupe_2365' data-name='Groupe 2365' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_2244' data-name='Groupe 2244' transform='translate(668.254)'%3E%3Cg id='Groupe_2243' data-name='Groupe 2243'%3E%3Cg id='Groupe_2242' data-name='Groupe 2242' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3228' data-name='Rectangle 3228' width='14.746' height='14.746' transform='translate(0 0)' fill='%231ed2d2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2247' data-name='Groupe 2247' transform='translate(651.548 0.027)' opacity='0.978'%3E%3Cg id='Groupe_2246' data-name='Groupe 2246'%3E%3Cg id='Groupe_2245' data-name='Groupe 2245' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_3230' data-name='Rectangle 3230' width='14.559' height='14.559' transform='matrix(-1, -0.009, 0.009, -1, 14.558, 14.686)' fill='%2321d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2250' data-name='Groupe 2250' transform='translate(634.841 0.054)' opacity='0.956'%3E%3Cg id='Groupe_2249' data-name='Groupe 2249'%3E%3Cg id='Groupe_2248' data-name='Groupe 2248' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3232' data-name='Rectangle 3232' width='14.374' height='14.373' transform='translate(14.371 14.625) rotate(-178.987)' fill='%2324d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2253' data-name='Groupe 2253' transform='translate(618.135 0.081)' opacity='0.934'%3E%3Cg id='Groupe_2252' data-name='Groupe 2252'%3E%3Cg id='Groupe_2251' data-name='Groupe 2251' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3234' data-name='Rectangle 3234' width='14.188' height='14.189' transform='translate(14.183 14.564) rotate(-178.465)' fill='%2327d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2256' data-name='Groupe 2256' transform='translate(601.429 0.109)' opacity='0.912'%3E%3Cg id='Groupe_2255' data-name='Groupe 2255'%3E%3Cg id='Groupe_2254' data-name='Groupe 2254' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3236' data-name='Rectangle 3236' width='14.005' height='14.005' transform='translate(13.996 14.504) rotate(-177.925)' fill='%2329d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2259' data-name='Groupe 2259' transform='translate(584.723 0.136)' opacity='0.89'%3E%3Cg id='Groupe_2258' data-name='Groupe 2258'%3E%3Cg id='Groupe_2257' data-name='Groupe 2257' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3238' data-name='Rectangle 3238' width='13.823' height='13.823' transform='matrix(-0.999, -0.046, 0.046, -0.999, 13.808, 14.443)' fill='%232cd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2262' data-name='Groupe 2262' transform='translate(568.016 0.163)' opacity='0.868'%3E%3Cg id='Groupe_2261' data-name='Groupe 2261'%3E%3Cg id='Groupe_2260' data-name='Groupe 2260' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3240' data-name='Rectangle 3240' width='13.642' height='13.642' transform='translate(13.621 14.382) rotate(-176.801)' fill='%232fd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2265' data-name='Groupe 2265' transform='translate(551.309 0.19)' opacity='0.846'%3E%3Cg id='Groupe_2264' data-name='Groupe 2264'%3E%3Cg id='Groupe_2263' data-name='Groupe 2263' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3242' data-name='Rectangle 3242' width='13.463' height='13.463' transform='translate(13.434 14.322) rotate(-176.217)' fill='%2332d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2268' data-name='Groupe 2268' transform='translate(534.604 0.217)' opacity='0.824'%3E%3Cg id='Groupe_2267' data-name='Groupe 2267'%3E%3Cg id='Groupe_2266' data-name='Groupe 2266' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3244' data-name='Rectangle 3244' width='13.285' height='13.285' transform='translate(13.246 14.261) rotate(-175.617)' fill='%2335d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2271' data-name='Groupe 2271' transform='translate(517.897 0.244)' opacity='0.802'%3E%3Cg id='Groupe_2270' data-name='Groupe 2270'%3E%3Cg id='Groupe_2269' data-name='Groupe 2269' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3246' data-name='Rectangle 3246' width='13.109' height='13.109' transform='matrix(-0.996, -0.087, 0.087, -0.996, 13.059, 14.201)' fill='%2337d7d7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2274' data-name='Groupe 2274' transform='translate(501.19 0.271)' opacity='0.78'%3E%3Cg id='Groupe_2273' data-name='Groupe 2273'%3E%3Cg id='Groupe_2272' data-name='Groupe 2272' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3248' data-name='Rectangle 3248' width='12.933' height='12.934' transform='translate(12.872 14.14) rotate(-174.372)' fill='%233ad8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2277' data-name='Groupe 2277' transform='translate(484.484 0.299)' opacity='0.758'%3E%3Cg id='Groupe_2276' data-name='Groupe 2276'%3E%3Cg id='Groupe_2275' data-name='Groupe 2275' clip-path='url(%23clip-path-15)'%3E%3Crect id='Rectangle_3250' data-name='Rectangle 3250' width='12.76' height='12.761' transform='translate(12.684 14.08) rotate(-173.722)' fill='%233dd8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2280' data-name='Groupe 2280' transform='translate(467.778 0.326)' opacity='0.736'%3E%3Cg id='Groupe_2279' data-name='Groupe 2279'%3E%3Cg id='Groupe_2278' data-name='Groupe 2278' clip-path='url(%23clip-path-16)'%3E%3Crect id='Rectangle_3252' data-name='Rectangle 3252' width='12.589' height='12.589' transform='translate(12.496 14.019) rotate(-173.054)' fill='%2340d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2283' data-name='Groupe 2283' transform='translate(451.072 0.353)' opacity='0.714'%3E%3Cg id='Groupe_2282' data-name='Groupe 2282'%3E%3Cg id='Groupe_2281' data-name='Groupe 2281' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3254' data-name='Rectangle 3254' width='12.419' height='12.419' transform='translate(12.309 13.958) rotate(-172.368)' fill='%2343d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2286' data-name='Groupe 2286' transform='translate(434.365 0.38)' opacity='0.692'%3E%3Cg id='Groupe_2285' data-name='Groupe 2285'%3E%3Cg id='Groupe_2284' data-name='Groupe 2284' clip-path='url(%23clip-path-18)'%3E%3Crect id='Rectangle_3256' data-name='Rectangle 3256' width='12.251' height='12.251' transform='translate(12.121 13.898) rotate(-171.662)' fill='%2345dada'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2289' data-name='Groupe 2289' transform='translate(417.659 0.407)' opacity='0.67'%3E%3Cg id='Groupe_2288' data-name='Groupe 2288'%3E%3Cg id='Groupe_2287' data-name='Groupe 2287' clip-path='url(%23clip-path-19)'%3E%3Crect id='Rectangle_3258' data-name='Rectangle 3258' width='12.084' height='12.085' transform='translate(11.934 13.837) rotate(-170.941)' fill='%2348dbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2292' data-name='Groupe 2292' transform='translate(400.953 0.434)' opacity='0.648'%3E%3Cg id='Groupe_2291' data-name='Groupe 2291'%3E%3Cg id='Groupe_2290' data-name='Groupe 2290' clip-path='url(%23clip-path-20)'%3E%3Crect id='Rectangle_3260' data-name='Rectangle 3260' width='11.92' height='11.921' transform='translate(11.746 13.777) rotate(-170.197)' fill='%234bdbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2295' data-name='Groupe 2295' transform='translate(384.246 0.461)' opacity='0.626'%3E%3Cg id='Groupe_2294' data-name='Groupe 2294'%3E%3Cg id='Groupe_2293' data-name='Groupe 2293' clip-path='url(%23clip-path-21)'%3E%3Crect id='Rectangle_3262' data-name='Rectangle 3262' width='11.759' height='11.759' transform='translate(11.559 13.716) rotate(-169.432)' fill='%234edcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2298' data-name='Groupe 2298' transform='translate(367.54 0.489)' opacity='0.604'%3E%3Cg id='Groupe_2297' data-name='Groupe 2297'%3E%3Cg id='Groupe_2296' data-name='Groupe 2296' clip-path='url(%23clip-path-22)'%3E%3Crect id='Rectangle_3264' data-name='Rectangle 3264' width='11.599' height='11.599' transform='matrix(-0.98, -0.197, 0.197, -0.98, 11.372, 13.655)' fill='%2351dcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2301' data-name='Groupe 2301' transform='translate(350.834 0.516)' opacity='0.582'%3E%3Cg id='Groupe_2300' data-name='Groupe 2300'%3E%3Cg id='Groupe_2299' data-name='Groupe 2299' clip-path='url(%23clip-path-23)'%3E%3Crect id='Rectangle_3266' data-name='Rectangle 3266' width='11.441' height='11.441' transform='translate(11.184 13.595) rotate(-167.836)' fill='%2353dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2304' data-name='Groupe 2304' transform='translate(334.127 0.543)' opacity='0.56'%3E%3Cg id='Groupe_2303' data-name='Groupe 2303'%3E%3Cg id='Groupe_2302' data-name='Groupe 2302' clip-path='url(%23clip-path-24)'%3E%3Crect id='Rectangle_3268' data-name='Rectangle 3268' width='11.286' height='11.286' transform='translate(10.997 13.534) rotate(-167.006)' fill='%2356dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2307' data-name='Groupe 2307' transform='translate(317.42 0.57)' opacity='0.538'%3E%3Cg id='Groupe_2306' data-name='Groupe 2306'%3E%3Cg id='Groupe_2305' data-name='Groupe 2305' clip-path='url(%23clip-path-25)'%3E%3Crect id='Rectangle_3270' data-name='Rectangle 3270' width='11.132' height='11.133' transform='matrix(-0.971, -0.239, 0.239, -0.971, 10.81, 13.474)' fill='%2359dede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2310' data-name='Groupe 2310' transform='translate(300.715 0.597)' opacity='0.516'%3E%3Cg id='Groupe_2309' data-name='Groupe 2309'%3E%3Cg id='Groupe_2308' data-name='Groupe 2308' clip-path='url(%23clip-path-26)'%3E%3Crect id='Rectangle_3272' data-name='Rectangle 3272' width='10.982' height='10.982' transform='matrix(-0.967, -0.254, 0.254, -0.967, 10.622, 13.413)' fill='%235cdede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2313' data-name='Groupe 2313' transform='translate(284.008 0.624)' opacity='0.494'%3E%3Cg id='Groupe_2312' data-name='Groupe 2312'%3E%3Cg id='Groupe_2311' data-name='Groupe 2311' clip-path='url(%23clip-path-27)'%3E%3Crect id='Rectangle_3274' data-name='Rectangle 3274' width='10.834' height='10.835' transform='translate(10.434 13.352) rotate(-164.377)' fill='%235fdfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2316' data-name='Groupe 2316' transform='translate(267.301 0.651)' opacity='0.472'%3E%3Cg id='Groupe_2315' data-name='Groupe 2315'%3E%3Cg id='Groupe_2314' data-name='Groupe 2314' clip-path='url(%23clip-path-28)'%3E%3Crect id='Rectangle_3276' data-name='Rectangle 3276' width='10.689' height='10.689' transform='translate(10.247 13.292) rotate(-163.45)' fill='%2361dfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2319' data-name='Groupe 2319' transform='translate(250.596 0.678)' opacity='0.45'%3E%3Cg id='Groupe_2318' data-name='Groupe 2318'%3E%3Cg id='Groupe_2317' data-name='Groupe 2317' clip-path='url(%23clip-path-29)'%3E%3Crect id='Rectangle_3278' data-name='Rectangle 3278' width='10.548' height='10.548' transform='translate(10.059 13.231) rotate(-162.5)' fill='%2364e0e0'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2322' data-name='Groupe 2322' transform='translate(233.889 0.706)' opacity='0.428'%3E%3Cg id='Groupe_2321' data-name='Groupe 2321'%3E%3Cg id='Groupe_2320' data-name='Groupe 2320' clip-path='url(%23clip-path-30)'%3E%3Crect id='Rectangle_3280' data-name='Rectangle 3280' width='10.408' height='10.408' transform='translate(9.872 13.171) rotate(-161.522)' fill='%2367e1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2325' data-name='Groupe 2325' transform='translate(217.183 0.733)' opacity='0.406'%3E%3Cg id='Groupe_2324' data-name='Groupe 2324'%3E%3Cg id='Groupe_2323' data-name='Groupe 2323' clip-path='url(%23clip-path-31)'%3E%3Crect id='Rectangle_3282' data-name='Rectangle 3282' width='10.272' height='10.272' transform='translate(9.684 13.11) rotate(-160.523)' fill='%236ae1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2328' data-name='Groupe 2328' transform='translate(200.476 0.76)' opacity='0.384'%3E%3Cg id='Groupe_2327' data-name='Groupe 2327'%3E%3Cg id='Groupe_2326' data-name='Groupe 2326' clip-path='url(%23clip-path-32)'%3E%3Crect id='Rectangle_3284' data-name='Rectangle 3284' width='10.139' height='10.14' transform='matrix(-0.937, -0.35, 0.35, -0.937, 9.497, 13.049)' fill='%236de2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2331' data-name='Groupe 2331' transform='translate(183.77 0.787)' opacity='0.362'%3E%3Cg id='Groupe_2330' data-name='Groupe 2330'%3E%3Cg id='Groupe_2329' data-name='Groupe 2329' clip-path='url(%23clip-path-33)'%3E%3Crect id='Rectangle_3286' data-name='Rectangle 3286' width='10.01' height='10.01' transform='translate(9.31 12.989) rotate(-158.436)' fill='%2370e2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2334' data-name='Groupe 2334' transform='translate(167.064 0.814)' opacity='0.34'%3E%3Cg id='Groupe_2333' data-name='Groupe 2333'%3E%3Cg id='Groupe_2332' data-name='Groupe 2332' clip-path='url(%23clip-path-34)'%3E%3Crect id='Rectangle_3288' data-name='Rectangle 3288' width='9.884' height='9.885' transform='translate(9.122 12.928) rotate(-157.353)' fill='%2372e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2337' data-name='Groupe 2337' transform='translate(150.357 0.841)' opacity='0.318'%3E%3Cg id='Groupe_2336' data-name='Groupe 2336'%3E%3Cg id='Groupe_2335' data-name='Groupe 2335' clip-path='url(%23clip-path-35)'%3E%3Crect id='Rectangle_3290' data-name='Rectangle 3290' width='9.762' height='9.762' transform='translate(8.935 12.868) rotate(-156.241)' fill='%2375e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2340' data-name='Groupe 2340' transform='translate(133.651 0.868)' opacity='0.296'%3E%3Cg id='Groupe_2339' data-name='Groupe 2339'%3E%3Cg id='Groupe_2338' data-name='Groupe 2338' clip-path='url(%23clip-path-36)'%3E%3Crect id='Rectangle_3292' data-name='Rectangle 3292' width='9.644' height='9.643' transform='translate(8.747 12.807) rotate(-155.101)' fill='%2378e4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2343' data-name='Groupe 2343' transform='translate(116.945 0.896)' opacity='0.274'%3E%3Cg id='Groupe_2342' data-name='Groupe 2342'%3E%3Cg id='Groupe_2341' data-name='Groupe 2341' clip-path='url(%23clip-path-37)'%3E%3Crect id='Rectangle_3294' data-name='Rectangle 3294' width='9.528' height='9.529' transform='translate(8.559 12.746) rotate(-153.937)' fill='%237be4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2346' data-name='Groupe 2346' transform='translate(100.238 0.923)' opacity='0.252'%3E%3Cg id='Groupe_2345' data-name='Groupe 2345'%3E%3Cg id='Groupe_2344' data-name='Groupe 2344' clip-path='url(%23clip-path-38)'%3E%3Crect id='Rectangle_3296' data-name='Rectangle 3296' width='9.418' height='9.419' transform='translate(8.372 12.686) rotate(-152.744)' fill='%237ee5e5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2349' data-name='Groupe 2349' transform='translate(83.532 0.95)' opacity='0.23'%3E%3Cg id='Groupe_2348' data-name='Groupe 2348'%3E%3Cg id='Groupe_2347' data-name='Groupe 2347' clip-path='url(%23clip-path-39)'%3E%3Crect id='Rectangle_3298' data-name='Rectangle 3298' width='9.312' height='9.312' transform='matrix(-0.879, -0.477, 0.477, -0.879, 8.185, 12.625)' fill='%2381e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2352' data-name='Groupe 2352' transform='translate(66.826 0.977)' opacity='0.208'%3E%3Cg id='Groupe_2351' data-name='Groupe 2351'%3E%3Cg id='Groupe_2350' data-name='Groupe 2350' clip-path='url(%23clip-path-40)'%3E%3Crect id='Rectangle_3300' data-name='Rectangle 3300' width='9.21' height='9.21' transform='matrix(-0.868, -0.496, 0.496, -0.868, 7.997, 12.565)' fill='%2383e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2355' data-name='Groupe 2355' transform='translate(50.119 1.004)' opacity='0.186'%3E%3Cg id='Groupe_2354' data-name='Groupe 2354'%3E%3Cg id='Groupe_2353' data-name='Groupe 2353' clip-path='url(%23clip-path-41)'%3E%3Crect id='Rectangle_3302' data-name='Rectangle 3302' width='9.112' height='9.112' transform='matrix(-0.857, -0.515, 0.515, -0.857, 7.81, 12.504)' fill='%2386e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2358' data-name='Groupe 2358' transform='translate(33.412 1.031)' opacity='0.164'%3E%3Cg id='Groupe_2357' data-name='Groupe 2357'%3E%3Cg id='Groupe_2356' data-name='Groupe 2356' clip-path='url(%23clip-path-42)'%3E%3Crect id='Rectangle_3304' data-name='Rectangle 3304' width='9.019' height='9.019' transform='translate(7.623 12.443) rotate(-147.685)' fill='%2389e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2361' data-name='Groupe 2361' transform='translate(16.707 1.058)' opacity='0.142'%3E%3Cg id='Groupe_2360' data-name='Groupe 2360'%3E%3Cg id='Groupe_2359' data-name='Groupe 2359' clip-path='url(%23clip-path-43)'%3E%3Crect id='Rectangle_3306' data-name='Rectangle 3306' width='8.93' height='8.931' transform='translate(7.435 12.383) rotate(-146.359)' fill='%238ce8e8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_2364' data-name='Groupe 2364' transform='translate(0 1.086)' opacity='0.12'%3E%3Cg id='Groupe_2363' data-name='Groupe 2363'%3E%3Cg id='Groupe_2362' data-name='Groupe 2362' clip-path='url(%23clip-path-44)'%3E%3Crect id='Rectangle_3308' data-name='Rectangle 3308' width='8.847' height='8.847' transform='matrix(-0.819, -0.574, 0.574, -0.819, 7.248, 12.322)' fill='%238fe9e9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.image.left .image__divider.blue {
  background-image: url("data:image/svg+xml,%3Csvg id='Divider-blue' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='730' height='17.996' viewBox='0 0 730 17.996'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_2959' data-name='Rectangle 2959' width='730' height='17.996' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_2876' data-name='Rectangle 2876' width='15.761' height='17.996' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_2878' data-name='Rectangle 2878' width='15.696' height='17.922' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_2880' data-name='Rectangle 2880' width='15.631' height='17.848' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_2882' data-name='Rectangle 2882' width='15.566' height='17.774' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_2884' data-name='Rectangle 2884' width='15.501' height='17.7' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_2886' data-name='Rectangle 2886' width='15.437' height='17.626' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_2888' data-name='Rectangle 2888' width='15.372' height='17.552' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_2890' data-name='Rectangle 2890' width='15.308' height='17.478' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_2892' data-name='Rectangle 2892' width='15.242' height='17.404' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_2894' data-name='Rectangle 2894' width='15.178' height='17.331' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_2896' data-name='Rectangle 2896' width='15.113' height='17.257' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-15'%3E%3Crect id='Rectangle_2898' data-name='Rectangle 2898' width='15.048' height='17.183' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-16'%3E%3Crect id='Rectangle_2900' data-name='Rectangle 2900' width='14.984' height='17.109' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_2902' data-name='Rectangle 2902' width='14.918' height='17.035' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-18'%3E%3Crect id='Rectangle_2904' data-name='Rectangle 2904' width='14.854' height='16.961' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-19'%3E%3Crect id='Rectangle_2906' data-name='Rectangle 2906' width='14.789' height='16.887' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-20'%3E%3Crect id='Rectangle_2908' data-name='Rectangle 2908' width='14.724' height='16.813' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-21'%3E%3Crect id='Rectangle_2910' data-name='Rectangle 2910' width='14.66' height='16.739' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-22'%3E%3Crect id='Rectangle_2912' data-name='Rectangle 2912' width='14.595' height='16.665' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-23'%3E%3Crect id='Rectangle_2914' data-name='Rectangle 2914' width='14.53' height='16.591' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-24'%3E%3Crect id='Rectangle_2916' data-name='Rectangle 2916' width='14.465' height='16.517' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-25'%3E%3Crect id='Rectangle_2918' data-name='Rectangle 2918' width='14.401' height='16.443' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-26'%3E%3Crect id='Rectangle_2920' data-name='Rectangle 2920' width='14.336' height='16.369' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-27'%3E%3Crect id='Rectangle_2922' data-name='Rectangle 2922' width='14.271' height='16.295' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-28'%3E%3Crect id='Rectangle_2924' data-name='Rectangle 2924' width='14.207' height='16.221' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-29'%3E%3Crect id='Rectangle_2926' data-name='Rectangle 2926' width='14.141' height='16.147' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-30'%3E%3Crect id='Rectangle_2928' data-name='Rectangle 2928' width='14.077' height='16.073' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-31'%3E%3Crect id='Rectangle_2930' data-name='Rectangle 2930' width='14.012' height='15.999' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-32'%3E%3Crect id='Rectangle_2932' data-name='Rectangle 2932' width='13.947' height='15.926' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-33'%3E%3Crect id='Rectangle_2934' data-name='Rectangle 2934' width='13.883' height='15.852' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-34'%3E%3Crect id='Rectangle_2936' data-name='Rectangle 2936' width='13.817' height='15.778' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-35'%3E%3Crect id='Rectangle_2938' data-name='Rectangle 2938' width='13.753' height='15.704' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-36'%3E%3Crect id='Rectangle_2940' data-name='Rectangle 2940' width='13.688' height='15.63' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-37'%3E%3Crect id='Rectangle_2942' data-name='Rectangle 2942' width='13.623' height='15.556' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-38'%3E%3Crect id='Rectangle_2944' data-name='Rectangle 2944' width='13.559' height='15.482' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-39'%3E%3Crect id='Rectangle_2946' data-name='Rectangle 2946' width='13.494' height='15.408' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-40'%3E%3Crect id='Rectangle_2948' data-name='Rectangle 2948' width='13.429' height='15.334' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-41'%3E%3Crect id='Rectangle_2950' data-name='Rectangle 2950' width='13.364' height='15.26' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-42'%3E%3Crect id='Rectangle_2952' data-name='Rectangle 2952' width='13.3' height='15.186' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-43'%3E%3Crect id='Rectangle_2954' data-name='Rectangle 2954' width='13.235' height='15.112' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-44'%3E%3Crect id='Rectangle_2956' data-name='Rectangle 2956' width='13.17' height='15.038' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Groupe_1833' data-name='Groupe 1833' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1832' data-name='Groupe 1832' transform='translate(0 0)'%3E%3Cg id='Groupe_1831' data-name='Groupe 1831' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1830' data-name='Groupe 1830' transform='translate(0 0)'%3E%3Cg id='Groupe_1829' data-name='Groupe 1829'%3E%3Cg id='Groupe_1828' data-name='Groupe 1828' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1707' data-name='Groupe 1707' transform='translate(714.239)'%3E%3Cg id='Groupe_1706' data-name='Groupe 1706'%3E%3Cg id='Groupe_1705' data-name='Groupe 1705' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_2875' data-name='Rectangle 2875' width='15.761' height='17.996' transform='translate(0 0)' fill='%231ed2d2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1710' data-name='Groupe 1710' transform='translate(696.383 0.033)' opacity='0.978'%3E%3Cg id='Groupe_1709' data-name='Groupe 1709'%3E%3Cg id='Groupe_1708' data-name='Groupe 1708' clip-path='url(%23clip-path-5)'%3E%3Cpath id='Tracé_2101' data-name='Tracé 2101' d='M0,0,15.561.019l.019,17.768L.019,17.768Z' transform='matrix(-1, -0.009, 0.009, -1, 15.56, 17.922)' fill='%2321d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1713' data-name='Groupe 1713' transform='translate(678.527 0.066)' opacity='0.956'%3E%3Cg id='Groupe_1712' data-name='Groupe 1712'%3E%3Cg id='Groupe_1711' data-name='Groupe 1711' clip-path='url(%23clip-path-6)'%3E%3Cpath id='Tracé_2102' data-name='Tracé 2102' d='M0,0,15.363.039,15.4,17.579.039,17.541Z' transform='translate(15.36 17.848) rotate(-178.987)' fill='%2324d3d3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1716' data-name='Groupe 1716' transform='translate(660.671 0.099)' opacity='0.934'%3E%3Cg id='Groupe_1715' data-name='Groupe 1715'%3E%3Cg id='Groupe_1714' data-name='Groupe 1714' clip-path='url(%23clip-path-7)'%3E%3Cpath id='Tracé_2103' data-name='Tracé 2103' d='M0,0,15.166.058l.058,17.315L.058,17.315Z' transform='translate(15.16 17.774) rotate(-178.465)' fill='%2327d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1719' data-name='Groupe 1719' transform='translate(642.815 0.132)' opacity='0.912'%3E%3Cg id='Groupe_1718' data-name='Groupe 1718'%3E%3Cg id='Groupe_1717' data-name='Groupe 1717' clip-path='url(%23clip-path-8)'%3E%3Cpath id='Tracé_2104' data-name='Tracé 2104' d='M0,0,14.972.077l.077,17.089L.077,17.089Z' transform='translate(14.959 17.7) rotate(-177.925)' fill='%2329d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1722' data-name='Groupe 1722' transform='translate(624.96 0.166)' opacity='0.89'%3E%3Cg id='Groupe_1721' data-name='Groupe 1721'%3E%3Cg id='Groupe_1720' data-name='Groupe 1720' clip-path='url(%23clip-path-9)'%3E%3Cpath id='Tracé_2105' data-name='Tracé 2105' d='M0,0,14.779.1l.1,16.865L.1,16.865Z' transform='matrix(-0.999, -0.046, 0.046, -0.999, 14.759, 17.626)' fill='%232cd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1725' data-name='Groupe 1725' transform='translate(607.103 0.199)' opacity='0.868'%3E%3Cg id='Groupe_1724' data-name='Groupe 1724'%3E%3Cg id='Groupe_1723' data-name='Groupe 1723' clip-path='url(%23clip-path-10)'%3E%3Cpath id='Tracé_2106' data-name='Tracé 2106' d='M0,0,14.587.115,14.7,16.758.115,16.642Z' transform='translate(14.559 17.552) rotate(-176.801)' fill='%232fd5d5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1728' data-name='Groupe 1728' transform='translate(589.247 0.232)' opacity='0.846'%3E%3Cg id='Groupe_1727' data-name='Groupe 1727'%3E%3Cg id='Groupe_1726' data-name='Groupe 1726' clip-path='url(%23clip-path-11)'%3E%3Cpath id='Tracé_2107' data-name='Tracé 2107' d='M0,0,14.4.134l.134,16.421-14.4-.134Z' transform='translate(14.358 17.478) rotate(-176.217)' fill='%2332d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1731' data-name='Groupe 1731' transform='translate(571.392 0.265)' opacity='0.824'%3E%3Cg id='Groupe_1730' data-name='Groupe 1730'%3E%3Cg id='Groupe_1729' data-name='Groupe 1729' clip-path='url(%23clip-path-12)'%3E%3Cpath id='Tracé_2108' data-name='Tracé 2108' d='M0,0,14.211.153l.153,16.2L.153,16.2Z' transform='translate(14.158 17.405) rotate(-175.617)' fill='%2335d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1734' data-name='Groupe 1734' transform='translate(553.535 0.298)' opacity='0.802'%3E%3Cg id='Groupe_1733' data-name='Groupe 1733'%3E%3Cg id='Groupe_1732' data-name='Groupe 1732' clip-path='url(%23clip-path-13)'%3E%3Cpath id='Tracé_2109' data-name='Tracé 2109' d='M0,0,14.026.172,14.2,16.156.172,15.983Z' transform='matrix(-0.996, -0.087, 0.087, -0.996, 13.958, 17.331)' fill='%2337d7d7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1737' data-name='Groupe 1737' transform='translate(535.679 0.331)' opacity='0.78'%3E%3Cg id='Groupe_1736' data-name='Groupe 1736'%3E%3Cg id='Groupe_1735' data-name='Groupe 1735' clip-path='url(%23clip-path-14)'%3E%3Cpath id='Tracé_2110' data-name='Tracé 2110' d='M0,0,13.842.191l.191,15.766L.191,15.766Z' transform='translate(13.757 17.257) rotate(-174.372)' fill='%233ad8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1740' data-name='Groupe 1740' transform='translate(517.824 0.364)' opacity='0.758'%3E%3Cg id='Groupe_1739' data-name='Groupe 1739'%3E%3Cg id='Groupe_1738' data-name='Groupe 1738' clip-path='url(%23clip-path-15)'%3E%3Cpath id='Tracé_2111' data-name='Tracé 2111' d='M0,0,13.662.21l.21,15.55L.21,15.55Z' transform='translate(13.557 17.183) rotate(-173.722)' fill='%233dd8d8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1743' data-name='Groupe 1743' transform='translate(499.967 0.397)' opacity='0.736'%3E%3Cg id='Groupe_1742' data-name='Groupe 1742'%3E%3Cg id='Groupe_1741' data-name='Groupe 1741' clip-path='url(%23clip-path-16)'%3E%3Cpath id='Tracé_2112' data-name='Tracé 2112' d='M0,0,13.483.229l.229,15.336L.229,15.336Z' transform='translate(13.356 17.109) rotate(-173.054)' fill='%2340d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1746' data-name='Groupe 1746' transform='translate(482.112 0.431)' opacity='0.714'%3E%3Cg id='Groupe_1745' data-name='Groupe 1745'%3E%3Cg id='Groupe_1744' data-name='Groupe 1744' clip-path='url(%23clip-path-17)'%3E%3Cpath id='Tracé_2113' data-name='Tracé 2113' d='M0,0,13.307.248l.248,15.123L.248,15.123Z' transform='translate(13.156 17.035) rotate(-172.368)' fill='%2343d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1749' data-name='Groupe 1749' transform='translate(464.256 0.464)' opacity='0.692'%3E%3Cg id='Groupe_1748' data-name='Groupe 1748'%3E%3Cg id='Groupe_1747' data-name='Groupe 1747' clip-path='url(%23clip-path-18)'%3E%3Cpath id='Tracé_2114' data-name='Tracé 2114' d='M0,0,13.133.266,13.4,15.178.266,14.912Z' transform='translate(12.956 16.961) rotate(-171.662)' fill='%2345dada'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1752' data-name='Groupe 1752' transform='translate(446.399 0.497)' opacity='0.67'%3E%3Cg id='Groupe_1751' data-name='Groupe 1751'%3E%3Cg id='Groupe_1750' data-name='Groupe 1750' clip-path='url(%23clip-path-19)'%3E%3Cpath id='Tracé_2115' data-name='Tracé 2115' d='M0,0,12.961.285l.285,14.7L.285,14.7Z' transform='translate(12.755 16.887) rotate(-170.941)' fill='%2348dbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1755' data-name='Groupe 1755' transform='translate(428.544 0.53)' opacity='0.648'%3E%3Cg id='Groupe_1754' data-name='Groupe 1754'%3E%3Cg id='Groupe_1753' data-name='Groupe 1753' clip-path='url(%23clip-path-20)'%3E%3Cpath id='Tracé_2116' data-name='Tracé 2116' d='M0,0,12.793.3l.3,14.5L.3,14.5Z' transform='translate(12.554 16.813) rotate(-170.197)' fill='%234bdbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1758' data-name='Groupe 1758' transform='translate(410.688 0.563)' opacity='0.626'%3E%3Cg id='Groupe_1757' data-name='Groupe 1757'%3E%3Cg id='Groupe_1756' data-name='Groupe 1756' clip-path='url(%23clip-path-21)'%3E%3Cpath id='Tracé_2117' data-name='Tracé 2117' d='M0,0,12.628.321l.321,14.29L.321,14.29Z' transform='translate(12.354 16.739) rotate(-169.432)' fill='%234edcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1761' data-name='Groupe 1761' transform='translate(392.831 0.596)' opacity='0.604'%3E%3Cg id='Groupe_1760' data-name='Groupe 1760'%3E%3Cg id='Groupe_1759' data-name='Groupe 1759' clip-path='url(%23clip-path-22)'%3E%3Cpath id='Tracé_2118' data-name='Tracé 2118' d='M0,0,12.465.339,12.8,14.426.339,14.087Z' transform='matrix(-0.98, -0.197, 0.197, -0.98, 12.154, 16.665)' fill='%2351dcdc'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1764' data-name='Groupe 1764' transform='translate(374.976 0.629)' opacity='0.582'%3E%3Cg id='Groupe_1763' data-name='Groupe 1763'%3E%3Cg id='Groupe_1762' data-name='Groupe 1762' clip-path='url(%23clip-path-23)'%3E%3Cpath id='Tracé_2119' data-name='Tracé 2119' d='M0,0,12.305.357l.357,13.885L.357,13.885Z' transform='translate(11.954 16.591) rotate(-167.836)' fill='%2353dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1767' data-name='Groupe 1767' transform='translate(357.12 0.662)' opacity='0.56'%3E%3Cg id='Groupe_1766' data-name='Groupe 1766'%3E%3Cg id='Groupe_1765' data-name='Groupe 1765' clip-path='url(%23clip-path-24)'%3E%3Cpath id='Tracé_2120' data-name='Tracé 2120' d='M0,0,12.149.375l.375,13.687L.375,13.687Z' transform='translate(11.754 16.517) rotate(-167.006)' fill='%2356dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1770' data-name='Groupe 1770' transform='translate(339.263 0.695)' opacity='0.538'%3E%3Cg id='Groupe_1769' data-name='Groupe 1769'%3E%3Cg id='Groupe_1768' data-name='Groupe 1768' clip-path='url(%23clip-path-25)'%3E%3Cpath id='Tracé_2121' data-name='Tracé 2121' d='M0,0,12,.392l.392,13.49-12-.392Z' transform='matrix(-0.971, -0.239, 0.239, -0.971, 11.553, 16.443)' fill='%2359dede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1773' data-name='Groupe 1773' transform='translate(321.408 0.729)' opacity='0.516'%3E%3Cg id='Groupe_1772' data-name='Groupe 1772'%3E%3Cg id='Groupe_1771' data-name='Groupe 1771' clip-path='url(%23clip-path-26)'%3E%3Cpath id='Tracé_2122' data-name='Tracé 2122' d='M0,0,11.846.409l.409,13.3L.409,13.3Z' transform='matrix(-0.967, -0.254, 0.254, -0.967, 11.352, 16.369)' fill='%235cdede'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1776' data-name='Groupe 1776' transform='translate(303.552 0.762)' opacity='0.494'%3E%3Cg id='Groupe_1775' data-name='Groupe 1775'%3E%3Cg id='Groupe_1774' data-name='Groupe 1774' clip-path='url(%23clip-path-27)'%3E%3Cpath id='Tracé_2123' data-name='Tracé 2123' d='M0,0,11.7.426l.426,13.1L.426,13.1Z' transform='translate(11.152 16.295) rotate(-164.377)' fill='%235fdfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1779' data-name='Groupe 1779' transform='translate(285.695 0.795)' opacity='0.472'%3E%3Cg id='Groupe_1778' data-name='Groupe 1778'%3E%3Cg id='Groupe_1777' data-name='Groupe 1777' clip-path='url(%23clip-path-28)'%3E%3Cpath id='Tracé_2124' data-name='Tracé 2124' d='M0,0,11.556.442,12,13.356.442,12.914Z' transform='translate(10.952 16.221) rotate(-163.45)' fill='%2361dfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1782' data-name='Groupe 1782' transform='translate(267.84 0.828)' opacity='0.45'%3E%3Cg id='Groupe_1781' data-name='Groupe 1781'%3E%3Cg id='Groupe_1780' data-name='Groupe 1780' clip-path='url(%23clip-path-29)'%3E%3Cpath id='Tracé_2125' data-name='Tracé 2125' d='M0,0,11.418.459l.459,12.728L.459,12.728Z' transform='translate(10.751 16.147) rotate(-162.5)' fill='%2364e0e0'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1785' data-name='Groupe 1785' transform='translate(249.984 0.861)' opacity='0.428'%3E%3Cg id='Groupe_1784' data-name='Groupe 1784'%3E%3Cg id='Groupe_1783' data-name='Groupe 1783' clip-path='url(%23clip-path-30)'%3E%3Cpath id='Tracé_2126' data-name='Tracé 2126' d='M0,0,11.283.474l.474,12.544L.474,12.544Z' transform='translate(10.551 16.073) rotate(-161.522)' fill='%2367e1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1788' data-name='Groupe 1788' transform='translate(232.128 0.894)' opacity='0.406'%3E%3Cg id='Groupe_1787' data-name='Groupe 1787'%3E%3Cg id='Groupe_1786' data-name='Groupe 1786' clip-path='url(%23clip-path-31)'%3E%3Cpath id='Tracé_2127' data-name='Tracé 2127' d='M0,0,11.152.49l.49,12.363L.49,12.363Z' transform='translate(10.35 15.999) rotate(-160.523)' fill='%236ae1e1'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1791' data-name='Groupe 1791' transform='translate(214.272 0.927)' opacity='0.384'%3E%3Cg id='Groupe_1790' data-name='Groupe 1790'%3E%3Cg id='Groupe_1789' data-name='Groupe 1789' clip-path='url(%23clip-path-32)'%3E%3Cpath id='Tracé_2128' data-name='Tracé 2128' d='M0,0,11.026.5l.5,12.186L.5,12.186Z' transform='matrix(-0.937, -0.35, 0.35, -0.937, 10.151, 15.926)' fill='%236de2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1794' data-name='Groupe 1794' transform='translate(196.416 0.96)' opacity='0.362'%3E%3Cg id='Groupe_1793' data-name='Groupe 1793'%3E%3Cg id='Groupe_1792' data-name='Groupe 1792' clip-path='url(%23clip-path-33)'%3E%3Cpath id='Tracé_2129' data-name='Tracé 2129' d='M0,0,10.9.519l.519,12.012-10.9-.519Z' transform='translate(9.95 15.852) rotate(-158.436)' fill='%2370e2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1797' data-name='Groupe 1797' transform='translate(178.56 0.994)' opacity='0.34'%3E%3Cg id='Groupe_1796' data-name='Groupe 1796'%3E%3Cg id='Groupe_1795' data-name='Groupe 1795' clip-path='url(%23clip-path-34)'%3E%3Cpath id='Tracé_2130' data-name='Tracé 2130' d='M0,0,10.787.533l.533,11.841L.533,11.841Z' transform='translate(9.75 15.778) rotate(-157.353)' fill='%2372e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1800' data-name='Groupe 1800' transform='translate(160.704 1.027)' opacity='0.318'%3E%3Cg id='Groupe_1799' data-name='Groupe 1799'%3E%3Cg id='Groupe_1798' data-name='Groupe 1798' clip-path='url(%23clip-path-35)'%3E%3Cpath id='Tracé_2131' data-name='Tracé 2131' d='M0,0,10.674.546l.546,11.674L.546,11.674Z' transform='translate(9.549 15.704) rotate(-156.241)' fill='%2375e3e3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1803' data-name='Groupe 1803' transform='translate(142.848 1.06)' opacity='0.296'%3E%3Cg id='Groupe_1802' data-name='Groupe 1802'%3E%3Cg id='Groupe_1801' data-name='Groupe 1801' clip-path='url(%23clip-path-36)'%3E%3Cpath id='Tracé_2132' data-name='Tracé 2132' d='M0,0,10.567.558l.558,11.51L.558,11.51Z' transform='translate(9.349 15.63) rotate(-155.101)' fill='%2378e4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1806' data-name='Groupe 1806' transform='translate(124.992 1.093)' opacity='0.274'%3E%3Cg id='Groupe_1805' data-name='Groupe 1805'%3E%3Cg id='Groupe_1804' data-name='Groupe 1804' clip-path='url(%23clip-path-37)'%3E%3Cpath id='Tracé_2133' data-name='Tracé 2133' d='M0,0,10.463.57l.57,11.35L.57,11.35Z' transform='translate(9.148 15.556) rotate(-153.937)' fill='%237be4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1809' data-name='Groupe 1809' transform='translate(107.136 1.126)' opacity='0.252'%3E%3Cg id='Groupe_1808' data-name='Groupe 1808'%3E%3Cg id='Groupe_1807' data-name='Groupe 1807' clip-path='url(%23clip-path-38)'%3E%3Cpath id='Tracé_2134' data-name='Tracé 2134' d='M0,0,10.365.581l.581,11.195L.581,11.195Z' transform='translate(8.948 15.482) rotate(-152.744)' fill='%237ee5e5'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1812' data-name='Groupe 1812' transform='translate(89.28 1.159)' opacity='0.23'%3E%3Cg id='Groupe_1811' data-name='Groupe 1811'%3E%3Cg id='Groupe_1810' data-name='Groupe 1810' clip-path='url(%23clip-path-39)'%3E%3Cpath id='Tracé_2135' data-name='Tracé 2135' d='M0,0,10.274.592l.592,11.043L.592,11.043Z' transform='matrix(-0.879, -0.477, 0.477, -0.879, 8.748, 15.408)' fill='%2381e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1815' data-name='Groupe 1815' transform='translate(71.424 1.192)' opacity='0.208'%3E%3Cg id='Groupe_1814' data-name='Groupe 1814'%3E%3Cg id='Groupe_1813' data-name='Groupe 1813' clip-path='url(%23clip-path-40)'%3E%3Cpath id='Tracé_2136' data-name='Tracé 2136' d='M0,0,10.187.6l.6,10.9L.6,10.9Z' transform='matrix(-0.868, -0.496, 0.496, -0.868, 8.547, 15.334)' fill='%2383e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1818' data-name='Groupe 1818' transform='translate(53.568 1.226)' opacity='0.186'%3E%3Cg id='Groupe_1817' data-name='Groupe 1817'%3E%3Cg id='Groupe_1816' data-name='Groupe 1816' clip-path='url(%23clip-path-41)'%3E%3Cpath id='Tracé_2137' data-name='Tracé 2137' d='M0,0,10.106.61l.61,10.754L.61,10.754Z' transform='matrix(-0.857, -0.515, 0.515, -0.857, 8.347, 15.26)' fill='%2386e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1821' data-name='Groupe 1821' transform='translate(35.712 1.259)' opacity='0.164'%3E%3Cg id='Groupe_1820' data-name='Groupe 1820'%3E%3Cg id='Groupe_1819' data-name='Groupe 1819' clip-path='url(%23clip-path-42)'%3E%3Cpath id='Tracé_2138' data-name='Tracé 2138' d='M0,0,10.031.618l.618,10.616L.618,10.616Z' transform='translate(8.147 15.186) rotate(-147.685)' fill='%2389e7e7'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1824' data-name='Groupe 1824' transform='translate(17.856 1.292)' opacity='0.142'%3E%3Cg id='Groupe_1823' data-name='Groupe 1823'%3E%3Cg id='Groupe_1822' data-name='Groupe 1822' clip-path='url(%23clip-path-43)'%3E%3Cpath id='Tracé_2139' data-name='Tracé 2139' d='M0,0,9.961.624l.624,10.484L.624,10.484Z' transform='translate(7.946 15.112) rotate(-146.359)' fill='%238ce8e8'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1827' data-name='Groupe 1827' transform='translate(0 1.325)' opacity='0.12'%3E%3Cg id='Groupe_1826' data-name='Groupe 1826'%3E%3Cg id='Groupe_1825' data-name='Groupe 1825' clip-path='url(%23clip-path-44)'%3E%3Cpath id='Tracé_2140' data-name='Tracé 2140' d='M0,0,9.9.63l.63,10.356-9.9-.63Z' transform='matrix(-0.819, -0.574, 0.574, -0.819, 7.747, 15.038)' fill='%238fe9e9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.image-big {
  padding: 72px 0;
  margin: 48px 0;
}
.image-big picture {
  max-width: var(--max-width);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-big.grey {
  background-color: #FAFAFA;
}
.image-big.orange {
  background: linear-gradient(180deg, rgba(255, 160, 0, 0.28) 0%, rgba(255, 244, 226, 0.28) 100%);
}
.image-big.yellow {
  background: linear-gradient(180deg, rgba(255, 220, 0, 0.28) 0%, rgba(255, 252, 235, 0.28) 100%);
}
.image-big.cyan {
  background: linear-gradient(180deg, rgba(85, 190, 190, 0.28) 0%, rgba(234, 255, 255, 0.28) 100%);
}
.image-big.blue {
  background-color: var(--blue);
}
.image-big.gradient {
  background: transparent linear-gradient(180deg, #00404E 0%, #387F80 100%) 0% 0% no-repeat padding-box;
}

.icon {
  max-height: 54px;
  display: block;
  height: 100%;
  margin-top: 12px;
}
.icon img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
  max-height: 54px;
}

.video {
  padding: 72px 0;
  margin: 48px 0;
}
.video.grey {
  background-color: #FAFAFA;
}
.video.orange {
  background: linear-gradient(180deg, rgba(255, 160, 0, 0.28) 0%, rgba(255, 244, 226, 0.28) 100%);
}
.video.yellow {
  background: linear-gradient(180deg, rgba(255, 220, 0, 0.28) 0%, rgba(255, 252, 235, 0.28) 100%);
}
.video.cyan {
  background: linear-gradient(180deg, rgba(85, 190, 190, 0.28) 0%, rgba(234, 255, 255, 0.28) 100%);
}
.video.blue {
  background-color: var(--blue);
}
.video.gradient {
  background: transparent linear-gradient(180deg, #00404E 0%, #387F80 100%) 0% 0% no-repeat padding-box;
}
.video iframe {
  max-width: 74.25%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
  display: block;
  height: calc(var(--max-width) * 0.29);
}
@media screen and (max-width: 1024px) {
  .video iframe {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .video iframe {
    height: 300px;
  }
}

.bandeau {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-left: calc((100vw - var(--max-width)) / 2 + var(--container-padding));
}
.bandeau.right {
  padding-left: 0;
  flex-flow: row-reverse;
  padding-right: calc((100vw - var(--max-width)) / 2 + var(--container-padding));
}
.bandeau.right svg {
  transform: rotate(-90deg);
}
@media screen and (max-width: 1440px) {
  .bandeau.right {
    padding-right: var(--container-padding);
  }
}
@media screen and (max-width: 1440px) {
  .bandeau {
    padding-left: var(--container-padding);
  }
}
.bandeau h2 {
  color: white;
  margin: 0;
  font-family: "Made EVO";
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
}
.bandeau.orange {
  background-color: var(--orange);
}
.bandeau.yellow {
  background-color: var(--yellow);
}
.bandeau.cyan {
  background-color: var(--cyan);
}

.logos {
  margin: 48px 0;
  padding-left: 48px;
  width: 100%;
  padding-right: 48px;
  display: flex;
  align-items: center;
}
.logos .container {
  display: grid;
  gap: 72px;
}
.logos .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logos .logo {
  overflow: hidden;
  padding: 24px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  max-height: 50px;
}
.logos .logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.swiper-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: calc(var(--container-padding) * 2);
  padding-left: calc(var(--container-padding) * 2);
}

.swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
.swiper-navigation .swiper-button-prev,
.swiper-navigation .swiper-button-next {
  cursor: pointer;
}

.block-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.block-list li {
  display: flex;
  flex-flow: row wrap;
  padding-left: 24px;
  position: relative;
}
.block-list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  height: 8px;
  width: 8px;
  display: block;
  background-color: var(--blue);
}
.block-list li .title {
  font-size: 24px;
  font-weight: 500;
  font-family: "Made";
}
.block-list li .title + p {
  margin-top: 6px;
  margin-bottom: 24px;
}
.block-list.orange li:before {
  background-color: var(--orange);
}
.block-list.cyan li:before {
  background-color: var(--cyan);
}
.block-list.yellow li:before {
  background-color: var(--yellow);
}

.list-icon {
  margin: 96px 0;
}
.list-icon .container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-flow: row wrap;
}
.list-icon__item {
  display: flex;
  flex-flow: column;
  max-width: 17%;
}
@media screen and (max-width: 640px) {
  .list-icon__item {
    max-width: 46%;
  }
}
.list-icon__item .title {
  text-align: center;
  font-family: "Made EVO";
  font-weight: 700;
  font-size: 20px;
  color: var(--blue-med);
  display: block;
  padding-bottom: 18px;
  padding-top: 24px;
}
.list-icon__item .content {
  text-align: center;
  color: #9DA1B2;
}
.list-icon .icon {
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  max-height: 90px;
  margin-bottom: 0;
}
.list-icon .icon img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: 100%;
  max-height: 100%;
}

.image-link {
  display: flex;
  flex-flow: row;
  align-items: center;
  transition: all ease-in-out 0.2s;
  gap: 12px;
  background-color: rgba(231, 245, 248, 0.6);
  padding-right: 12px;
}
@media screen and (max-width: 640px) {
  .image-link {
    max-width: 100%;
  }
}
.image-link:hover {
  background-color: rgba(231, 245, 248, 0.8);
}
.image-link.cyan {
  background-color: rgba(221, 248, 248, 0.8);
}
.image-link.cyan:hover {
  background-color: rgb(194, 245, 245);
}
.image-link.orange {
  background-color: rgba(255, 231, 191, 0.6);
}
.image-link.orange:hover {
  background-color: rgb(255, 231, 191);
}
.image-link.yellow {
  background-color: rgba(255, 248, 204, 0.8);
}
.image-link.yellow:hover {
  background-color: rgb(253, 243, 177);
}
.image-link.transparent {
  margin: 24px 0;
  padding: 12px;
}
.image-link.transparent picture {
  padding: 12px;
  min-width: 40%;
}
.image-link.transparent picture.resized {
  max-width: 110px;
  width: 100%;
  min-width: unset;
}
.image-link__picture {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
}
@media screen and (max-width: 640px) {
  .image-link__picture {
    min-width: 150px;
  }
}
.image-link__picture img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.image-link__content {
  padding: 12px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 12px;
}
.image-link__content .title {
  font-weight: bold;
  color: var(--cyan-med);
  text-transform: uppercase;
}
.image-link__content .content {
  color: #707070;
  font-size: 12px;
}

.home-header {
  padding: 72px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column;
  min-height: 80vh;
  background: linear-gradient(180deg, rgba(85, 190, 190, 0.28) 0%, rgba(234, 255, 255, 0.28) 100%);
}
@media screen and (max-width: 640px) {
  .home-header {
    min-height: 60vh;
  }
}
.home-header .lottie {
  position: absolute;
  left: 0;
  top: -72px;
  width: 100%;
  height: 100%;
  min-height: 80vh;
  z-index: 0;
}
@media screen and (max-width: 640px) {
  .home-header .lottie {
    min-height: 60vh;
  }
}
.home-header .container {
  position: relative;
}
@media screen and (max-width: 640px) {
  .home-header .container {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
}
.home-header h1 {
  font-family: "Made EVO";
  font-size: 60px;
  max-width: 700px;
  font-weight: 500;
  color: var(--cyan);
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 640px) {
  .home-header h1 {
    text-align: center;
    margin: 0 auto;
    font-size: 45px;
  }
}
.home-header p {
  position: relative;
  font-family: "Made";
  font-size: 24px;
  font-weight: 400;
  z-index: 1;
  color: var(--blue-med);
}
@media screen and (max-width: 640px) {
  .home-header p {
    text-align: center;
    max-width: 80%;
    margin: 48px auto;
    font-size: 20px;
  }
}
.home-header .button {
  margin-top: 48px;
  z-index: 1;
}

.home-section {
  margin: 98px 0;
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: column;
}
.home-section .custom-columns {
  position: relative;
  z-index: 1;
}
.home-section .custom-columns h2 {
  letter-spacing: 1px;
  font-size: 24px;
}
.home-section .custom-columns h2.is-style-Made {
  letter-spacing: 0;
  font-size: 35px;
}
.home-section .custom-columns .align {
  max-height: 500px;
}
.home-section .custom-columns .has-2-columns {
  gap: 92px;
}
.home-section .container-bandeau {
  position: relative;
}
.home-section .bandeau {
  position: absolute;
  top: 0;
  z-index: 2;
  left: 50%;
  gap: 48px;
  padding-left: 90px;
}
@media screen and (max-width: 640px) {
  .home-section .bandeau {
    left: 0;
    min-height: 80px;
    max-height: 80px;
    padding-left: 120px;
    max-width: 100%;
  }
  .home-section .bandeau svg {
    height: 100%;
    min-height: 80px;
    min-width: 80px;
    width: 80px;
  }
}
@media screen and (max-width: 640px) {
  .home-section .wp-block-group {
    flex-flow: column;
  }
}
.home-section .image-header__icon {
  margin-bottom: 0;
  z-index: 3;
}
@media screen and (max-width: 640px) {
  .home-section .image-header__icon {
    margin-left: 0;
    height: 80px;
    width: 80px;
    margin-top: 0;
    padding: 20px;
  }
  .home-section .image-header__icon:before {
    height: 80px;
    width: 80px;
    transform: rotate(0);
  }
}
.home-section > .custom-columns:first-of-type {
  margin-top: -45px;
}
.home-section > .custom-columns:first-of-type .container .has-2-columns {
  gap: 0;
  width: 100%;
}
.home-section > .custom-columns:first-of-type .container .has-2-columns > .wp-block-column:first-of-type {
  margin-left: calc(var(--container-padding) * -1);
}
.home-section > .custom-columns:first-of-type .container .has-2-columns > .wp-block-column:last-of-type {
  margin-right: calc(var(--container-padding) * -1);
  margin-left: var(--container-padding);
  padding-right: var(--container-padding);
}
@media screen and (max-width: 640px) {
  .home-section > .custom-columns:first-of-type .container .has-2-columns > .wp-block-column:last-of-type {
    padding-right: 0;
    margin-right: 0;
    padding-left: 0;
    margin-left: 0;
  }
}
.home-section > .custom-columns:first-of-type .heading {
  padding-top: 45px;
}
.home-section .squares {
  position: absolute;
  top: 0;
  z-index: 0;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover 100%;
  padding-left: 0;
  padding-right: 0;
}
.home-section.orange {
  background: linear-gradient(180deg, #FFE4B7 0%, #FFE4B7 35%, rgba(255, 252, 235, 0) 100%);
}
.home-section.orange .squares {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1059' height='1300' viewBox='0 0 1059 1300'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23ffe7bf; %7D .cls-1, .cls-2, .cls-3, .cls-4, .cls-5, .cls-6, .cls-7 %7B stroke: rgba(0,0,0,0); %7D .cls-2, .cls-5, .cls-7 %7B fill: %23ffbe52; %7D .cls-3 %7B fill: %23ffdb9e; %7D .cls-4 %7B fill: %23ffce7a; %7D .cls-5 %7B opacity: 0.153; %7D .cls-6 %7B fill: %23ffb02b; %7D .cls-7 %7B opacity: 0.449; %7D .cls-8 %7B stroke: none; %7D .cls-9 %7B fill: none; %7D %3C/style%3E%3C/defs%3E%3Cg id='SQARES' transform='translate(-48.119 262.37)'%3E%3Cg id='scale-white-color-8' class='cls-1' transform='translate(1017.119 -262.37)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-5' class='cls-1' transform='translate(408.118 -0.414)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-6' class='cls-2' transform='translate(872.119 483.586)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-2' class='cls-2' transform='translate(672.119 -139.413)'%3E%3Crect class='cls-8' width='16' height='15'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-3' class='cls-1' transform='translate(964.119 611.586)'%3E%3Crect class='cls-8' width='15' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0' class='cls-2' transform='translate(1091.119 321.587)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0-2' data-name='scale-white-color-0' class='cls-1' transform='translate(522.119 412.586)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0-3' data-name='scale-white-color-0' class='cls-3' transform='translate(688.119 635.586)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0-4' data-name='scale-white-color-0' class='cls-2' transform='translate(689.119 475.63)'%3E%3Crect class='cls-8' width='16' height='15'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-0-5' data-name='scale-white-color-0' class='cls-2' transform='translate(639.619 99.586)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-5-2' data-name='scale-white-color-5' class='cls-4' transform='translate(1045.119 182.587)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-8-2' data-name='scale-white-color-8' class='cls-5' transform='translate(769.119 868.586)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-4' class='cls-2' transform='translate(979.119 -78.414)'%3E%3Crect class='cls-8' width='16' height='15'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-3-2' data-name='scale-white-color-3' class='cls-4' transform='translate(705.119 475.63)'%3E%3Crect class='cls-8' width='15' height='15'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='14' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-1' class='cls-3' transform='translate(909.119 289.587)'%3E%3Crect class='cls-8' width='15' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0-6' data-name='scale-white-color-0' class='cls-2' transform='translate(995.119 -63.413)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-1-2' data-name='scale-white-color-1' class='cls-1' transform='translate(301.118 439.586)'%3E%3Crect class='cls-8' width='16' height='15'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-0-7' data-name='scale-white-color-0' class='cls-2' transform='translate(388.118 240.587)'%3E%3Crect class='cls-8' width='16' height='15'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-1-3' data-name='scale-white-color-1' class='cls-2' transform='translate(48.119 216.586)'%3E%3Crect class='cls-8' width='15' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-5-3' data-name='scale-white-color-5' class='cls-3' transform='translate(688.119 395.586)'%3E%3Crect class='cls-8' width='16' height='15'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-0-8' data-name='scale-white-color-0' class='cls-6' transform='translate(948.119 746.586)'%3E%3Crect class='cls-8' width='16' height='15'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-5-4' data-name='scale-white-color-5' class='cls-1' transform='translate(270.118 548.586)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-6-2' data-name='scale-white-color-6' class='cls-2' transform='translate(979.119 627.586)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-2-2' data-name='scale-white-color-2' class='cls-2' transform='translate(855.119 775.586)'%3E%3Crect class='cls-8' width='17' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='16' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-7' class='cls-4' transform='translate(262.119 841.586)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-4-2' data-name='scale-white-color-4' class='cls-2' transform='translate(964.119 730.586)'%3E%3Crect class='cls-8' width='15' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-3-3' data-name='scale-white-color-3' class='cls-2' transform='translate(190.119 410.586)'%3E%3Crect class='cls-8' width='16' height='15'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-6-3' data-name='scale-white-color-6' class='cls-4' transform='translate(925.119 289.587)'%3E%3Crect class='cls-8' width='15' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-6-4' data-name='scale-white-color-6' class='cls-4' transform='translate(872.119 395.586)'%3E%3Crect class='cls-8' width='17' height='15'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='16' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-8-3' data-name='scale-white-color-8' class='cls-2' transform='translate(544.618 208.586)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-2-3' data-name='scale-white-color-2' class='cls-7' transform='translate(987.619 1021.63)'%3E%3Crect class='cls-8' width='15' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-8-4' data-name='scale-white-color-8' class='cls-2' transform='translate(948.119 595.586)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-2-4' data-name='scale-white-color-2' class='cls-1' transform='translate(784.119 611.586)'%3E%3Crect class='cls-8' width='16' height='15'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-6-5' data-name='scale-white-color-6' class='cls-1' transform='translate(529.619 728.586)'%3E%3Crect class='cls-8' width='16' height='16'/%3E%3Crect class='cls-9' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.home-section.yellow {
  background: linear-gradient(180deg, #FFF5B7 0%, #FFF5B7 10%, rgba(255, 244, 226, 0) 100%);
}
.home-section.yellow .squares {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1059' height='1300' viewBox='0 0 1059 1300'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23ffea69; %7D .cls-1, .cls-2, .cls-3, .cls-4, .cls-5, .cls-6, .cls-7, .cls-8 %7B stroke: rgba(0,0,0,0); %7D .cls-2, .cls-5, .cls-7 %7B fill: %23ffdc00; %7D .cls-3 %7B fill: %23ffef8c; %7D .cls-4 %7B fill: %23fff4ad; %7D .cls-5 %7B opacity: 0.539; %7D .cls-6 %7B fill: %23fff8cc; %7D .cls-7 %7B opacity: 0.324; %7D .cls-8 %7B fill: %23ffe438; %7D .cls-9 %7B stroke: none; %7D .cls-10 %7B fill: none; %7D %3C/style%3E%3C/defs%3E%3Cg id='SQARES' transform='translate(1007.634 1294.557) rotate(180)'%3E%3Cg id='scale-white-color-7' class='cls-1' transform='translate(449.634 718.557)'%3E%3Crect class='cls-9' width='15' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-5' class='cls-2' transform='translate(329.634 439.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-4' class='cls-3' transform='translate(187.634 1114.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-2' class='cls-2' transform='translate(-0.366 516.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0' class='cls-4' transform='translate(41.634 200.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0-2' data-name='scale-white-color-0' class='cls-5' transform='translate(428.634 463.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0-3' data-name='scale-white-color-0' class='cls-4' transform='translate(879.634 130.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-4-2' data-name='scale-white-color-4' class='cls-6' transform='translate(991.634 544.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-3' class='cls-7' transform='translate(924.634 -5.443)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-1' class='cls-3' transform='translate(321.634 315.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0-4' data-name='scale-white-color-0' class='cls-8' transform='translate(863.634 726.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-1-2' data-name='scale-white-color-1' class='cls-1' transform='translate(-0.366 532.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0-5' data-name='scale-white-color-0' class='cls-1' transform='translate(389.634 608.557)'%3E%3Crect class='cls-9' width='15' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-7-2' data-name='scale-white-color-7' class='cls-3' transform='translate(-51.366 988.557)'%3E%3Crect class='cls-9' width='16' height='17'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='16'/%3E%3C/g%3E%3Cg id='scale-white-color-1-3' data-name='scale-white-color-1' class='cls-6' transform='translate(187.634 699.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-7-3' data-name='scale-white-color-7' class='cls-6' transform='translate(856.634 490.557)'%3E%3Crect class='cls-9' width='15' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-5-2' data-name='scale-white-color-5' class='cls-3' transform='translate(270.634 916.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-7-4' data-name='scale-white-color-7' class='cls-2' transform='translate(250.634 72.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-3-2' data-name='scale-white-color-3' class='cls-6' transform='translate(234.634 544.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-6' class='cls-6' transform='translate(338.634 315.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-6-2' data-name='scale-white-color-6' class='cls-2' transform='translate(470.634 289.557)'%3E%3Crect class='cls-9' width='15' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-8' class='cls-2' transform='translate(279.634 1278.557)'%3E%3Crect class='cls-9' width='15' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-1-4' data-name='scale-white-color-1' class='cls-2' transform='translate(26.634 1200.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-6-3' data-name='scale-white-color-6' class='cls-6' transform='translate(124.634 395.557)'%3E%3Crect class='cls-9' width='16' height='16'/%3E%3Crect class='cls-10' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.home-section.cyan {
  background: linear-gradient(180deg, #BFF2F2 0%, #BFF2F2 25%, rgba(234, 255, 255, 0) 100%);
}
.home-section.cyan .squares {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1059' height='1300' viewBox='0 0 1059 1300'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %238ae8e8; %7D .cls-1, .cls-10, .cls-2, .cls-3, .cls-4, .cls-5, .cls-6, .cls-7, .cls-8, .cls-9 %7B stroke: rgba(0,0,0,0); %7D .cls-2 %7B fill: %23aee; %7D .cls-3 %7B fill: %23a5eded; %7D .cls-4 %7B fill: %23ddf8f8; %7D .cls-5 %7B fill: %2366e0e0; %7D .cls-6 %7B fill: %234bdbdb; %7D .cls-7 %7B fill: %231ed2d2; %7D .cls-8 %7B fill: %2378e4e4; %7D .cls-9 %7B fill: %2344dada; %7D .cls-10 %7B fill: %23c7f4f4; %7D .cls-11 %7B stroke: none; %7D .cls-12 %7B fill: none; %7D %3C/style%3E%3C/defs%3E%3Cg id='SQARES' transform='translate(26.72 360.146)'%3E%3Cg id='scale-white-color-7' class='cls-1' transform='translate(-15.22 780.755)'%3E%3Crect class='cls-11' width='16' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-5' class='cls-2' transform='translate(161.78 276.755)'%3E%3Crect class='cls-11' width='15' height='15'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='14' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-4' class='cls-3' transform='translate(287.78 616.755)'%3E%3Crect class='cls-11' width='15' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-1' class='cls-3' transform='translate(618.78 432.755)'%3E%3Crect class='cls-11' width='16' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-3' class='cls-4' transform='translate(1016.28 482.755)'%3E%3Crect class='cls-11' width='16' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0' class='cls-5' transform='translate(720.78 118.755)'%3E%3Crect class='cls-11' width='16' height='15'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-0-2' data-name='scale-white-color-0' class='cls-5' transform='translate(-26.72 133.755)'%3E%3Crect class='cls-11' width='16' height='15'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-0-3' data-name='scale-white-color-0' class='cls-6' transform='translate(562.78 283.755)'%3E%3Crect class='cls-11' width='16' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0-4' data-name='scale-white-color-0' class='cls-7' transform='translate(794.78 17.755)'%3E%3Crect class='cls-11' width='16' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-4-2' data-name='scale-white-color-4' class='cls-7' transform='translate(941.78 49.755)'%3E%3Crect class='cls-11' width='17' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='16' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-3-2' data-name='scale-white-color-3' class='cls-4' transform='translate(794.78 1.755)'%3E%3Crect class='cls-11' width='16' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-1-2' data-name='scale-white-color-1' class='cls-8' transform='translate(712.78 -269.245)'%3E%3Crect class='cls-11' width='15' height='15'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='14' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-0-5' data-name='scale-white-color-0' class='cls-9' transform='translate(957.78 65.755)'%3E%3Crect class='cls-11' width='16' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-0-6' data-name='scale-white-color-0' class='cls-5' transform='translate(176.78 261.755)'%3E%3Crect class='cls-11' width='16' height='15'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-1-3' data-name='scale-white-color-1' class='cls-1' transform='translate(523.78 46.755)'%3E%3Crect class='cls-11' width='15' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-5-2' data-name='scale-white-color-5' class='cls-7' transform='translate(955.78 780.755)'%3E%3Crect class='cls-11' width='16' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-2' class='cls-10' transform='translate(697.78 -254.245)'%3E%3Crect class='cls-11' width='15' height='15'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='14' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-7-2' data-name='scale-white-color-7' class='cls-3' transform='translate(578.78 283.755)'%3E%3Crect class='cls-11' width='16' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-4-3' data-name='scale-white-color-4' class='cls-5' transform='translate(972.78 765.755)'%3E%3Crect class='cls-11' width='16' height='15'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-6' class='cls-9' transform='translate(727.78 -284.745)'%3E%3Crect class='cls-11' width='15' height='15'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='14' height='14'/%3E%3C/g%3E%3Cg id='scale-white-color-8' class='cls-10' transform='translate(333.78 923.854)'%3E%3Crect class='cls-11' width='15' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-1-4' data-name='scale-white-color-1' class='cls-6' transform='translate(975.78 -285.245)'%3E%3Crect class='cls-11' width='15' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='14' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-6-2' data-name='scale-white-color-6' class='cls-10' transform='translate(990.78 -285.245)'%3E%3Crect class='cls-11' width='16' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3Cg id='scale-white-color-2-2' data-name='scale-white-color-2' class='cls-8' transform='translate(282.78 -360.146)'%3E%3Crect class='cls-11' width='16' height='16'/%3E%3Crect class='cls-12' x='0.5' y='0.5' width='15' height='15'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.home-section .container-min p > strong {
  font-size: 18px;
}

.faq {
  padding: 48px;
  margin: 24px 0 72px 0;
  background: linear-gradient(90deg, rgba(85, 190, 190, 0.28) 0%, rgba(234, 255, 255, 0.28) 100%);
}
.faq .container-min {
  max-width: 74.25%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .faq .container-min {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.faq label {
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Made";
  font-size: 24px;
  margin-bottom: 24px;
}
.faq .faq-select {
  width: auto;
}
.faq .faq-select .ts-control {
  padding: 0;
  border: none;
}
.faq .faq-select .ts-control .item {
  color: white;
  background-color: var(--cyan);
  font-family: "Made";
  font-weight: bold;
  text-transform: uppercase;
  gap: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq .faq-select .ts-control .item:after {
  content: "";
  display: block;
  height: 6px;
  width: 12px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.228' height='9.5' viewBox='0 0 17.228 9.5'%3E%3Cpath id='Arrow' d='M17.228,0,8.269,5.636,0,.468V4.455L8.245,9.5l8.983-5.513Z' transform='translate(0 0)' fill='%23fff'/%3E%3C/svg%3E%0A");
}
.faq .faq-separator {
  display: block;
  height: 8px;
  width: 200px;
  margin: 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='193.648' height='7.58' viewBox='0 0 193.648 7.58'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_3029' data-name='Rectangle 3029' width='193.649' height='7.58' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-3'%3E%3Crect id='Rectangle_3004' data-name='Rectangle 3004' width='95.277' height='7.254' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-4'%3E%3Crect id='Rectangle_2983' data-name='Rectangle 2983' width='7.254' height='7.254' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-5'%3E%3Crect id='Rectangle_2985' data-name='Rectangle 2985' width='7.135' height='7.135' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-6'%3E%3Crect id='Rectangle_2987' data-name='Rectangle 2987' width='7.016' height='7.015' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-7'%3E%3Crect id='Rectangle_2989' data-name='Rectangle 2989' width='6.896' height='6.896' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-8'%3E%3Crect id='Rectangle_2991' data-name='Rectangle 2991' width='6.777' height='6.777' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-9'%3E%3Crect id='Rectangle_2993' data-name='Rectangle 2993' width='6.658' height='6.658' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-10'%3E%3Crect id='Rectangle_2995' data-name='Rectangle 2995' width='6.538' height='6.539' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-11'%3E%3Crect id='Rectangle_2997' data-name='Rectangle 2997' width='6.419' height='6.419' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-12'%3E%3Crect id='Rectangle_2999' data-name='Rectangle 2999' width='6.3' height='6.3' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-13'%3E%3Crect id='Rectangle_3001' data-name='Rectangle 3001' width='6.181' height='6.181' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-14'%3E%3Crect id='Rectangle_3003' data-name='Rectangle 3003' width='6.062' height='6.062' fill='none'/%3E%3C/clipPath%3E%3CclipPath id='clip-path-17'%3E%3Crect id='Rectangle_3008' data-name='Rectangle 3008' width='7.134' height='7.135' fill='none'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Divider-blue' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1942' data-name='Groupe 1942' transform='translate(0 0)'%3E%3Cg id='Groupe_1941' data-name='Groupe 1941' clip-path='url(%23clip-path)'%3E%3Cg id='Groupe_1904' data-name='Groupe 1904' transform='translate(98.372 0)'%3E%3Cg id='Groupe_1903' data-name='Groupe 1903' transform='translate(0 0)'%3E%3Cg id='Groupe_1902' data-name='Groupe 1902' clip-path='url(%23clip-path-3)'%3E%3Cg id='Groupe_1871' data-name='Groupe 1871'%3E%3Cg id='Groupe_1870' data-name='Groupe 1870'%3E%3Cg id='Groupe_1869' data-name='Groupe 1869' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_2982' data-name='Rectangle 2982' width='7.254' height='7.254' transform='translate(0 0)' fill='%231ed2d2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1874' data-name='Groupe 1874' transform='translate(8.922 0.058)' opacity='0.912'%3E%3Cg id='Groupe_1873' data-name='Groupe 1873'%3E%3Cg id='Groupe_1872' data-name='Groupe 1872' clip-path='url(%23clip-path-5)'%3E%3Crect id='Rectangle_2984' data-name='Rectangle 2984' width='6.889' height='6.89' transform='translate(0 0.25) rotate(-2.076)' fill='%2329d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1877' data-name='Groupe 1877' transform='translate(17.843 0.116)' opacity='0.824'%3E%3Cg id='Groupe_1876' data-name='Groupe 1876'%3E%3Cg id='Groupe_1875' data-name='Groupe 1875' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_2986' data-name='Rectangle 2986' width='6.535' height='6.535' transform='matrix(0.997, -0.076, 0.076, 0.997, 0, 0.499)' fill='%2335d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1880' data-name='Groupe 1880' transform='translate(26.764 0.174)' opacity='0.736'%3E%3Cg id='Groupe_1879' data-name='Groupe 1879'%3E%3Cg id='Groupe_1878' data-name='Groupe 1878' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_2988' data-name='Rectangle 2988' width='6.193' height='6.193' transform='translate(0 0.749) rotate(-6.946)' fill='%2340d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1883' data-name='Groupe 1883' transform='translate(35.686 0.232)' opacity='0.648'%3E%3Cg id='Groupe_1882' data-name='Groupe 1882'%3E%3Cg id='Groupe_1881' data-name='Groupe 1881' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_2990' data-name='Rectangle 2990' width='5.864' height='5.864' transform='translate(0 0.999) rotate(-9.803)' fill='%234bdbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1886' data-name='Groupe 1886' transform='translate(44.607 0.29)' opacity='0.56'%3E%3Cg id='Groupe_1885' data-name='Groupe 1885'%3E%3Cg id='Groupe_1884' data-name='Groupe 1884' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_2992' data-name='Rectangle 2992' width='5.552' height='5.552' transform='translate(0 1.248) rotate(-12.994)' fill='%2356dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1889' data-name='Groupe 1889' transform='translate(53.529 0.348)' opacity='0.472'%3E%3Cg id='Groupe_1888' data-name='Groupe 1888'%3E%3Cg id='Groupe_1887' data-name='Groupe 1887' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_2994' data-name='Rectangle 2994' width='5.258' height='5.258' transform='translate(0 1.498) rotate(-16.55)' fill='%2361dfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1892' data-name='Groupe 1892' transform='translate(62.451 0.406)' opacity='0.384'%3E%3Cg id='Groupe_1891' data-name='Groupe 1891'%3E%3Cg id='Groupe_1890' data-name='Groupe 1890' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_2996' data-name='Rectangle 2996' width='4.988' height='4.988' transform='translate(0 1.747) rotate(-20.507)' fill='%236de2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1895' data-name='Groupe 1895' transform='translate(71.372 0.464)' opacity='0.296'%3E%3Cg id='Groupe_1894' data-name='Groupe 1894'%3E%3Cg id='Groupe_1893' data-name='Groupe 1893' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_2998' data-name='Rectangle 2998' width='4.744' height='4.744' transform='translate(0 1.997) rotate(-24.898)' fill='%2378e4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1898' data-name='Groupe 1898' transform='translate(80.294 0.521)' opacity='0.208'%3E%3Cg id='Groupe_1897' data-name='Groupe 1897'%3E%3Cg id='Groupe_1896' data-name='Groupe 1896' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3000' data-name='Rectangle 3000' width='4.53' height='4.53' transform='translate(0 2.247) rotate(-29.731)' fill='%2383e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1901' data-name='Groupe 1901' transform='translate(89.215 0.579)' opacity='0.12'%3E%3Cg id='Groupe_1900' data-name='Groupe 1900'%3E%3Cg id='Groupe_1899' data-name='Groupe 1899' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3002' data-name='Rectangle 3002' width='4.352' height='4.352' transform='matrix(0.819, -0.574, 0.574, 0.819, 0, 2.496)' fill='%238fe9e9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1940' data-name='Groupe 1940' transform='translate(0 0.326)'%3E%3Cg id='Groupe_1939' data-name='Groupe 1939'%3E%3Cg id='Groupe_1938' data-name='Groupe 1938' clip-path='url(%23clip-path-3)'%3E%3Cg id='Groupe_1907' data-name='Groupe 1907' transform='translate(88.023)'%3E%3Cg id='Groupe_1906' data-name='Groupe 1906'%3E%3Cg id='Groupe_1905' data-name='Groupe 1905' clip-path='url(%23clip-path-4)'%3E%3Crect id='Rectangle_3005' data-name='Rectangle 3005' width='7.254' height='7.254' transform='translate(0)' fill='%231ed2d2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1910' data-name='Groupe 1910' transform='translate(79.221 0.061)' opacity='0.912'%3E%3Cg id='Groupe_1909' data-name='Groupe 1909'%3E%3Cg id='Groupe_1908' data-name='Groupe 1908' clip-path='url(%23clip-path-17)'%3E%3Crect id='Rectangle_3007' data-name='Rectangle 3007' width='6.889' height='6.89' transform='translate(0 0.25) rotate(-2.076)' fill='%2329d4d4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1913' data-name='Groupe 1913' transform='translate(70.418 0.123)' opacity='0.824'%3E%3Cg id='Groupe_1912' data-name='Groupe 1912'%3E%3Cg id='Groupe_1911' data-name='Groupe 1911' clip-path='url(%23clip-path-6)'%3E%3Crect id='Rectangle_3009' data-name='Rectangle 3009' width='6.535' height='6.535' transform='translate(0 0.499) rotate(-4.383)' fill='%2335d6d6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1916' data-name='Groupe 1916' transform='translate(61.616 0.184)' opacity='0.736'%3E%3Cg id='Groupe_1915' data-name='Groupe 1915'%3E%3Cg id='Groupe_1914' data-name='Groupe 1914' clip-path='url(%23clip-path-7)'%3E%3Crect id='Rectangle_3011' data-name='Rectangle 3011' width='6.193' height='6.193' transform='matrix(0.993, -0.121, 0.121, 0.993, 0, 0.749)' fill='%2340d9d9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1919' data-name='Groupe 1919' transform='translate(52.814 0.245)' opacity='0.648'%3E%3Cg id='Groupe_1918' data-name='Groupe 1918'%3E%3Cg id='Groupe_1917' data-name='Groupe 1917' clip-path='url(%23clip-path-8)'%3E%3Crect id='Rectangle_3013' data-name='Rectangle 3013' width='5.864' height='5.864' transform='matrix(0.985, -0.17, 0.17, 0.985, 0, 0.998)' fill='%234bdbdb'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1922' data-name='Groupe 1922' transform='translate(44.012 0.306)' opacity='0.56'%3E%3Cg id='Groupe_1921' data-name='Groupe 1921'%3E%3Cg id='Groupe_1920' data-name='Groupe 1920' clip-path='url(%23clip-path-9)'%3E%3Crect id='Rectangle_3015' data-name='Rectangle 3015' width='5.552' height='5.552' transform='translate(0 1.248) rotate(-12.994)' fill='%2356dddd'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1925' data-name='Groupe 1925' transform='translate(35.209 0.368)' opacity='0.472'%3E%3Cg id='Groupe_1924' data-name='Groupe 1924'%3E%3Cg id='Groupe_1923' data-name='Groupe 1923' clip-path='url(%23clip-path-10)'%3E%3Crect id='Rectangle_3017' data-name='Rectangle 3017' width='5.258' height='5.258' transform='translate(0 1.498) rotate(-16.55)' fill='%2361dfdf'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1928' data-name='Groupe 1928' transform='translate(26.407 0.429)' opacity='0.384'%3E%3Cg id='Groupe_1927' data-name='Groupe 1927'%3E%3Cg id='Groupe_1926' data-name='Groupe 1926' clip-path='url(%23clip-path-11)'%3E%3Crect id='Rectangle_3019' data-name='Rectangle 3019' width='4.988' height='4.988' transform='translate(0 1.747) rotate(-20.507)' fill='%236de2e2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1931' data-name='Groupe 1931' transform='translate(17.605 0.49)' opacity='0.296'%3E%3Cg id='Groupe_1930' data-name='Groupe 1930'%3E%3Cg id='Groupe_1929' data-name='Groupe 1929' clip-path='url(%23clip-path-12)'%3E%3Crect id='Rectangle_3021' data-name='Rectangle 3021' width='4.744' height='4.744' transform='translate(0 1.997) rotate(-24.898)' fill='%2378e4e4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1934' data-name='Groupe 1934' transform='translate(8.802 0.552)' opacity='0.208'%3E%3Cg id='Groupe_1933' data-name='Groupe 1933' transform='translate(0 0)'%3E%3Cg id='Groupe_1932' data-name='Groupe 1932' clip-path='url(%23clip-path-13)'%3E%3Crect id='Rectangle_3023' data-name='Rectangle 3023' width='4.53' height='4.53' transform='matrix(0.868, -0.496, 0.496, 0.868, 0, 2.247)' fill='%2383e6e6'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg id='Groupe_1937' data-name='Groupe 1937' transform='translate(0 0.613)' opacity='0.12'%3E%3Cg id='Groupe_1936' data-name='Groupe 1936' transform='translate(0 0)'%3E%3Cg id='Groupe_1935' data-name='Groupe 1935' clip-path='url(%23clip-path-14)'%3E%3Crect id='Rectangle_3025' data-name='Rectangle 3025' width='4.352' height='4.352' transform='matrix(0.819, -0.574, 0.574, 0.819, 0, 2.496)' fill='%238fe9e9'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.faq .faq-separator.hide {
  display: none;
}
.faq .faq-separator:last-of-type {
  display: none;
}
.faq .accordions {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  align-items: flex-start;
  margin-left: 0;
  padding-left: 0;
  gap: 48px;
  margin: 24px 0;
  list-style: none;
  perspective: 900;
}
.faq .accordions .heading {
  width: 100%;
}
.faq .accordions .accordion {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}
.faq .accordions .accordion.hide {
  display: none;
}
.faq .accordions .accordion .accordion-header {
  font-weight: 700;
  margin: 0;
  padding: 12px 24px 12px 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  font-family: "Made";
  color: var(--cyan-med);
}
.faq .accordions .accordion i {
  position: absolute;
  transform: translate(-0.4rem, 0);
  top: 12px;
  right: 0;
}
.faq .accordions .accordion i svg {
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
  transform: rotate(180deg);
}
.faq .accordions .accordion input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
.faq .accordions .accordion input[type=checkbox]:checked ~ span {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  transform: translate(0, 50%);
}
.faq .accordions .accordion input[type=checkbox]:checked ~ i svg {
  transform: rotate(0);
}
.faq .accordions .accordion-content {
  transition: all 0.25s ease-in-out;
  position: relative;
  overflow: hidden;
  max-height: 2000px;
  opacity: 1;
  transform: translate(0, 0);
  display: block;
  z-index: 1;
  font-family: "Made";
  color: var(--cyan-med);
}
.faq .accordions .accordion-content p {
  margin: 0;
  font-weight: 300;
}

.contact {
  max-width: var(--max-width);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
}
.contact .container-min {
  max-width: 74.25%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
  padding: 32px 48px 48px 96px;
  border-top-right-radius: 150px;
  border-bottom-left-radius: 150px;
  background: transparent linear-gradient(180deg, #BAFFFF 0%, #E4FCFC 100%) 0% 0% no-repeat padding-box;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .contact .container-min {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .contact .container-min {
    flex-flow: column-reverse;
    padding: 32px;
  }
}
.contact__left {
  display: flex;
  flex-flow: column;
  gap: 12px;
}
.contact__left__buttons {
  display: flex;
  align-items: flex-end;
  gap: 72px;
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .contact__left__buttons {
    flex-flow: column;
    align-items: center;
    gap: 12px;
  }
}
.contact__left a {
  display: flex;
  align-items: center;
  flex-flow: column;
  font-family: "Made EVO";
  font-weight: 500;
  text-align: center;
  color: var(--cyan);
  font-size: 18px;
}
.contact__left a picture {
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}
.contact__left a:hover picture {
  transform: translateY(-4px);
}
.contact__left .title {
  font-family: "Made EVO";
  text-transform: uppercase;
  color: var(--cyan);
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 2px;
}
.contact__left .content {
  font-family: "Made EVO";
}
.contact__left .content p {
  color: var(--blue-med);
  margin-top: 6px;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 20px;
}
.contact__right {
  padding-top: 24px;
  padding-right: 98px;
}
@media screen and (max-width: 640px) {
  .contact__right {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
}

.contact-infos {
  margin: 72px 0;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.contact-infos h3 {
  color: var(--cyan-med);
  text-transform: uppercase;
}
.contact-infos .informations {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.contact-infos .informations address {
  display: flex;
  flex-flow: column;
  align-items: center;
  font-style: normal;
}
.contact-infos .informations > a {
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-infos .informations > a svg * {
  fill: var(--cyan-med);
}

.social-links {
  display: flex;
  align-items: center;
  flex-flow: row;
  gap: 48px;
  margin: 24px;
}
.social-links .social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.social-links .social-link:hover:before {
  transform: rotate(-45deg);
}
.social-links .social-link:before {
  transition: all ease-in-out 0.2s;
  content: "";
  display: block;
  position: absolute;
  background-color: #DDF8F8;
  z-index: 0;
  width: 48px;
  height: 48px;
  transform: rotate(45deg);
}
.social-links .social-link:nth-child(2):before {
  background-color: #C7F4F4;
}
.social-links .social-link:nth-child(3):before {
  background-color: #AAEEEE;
}
.social-links .social-link svg {
  position: relative;
}

.gmap {
  margin: 48px 0 72px 0;
  max-width: 100%;
  overflow: hidden;
  height: 550px;
}

.text-content {
  max-width: var(--max-width);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
}
.text-content .container-min {
  max-width: 74.25%;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .text-content .container-min {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.temoignage {
  margin: 72px 0;
}
.temoignage .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}
.temoignage__left h3 {
  padding-left: 50px;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 500;
}
.temoignage__left blockquote {
  margin: 0;
}
.temoignage__left blockquote .content {
  position: relative;
  padding: 0 50px 24px 50px;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  font-style: normal;
  font-family: "Made";
  color: var(--blue);
}
.temoignage__left blockquote .content:before {
  font-size: 50px;
  font-family: "Made";
  font-style: normal;
  color: var(--orange);
  display: block;
  content: "«";
  position: absolute;
  left: 0;
  top: 0;
}
.temoignage__left blockquote .content:after {
  font-size: 50px;
  font-family: "Made";
  font-style: normal;
  color: var(--orange);
  display: block;
  content: "»";
  position: absolute;
  right: 0;
  bottom: 0;
}
.temoignage__left blockquote figcaption {
  text-align: right;
  padding-right: 50px;
}
.temoignage__left blockquote figcaption p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  font-style: normal;
  color: var(--blue);
}
.temoignage__left blockquote figcaption cite {
  font-style: normal;
}
