diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts
index 9b73cfd85f01f04bc87d09c3997418138f8d127e..5440a2ce75fb961d07b90e24f08bef47b852f93f 100644
--- a/src/app/app-routing.module.ts
+++ b/src/app/app-routing.module.ts
@@ -163,7 +163,6 @@ const routes: Routes = [
           structure: StructureResolver,
         },
       },
-      footerOutletRoute,
     ],
   },
   {
@@ -177,7 +176,6 @@ const routes: Routes = [
           structure: StructureResolver,
         },
       },
-      footerOutletRoute,
     ],
   },
   {
diff --git a/src/app/form/form-view/form-view.component.ts b/src/app/form/form-view/form-view.component.ts
index 0b3f715b160a51951365acc09c7cc211b49fc755..789dd0ece6b1a1287e094d6eaa591602f7979b5c 100644
--- a/src/app/form/form-view/form-view.component.ts
+++ b/src/app/form/form-view/form-view.component.ts
@@ -268,8 +268,9 @@ export class FormViewComponent implements OnInit, AfterViewInit {
   }
   public displayFooterForm(): boolean {
     if (
-      (this.currentPage === profileFormStep.profileEndInfo && formType[this.routeParam] === formType.profile) ||
+      (this.currentPage === accountFormStep.confirmEmailSentInfo && formType[this.routeParam] === formType.account) ||
       (this.currentPage === profileFormStep.profileBeginningInfo && formType[this.routeParam] === formType.profile) ||
+      (this.currentPage === structureFormStep.noStructure && formType[this.routeParam] === formType.structure) ||
       (this.currentPage === personalOfferFormStep.personalOfferFinishedInfo &&
         formType[this.routeParam] === formType.personaloffer)
     ) {
diff --git a/src/app/form/form-view/profile-form/profileFormStep.enum.ts b/src/app/form/form-view/profile-form/profileFormStep.enum.ts
index 16f6bc321b1962d0b612f3548d185a33b644a251..1f05ac3e887d339932d8a59a90a22dd8df9ae4b6 100644
--- a/src/app/form/form-view/profile-form/profileFormStep.enum.ts
+++ b/src/app/form/form-view/profile-form/profileFormStep.enum.ts
@@ -2,5 +2,4 @@ export enum profileFormStep {
   profileBeginningInfo,
   profileEmployerSelection,
   profileJobSelection,
-  profileEndInfo,
 }
diff --git a/src/app/structure/structure-join/structure-join.component.html b/src/app/structure/structure-join/structure-join.component.html
index 6d8399d0128f2bdf04fe212dc2ca95167a8a6003..6d1f875c9215360dd4c667908931cacfbc827060 100644
--- a/src/app/structure/structure-join/structure-join.component.html
+++ b/src/app/structure/structure-join/structure-join.component.html
@@ -9,7 +9,7 @@
           [isClaimed]="isClaimed"
         />
       </div>
-      <div class="button">
+      <div class="btnContainer">
         <app-button [variant]="'primary'" [label]="'Ok'" [wide]="true" (action)="handleFinish()" />
       </div>
     </div>
@@ -20,15 +20,15 @@
   <ng-container *ngIf="!structureName && !isLoading && validationToken">
     <div class="container">
       <div class="page">
-        <img *ngIf="error" src="../../../assets/img/joinError.svg" alt="join error" />
+        <img *ngIf="error" src="../../../assets/form/structureNeutral.svg" alt="join error" />
         <img
           *ngIf="!error && isStructureJoinValidated === 'true'"
-          src="../../../assets/img/joinAccepted.svg"
+          src="../../../assets/form/structureCreated.svg"
           alt="join accepted"
         />
         <img
           *ngIf="!error && isStructureJoinValidated === 'false'"
-          src="../../../assets/img/joinRefused.svg"
+          src="../../../assets/form/structureNegatif.svg"
           alt="join refused"
         />
         <h2 *ngIf="error && error === 404">
@@ -52,7 +52,7 @@
           Il semblerait que la demande d’adhésion ait déjà été traitée ou que le mail soit expiré.
         </div>
       </div>
-      <div class="button">
+      <div class="btnContainer">
         <app-button [variant]="'primary'" [label]="'Ok'" [wide]="true" (action)="handleCallback()" />
       </div>
     </div>
diff --git a/src/app/structure/structure-join/structure-join.component.scss b/src/app/structure/structure-join/structure-join.component.scss
index 1460904aea1e4cf4a47e3a063150d87351a78b1e..402b3322fefe75ba4c4e4bce7bcf82b73c8ec5fb 100644
--- a/src/app/structure/structure-join/structure-join.component.scss
+++ b/src/app/structure/structure-join/structure-join.component.scss
@@ -15,39 +15,49 @@
 }
 
 .page {
-  box-sizing: border-box;
-
   /* Auto layout */
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
-  padding: 0px 32px 48px;
-  gap: 16px;
-
-  width: 1000px;
-  max-height: 579px;
+  max-width: 600px;
+  min-height: inherit;
+  height: 100%;
+  flex-grow: 1;
 
   /* Basic/White */
   background: $white;
 
-  /* Grey/6 */
-  border: 1px solid $grey-6;
-  border-radius: 8px;
-
-  /* Inside auto layout */
-  flex: none;
-  order: 0;
-  flex-grow: 1;
-
   @media #{$tablet} {
     width: unset;
   }
   h2 {
     margin: 0;
+    margin-top: 40px;
   }
   .subtitle {
     max-width: 600px;
+    margin-top: 16px;
+  }
+}
+
+.btnContainer {
+  width: 100vw;
+  max-width: calc(100vw - 96px - 96px);
+  left: calc(-50vw + 50%);
+  display: flex;
+  place-content: center;
+  border-top: solid 1px $grey-7;
+  padding: 32px 0 40px;
+  margin: 0 96px;
+  overflow-x: hidden;
+  position: fixed;
+  bottom: 0;
+  background-color: $grey-10;
+  scrollbar-gutter: stable;
+  @media #{$tablet} {
+    max-width: calc(100vw - 4%);
+    margin: 0 2%;
   }
 }
 
diff --git a/src/assets/form/structureNeutral.svg b/src/assets/form/structureNeutral.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e7703b18649028d3ea6f940879b0b22e9cd00dcd
--- /dev/null
+++ b/src/assets/form/structureNeutral.svg
@@ -0,0 +1,47 @@
+<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_14421_58728)">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M118.201 50.806H141.194H162.418H177.746V50.7836C177.941 50.7984 178.137 50.806 178.336 50.806C182.569 50.806 186 47.3746 186 43.1418C186 39.0928 182.86 35.7772 178.883 35.4968C178.911 35.1011 178.925 34.7015 178.925 34.2985C178.925 25.1817 171.535 17.791 162.418 17.791C161.928 17.791 161.442 17.8124 160.963 17.8543C157.191 10.7997 149.753 6 141.194 6C128.821 6 118.791 16.0302 118.791 28.403L118.791 28.4182C118.596 28.4081 118.399 28.403 118.201 28.403C112.015 28.403 107 33.4181 107 39.6045C107 45.5931 111.7 50.4841 117.612 50.7907V50.806H118.201Z" fill="#DDEDFF"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M12 68C7.58172 68 4 64.4183 4 60C4 55.5817 7.58172 52 12 52C13.6226 52 15.1324 52.4831 16.3934 53.3133C16.1356 52.0827 16 50.8072 16 49.5C16 39.2827 24.2827 31 34.5 31C36.3529 31 38.1421 31.2724 39.8298 31.7793C43.7516 27.6062 49.3214 25 55.5 25C67.3741 25 77 34.6259 77 46.5C77 48.8942 76.6087 51.197 75.8865 53.3479C78.3316 54.6284 80 57.1902 80 60.1418C80 64.3746 76.5686 67.8059 72.3358 67.8059C72.2233 67.8059 72.1113 67.8035 72 67.7987V68H55.5H34.5H12Z" fill="#DDEDFF"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M152.5 39H162.5H171H178V38.9646C178.163 38.9879 178.33 39 178.5 39C180.433 39 182 37.433 182 35.5C182 33.567 180.433 32 178.5 32C177.95 32 177.429 32.127 176.966 32.3534C176.643 29.3438 174.095 27 171 27C170.752 27 170.508 27.015 170.268 27.0442C168.944 24.072 165.964 22 162.5 22C157.806 22 154 25.8056 154 30.5C154 31.1726 154.078 31.8269 154.226 32.4543C153.716 32.1651 153.128 32 152.5 32C150.567 32 149 33.567 149 35.5C149 37.2632 150.304 38.7219 152 38.9646V39H152.5Z" fill="white"/>
+<rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 90.8672)" fill="#A0C7F0"/>
+<path d="M99.7216 74.0352L194.231 126.055L194.234 128.602L99.7216 183.169L5.20884 128.602L5.20904 126.053L99.7216 74.0352Z" fill="#4277AF"/>
+<rect width="109.134" height="109.134" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 71.4883)" fill="url(#paint0_linear_14421_58728)"/>
+<rect width="80.5611" height="80.5611" transform="matrix(0.866025 0.5 -0.866025 0.5 99.7188 86.291)" fill="#769FCB"/>
+<path d="M174.22 117.501C174.553 115.168 174.22 110.301 170.22 109.501C165.22 108.501 172.72 119.001 174.22 117.501Z" fill="#3D8C5C"/>
+<path d="M177.72 117.5C177.553 116.167 177.82 113.7 180.22 114.5C183.22 115.5 178.721 118.5 177.72 117.5Z" fill="#66AF82"/>
+<path d="M44 106.623C42.0508 103.814 36.9827 98.9448 32.3045 101.941C26.4568 105.687 42.0508 110.368 44 106.623Z" fill="#3D8C5C"/>
+<path d="M44 105C42.4072 95.2152 38.0749 78.1075 33.4877 87.9555C27.7537 100.265 40.1774 105 44 105Z" fill="#66AF82"/>
+<path d="M127.81 55.6816H156.139V127.46L127.81 143.953L99.4805 160.443V88.6615L127.81 55.6816Z" fill="#EDF7FF"/>
+<path d="M42.8164 55.6816V127.46L71.1458 143.953L99.4752 160.443V88.6615L42.8164 55.6816Z" fill="#A0C7F1"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M59.2918 89.9652C59.2918 90.3509 58.8735 90.5914 58.5402 90.3973L47.0804 83.7241C46.9266 83.6346 46.832 83.47 46.832 83.292V69.9441C46.832 69.5584 47.2503 69.3179 47.5836 69.512L59.0434 76.1852C59.1972 76.2747 59.2918 76.4393 59.2918 76.6172V89.9652ZM74.6481 99.5499C74.9814 99.744 75.3997 99.5035 75.3997 99.1178V85.767C75.3997 85.589 75.3051 85.4244 75.1512 85.3349L63.6915 78.6644C63.3582 78.4704 62.94 78.7108 62.94 79.0965V92.4446C62.94 92.6226 63.0346 92.7872 63.1884 92.8767L74.6481 99.5499ZM90.771 108.706C91.1043 108.9 91.5225 108.659 91.5225 108.274V94.9226C91.5225 94.7446 91.4278 94.58 91.274 94.4905L79.8113 87.8199C79.478 87.6259 79.0598 87.8663 79.0598 88.252V101.603C79.0598 101.781 79.1545 101.946 79.3084 102.035L90.771 108.706ZM90.771 130.231C91.1043 130.425 91.5225 130.185 91.5225 129.799V116.448C91.5225 116.27 91.4278 116.105 91.274 116.016L79.8113 109.345C79.478 109.151 79.0598 109.392 79.0598 109.777V123.128C79.0598 123.306 79.1545 123.471 79.3084 123.561L90.771 130.231ZM75.3997 120.646C75.3997 121.032 74.9815 121.272 74.6482 121.078L63.1884 114.407C63.0346 114.318 62.94 114.153 62.94 113.975V100.624C62.94 100.239 63.3582 99.9983 63.6915 100.192L75.1512 106.863C75.3051 106.952 75.3997 107.117 75.3997 107.295V120.646ZM58.5403 111.925C58.8736 112.119 59.2918 111.879 59.2918 111.493V98.1423C59.2918 97.9643 59.1972 97.7997 59.0433 97.7102L47.5836 91.0397C47.2502 90.8457 46.832 91.0861 46.832 91.4718V104.823C46.832 105.001 46.9267 105.165 47.0805 105.255L58.5403 111.925Z" fill="#405C76"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M59.2918 84.8462L55.2678 88.4914L47.0804 83.7238C46.9266 83.6342 46.832 83.4697 46.832 83.2917V81.6267L54.4697 73.5215L59.0434 76.1848C59.1972 76.2744 59.2918 76.4389 59.2918 76.6169V84.8462ZM50.5495 92.7657L47.5836 91.0393C47.2502 90.8453 46.832 91.0858 46.832 91.4715V96.1333L50.5495 92.7657ZM48.906 106.317L58.2356 97.2397L59.0433 97.7098C59.1972 97.7994 59.2918 97.9639 59.2918 98.1419V110.865L58.1092 111.674L48.906 106.317ZM65.8714 115.969L63.3859 114.522L74.7373 106.621L75.1512 106.862C75.3051 106.952 75.3997 107.117 75.3997 107.295V109.821L65.8714 115.969ZM91.5225 99.4197L83.5989 104.532L80.408 102.675L91.5225 94.939V99.4197ZM72.2231 83.6301L75.1512 85.3345C75.3051 85.4241 75.3997 85.5887 75.3997 85.7667V99.1174C75.3997 99.5031 74.9814 99.7436 74.6481 99.5495L63.1884 92.8764C63.0899 92.819 63.0157 92.731 62.975 92.6283L72.2231 83.6301ZM65.1677 79.5233L62.94 81.5414V79.0962C62.94 78.7105 63.3582 78.47 63.6915 78.6641L65.1677 79.5233ZM86.9328 91.9638L79.0598 97.3476V88.2517C79.0598 87.866 79.478 87.6255 79.8113 87.8195L86.9328 91.9638ZM69.7464 103.716L63.6915 100.192C63.3582 99.9979 62.94 100.238 62.94 100.624V108.371L69.7464 103.716Z" fill="#333B51"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M139.47 83.8303C139.136 84.0243 138.718 83.7839 138.718 83.3982V70.0501C138.718 69.8721 138.813 69.7076 138.967 69.618L150.426 62.9475C150.76 62.7535 151.178 62.994 151.178 63.3797V76.7277C151.178 76.9057 151.083 77.0703 150.929 77.1598L139.47 83.8303ZM139.47 104.67C139.136 104.864 138.718 104.624 138.718 104.238V90.8873C138.718 90.7093 138.813 90.5447 138.967 90.4551L150.426 83.7847C150.76 83.5906 151.178 83.8311 151.178 84.2168V97.5649C151.178 97.7429 151.083 97.9074 150.929 97.997L139.47 104.67ZM111.48 119.446C111.48 119.831 111.899 120.072 112.232 119.878L123.692 113.207C123.846 113.118 123.94 112.953 123.94 112.775V99.4273C123.94 99.0416 123.522 98.8011 123.189 98.9951L111.729 105.666C111.575 105.755 111.48 105.92 111.48 106.098V119.446ZM112.232 99.0383C111.899 99.2323 111.48 98.9919 111.48 98.6062V85.2581C111.48 85.0801 111.575 84.9156 111.729 84.826L123.189 78.1555C123.522 77.9615 123.94 78.202 123.94 78.5877V91.9357C123.94 92.1137 123.846 92.2783 123.692 92.3678L112.232 99.0383Z" fill="#FF9C9B"/>
+<path d="M138.479 137.788C138.479 137.966 138.385 138.13 138.231 138.22L128.475 143.916L127.502 144.484C127.169 144.678 126.75 144.438 126.75 144.052V120.947C126.75 120.769 126.844 120.604 126.998 120.515L137.727 114.253C138.061 114.059 138.479 114.299 138.479 114.685V137.788Z" fill="#333333"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M138.42 138.021C138.458 137.95 138.479 137.87 138.479 137.787V114.684C138.479 114.298 138.06 114.058 137.727 114.253L136.719 114.841C136.719 114.851 136.72 114.862 136.72 114.872V136.69C136.72 136.879 136.827 137.053 136.996 137.137L138.166 137.722C138.295 137.787 138.382 137.897 138.42 138.021Z" fill="#606060"/>
+<path d="M41.4996 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H99.4826C100.074 21 100.596 21.2971 100.911 21.7501L156.378 53.9423C156.837 54.0058 157.238 54.2481 157.512 54.6001L157.526 54.6058H157.52C157.748 54.9059 157.893 55.2751 157.893 55.6819C157.893 56.657 157.108 57.4445 156.141 57.4445H128.611L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273C99.0787 90.4273 98.669 90.2859 98.3401 89.9974L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885H41.4996Z" fill="#FF5D5C"/>
+<path d="M99.4797 90.4244C99.0729 90.4244 98.6632 90.283 98.3344 89.9945L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H71.632L127.812 53.9164L127.258 59.0226L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273L99.4797 90.4244Z" fill="#DA3635"/>
+<path d="M99.4797 90.4244C99.0729 90.4244 98.6632 90.283 98.3344 89.9945L42.2468 57.407C42.0419 57.3378 41.8486 57.2282 41.6784 57.0782C40.9486 56.4406 40.8678 55.3271 41.5025 54.5885L69.829 21.6087C70.1607 21.2221 70.6454 21 71.1531 21H71.632L127.812 53.9164L127.258 59.0226L100.807 89.8157C100.461 90.2195 99.9759 90.4273 99.4854 90.4273L99.4797 90.4244Z" fill="#DA3635"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M156.052 54.4755C156.437 54.5698 156.773 54.7933 157.012 55.1001L157.026 55.1058H157.02C157.248 55.4059 157.393 55.7751 157.393 56.1819C157.393 57.157 156.608 57.9446 155.641 57.9446H128.111L116.535 71.4225L99 90V86.5L128 54L156.052 54.4755Z" fill="#DA3635"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M107.03 82.6495L100.807 89.816C100.464 90.2159 99.9854 90.4235 99.5 90.4276V86.0004L127.826 54.2559L127.98 58.0234L107.03 82.6495Z" fill="#FF5D5C"/>
+<path d="M74.1914 59.6493V42.3805L81.5767 38.082V50.6081L74.1914 59.6493Z" fill="#EDF7FF"/>
+<path d="M66.8008 55.4634L74.186 59.7618V42.3805L66.8008 38.082V55.4634Z" fill="#A0C7F1"/>
+<path d="M66.8008 38.0806L74.186 33.7793L81.5713 38.0806L74.186 42.3791L66.8008 38.0806Z" fill="white"/>
+<path d="M69.6328 38.0851L74.2226 35.2793L78.8123 38.0851L74.2226 40.889L69.6328 38.0851Z" fill="#A0C7F1"/>
+<path d="M69.6328 38.0851L74.2226 35.2793V38.0851V40.889L69.6328 38.0851Z" fill="#769FCB"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M48.7188 70.173L47.5836 69.512C47.2503 69.3179 46.832 69.5584 46.832 69.9441V83.292C46.832 83.47 46.9266 83.6346 47.0804 83.7241L58.5402 90.3973C58.8735 90.5914 59.2918 90.3509 59.2918 89.9652V89.2929L48.9671 83.2808C48.8133 83.1912 48.7188 83.0267 48.7188 82.8487V70.173ZM64.8267 79.3252V92.0013C64.8267 92.1792 64.9213 92.3438 65.0751 92.4334L75.3997 98.4455V99.1178C75.3997 99.5035 74.9814 99.744 74.6481 99.5499L63.1884 92.8767C63.0346 92.7872 62.94 92.6226 62.94 92.4446V79.0965C62.94 78.7108 63.3582 78.4704 63.6915 78.6644L64.8267 79.3252ZM80.9466 88.4805V101.16C80.9466 101.338 81.0412 101.502 81.1951 101.592L91.5225 107.602V108.274C91.5225 108.659 91.1043 108.9 90.771 108.706L79.3084 102.035C79.1545 101.946 79.0598 101.781 79.0598 101.603V88.252C79.0598 87.8663 79.478 87.6259 79.8113 87.8199L80.9466 88.4805ZM80.9466 110.006V122.685C80.9466 122.863 81.0412 123.028 81.1951 123.117L91.5225 129.127V129.799C91.5225 130.185 91.1043 130.425 90.771 130.231L79.3084 123.561C79.1545 123.471 79.0598 123.306 79.0598 123.128V109.777C79.0598 109.392 79.478 109.151 79.8113 109.345L80.9466 110.006ZM64.8267 100.853L63.6915 100.192C63.3582 99.9983 62.94 100.239 62.94 100.624V113.975C62.94 114.153 63.0346 114.318 63.1884 114.407L74.6482 121.078C74.9815 121.272 75.3997 121.032 75.3997 120.646V119.974L65.0751 113.964C64.9213 113.875 64.8267 113.71 64.8267 113.532V100.853ZM48.7188 91.7004V104.379C48.7188 104.557 48.8134 104.722 48.9672 104.812L59.2918 110.821V111.493C59.2918 111.879 58.8736 112.119 58.5403 111.925L47.0805 105.255C46.9267 105.165 46.832 105.001 46.832 104.823V91.4718C46.832 91.0861 47.2502 90.8457 47.5836 91.0397L48.7188 91.7004Z" fill="#333333"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M151.174 66.3256L141.979 82.3672L139.466 83.8303C139.132 84.0243 138.714 83.7839 138.714 83.3982V70.0501C138.714 69.8721 138.809 69.7076 138.963 69.618L150.422 62.9475C150.756 62.7535 151.174 62.994 151.174 63.3797V66.3256ZM111.477 116.755L120.833 100.364L123.185 98.9951C123.518 98.8011 123.936 99.0416 123.936 99.4273V112.775C123.936 112.953 123.842 113.118 123.688 113.207L112.228 119.878C111.895 120.072 111.477 119.831 111.477 119.446V116.755ZM150.267 83.875L139.641 104.568L139.466 104.67C139.132 104.864 138.714 104.624 138.714 104.238V102.255L147.083 85.7282L150.267 83.875Z" fill="white"/>
+<path fill-rule="evenodd" clip-rule="evenodd" d="M138.718 82.3624V83.3982C138.718 83.7839 139.136 84.0243 139.47 83.8303L150.929 77.1598C151.083 77.0703 151.178 76.9057 151.178 76.7277V63.3797C151.178 62.994 150.76 62.7535 150.426 62.9475L149.416 63.5355V75.8478C149.416 76.0258 149.322 76.1904 149.168 76.28L138.718 82.3624ZM138.718 103.202V104.238C138.718 104.624 139.136 104.864 139.47 104.67L150.929 97.997C151.083 97.9074 151.178 97.7429 151.178 97.5649V84.2168C151.178 83.8311 150.76 83.5906 150.426 83.7847L149.416 84.3727V96.685C149.416 96.863 149.322 97.0275 149.168 97.1171L138.718 103.202ZM111.48 118.41L121.93 112.328C122.084 112.238 122.179 112.073 122.179 111.895V99.5832L123.189 98.9951C123.522 98.8011 123.94 99.0416 123.94 99.4273V112.775C123.94 112.953 123.846 113.118 123.692 113.207L112.232 119.878C111.899 120.072 111.48 119.831 111.48 119.446V118.41ZM111.48 97.5704V98.6062C111.48 98.9919 111.899 99.2323 112.232 99.0383L123.692 92.3678C123.846 92.2783 123.94 92.1137 123.94 91.9357V78.5877C123.94 78.202 123.522 77.9615 123.189 78.1555L122.179 78.7436V91.0558C122.179 91.2338 122.084 91.3984 121.93 91.488L111.48 97.5704Z" fill="#D86867"/>
+<path d="M100.219 160.5C100.385 153.5 102.819 139.8 111.219 141C121.719 142.5 102.719 162.999 100.219 160.5Z" fill="#66AF82"/>
+<path d="M100.219 160.5C101.552 156 102.419 146.4 95.219 144C86.219 141 95.219 164.5 100.219 160.5Z" fill="#3D8C5C"/>
+<path d="M174.72 118.001C177.386 115.167 181.92 108.401 178.72 104.001C174.72 98.5008 172.22 120.001 174.72 118.001Z" fill="#66AF82"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear_14421_58728" x1="86.6776" y1="54.5845" x2="23.1101" y2="137.189" gradientUnits="userSpaceOnUse">
+<stop stop-color="white"/>
+<stop offset="1" stop-color="#D9EDFF"/>
+</linearGradient>
+<clipPath id="clip0_14421_58728">
+<rect width="200" height="200" fill="white"/>
+</clipPath>
+</defs>
+</svg>