This is an automated email from the ASF dual-hosted git repository.

yumeng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git

commit 85edbd0756eef7f9d773a8c86cf8da241d8e6263
Author: ZiyuTao <[email protected]>
AuthorDate: Sun Sep 11 18:05:29 2022 +0800

    feat: desc section
    
    new vi
---
 src/components/Sections/Components.tsx |  37 +++++++
 src/components/Sections/WhyDevlake.tsx |  64 ++++++++++++
 src/css/custom.css                     |   5 +-
 static/img/Homepage/WAD-1.svg          | 170 ++++++++++++++++++++++++++++++++
 static/img/Homepage/WAD-2.svg          | 147 ++++++++++++++++++++++++++++
 static/img/Homepage/WAD-3.svg          | 173 +++++++++++++++++++++++++++++++++
 static/img/Homepage/arrow-right.svg    |   3 +
 tailwind.config.js                     |   4 +-
 8 files changed, 598 insertions(+), 5 deletions(-)

diff --git a/src/components/Sections/Components.tsx 
b/src/components/Sections/Components.tsx
new file mode 100644
index 000000000..5abfdc453
--- /dev/null
+++ b/src/components/Sections/Components.tsx
@@ -0,0 +1,37 @@
+import React from "react";
+import ArrowRight from "@site/static/img/Homepage/arrow-right.svg";
+
+export const TextTitle = ({ children }: { children: React.ReactNode }) =>
+  <span className="block font-inter
+    text-heading2 text-primary-800 font-semibold mb-[16px]">
+    {children}
+  </span>
+
+export const TextDescription = ({ children }: { children: React.ReactNode }) =>
+  <p className="font-inter pr-[20px]
+    text-label18 text-neutral-500 ">
+    {children}
+  </p>
+
+export const TextLink = ({ link, children }: { link: string, children: 
React.ReactNode }) =>
+  <a className="text-label16 text-secondary-500 flex items-center mt-[16px]"
+    href={link}>{children}
+    <ArrowRight width={20} height={20} />
+  </a>
+
+export const TextSection = ({ children }: { children: React.ReactNode }) =>
+  <div
+    className="
+      text-start w-[448px]
+    ">
+    {children}
+  </div>
+
+export const SvgImg = ({ svg: Svg }: { svg: 
React.ComponentType<React.SVGProps<SVGSVGElement>> }) =>
+  <div
+    className="
+      w-auto h-auto
+      "
+  >
+    <Svg role="img" />
+  </div>
\ No newline at end of file
diff --git a/src/components/Sections/WhyDevlake.tsx 
b/src/components/Sections/WhyDevlake.tsx
new file mode 100644
index 000000000..06cef6346
--- /dev/null
+++ b/src/components/Sections/WhyDevlake.tsx
@@ -0,0 +1,64 @@
+import React from "react";
+import * as C from "./Components";
+import WAD1 from "@site/static/img/Homepage/WAD-1.svg";
+import WAD2 from "@site/static/img/Homepage/WAD-2.svg";
+import WAD3 from "@site/static/img/Homepage/WAD-3.svg";
+
+function Feature({ children }: { children: React.ReactNode }) {
+  return (
+    <div className="flex w-full justify-between items-center space-y-7">
+      {children}
+    </div>
+  );
+}
+
+export function WhyDevlake() {
+  return (<section className="bg-white flex flex-col flex-nowrap py-5 
items-stretch">
+    <span
+      className="section-title text-center"
+    >
+      Why Apache DevLake (Incubating)
+    </span>
+    <div
+      className="
+        flex flex-col
+        px-[140px]
+        space-y-5
+        ">
+      <Feature>
+        <C.SvgImg svg={WAD1} />
+        <C.TextSection>
+          <C.TextTitle>Data Silos Connected</C.TextTitle>
+          <C.TextDescription>
+            Collect DevOps data from tools across the entire Software 
Development Life Cycle (SDLC) and connect siloed data with a standard data 
model.
+            <br />
+            <C.TextLink 
link="https://devlake.apache.org/docs/DataSupport";>Explore supported data 
sources</C.TextLink>
+          </C.TextDescription>
+        </C.TextSection>
+      </Feature>
+      <Feature>
+        <C.TextSection>
+          <C.TextTitle>Out-of-the-box Analysis</C.TextTitle>
+          <C.TextDescription>
+            Visualize out-of-the-box engineering metrics in a series of 
use-case driven dashboards.
+            <br />
+            <C.TextLink 
link="https://devlake.apache.org/docs/LiveDemo";>Interact with pre-built 
dashboards</C.TextLink>
+          </C.TextDescription>
+        </C.TextSection>
+        <C.SvgImg svg={WAD2} />
+      </Feature>
+      <Feature>
+        <C.SvgImg svg={WAD3} />
+        <C.TextSection>
+          <C.TextTitle>A Highly Flexible Framework</C.TextTitle>
+          <C.TextDescription>
+            Easily extend DevLake to support your data sources, metrics, and 
dashboards with a flexible framework for data collection and transformation.
+            <br />
+            <C.TextLink 
link="https://devlake.apache.org/docs/DataModels/DevLakeDomainLayerSchema";>Learn
 about DevLake’s data model</C.TextLink>
+          </C.TextDescription>
+        </C.TextSection>
+      </Feature>
+    </div>
+  </section>)
+}
+
diff --git a/src/css/custom.css b/src/css/custom.css
index 1f07be1e2..6afad5e80 100644
--- a/src/css/custom.css
+++ b/src/css/custom.css
@@ -46,9 +46,8 @@ html[data-theme='dark'] .docusaurus-highlight-code-line {
   }
 
   .section-title {
-    @apply text-heading2 mb-5;
-    @apply text-neutral-600 font-semibold;
-    @apply lg:text-[40px] lg:leading-[1.2] lg:mb-6;
+    @apply text-heading1 mb-[64px];
+    @apply text-primary-800 font-semibold;
   }
 
   .floating-link-icon {
diff --git a/static/img/Homepage/WAD-1.svg b/static/img/Homepage/WAD-1.svg
new file mode 100644
index 000000000..684589d43
--- /dev/null
+++ b/static/img/Homepage/WAD-1.svg
@@ -0,0 +1,170 @@
+<svg width="383" height="289" viewBox="0 0 383 289" fill="none" 
xmlns="http://www.w3.org/2000/svg";>
+<g clip-path="url(#clip0_1074_4037)">
+<path opacity="0.18" d="M77.2072 33.2884C87.8757 15.4287 111.057 9.49373 
131.86 9.4998C152.663 9.50587 173.733 13.7842 194.081 9.4998C203.469 7.50932 
212.529 3.72257 222.105 3.21888C242.447 2.14475 260.276 15.7564 276.042 
28.6399L304.88 52.2161C316.562 61.768 328.547 71.684 335.629 85.0165C341.804 
96.7493 343.734 110.256 341.091 123.248C337.765 139.342 327.467 154.58 330.04 
170.813C331.333 178.969 335.787 186.227 338.682 193.965C341.592 201.743 342.926 
210.023 342.606 218.323C342.285 226 [...]
+<path d="M166.645 44.8672L169.194 49.2972L187.054 41.3474L188.874 
44.1693C188.874 44.1693 170.329 62.6297 169.218 62.3748C168.108 62.12 160.838 
49.2183 160.838 49.2183L166.645 44.8672Z" fill="url(#paint0_linear_1074_4037)"/>
+<path d="M160.067 27.9299L168.095 43.6535L161.092 49.807L160.067 27.9299Z" 
fill="#7497F7"/>
+<path opacity="0.69" d="M160.067 27.9299L168.095 43.6535L161.092 
49.807L160.067 27.9299Z" fill="url(#paint1_linear_1074_4037)"/>
+<path d="M175.675 57.5565L180.008 27.9299L197.328 27.6993L191.629 
57.7871L175.675 57.5565Z" fill="#FF8B8B"/>
+<path d="M224.46 159.386H229.551V122.72C229.551 120.306 230.51 117.991 232.218 
116.284C233.925 114.577 236.24 113.617 238.654 
113.617H262.412V108.526H238.63C234.873 108.529 231.271 110.023 228.614 
112.68C225.957 115.337 224.463 118.939 224.46 122.696V159.386Z" fill="#7497F7"/>
+<path d="M224.575 159.386H229.667V122.72C229.667 120.306 230.626 117.991 
232.333 116.284C234.04 114.577 236.355 113.617 238.77 
113.617H262.534V108.526H238.739C234.983 108.531 231.382 110.025 228.727 
112.682C226.072 115.339 224.578 118.94 224.575 122.696V159.386Z" 
fill="url(#paint2_linear_1074_4037)"/>
+<path d="M162.288 81.697H71.3693C59.7897 81.697 50.4025 91.0841 50.4025 
102.664V228.07C50.4025 239.649 59.7897 249.037 71.3693 249.037H162.288C173.868 
249.037 183.255 239.649 183.255 228.07V102.664C183.255 91.0841 173.868 81.697 
162.288 81.697Z" fill="url(#paint3_linear_1074_4037)"/>
+<path d="M176.33 230.867C176.332 230.194 176.6 229.548 177.077 229.071C177.553 
228.595 178.199 228.326 178.873 228.325H201.284C203.693 228.317 206.001 227.354 
207.701 225.648C209.402 223.942 210.357 221.631 210.357 
219.222V195.488H215.454V219.246C215.454 221.107 215.088 222.95 214.376 
224.669C213.663 226.388 212.62 227.95 211.304 229.266C209.988 230.582 208.426 
231.625 206.707 232.338C204.988 233.05 203.145 233.416 201.284 
233.416H178.903C178.567 233.419 178.233 233.356 177.921 233.229C1 [...]
+<path d="M271.327 238.896V233.805H234.661C232.247 233.805 229.932 232.846 
228.225 231.138C226.517 229.431 225.558 227.116 225.558 
224.702V200.968H220.467V224.726C220.47 228.483 221.964 232.086 224.621 
234.742C227.277 237.399 230.88 238.893 234.637 238.896H271.327Z" 
fill="#7497F7"/>
+<path d="M176.33 230.867C176.332 230.194 176.6 229.548 177.077 229.071C177.553 
228.595 178.199 228.326 178.873 228.325H201.284C203.693 228.317 206.001 227.354 
207.701 225.648C209.402 223.942 210.357 221.631 210.357 
219.222V195.488H215.454V219.246C215.454 221.107 215.088 222.95 214.376 
224.669C213.663 226.388 212.62 227.95 211.304 229.266C209.988 230.582 208.426 
231.625 206.707 232.338C204.988 233.05 203.145 233.416 201.284 
233.416H178.903C178.567 233.419 178.233 233.356 177.921 233.229C1 [...]
+<path d="M271.327 238.896V233.805H234.661C232.247 233.805 229.932 232.846 
228.225 231.138C226.517 229.431 225.558 227.116 225.558 
224.702V200.968H220.467V224.726C220.47 228.483 221.964 232.086 224.621 
234.742C227.277 237.399 230.88 238.893 234.637 238.896H271.327Z" 
fill="url(#paint5_linear_1074_4037)"/>
+<path d="M346.54 280.192C346.543 281.325 346.322 282.447 345.89 
283.493C345.458 284.54 344.825 285.492 344.025 286.293C343.225 287.095 342.275 
287.731 341.229 288.165C340.183 288.599 339.062 288.822 337.929 
288.822H52.9696C50.8387 288.815 48.786 288.019 47.2082 286.587C45.6305 285.154 
44.6398 283.188 44.4277 281.068C44.2156 278.948 44.7971 276.824 46.0599 
275.108C47.3227 273.391 49.177 272.204 51.2643 271.775C51.8258 271.663 52.397 
271.606 52.9696 271.605H337.929C340.209 271.605 342.395  [...]
+<path d="M165.808 238.113H55.84V275.404H165.808V238.113Z" fill="#7497F7"/>
+<path d="M165.808 238.113H55.84V265.452H165.808V238.113Z" 
fill="url(#paint6_linear_1074_4037)"/>
+<path d="M147.463 81.697H56.5439C44.9643 81.697 35.5771 91.0841 35.5771 
102.664V228.076C35.5771 239.655 44.9643 249.043 56.5439 249.043H147.463C159.042 
249.043 168.429 239.655 168.429 228.076V102.664C168.429 91.0841 159.042 81.697 
147.463 81.697Z" fill="#7497F7"/>
+<path d="M168.429 180.76V228.094C168.428 233.654 166.218 238.986 162.286 
242.918C158.355 246.85 153.023 249.059 147.463 249.061H56.5439C53.7892 249.06 
51.0616 248.517 48.517 247.461C45.9724 246.406 43.6605 244.86 41.7135 
242.912C39.7665 240.963 38.2224 238.65 37.1695 236.104C36.1167 233.559 35.5756 
230.831 35.5772 228.076V180.741C35.5772 175.181 37.7861 169.848 41.7182 
165.916C45.6502 161.984 50.9832 159.775 56.5439 159.775H147.463C150.217 159.775 
152.945 160.318 155.49 161.372C158.035 1 [...]
+<path d="M249.183 152.596H194.336V204.33H249.183V152.596Z" fill="#435276"/>
+<path d="M248.971 145.253H195.483C192.44 145.253 189.973 147.72 189.973 
150.763V160.181C189.973 163.224 192.44 165.691 195.483 165.691H248.971C252.014 
165.691 254.481 163.224 254.481 160.181V150.763C254.481 147.72 252.014 145.253 
248.971 145.253Z" fill="#7497F7"/>
+<path d="M248.971 168.884H195.483C192.44 168.884 189.973 171.351 189.973 
174.394V183.812C189.973 186.855 192.44 189.322 195.483 189.322H248.971C252.014 
189.322 254.481 186.855 254.481 183.812V174.394C254.481 171.351 252.014 168.884 
248.971 168.884Z" fill="#7497F7"/>
+<path d="M248.971 192.514H195.483C192.44 192.514 189.973 194.981 189.973 
198.025V207.443C189.973 210.486 192.44 212.953 195.483 212.953H248.971C252.014 
212.953 254.481 210.486 254.481 207.443V198.025C254.481 194.981 252.014 192.514 
248.971 192.514Z" fill="#7497F7"/>
+<path d="M219.993 145.362H214.902V108.696C214.902 106.282 213.943 103.966 
212.236 102.259C210.529 100.552 208.213 99.5931 205.799 99.5931H178.558C177.882 
99.5931 177.233 99.3245 176.755 98.8466C176.277 98.3686 176.009 97.7203 176.009 
97.0443C176.01 96.3694 176.28 95.7226 176.758 95.246C177.235 94.7693 177.883 
94.5016 178.558 94.5016H205.823C207.685 94.5008 209.528 94.8668 211.247 
95.5786C212.967 96.2904 214.529 97.3341 215.845 98.6501C217.161 99.9661 218.205 
101.528 218.917 103.248C219.6 [...]
+<path d="M219.993 145.362H214.902V108.696C214.902 106.282 213.943 103.966 
212.236 102.259C210.529 100.552 208.213 99.5931 205.799 99.5931H178.558C177.882 
99.5931 177.233 99.3245 176.755 98.8466C176.277 98.3686 176.009 97.7203 176.009 
97.0443C176.01 96.3694 176.28 95.7226 176.758 95.246C177.235 94.7693 177.883 
94.5016 178.558 94.5016H205.823C207.685 94.5008 209.528 94.8668 211.247 
95.5786C212.967 96.2904 214.529 97.3341 215.845 98.6501C217.161 99.9661 218.205 
101.528 218.917 103.248C219.6 [...]
+<path d="M245.178 157.25C246.374 157.25 247.344 156.28 247.344 155.084C247.344 
153.887 246.374 152.917 245.178 152.917C243.981 152.917 243.011 153.887 243.011 
155.084C243.011 156.28 243.981 157.25 245.178 157.25Z" 
fill="url(#paint9_linear_1074_4037)"/>
+<path d="M239.741 157.25C240.937 157.25 241.907 156.28 241.907 155.084C241.907 
153.887 240.937 152.917 239.741 152.917C238.544 152.917 237.574 153.887 237.574 
155.084C237.574 156.28 238.544 157.25 239.741 157.25Z" 
fill="url(#paint10_linear_1074_4037)"/>
+<path d="M234.37 157.25C235.566 157.25 236.536 156.28 236.536 155.084C236.536 
153.887 235.566 152.917 234.37 152.917C233.173 152.917 232.203 153.887 232.203 
155.084C232.203 156.28 233.173 157.25 234.37 157.25Z" 
fill="url(#paint11_linear_1074_4037)"/>
+<path d="M223.622 56.4277H325.659C326.977 56.4285 328.283 56.1694 329.502 
55.6654C330.72 55.1613 331.827 54.4221 332.76 53.49C333.693 52.5578 334.433 
51.451 334.937 50.2329C335.442 49.0147 335.702 47.709 335.702 46.3903C335.702 
40.8103 333.485 35.4588 329.54 31.5131C325.594 27.5674 320.243 25.3508 314.662 
25.3508H306.057C306.057 19.7723 303.841 14.4224 299.897 10.4778C295.952 6.53328 
290.602 4.31726 285.024 4.31726H271.145C268.382 4.31646 265.647 4.85992 263.094 
5.9166C260.541 6.97328 25 [...]
+<path d="M106.998 56.4277H45.0987C44.4502 56.4285 43.808 56.3015 43.2087 
56.0539C42.6095 55.8063 42.0649 55.4431 41.6061 54.9848C41.1473 54.5266 40.7833 
53.9825 40.535 53.3835C40.2867 52.7845 40.1589 52.1424 40.1589 
51.494V50.4442C40.1589 47.1216 41.4771 43.9347 43.8242 41.5831C46.1714 39.2314 
49.3557 37.907 52.6782 37.9005H57.8365C57.8365 34.5732 59.1578 31.3821 61.5101 
29.0287C63.8623 26.6753 67.0528 25.3524 70.3801 25.3508H78.6515C80.2993 25.3508 
81.9309 25.6755 83.4532 26.3062C84.975 [...]
+<path d="M145.891 121.774H58.5526C55.1206 121.774 52.3384 124.556 52.3384 
127.988C52.3384 131.42 55.1206 134.202 58.5526 134.202H145.891C149.323 134.202 
152.105 131.42 152.105 127.988C152.105 124.556 149.323 121.774 145.891 
121.774Z" fill="white"/>
+<path d="M116.125 124.177H59.1169C56.8781 124.177 55.0632 125.992 55.0632 
128.231V128.237C55.0632 130.475 56.8781 132.29 59.1169 132.29H116.125C118.363 
132.29 120.178 130.475 120.178 128.237V128.231C120.178 125.992 118.363 124.177 
116.125 124.177Z" fill="#7497F7"/>
+<path d="M311.938 81.697H269.713C264.337 81.697 259.979 86.055 259.979 
91.4309V149.677C259.979 155.053 264.337 159.411 269.713 159.411H311.938C317.314 
159.411 321.672 155.053 321.672 149.677V91.4309C321.672 86.055 317.314 81.697 
311.938 81.697Z" fill="#7497F7"/>
+<path d="M311.932 81.697H299.352C293.976 81.697 289.618 86.055 289.618 
91.4309V149.677C289.618 155.053 293.976 159.411 299.352 159.411H311.932C317.308 
159.411 321.666 155.053 321.666 149.677V91.4309C321.666 86.055 317.308 81.697 
311.932 81.697Z" fill="url(#paint12_linear_1074_4037)"/>
+<path d="M321.672 91.437H259.979C259.975 90.1594 260.223 88.8935 260.709 
87.712C261.196 86.5305 261.91 85.4565 262.812 84.5517C263.714 83.6468 264.786 
82.9289 265.966 82.439C267.146 81.9492 268.411 81.697 269.689 
81.6971H311.907C313.19 81.6898 314.461 81.9367 315.647 82.4233C316.833 82.9099 
317.911 83.6267 318.819 84.5322C319.727 85.4378 320.447 86.5142 320.936 
87.6993C321.426 88.8844 321.676 90.1548 321.672 91.437Z" 
fill="url(#paint13_linear_1074_4037)"/>
+<path d="M321.672 149.677C321.672 150.954 321.419 152.219 320.93 
153.399C320.44 154.579 319.722 155.651 318.817 156.553C317.912 157.455 316.838 
158.17 315.657 158.656C314.475 159.142 313.209 159.39 311.932 
159.386H269.713C267.138 159.386 264.668 158.363 262.847 156.542C261.026 154.721 
260.003 152.252 260.003 149.677H321.672Z" 
fill="url(#paint14_linear_1074_4037)"/>
+<path d="M339.568 267.181H269.325V178.077L321.459 177.47L340.369 
191.562L339.568 267.181ZM272.007 264.548H336.94L337.717 192.939L320.604 
180.195L272.007 180.741V264.548Z" fill="#7497F7"/>
+<path d="M339.683 193.728L323.747 193.989L320.962 178.429L339.683 
193.728ZM325.98 191.301L333.79 190.87L324.876 184.619L325.98 191.301Z" 
fill="#7497F7"/>
+<path d="M327.625 197.472H283.695C282.843 197.472 282.153 198.162 282.153 
199.014V199.02C282.153 199.871 282.843 200.561 283.695 200.561H327.625C328.476 
200.561 329.166 199.871 329.166 199.02V199.014C329.166 198.162 328.476 197.472 
327.625 197.472Z" fill="#7497F7"/>
+<path d="M327.625 207.673H283.695C282.843 207.673 282.153 208.364 282.153 
209.215V209.221C282.153 210.072 282.843 210.762 283.695 210.762H327.625C328.476 
210.762 329.166 210.072 329.166 209.221V209.215C329.166 208.364 328.476 207.673 
327.625 207.673Z" fill="#7497F7"/>
+<path d="M327.625 217.875H283.695C282.843 217.875 282.153 218.565 282.153 
219.416V219.422C282.153 220.274 282.843 220.964 283.695 220.964H327.625C328.476 
220.964 329.166 220.274 329.166 219.422V219.416C329.166 218.565 328.476 217.875 
327.625 217.875Z" fill="#7497F7"/>
+<path d="M327.625 228.07H283.695C282.843 228.07 282.153 228.76 282.153 
229.611V229.617C282.153 230.469 282.843 231.159 283.695 231.159H327.625C328.476 
231.159 329.166 230.469 329.166 229.617V229.611C329.166 228.76 328.476 228.07 
327.625 228.07Z" fill="#7497F7"/>
+<path d="M327.625 238.271H283.695C282.843 238.271 282.153 238.961 282.153 
239.812V239.818C282.153 240.67 282.843 241.36 283.695 241.36H327.625C328.476 
241.36 329.166 240.67 329.166 239.818V239.812C329.166 238.961 328.476 238.271 
327.625 238.271Z" fill="#7497F7"/>
+<path d="M327.625 248.472H283.695C282.843 248.472 282.153 249.162 282.153 
250.014V250.02C282.153 250.871 282.843 251.561 283.695 251.561H327.625C328.476 
251.561 329.166 250.871 329.166 250.02V250.014C329.166 249.162 328.476 248.472 
327.625 248.472Z" fill="#7497F7"/>
+<path d="M190.221 130.876H176.822C176.522 130.875 176.235 130.755 176.023 
130.542C175.812 130.329 175.693 130.041 175.693 129.742C175.693 129.442 175.812 
129.155 176.024 128.943C176.236 128.732 176.523 128.613 176.822 
128.613H190.221C193 128.611 195.664 127.506 197.628 125.541C199.592 123.576 
200.696 120.911 200.696 118.132V95.6122C200.696 92.3594 201.988 89.2399 204.288 
86.9399C206.588 84.6398 209.707 83.3477 212.96 83.3477H239.801C242.786 83.3461 
245.649 82.1596 247.759 80.0488C249.87  [...]
+<path d="M110.851 80.8171H113.115V79.4941C113.11 76.2493 111.819 73.1388 
109.524 70.8443C107.23 68.5499 104.119 67.2588 100.874 67.2539H89.0894C86.5871 
67.2491 84.1887 66.2525 82.4199 64.4826C80.6511 62.7126 79.656 60.3136 79.6528 
57.8113V55.9543H77.3893V57.8113C77.3925 60.914 78.626 63.8887 80.8193 
66.0831C83.0127 68.2776 85.9868 69.5127 89.0894 69.5175H100.881C103.526 69.5191 
106.063 70.5707 107.933 72.4414C109.804 74.312 110.856 76.8487 110.857 
79.4941L110.851 80.8171Z" fill="#7497F7"/>
+<path opacity="0.25" d="M314.025 98.5068H268.602V129.104H314.025V98.5068Z" 
fill="white"/>
+<path d="M304.146 280.362C304.152 282.348 303.471 284.275 302.219 
285.817C300.967 287.359 299.221 288.42 297.276 288.822H52.9696C50.8387 288.815 
48.786 288.019 47.2082 286.587C45.6305 285.154 44.6398 283.188 44.4277 
281.068C44.2156 278.948 44.7971 276.824 46.0599 275.108C47.3227 273.391 49.177 
272.204 51.2643 271.775H295.541C297.82 271.775 300.006 272.679 301.619 
274.289C303.232 275.899 304.141 278.083 304.146 280.362Z" 
fill="url(#paint15_linear_1074_4037)"/>
+<path d="M134.312 39.4054V73.3892H162.343V37.0994C162.343 37.0994 162.628 
25.3629 156.474 25.8787C150.321 26.3945 136.928 23.6273 134.312 39.4054Z" 
fill="#7497F7"/>
+<path opacity="0.69" d="M134.312 39.4054V73.3892H162.343V37.0994C162.343 
37.0994 162.628 25.3629 156.474 25.8787C150.321 26.3945 136.928 23.6273 134.312 
39.4054Z" fill="url(#paint16_linear_1074_4037)"/>
+<path d="M162.343 73.3407C162.343 73.3407 180.548 73.9111 185.706 
82.4435C190.865 90.9758 198.013 112.531 198.013 112.531L191.514 115.092L179.893 
100.394L162.343 73.3407Z" fill="white"/>
+<path d="M162.343 73.3407C162.343 73.3407 180.548 73.9111 185.706 
82.4435C190.865 90.9758 198.013 112.531 198.013 112.531L191.514 115.092L179.893 
100.394L162.343 73.3407Z" fill="url(#paint17_linear_1074_4037)"/>
+<path d="M134.312 73.3407C134.312 73.3407 131.8 85.8783 138.414 
87.9052C145.029 89.932 165.304 92.0075 165.304 92.0075L175.335 125.281L183.655 
121.519C183.655 121.519 180.578 85.3928 176.476 80.8596C172.374 76.3264 162.343 
73.3407 162.343 73.3407H134.312Z" fill="white"/>
+<path d="M148.561 15.6169C148.851 13.8803 149.361 12.1878 150.078 
10.58C150.808 9.20686 151.882 8.04662 153.194 7.21269C154.507 6.37876 156.013 
5.89968 157.567 5.82228C157.943 5.79672 158.32 5.82327 158.689 5.90117C159.086 
6.00298 159.463 6.16902 159.806 6.39272C160.652 6.98156 161.371 7.73288 161.924 
8.60287C162.476 9.47286 162.849 10.4441 163.022 11.4599C163.352 13.4906 163.403 
15.5568 163.174 17.6013C163.022 19.8345 162.616 22.4561 160.625 23.4695C159.241 
24.1674 157.591 23.8094 156.0 [...]
+<path opacity="0.69" d="M134.603 39.4359L143.263 55.8209L152.493 
48.9877C152.493 48.9877 145.648 31.917 144.313 31.2312C142.978 30.5455 139.695 
28.5004 138.159 30.7215C136.624 32.9426 134.312 36.5291 134.603 39.4359Z" 
fill="url(#paint19_linear_1074_4037)"/>
+<path d="M145.363 54.765C145.363 54.765 149.125 61.4404 150.825 
61.6042C152.524 61.7681 176.81 51.1724 176.81 51.1724L180.572 49.9587C180.572 
49.9587 181.428 45.8564 181.598 45.0007C181.768 44.1451 183.133 41.2443 181.252 
40.8984C179.371 40.5525 176.476 42.9678 176.476 42.9678L175.105 46.3904L154.593 
52.7138L152.487 49.012L145.363 54.765Z" fill="url(#paint20_linear_1074_4037)"/>
+<path d="M167.234 6.508C168.089 4.55393 167.313 1.82916 165.28 1.17376C163.605 
0.627597 161.827 1.58036 160.067 1.61677C158.568 1.61677 157.136 1.00991 
155.649 0.833927C153.887 0.682473 152.129 1.15933 150.685 2.18005C149.241 
3.20078 148.205 4.69952 147.76 6.4109C147.682 6.94025 147.533 7.45667 147.317 
7.94624C146.71 9.04464 145.157 9.49978 144.853 10.7196C144.765 11.3193 144.849 
11.9318 145.096 12.4855L147.026 18.2324C147.244 18.8756 147.736 19.6646 148.379 
19.4461C148.737 19.3247 148.9 [...]
+<path d="M180.918 122.623L182.114 125.876L191.344 125.706L179.723 
131.004L177.502 123.825L180.918 122.623Z" fill="#7497F7"/>
+<path d="M180.148 123.054L181.349 126.301L190.573 126.131L178.952 
131.429L176.731 124.25L180.148 123.054Z" fill="url(#paint21_linear_1074_4037)"/>
+<path d="M197.158 112.883L198.353 116.13L207.583 115.96L195.962 
121.258L193.741 114.079L197.158 112.883Z" fill="#7497F7"/>
+<path d="M196.387 113.308L197.582 116.561L206.819 116.385L195.191 
121.689L192.97 114.503L196.387 113.308Z" fill="url(#paint22_linear_1074_4037)"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear_1074_4037" x1="160.831" y1="51.8581" 
x2="188.868" y2="51.8581" gradientUnits="userSpaceOnUse">
+<stop stop-color="#ECC4D7"/>
+<stop offset="0.42" stop-color="#EFD4D1"/>
+<stop offset="1" stop-color="#F2EAC9"/>
+</linearGradient>
+<linearGradient id="paint1_linear_1074_4037" x1="160.067" y1="38.8654" 
x2="168.095" y2="38.8654" gradientUnits="userSpaceOnUse">
+<stop offset="0.02" stop-color="white" stop-opacity="0"/>
+<stop offset="0.58" stop-color="white" stop-opacity="0.39"/>
+<stop offset="0.68" stop-color="white" stop-opacity="0.68"/>
+<stop offset="1" stop-color="white"/>
+</linearGradient>
+<linearGradient id="paint2_linear_1074_4037" x1="243.552" y1="134.269" 
x2="244.917" y2="166.408" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint3_linear_1074_4037" x1="50.4025" y1="165.37" 
x2="183.255" y2="165.37" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint4_linear_1074_4037" x1="196.751" y1="226.99" 
x2="194.7" y2="194.171" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint5_linear_1074_4037" x1="245.845" y1="223.767" 
x2="246.191" y2="202.06" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint6_linear_1074_4037" x1="111.009" y1="265.027" 
x2="110.536" y2="230.892" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint7_linear_1074_4037" x1="100.887" y1="247.671" 
x2="108.114" y2="-32.106" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint8_linear_1074_4037" x1="199.197" y1="135.853" 
x2="200.222" y2="164.229" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint9_linear_1074_4037" x1="243.011" y1="155.084" 
x2="247.344" y2="155.084" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint10_linear_1074_4037" x1="237.574" y1="155.084" 
x2="241.907" y2="155.084" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint11_linear_1074_4037" x1="232.203" y1="155.084" 
x2="236.542" y2="155.084" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint12_linear_1074_4037" x1="276.091" y1="119.904" 
x2="421.117" y2="123.09" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint13_linear_1074_4037" x1="236.221" y1="85.4717" 
x2="504.65" y2="91.3703" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint14_linear_1074_4037" x1="290.71" y1="147.437" 
x2="292.937" y2="192.702" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint15_linear_1074_4037" x1="368.266" y1="296.128" 
x2="-120.839" y2="256.155" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.41" stop-opacity="0.41"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint16_linear_1074_4037" x1="134.312" y1="49.6006" 
x2="162.343" y2="49.6006" gradientUnits="userSpaceOnUse">
+<stop offset="0.02" stop-color="white" stop-opacity="0"/>
+<stop offset="0.58" stop-color="white" stop-opacity="0.39"/>
+<stop offset="0.68" stop-color="white" stop-opacity="0.68"/>
+<stop offset="1" stop-color="white"/>
+</linearGradient>
+<linearGradient id="paint17_linear_1074_4037" x1="190.082" y1="92.2199" 
x2="148.543" y2="98.5433" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint18_linear_1074_4037" x1="144.98" y1="18.8817" 
x2="163.32" y2="18.8817" gradientUnits="userSpaceOnUse">
+<stop stop-color="#ECC4D7"/>
+<stop offset="0.42" stop-color="#EFD4D1"/>
+<stop offset="1" stop-color="#F2EAC9"/>
+</linearGradient>
+<linearGradient id="paint19_linear_1074_4037" x1="134.658" y1="45.9353" 
x2="153.343" y2="37.1602" gradientUnits="userSpaceOnUse">
+<stop offset="0.02" stop-color="white" stop-opacity="0"/>
+<stop offset="0.58" stop-color="white" stop-opacity="0.39"/>
+<stop offset="0.68" stop-color="white" stop-opacity="0.68"/>
+<stop offset="1" stop-color="white"/>
+</linearGradient>
+<linearGradient id="paint20_linear_1074_4037" x1="145.363" y1="51.2452" 
x2="182.241" y2="51.2452" gradientUnits="userSpaceOnUse">
+<stop stop-color="#ECC4D7"/>
+<stop offset="0.42" stop-color="#EFD4D1"/>
+<stop offset="1" stop-color="#F2EAC9"/>
+</linearGradient>
+<linearGradient id="paint21_linear_1074_4037" x1="176.731" y1="127.241" 
x2="190.579" y2="127.241" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint22_linear_1074_4037" x1="192.97" y1="117.495" 
x2="206.813" y2="117.495" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<clipPath id="clip0_1074_4037">
+<rect width="382.118" height="288" fill="white" transform="translate(0 
0.791504)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/static/img/Homepage/WAD-2.svg b/static/img/Homepage/WAD-2.svg
new file mode 100644
index 000000000..8375649e2
--- /dev/null
+++ b/static/img/Homepage/WAD-2.svg
@@ -0,0 +1,147 @@
+<svg width="383" height="289" viewBox="0 0 383 289" fill="none" 
xmlns="http://www.w3.org/2000/svg";>
+<g clip-path="url(#clip0_998_3474)">
+<path d="M355.284 178.877C349.256 190.235 338.341 199.102 335.312 
211.607C334.007 217.001 334.307 222.68 333.635 228.178C331.262 247.517 316.763 
263.637 299.481 272.773C298.753 273.168 298.017 273.564 297.29 273.896C285.939 
279.433 273.656 282.454 261.127 284.345C253.51 285.476 245.806 286.195 238.189 
286.804C206.386 289.314 174.539 290.229 142.647 289.549C127.239 289.233 111.523 
288.505 97.032 283.387C96.2885 283.134 95.5529 282.857 94.8173 282.596C83.0635 
278.033 72.6227 270.534 63.384 [...]
+<path d="M275.068 93.944H113.307C106.361 93.944 100.73 99.5746 100.73 
106.52V214.488C100.73 221.434 106.361 227.064 113.307 227.064H275.068C282.014 
227.064 287.645 221.434 287.645 214.488V106.52C287.645 99.5746 282.014 93.944 
275.068 93.944Z" fill="#7497F7"/>
+<path d="M110.72 174.386C108.798 175.762 106.251 175.968 104.234 
177.162C102.319 178.481 100.877 180.38 100.121 182.58C98.2389 187.223 97.9621 
192.349 97.9858 197.355C97.9858 202.647 97.9067 208.54 99.1248 213.713C99.457 
215.136 101.672 221.393 103.823 221.156C105.184 221.005 106.354 195.932 106.86 
192.681C107.367 189.43 107.936 186.353 108.609 183.189C108.949 181.623 109.471 
175.287 110.72 174.386Z" fill="url(#paint0_linear_998_3474)"/>
+<path d="M276.239 103.451H112.144V214.844H276.239V103.451Z" fill="white"/>
+<path d="M219.684 217.96C219.795 215.587 220.286 212.827 218.648 
211.094C217.835 210.39 216.913 209.822 215.919 209.41C214.263 208.495 212.849 
207.196 211.797 205.624C210.744 204.051 210.083 202.249 209.868 200.369C209.663 
198.352 209.987 196.311 209.868 194.278C209.687 190.134 207.788 186.258 205.581 
182.738C203.375 179.218 200.836 175.904 199.048 172.147C198.676 171.356 198.423 
170.241 199.143 169.774C199.863 169.308 200.836 169.964 201.468 170.565C208.326 
177.613 215.919 184.122 224.6 [...]
+<path d="M137.139 123.653H132.251V168.39H137.139V123.653Z" fill="#FF8B8B"/>
+<path d="M145.65 130.969H140.761V168.39H145.65V130.969Z" fill="#7497F7"/>
+<path d="M153.979 137.645H149.09V168.382H153.979V137.645Z" fill="#7497F7"/>
+<path d="M162.489 130.969H157.601V168.39H162.489V130.969Z" fill="#7497F7"/>
+<path d="M170.826 146.014H165.938V168.382H170.826V146.014Z" fill="#7497F7"/>
+<path d="M179.337 130.969H174.449V168.39H179.337V130.969Z" fill="#7497F7"/>
+<path d="M187.666 142.201H182.778V168.39H187.666V142.201Z" fill="#7497F7"/>
+<path d="M196.177 137.163H191.289V168.39H196.177V137.163Z" fill="#7497F7"/>
+<path d="M158.06 182.517H130.075V184.146H158.06V182.517Z" fill="#FF8B8B"/>
+<path d="M158.06 187.041H130.075V188.671H158.06V187.041Z" fill="#7497F7"/>
+<path d="M158.06 191.565H130.075V193.195H158.06V191.565Z" fill="#7497F7"/>
+<path d="M158.06 196.098H130.075V197.727H158.06V196.098Z" fill="#7497F7"/>
+<path d="M158.06 200.622H130.075V202.251H158.06V200.622Z" fill="#7497F7"/>
+<path d="M230.734 120.71C225.909 120.696 221.276 122.598 217.854 126C214.432 
129.401 212.501 134.022 212.487 138.847C212.472 143.672 214.375 148.305 217.776 
151.727C221.177 155.15 225.799 157.08 230.624 157.095V150.767H230.552C228.169 
150.769 225.84 150.064 223.858 148.741C221.875 147.418 220.33 145.537 219.417 
143.336C218.504 141.135 218.265 138.713 218.728 136.375C219.192 134.038 220.339 
131.891 222.024 130.205C223.708 128.52 225.854 127.372 228.191 126.906C230.528 
126.441 232.951 126. [...]
+<path d="M367.43 75H267.323C263.925 75 261.169 77.7551 261.169 
81.1537V103.745C261.169 107.144 263.925 109.899 267.323 109.899H367.43C370.828 
109.899 373.583 107.144 373.583 103.745V81.1537C373.583 77.7551 370.828 75 
367.43 75Z" fill="#E0E8FF"/>
+<path d="M274.827 90.3146H273.497C273.446 90.0305 273.351 89.7805 273.211 
89.5646C273.072 89.3487 272.902 89.1654 272.7 89.0149C272.498 88.8643 272.273 
88.7507 272.023 88.674C271.775 88.5972 271.513 88.5589 271.234 88.5589C270.731 
88.5589 270.281 88.6853 269.883 88.9382C269.488 89.191 269.176 89.5617 268.946 
90.0504C268.719 90.539 268.605 91.1356 268.605 91.8401C268.605 92.5504 268.719 
93.1498 268.946 93.6384C269.176 94.1271 269.49 94.4964 269.888 94.7464C270.285 
94.9964 270.733 95.1214  [...]
+<path d="M279.057 96.3359C278.443 96.3359 277.908 96.1953 277.45 
95.914C276.993 95.6328 276.638 95.2393 276.385 94.7336C276.132 94.2279 276.006 
93.637 276.006 92.9609C276.006 92.2819 276.132 91.6882 276.385 91.1796C276.638 
90.6711 276.993 90.2762 277.45 89.995C277.908 89.7137 278.443 89.5731 279.057 
89.5731C279.671 89.5731 280.206 89.7137 280.664 89.995C281.121 90.2762 281.476 
90.6711 281.729 91.1796C281.982 91.6882 282.108 92.2819 282.108 92.9609C282.108 
93.637 281.982 94.2279 281.729 9 [...]
+<path d="M283.53 96.2038V89.6583H284.753V90.7237H284.834C284.971 90.3629 
285.194 90.0816 285.503 89.8799C285.813 89.6754 286.184 89.5731 286.616 
89.5731C287.053 89.5731 287.42 89.6754 287.715 89.8799C288.013 90.0845 288.233 
90.3657 288.376 90.7237H288.444C288.6 90.3742 288.849 90.0958 289.189 
89.8884C289.53 89.6782 289.937 89.5731 290.408 89.5731C291.002 89.5731 291.486 
89.7592 291.861 90.1313C292.239 90.5035 292.428 91.0646 292.428 
91.8146V96.2038H291.154V91.9339C291.154 91.4907 291.033 [...]
+<path d="M294.136 96.2038V89.6583H295.359V90.7237H295.44C295.576 90.3629 
295.799 90.0816 296.109 89.8799C296.419 89.6754 296.789 89.5731 297.221 
89.5731C297.659 89.5731 298.025 89.6754 298.32 89.8799C298.619 90.0845 298.839 
90.3657 298.981 90.7237H299.049C299.205 90.3742 299.454 90.0958 299.795 
89.8884C300.136 89.6782 300.542 89.5731 301.014 89.5731C301.607 89.5731 302.092 
89.7592 302.467 90.1313C302.845 90.5035 303.034 91.0646 303.034 
91.8146V96.2038H301.759V91.9339C301.759 91.4907 301. [...]
+<path d="M308.888 
93.4893V89.6583H310.166V96.2038H308.913V95.0703H308.845C308.694 95.4197 308.453 
95.7109 308.121 95.9438C307.791 96.174 307.381 96.289 306.889 96.289C306.469 
96.289 306.096 96.1967 305.773 96.012C305.452 95.8245 305.199 95.5475 305.014 
95.1811C304.832 94.8146 304.741 94.3615 304.741 
93.8217V89.6583H306.015V93.6683C306.015 94.1143 306.139 94.4694 306.386 
94.7336C306.633 94.9978 306.954 95.1299 307.349 95.1299C307.588 95.1299 307.825 
95.0703 308.061 94.9509C308.3 94.8316 3 [...]
+<path d="M313.152 
92.3174V96.2038H311.878V89.6583H313.101V90.7237H313.182C313.333 90.3771 313.568 
90.0987 313.889 89.8884C314.213 89.6782 314.621 89.5731 315.112 89.5731C315.558 
89.5731 315.949 89.6668 316.284 89.8543C316.619 90.039 316.879 90.3146 317.064 
90.6811C317.249 91.0475 317.341 91.5007 317.341 
92.0404V96.2038H316.067V92.1938C316.067 91.7194 315.943 91.3487 315.696 
91.0816C315.449 90.8117 315.11 90.6768 314.678 90.6768C314.382 90.6768 314.119 
90.7407 313.889 90.8686C313.662 90.9 [...]
+<path d="M319.05 96.2038V89.6583H320.324V96.2038H319.05ZM319.693 
88.6484C319.472 88.6484 319.281 88.5745 319.122 88.4268C318.966 88.2762 318.888 
88.0972 318.888 87.8899C318.888 87.6796 318.966 87.5007 319.122 87.3529C319.281 
87.2024 319.472 87.1271 319.693 87.1271C319.915 87.1271 320.104 87.2024 320.26 
87.3529C320.419 87.5007 320.499 87.6796 320.499 87.8899C320.499 88.0972 320.419 
88.2762 320.26 88.4268C320.104 88.5745 319.915 88.6484 319.693 88.6484Z" 
fill="#7497F7"/>
+<path d="M325.094 89.6583V90.6811H321.518V89.6583H325.094ZM322.477 
88.0901H323.751V94.2819C323.751 94.5291 323.788 94.7151 323.862 94.8401C323.936 
94.9623 324.031 95.0461 324.148 95.0916C324.267 95.1342 324.396 95.1555 324.535 
95.1555C324.638 95.1555 324.727 95.1484 324.804 95.1342C324.881 95.12 324.94 
95.1086 324.983 95.1001L325.213 96.1526C325.139 96.1811 325.034 96.2095 324.898 
96.2379C324.761 96.2691 324.591 96.2862 324.386 96.289C324.051 96.2947 323.738 
96.235 323.449 96.11C323.159  [...]
+<path d="M327.308 98.6583C327.118 98.6583 326.945 98.6427 326.789 
98.6115C326.632 98.583 326.516 98.5518 326.439 98.5177L326.746 97.4737C326.979 
97.5362 327.186 97.5632 327.368 97.5546C327.55 97.5461 327.71 97.4779 327.85 
97.3501C327.992 97.2222 328.117 97.0134 328.225 96.7237L328.382 96.289L325.987 
89.6583H327.351L329.009 94.7379H329.077L330.735 89.6583H332.102L329.405 
97.0774C329.28 97.4183 329.121 97.7066 328.928 97.9424C328.735 98.1811 328.504 
98.36 328.237 98.4793C327.97 98.5987 327 [...]
+<path d="M336.578 96.2038V87.4765H339.689C340.365 87.4765 340.926 87.593 
341.372 87.8259C341.821 88.0589 342.156 88.3813 342.378 88.7933C342.599 89.2024 
342.71 89.6754 342.71 90.2123C342.71 90.7464 342.598 91.2166 342.373 
91.6228C342.152 92.0262 341.817 92.3401 341.368 92.5646C340.922 92.789 340.361 
92.9012 339.684 92.9012H337.328V91.7677H339.565C339.991 91.7677 340.338 91.7066 
340.605 91.5845C340.875 91.4623 341.072 91.2847 341.197 91.0518C341.322 90.8188 
341.385 90.539 341.385 90.2123C [...]
+<path d="M346.949 96.3359C346.304 96.3359 345.749 96.1981 345.283 
95.9225C344.82 95.6441 344.462 95.2535 344.209 94.7507C343.959 94.245 343.834 
93.6526 343.834 92.9737C343.834 92.3032 343.959 91.7123 344.209 91.2009C344.462 
90.6896 344.814 90.2904 345.266 90.0035C345.72 89.7166 346.252 89.5731 346.86 
89.5731C347.229 89.5731 347.587 89.6342 347.933 89.7563C348.28 89.8785 348.591 
90.0703 348.867 90.3316C349.142 90.593 349.36 90.9325 349.519 91.3501C349.678 
91.7649 349.757 92.2691 349.757 9 [...]
+<path d="M354.226 89.6583V90.6811H350.651V89.6583H354.226ZM351.61 
88.0901H352.884V94.2819C352.884 94.5291 352.921 94.7151 352.995 94.8401C353.069 
94.9623 353.164 95.0461 353.28 95.0916C353.4 95.1342 353.529 95.1555 353.668 
95.1555C353.77 95.1555 353.86 95.1484 353.937 95.1342C354.013 95.12 354.073 
95.1086 354.116 95.1001L354.346 96.1526C354.272 96.1811 354.167 96.2095 354.03 
96.2379C353.894 96.2691 353.724 96.2862 353.519 96.289C353.184 96.2947 352.871 
96.235 352.581 96.11C352.292 95.985 [...]
+<path d="M355.636 96.2038V89.6583H356.867V90.6981H356.936C357.055 90.3458 
357.265 90.0688 357.566 89.8671C357.87 89.6626 358.214 89.5603 358.597 
89.5603C358.677 89.5603 358.771 89.5632 358.879 89.5688C358.99 89.5745 359.076 
89.5816 359.139 89.5901V90.8089C359.088 90.7947 358.997 90.7791 358.866 
90.762C358.735 90.7421 358.605 90.7322 358.474 90.7322C358.173 90.7322 357.904 
90.7961 357.669 90.924C357.436 91.049 357.251 91.2237 357.115 91.4481C356.978 
91.6697 356.91 91.9225 356.91 92.2066V9 [...]
+<path d="M362.764 96.3359C362.15 96.3359 361.615 96.1953 361.157 95.914C360.7 
95.6328 360.345 95.2393 360.092 94.7336C359.839 94.2279 359.713 93.637 359.713 
92.9609C359.713 92.2819 359.839 91.6882 360.092 91.1796C360.345 90.6711 360.7 
90.2762 361.157 89.995C361.615 89.7137 362.15 89.5731 362.764 89.5731C363.378 
89.5731 363.913 89.7137 364.371 89.995C364.828 90.2762 365.183 90.6711 365.436 
91.1796C365.689 91.6882 365.815 92.2819 365.815 92.9609C365.815 93.637 365.689 
94.2279 365.436 94.73 [...]
+<path d="M350.21 164.147H283.004C280.723 164.147 278.873 166.937 278.873 
170.379V193.26C278.873 196.702 280.723 199.493 283.004 199.493H350.21C352.492 
199.493 354.341 196.702 354.341 193.26V170.379C354.341 166.937 352.492 164.147 
350.21 164.147Z" fill="#E0E8FF"/>
+<path d="M298.796 177.273H300.109V183.46C300.109 184.02 299.998 184.499 
299.776 184.896C299.558 185.294 299.249 185.598 298.852 185.808C298.454 186.016 
297.988 186.119 297.454 186.119C296.962 186.119 296.521 186.03 296.129 
185.851C295.739 185.672 295.431 185.412 295.204 185.071C294.979 184.727 294.867 
184.31 294.867 183.818H296.175C296.175 184.06 296.231 184.269 296.342 
184.445C296.455 184.621 296.61 184.759 296.806 184.858C297.005 184.955 297.232 
185.003 297.488 185.003C297.766 185.003  [...]
+<path d="M304.744 186.132C304.099 186.132 303.544 185.994 303.078 
185.719C302.615 185.44 302.257 185.05 302.004 184.547C301.754 184.041 301.629 
183.449 301.629 182.77C301.629 182.099 301.754 181.509 302.004 180.997C302.257 
180.486 302.609 180.087 303.061 179.8C303.515 179.513 304.047 179.369 304.654 
179.369C305.024 179.369 305.382 179.43 305.728 179.553C306.075 179.675 306.386 
179.867 306.662 180.128C306.937 180.389 307.154 180.729 307.314 181.146C307.473 
181.561 307.552 182.065 307.552  [...]
+<path d="M310.24 182.114V186H308.966V179.455H310.189V180.52H310.27C310.42 
180.173 310.656 179.895 310.977 179.685C311.301 179.474 311.709 179.369 312.2 
179.369C312.646 179.369 313.037 179.463 313.372 179.651C313.707 179.835 313.967 
180.111 314.152 180.477C314.337 180.844 314.429 181.297 314.429 
181.837V186H313.155V181.99C313.155 181.516 313.031 181.145 312.784 
180.878C312.537 180.608 312.197 180.473 311.766 180.473C311.47 180.473 311.207 
180.537 310.977 180.665C310.75 180.793 310.57 180. [...]
+<path d="M317.31 183.78L317.301 182.224H317.523L320.131 
179.455H321.656L318.682 182.608H318.482L317.31 183.78ZM316.138 
186V177.273H317.412V186H316.138ZM320.271 186L317.928 182.889L318.805 
181.999L321.835 186H320.271Z" fill="#7497F7"/>
+<path d="M322.817 186V179.455H324.092V186H322.817ZM323.461 178.445C323.239 
178.445 323.049 178.371 322.89 178.223C322.734 178.072 322.656 177.894 322.656 
177.686C322.656 177.476 322.734 177.297 322.89 177.149C323.049 176.999 323.239 
176.923 323.461 176.923C323.683 176.923 323.871 176.999 324.028 177.149C324.187 
177.297 324.266 177.476 324.266 177.686C324.266 177.894 324.187 178.072 324.028 
178.223C323.871 178.371 323.683 178.445 323.461 178.445Z" fill="#7497F7"/>
+<path d="M327.08 182.114V186H325.806V179.455H327.029V180.52H327.11C327.26 
180.173 327.496 179.895 327.817 179.685C328.141 179.474 328.549 179.369 329.04 
179.369C329.486 179.369 329.877 179.463 330.212 179.651C330.547 179.835 330.807 
180.111 330.992 180.477C331.176 180.844 331.269 181.297 331.269 
181.837V186H329.995V181.99C329.995 181.516 329.871 181.145 329.624 
180.878C329.377 180.608 329.037 180.473 328.605 180.473C328.31 180.473 328.047 
180.537 327.817 180.665C327.59 180.793 327.409 18 [...]
+<path d="M337.882 181.053L336.728 181.257C336.679 181.109 336.603 180.969 
336.498 180.835C336.395 180.702 336.256 180.592 336.08 180.507C335.904 180.422 
335.684 180.379 335.419 180.379C335.059 180.379 334.757 180.46 334.516 
180.622C334.275 180.781 334.154 180.987 334.154 181.24C334.154 181.459 334.235 
181.635 334.397 181.769C334.559 181.902 334.82 182.011 335.181 182.097L336.221 
182.335C336.823 182.474 337.272 182.689 337.567 182.979C337.863 183.269 338.01 
183.645 338.01 184.108C338.01 1 [...]
+<path d="M114.327 43.6528H14.2207C10.8221 43.6528 8.06696 46.408 8.06696 
49.8066V72.398C8.06696 75.7967 10.8221 78.5518 14.2207 78.5518H114.327C117.726 
78.5518 120.481 75.7967 120.481 72.398V49.8066C120.481 46.408 117.726 43.6528 
114.327 43.6528Z" fill="#E0E8FF"/>
+<path d="M16.0954 65L13.6749 56.2727H15.0598L16.7601 63.0312H16.8411L18.6096 
56.2727H19.9817L21.7502 63.0355H21.8311L23.5272 56.2727H24.9164L22.4917 
65H21.1664L19.3297 58.463H19.2615L17.4249 65H16.0954Z" fill="#7497F7"/>
+<path d="M28.1912 65.1321C27.5463 65.1321 26.9909 64.9943 26.525 
64.7187C26.062 64.4403 25.704 64.0497 25.4512 63.5469C25.2012 63.0412 25.0762 
62.4488 25.0762 61.7699C25.0762 61.0994 25.2012 60.5085 25.4512 59.9971C25.704 
59.4858 26.0563 59.0866 26.508 58.7997C26.9625 58.5128 27.4938 58.3693 28.1017 
58.3693C28.4711 58.3693 28.829 58.4304 29.1756 58.5525C29.5222 58.6747 29.8333 
58.8665 30.1088 59.1278C30.3844 59.3892 30.6017 59.7287 30.7608 60.1463C30.9199 
60.5611 30.9995 61.0653 30.9995  [...]
+<path d="M35.2342 65.1321C34.5893 65.1321 34.0339 64.9943 33.568 
64.7187C33.1049 64.4403 32.747 64.0497 32.4941 63.5469C32.2441 63.0412 32.1191 
62.4488 32.1191 61.7699C32.1191 61.0994 32.2441 60.5085 32.4941 59.9971C32.747 
59.4858 33.0993 59.0866 33.551 58.7997C34.0055 58.5128 34.5368 58.3693 35.1447 
58.3693C35.514 58.3693 35.872 58.4304 36.2186 58.5525C36.5652 58.6747 36.8762 
58.8665 37.1518 59.1278C37.4274 59.3892 37.6447 59.7287 37.8038 60.1463C37.9629 
60.5611 38.0424 61.0653 38.0424  [...]
+<path d="M40.628 62.7798L40.6195 61.2244H40.8411L43.449 
58.4545H44.9746L42.0002 61.6079H41.7999L40.628 62.7798ZM39.4561 
65V56.2727H40.7303V65H39.4561ZM43.5897 65L41.2459 61.8892L42.1238 
60.9986L45.1536 65H43.5897Z" fill="#7497F7"/>
+<path d="M47.41 56.2727V65H46.1358V56.2727H47.41Z" fill="#7497F7"/>
+<path d="M49.9295 67.4545C49.7392 67.4545 49.5659 67.4389 49.4096 
67.4076C49.2534 67.3792 49.1369 67.348 49.0602 67.3139L49.367 66.2699C49.6 
66.3324 49.8074 66.3594 49.9892 66.3508C50.171 66.3423 50.3315 66.2741 50.4707 
66.1463C50.6128 66.0184 50.7378 65.8096 50.8457 65.5199L51.0034 65.0852L48.6085 
58.4545H49.9721L51.6298 63.5341H51.698L53.3557 58.4545H54.7235L52.0261 
65.8736C51.9011 66.2145 51.742 66.5028 51.5488 66.7386C51.3557 66.9773 51.1255 
67.1562 50.8585 67.2755C50.5914 67.3949 50 [...]
+<path d="M59.199 65V56.2727H62.3951C63.0144 56.2727 63.5272 56.375 63.9334 
56.5795C64.3397 56.7812 64.6436 57.0554 64.8454 57.402C65.0471 57.7457 65.1479 
58.1335 65.1479 58.5653C65.1479 58.929 65.0811 59.2358 64.9476 59.4858C64.8141 
59.7329 64.6351 59.9318 64.4107 60.0824C64.1891 60.2301 63.9448 60.338 63.6777 
60.4062V60.4915C63.9675 60.5057 64.2502 60.5994 64.5257 60.7727C64.8042 60.9432 
65.0343 61.1861 65.2161 61.5014C65.3979 61.8167 65.4888 62.2003 65.4888 
62.652C65.4888 63.098 65.383 [...]
+<path d="M71.0946 62.2855V58.4545H72.3731V65H71.1202V63.8665H71.052C70.9015 
64.2159 70.66 64.5071 70.3276 64.74C69.9981 64.9701 69.5875 65.0852 69.0961 
65.0852C68.6756 65.0852 68.3034 64.9929 67.9796 64.8082C67.6586 64.6207 67.4057 
64.3437 67.2211 63.9773C67.0392 63.6108 66.9483 63.1576 66.9483 
62.6179V58.4545H68.2225V62.4645C68.2225 62.9105 68.3461 63.2656 68.5932 
63.5298C68.8404 63.794 69.1614 63.9261 69.5563 63.9261C69.7949 63.9261 70.0321 
63.8665 70.2679 63.7471C70.5066 63.6278 70.70 [...]
+<path d="M76.8294 67.5909C76.3095 67.5909 75.862 67.5227 75.487 
67.3863C75.1149 67.25 74.8109 67.0696 74.5751 66.8451C74.3393 66.6207 74.1632 
66.375 74.0467 66.1079L75.1419 65.6562C75.2186 65.7812 75.3208 65.9133 75.4487 
66.0525C75.5794 66.1946 75.7555 66.3153 75.9771 66.4148C76.2015 66.5142 76.4899 
66.5639 76.8422 66.5639C77.3251 66.5639 77.7243 66.446 78.0396 66.2102C78.3549 
65.9773 78.5126 65.6051 78.5126 65.0937V63.8068H78.4316C78.3549 63.946 78.2441 
64.1008 78.0993 64.2713C77.9572 6 [...]
+<path d="M84.7694 65V56.2727H87.8801C88.5563 56.2727 89.1174 56.3892 89.5634 
56.6221C90.0122 56.8551 90.3475 57.1775 90.5691 57.5895C90.7907 57.9986 90.9015 
58.4716 90.9015 59.0085C90.9015 59.5426 90.7892 60.0128 90.5648 60.419C90.3432 
60.8224 90.008 61.1363 89.5591 61.3608C89.1131 61.5852 88.552 61.6974 87.8759 
61.6974H85.5194V60.5639H87.7566C88.1827 60.5639 88.5293 60.5028 88.7963 
60.3807C89.0662 60.2585 89.2637 60.0809 89.3887 59.848C89.5137 59.615 89.5762 
59.3352 89.5762 59.0085C89.5 [...]
+<path d="M95.1404 65.1321C94.4956 65.1321 93.9402 64.9943 93.4743 
64.7187C93.0112 64.4403 92.6532 64.0497 92.4004 63.5469C92.1504 63.0412 92.0254 
62.4488 92.0254 61.7699C92.0254 61.0994 92.1504 60.5085 92.4004 59.9971C92.6532 
59.4858 93.0055 59.0866 93.4572 58.7997C93.9118 58.5128 94.443 58.3693 95.051 
58.3693C95.4203 58.3693 95.7782 58.4304 96.1248 58.5525C96.4714 58.6747 96.7825 
58.8665 97.0581 59.1278C97.3336 59.3892 97.551 59.7287 97.7101 60.1463C97.8691 
60.5611 97.9487 61.0653 97.94 [...]
+<path d="M102.418 58.4545V59.4773H98.8425V58.4545H102.418ZM99.8013 
56.8863H101.075V63.0781C101.075 63.3253 101.112 63.5113 101.186 63.6363C101.26 
63.7585 101.355 63.8423 101.472 63.8878C101.591 63.9304 101.72 63.9517 101.86 
63.9517C101.962 63.9517 102.051 63.9446 102.128 63.9304C102.205 63.9162 102.264 
63.9048 102.307 63.8963L102.537 64.9488C102.463 64.9773 102.358 65.0057 102.222 
65.0341C102.085 65.0653 101.915 65.0824 101.71 65.0852C101.375 65.0909 101.063 
65.0312 100.773 64.9062C100.4 [...]
+<path d="M103.827 65V58.4545H105.059V59.4943H105.127C105.246 59.142 105.456 
58.865 105.758 58.6633C106.062 58.4588 106.405 58.3565 106.789 58.3565C106.868 
58.3565 106.962 58.3594 107.07 58.365C107.181 58.3707 107.268 58.3778 107.33 
58.3863V59.6051C107.279 59.5909 107.188 59.5753 107.057 59.5582C106.927 59.5383 
106.796 59.5284 106.665 59.5284C106.364 59.5284 106.096 59.5923 105.86 
59.7201C105.627 59.8451 105.442 60.0199 105.306 60.2443C105.17 60.4659 105.101 
60.7187 105.101 61.0028V65H103 [...]
+<path d="M110.955 65.1321C110.342 65.1321 109.806 64.9915 109.349 
64.7102C108.892 64.429 108.536 64.0355 108.284 63.5298C108.031 63.0241 107.904 
62.4332 107.904 61.7571C107.904 61.0781 108.031 60.4844 108.284 59.9758C108.536 
59.4673 108.892 59.0724 109.349 58.7912C109.806 58.5099 110.342 58.3693 110.955 
58.3693C111.569 58.3693 112.105 58.5099 112.562 58.7912C113.019 59.0724 113.374 
59.4673 113.627 59.9758C113.88 60.4844 114.007 61.0781 114.007 61.7571C114.007 
62.4332 113.88 63.0241 113.6 [...]
+<path d="M224.993 241H111.007C107.137 241 104 243.763 104 247.172V269.828C104 
273.237 107.137 276 111.007 276H224.993C228.863 276 232 273.237 232 
269.828V247.172C232 243.763 228.863 241 224.993 241Z" fill="#E0E8FF"/>
+<path d="M114.902 256.03C114.82 255.771 114.709 255.54 114.57 255.335C114.433 
255.128 114.27 254.952 114.08 254.807C113.889 254.659 113.672 254.547 113.428 
254.47C113.186 254.394 112.921 254.355 112.631 254.355C112.139 254.355 111.696 
254.482 111.301 254.734C110.906 254.987 110.594 255.358 110.364 255.847C110.137 
256.332 110.023 256.928 110.023 257.632C110.023 258.34 110.138 258.938 110.368 
259.426C110.598 259.915 110.914 260.286 111.314 260.538C111.715 260.791 112.171 
260.918 112.682 26 [...]
+<path d="M118.292 262V255.455H119.566V262H118.292ZM118.936 254.445C118.714 
254.445 118.524 254.371 118.365 254.223C118.208 254.072 118.13 253.894 118.13 
253.686C118.13 253.476 118.208 253.297 118.365 253.149C118.524 252.999 118.714 
252.923 118.936 252.923C119.157 252.923 119.346 252.999 119.502 253.149C119.661 
253.297 119.741 253.476 119.741 253.686C119.741 253.894 119.661 254.072 119.502 
254.223C119.346 254.371 119.157 254.445 118.936 254.445Z" fill="#7497F7"/>
+<path d="M124.336 255.455V256.477H120.76V255.455H124.336ZM121.719 
253.886H122.993V260.078C122.993 260.325 123.03 260.511 123.104 260.636C123.178 
260.759 123.273 260.842 123.39 260.888C123.509 260.93 123.638 260.952 123.778 
260.952C123.88 260.952 123.969 260.945 124.046 260.93C124.123 260.916 124.182 
260.905 124.225 260.896L124.455 261.949C124.381 261.977 124.276 262.006 124.14 
262.034C124.003 262.065 123.833 262.082 123.628 262.085C123.293 262.091 122.981 
262.031 122.691 261.906C122.401  [...]
+<path d="M125.988 
262V253.273H127.305V257.065H131.656V253.273H132.977V262H131.656V258.195H127.305V262H125.988Z"
 fill="#7497F7"/>
+<path d="M138.938 259.286V255.455H140.217V262H138.964V260.867H138.896C138.745 
261.216 138.504 261.507 138.171 261.74C137.842 261.97 137.431 262.085 136.94 
262.085C136.519 262.085 136.147 261.993 135.823 261.808C135.502 261.621 135.249 
261.344 135.065 260.977C134.883 260.611 134.792 260.158 134.792 
259.618V255.455H136.066V259.465C136.066 259.911 136.19 260.266 136.437 
260.53C136.684 260.794 137.005 260.926 137.4 260.926C137.639 260.926 137.876 
260.867 138.112 260.747C138.35 260.628 138.54 [...]
+<path d="M142.031 262V253.273H143.305V256.516H143.382C143.456 256.379 143.562 
256.222 143.702 256.043C143.841 255.864 144.034 255.707 144.281 255.574C144.528 
255.438 144.855 255.369 145.261 255.369C145.79 255.369 146.261 255.503 146.676 
255.77C147.091 256.037 147.416 256.422 147.652 256.925C147.89 257.428 148.01 
258.033 148.01 258.74C148.01 259.447 147.892 260.054 147.656 260.56C147.42 
261.063 147.096 261.45 146.684 261.723C146.273 261.993 145.802 262.128 145.274 
262.128C144.876 262.128  [...]
+<path d="M152.719 262V253.273H155.915C156.534 253.273 157.047 253.375 157.453 
253.58C157.859 253.781 158.163 254.055 158.365 254.402C158.567 254.746 158.667 
255.134 158.667 255.565C158.667 255.929 158.601 256.236 158.467 256.486C158.334 
256.733 158.155 256.932 157.93 257.082C157.709 257.23 157.464 257.338 157.197 
257.406V257.492C157.487 257.506 157.77 257.599 158.045 257.773C158.324 257.943 
158.554 258.186 158.736 258.501C158.917 258.817 159.008 259.2 159.008 
259.652C159.008 260.098 158. [...]
+<path d="M162.373 262.145C161.958 262.145 161.583 262.068 161.248 
261.915C160.912 261.759 160.647 261.533 160.451 261.237C160.258 260.942 160.161 
260.58 160.161 260.151C160.161 259.781 160.232 259.477 160.374 259.239C160.516 
259 160.708 258.811 160.949 258.672C161.191 258.533 161.461 258.428 161.759 
258.357C162.057 258.286 162.361 258.232 162.671 258.195C163.063 258.149 163.381 
258.112 163.626 258.084C163.87 258.053 164.047 258.003 164.158 257.935C164.269 
257.867 164.324 257.756 164.324  [...]
+<path d="M172.205 257.053L171.05 257.257C171.002 257.109 170.925 256.969 
170.82 256.835C170.718 256.702 170.578 256.592 170.402 256.507C170.226 256.422 
170.006 256.379 169.742 256.379C169.381 256.379 169.08 256.46 168.838 
256.622C168.597 256.781 168.476 256.987 168.476 257.24C168.476 257.459 168.557 
257.635 168.719 257.769C168.881 257.902 169.142 258.011 169.503 258.097L170.543 
258.335C171.145 258.474 171.594 258.689 171.889 258.979C172.185 259.269 172.333 
259.645 172.333 260.108C172.333 [...]
+<path d="M173.733 262V255.455H175.008V262H173.733ZM174.377 254.445C174.155 
254.445 173.965 254.371 173.806 254.223C173.65 254.072 173.572 253.894 173.572 
253.686C173.572 253.476 173.65 253.297 173.806 253.149C173.965 252.999 174.155 
252.923 174.377 252.923C174.599 252.923 174.787 252.999 174.944 253.149C175.103 
253.297 175.182 253.476 175.182 253.686C175.182 253.894 175.103 254.072 174.944 
254.223C174.787 254.371 174.599 254.445 174.377 254.445Z" fill="#7497F7"/>
+<path d="M179.479 262.132C178.845 262.132 178.3 261.989 177.842 
261.702C177.388 261.412 177.039 261.013 176.794 260.504C176.55 259.996 176.428 
259.413 176.428 258.757C176.428 258.092 176.553 257.506 176.803 256.997C177.053 
256.486 177.405 256.087 177.86 255.8C178.314 255.513 178.85 255.369 179.466 
255.369C179.963 255.369 180.406 255.462 180.796 255.646C181.185 255.828 181.499 
256.084 181.737 256.413C181.979 256.743 182.122 257.128 182.168 
257.568H180.928C180.86 257.261 180.703 256.997 18 [...]
+<path d="M186.808 253.273H188.406L191.185 260.057H191.287L194.066 
253.273H195.664V262H194.411V255.685H194.33L191.756 261.987H190.716L188.142 
255.68H188.061V262H186.808V253.273Z" fill="#7497F7"/>
+<path d="M200.297 262.132C199.652 262.132 199.096 261.994 198.63 
261.719C198.167 261.44 197.809 261.05 197.557 260.547C197.307 260.041 197.182 
259.449 197.182 258.77C197.182 258.099 197.307 257.509 197.557 256.997C197.809 
256.486 198.162 256.087 198.613 255.8C199.068 255.513 199.599 255.369 200.207 
255.369C200.577 255.369 200.934 255.43 201.281 255.553C201.628 255.675 201.939 
255.867 202.214 256.128C202.49 256.389 202.707 256.729 202.866 257.146C203.025 
257.561 203.105 258.065 203.105 25 [...]
+<path d="M207.574 255.455V256.477H203.999V255.455H207.574ZM204.958 
253.886H206.232V260.078C206.232 260.325 206.269 260.511 206.342 260.636C206.416 
260.759 206.512 260.842 206.628 260.888C206.747 260.93 206.877 260.952 207.016 
260.952C207.118 260.952 207.208 260.945 207.284 260.93C207.361 260.916 207.421 
260.905 207.463 260.896L207.693 261.949C207.619 261.977 207.514 262.006 207.378 
262.034C207.242 262.065 207.071 262.082 206.867 262.085C206.531 262.091 206.219 
262.031 205.929 261.906C205 [...]
+<path d="M208.983 262V255.455H210.215V256.494H210.283C210.403 256.142 210.613 
255.865 210.914 255.663C211.218 255.459 211.562 255.357 211.945 255.357C212.025 
255.357 212.118 255.359 212.226 255.365C212.337 255.371 212.424 255.378 212.486 
255.386V256.605C212.435 256.591 212.344 256.575 212.214 256.558C212.083 256.538 
211.952 256.528 211.822 256.528C211.52 256.528 211.252 256.592 211.016 
256.72C210.783 256.845 210.599 257.02 210.462 257.244C210.326 257.466 210.258 
257.719 210.258 258.003V2 [...]
+<path d="M213.589 262V255.455H214.863V262H213.589ZM214.232 254.445C214.011 
254.445 213.82 254.371 213.661 254.223C213.505 254.072 213.427 253.894 213.427 
253.686C213.427 253.476 213.505 253.297 213.661 253.149C213.82 252.999 214.011 
252.923 214.232 252.923C214.454 252.923 214.643 252.999 214.799 253.149C214.958 
253.297 215.038 253.476 215.038 253.686C215.038 253.894 214.958 254.072 214.799 
254.223C214.643 254.371 214.454 254.445 214.232 254.445Z" fill="#7497F7"/>
+<path d="M219.334 262.132C218.701 262.132 218.155 261.989 217.698 
261.702C217.243 261.412 216.894 261.013 216.65 260.504C216.405 259.996 216.283 
259.413 216.283 258.757C216.283 258.092 216.408 257.506 216.658 256.997C216.908 
256.486 217.26 256.087 217.715 255.8C218.17 255.513 218.705 255.369 219.322 
255.369C219.819 255.369 220.262 255.462 220.651 255.646C221.04 255.828 221.354 
256.084 221.593 256.413C221.834 256.743 221.978 257.128 222.023 
257.568H220.783C220.715 257.261 220.559 256.997  [...]
+<path d="M228.291 257.053L227.136 257.257C227.088 257.109 227.011 256.969 
226.906 256.835C226.803 256.702 226.664 256.592 226.488 256.507C226.312 256.422 
226.092 256.379 225.828 256.379C225.467 256.379 225.166 256.46 224.924 
256.622C224.683 256.781 224.562 256.987 224.562 257.24C224.562 257.459 224.643 
257.635 224.805 257.769C224.967 257.902 225.228 258.011 225.589 258.097L226.629 
258.335C227.231 258.474 227.68 258.689 227.975 258.979C228.271 259.269 228.418 
259.645 228.418 260.108C228.4 [...]
+<path d="M121.785 109H53.2151C50.8872 109 49 111.763 49 115.172V137.828C49 
141.237 50.8872 144 53.2151 144H121.785C124.113 144 126 141.237 126 
137.828V115.172C126 111.763 124.113 109 121.785 109Z" fill="#E0E8FF"/>
+<path d="M63.2621 124.111H61.9325C61.8814 123.827 61.7862 123.577 61.647 
123.361C61.5078 123.145 61.3374 122.962 61.1356 122.811C60.9339 122.661 60.7081 
122.547 60.4581 122.47C60.2109 122.394 59.9481 122.355 59.6697 122.355C59.1669 
122.355 58.7166 122.482 58.3189 122.734C57.924 122.987 57.6115 123.358 57.3814 
123.847C57.1541 124.335 57.0405 124.932 57.0405 125.636C57.0405 126.347 57.1541 
126.946 57.3814 127.435C57.6115 127.923 57.9254 128.293 58.3231 128.543C58.7209 
128.793 59.1683 128.9 [...]
+<path d="M65.5643 132.455C65.3739 132.455 65.2006 132.439 65.0444 
132.408C64.8881 132.379 64.7717 132.348 64.695 132.314L65.0018 131.27C65.2347 
131.332 65.4421 131.359 65.6239 131.351C65.8057 131.342 65.9663 131.274 66.1055 
131.146C66.2475 131.019 66.3725 130.81 66.4805 130.52L66.6381 130.085L64.2432 
123.455H65.6069L67.2646 128.534H67.3327L68.9904 123.455H70.3583L67.6609 
130.874C67.5359 131.215 67.3768 131.503 67.1836 131.739C66.9904 131.977 66.7603 
132.156 66.4932 132.276C66.2262 132.39 [...]
+<path d="M74.0902 130.132C73.4567 130.132 72.9112 129.989 72.4538 
129.702C71.9993 129.412 71.6499 129.013 71.4055 128.504C71.1612 127.996 71.0391 
127.413 71.0391 126.757C71.0391 126.092 71.1641 125.506 71.4141 124.997C71.6641 
124.486 72.0163 124.087 72.4709 123.8C72.9254 123.513 73.4609 123.369 74.0774 
123.369C74.5746 123.369 75.0177 123.462 75.407 123.646C75.7962 123.828 76.1101 
124.084 76.3487 124.413C76.5902 124.743 76.7337 125.128 76.7791 
125.568H75.5391C75.4709 125.261 75.3146 124.9 [...]
+<path d="M79.4158 121.273V130H78.1417V121.273H79.4158Z" fill="#7497F7"/>
+<path d="M83.951 130.132C83.3061 130.132 82.7507 129.994 82.2848 
129.719C81.8217 129.44 81.4638 129.05 81.2109 128.547C80.9609 128.041 80.8359 
127.449 80.8359 126.77C80.8359 126.099 80.9609 125.509 81.2109 124.997C81.4638 
124.486 81.816 124.087 82.2677 123.8C82.7223 123.513 83.2535 123.369 83.8615 
123.369C84.2308 123.369 84.5888 123.43 84.9354 123.553C85.282 123.675 85.593 
123.867 85.8686 124.128C86.1442 124.389 86.3615 124.729 86.5206 125.146C86.6797 
125.561 86.7592 126.065 86.7592 126. [...]
+<path d="M91.0206 
122.406V121.273H97.7748V122.406H95.0518V130H93.7393V122.406H91.0206Z" 
fill="#7497F7"/>
+<path d="M99.1651 130V123.455H100.439V130H99.1651ZM99.8086 122.445C99.587 
122.445 99.3967 122.371 99.2376 122.223C99.0813 122.072 99.0032 121.894 99.0032 
121.686C99.0032 121.476 99.0813 121.297 99.2376 121.149C99.3967 120.999 99.587 
120.923 99.8086 120.923C100.03 120.923 100.219 120.999 100.375 121.149C100.534 
121.297 100.614 121.476 100.614 121.686C100.614 121.894 100.534 122.072 100.375 
122.223C100.219 122.371 100.03 122.445 99.8086 122.445Z" fill="#7497F7"/>
+<path d="M102.153 130V123.455H103.376V124.52H103.457C103.594 124.159 103.817 
123.878 104.126 123.676C104.436 123.472 104.807 123.369 105.239 123.369C105.676 
123.369 106.043 123.472 106.338 123.676C106.636 123.881 106.857 124.162 106.999 
124.52H107.067C107.223 124.17 107.472 123.892 107.812 123.685C108.153 123.474 
108.56 123.369 109.031 123.369C109.625 123.369 110.109 123.555 110.484 
123.928C110.862 124.3 111.051 124.861 111.051 
125.611V130H109.777V125.73C109.777 125.287 109.656 124.966 1 [...]
+<path d="M115.58 130.132C114.935 130.132 114.38 129.994 113.914 
129.719C113.451 129.44 113.093 129.05 112.84 128.547C112.59 128.041 112.465 
127.449 112.465 126.77C112.465 126.099 112.59 125.509 112.84 124.997C113.093 
124.486 113.445 124.087 113.897 123.8C114.351 123.513 114.882 123.369 115.49 
123.369C115.86 123.369 116.218 123.43 116.564 123.553C116.911 123.675 117.222 
123.867 117.498 124.128C117.773 124.389 117.99 124.729 118.149 125.146C118.309 
125.561 118.388 126.065 118.388 126.659V1 [...]
+<path d="M312.789 2H179.211C174.676 2 171 4.7631 171 8.17156V30.8284C171 
34.2369 174.676 37 179.211 37H312.789C317.324 37 321 34.2369 321 
30.8284V8.17156C321 4.7631 317.324 2 312.789 2Z" fill="#E0E8FF"/>
+<path d="M177.555 
23V14.2728H183.026V15.4063H178.871V18.0654H182.741V19.1946H178.871V21.8665H183.077V23H177.555Z"
 fill="#7497F7"/>
+<path d="M185.957 19.1137V23H184.683V16.4546H185.906V17.5199H185.987C186.137 
17.1733 186.373 16.8949 186.694 16.6847C187.018 16.4745 187.426 16.3694 187.917 
16.3694C188.363 16.3694 188.754 16.4631 189.089 16.6506C189.424 16.8353 189.684 
17.1108 189.869 17.4773C190.053 17.8438 190.146 18.2969 190.146 
18.8367V23H188.872V18.9901C188.872 18.5157 188.748 18.1449 188.501 
17.8779C188.254 17.608 187.914 17.4731 187.482 17.4731C187.187 17.4731 186.924 
17.537 186.694 17.6648C186.467 17.7927 186.28 [...]
+<path d="M194.599 25.591C194.079 25.591 193.632 25.5228 193.257 
25.3864C192.884 25.25 192.58 25.0696 192.345 24.8452C192.109 24.6208 191.933 
24.375 191.816 24.108L192.911 23.6563C192.988 23.7813 193.09 23.9134 193.218 
24.0526C193.349 24.1946 193.525 24.3154 193.747 24.4148C193.971 24.5142 194.259 
24.564 194.612 24.564C195.095 24.564 195.494 24.4461 195.809 24.2103C196.124 
23.9773 196.282 23.6052 196.282 23.0938V21.8069H196.201C196.124 21.9461 196.014 
22.1009 195.869 22.2714C195.727 22.44 [...]
+<path d="M199.261 23V16.4546H200.535V23H199.261ZM199.904 15.4446C199.683 
15.4446 199.492 15.3708 199.333 15.2231C199.177 15.0725 199.099 14.8935 199.099 
14.6861C199.099 14.4759 199.177 14.2969 199.333 14.1492C199.492 13.9986 199.683 
13.9233 199.904 13.9233C200.126 13.9233 200.315 13.9986 200.471 14.1492C200.63 
14.2969 200.71 14.4759 200.71 14.6861C200.71 14.8935 200.63 15.0725 200.471 
15.2231C200.315 15.3708 200.126 15.4446 199.904 15.4446Z" fill="#7497F7"/>
+<path d="M203.523 19.1137V23H202.249V16.4546H203.472V17.5199H203.553C203.704 
17.1733 203.939 16.8949 204.26 16.6847C204.584 16.4745 204.992 16.3694 205.483 
16.3694C205.93 16.3694 206.32 16.4631 206.655 16.6506C206.991 16.8353 207.251 
17.1108 207.435 17.4773C207.62 17.8438 207.712 18.2969 207.712 
18.8367V23H206.438V18.9901C206.438 18.5157 206.314 18.1449 206.067 
17.8779C205.82 17.608 205.481 17.4731 205.049 17.4731C204.753 17.4731 204.491 
17.537 204.26 17.6648C204.033 17.7927 203.853 17.9 [...]
+<path d="M212.242 23.1321C211.597 23.1321 211.042 22.9944 210.576 
22.7188C210.113 22.4404 209.755 22.0498 209.502 21.5469C209.252 21.0412 209.127 
20.4489 209.127 19.7699C209.127 19.0995 209.252 18.5086 209.502 17.9972C209.755 
17.4858 210.107 17.0867 210.559 16.7998C211.013 16.5128 211.545 16.3694 212.153 
16.3694C212.522 16.3694 212.88 16.4304 213.226 16.5526C213.573 16.6748 213.884 
16.8665 214.16 17.1279C214.435 17.3892 214.653 17.7287 214.812 18.1464C214.971 
18.5611 215.05 19.0654 215.0 [...]
+<path d="M219.285 23.1321C218.64 23.1321 218.085 22.9944 217.619 
22.7188C217.156 22.4404 216.798 22.0498 216.545 21.5469C216.295 21.0412 216.17 
20.4489 216.17 19.7699C216.17 19.0995 216.295 18.5086 216.545 17.9972C216.798 
17.4858 217.15 17.0867 217.602 16.7998C218.056 16.5128 218.588 16.3694 219.195 
16.3694C219.565 16.3694 219.923 16.4304 220.269 16.5526C220.616 16.6748 220.927 
16.8665 221.203 17.1279C221.478 17.3892 221.695 17.7287 221.855 18.1464C222.014 
18.5611 222.093 19.0654 222.093 [...]
+<path d="M223.507 23V16.4546H224.738V17.4944H224.807C224.926 17.1421 225.136 
16.8651 225.437 16.6634C225.741 16.4589 226.085 16.3566 226.469 16.3566C226.548 
16.3566 226.642 16.3594 226.75 16.3651C226.861 16.3708 226.947 16.3779 227.01 
16.3864V17.6052C226.959 17.591 226.868 17.5753 226.737 17.5583C226.606 17.5384 
226.476 17.5285 226.345 17.5285C226.044 17.5285 225.775 17.5924 225.54 
17.7202C225.307 17.8452 225.122 18.0199 224.986 18.2444C224.849 18.466 224.781 
18.7188 224.781 19.0029V23H2 [...]
+<path d="M228.112 23V16.4546H229.387V23H228.112ZM228.756 15.4446C228.534 
15.4446 228.344 15.3708 228.185 15.2231C228.029 15.0725 227.95 14.8935 227.95 
14.6861C227.95 14.4759 228.029 14.2969 228.185 14.1492C228.344 13.9986 228.534 
13.9233 228.756 13.9233C228.977 13.9233 229.166 13.9986 229.323 14.1492C229.482 
14.2969 229.561 14.4759 229.561 14.6861C229.561 14.8935 229.482 15.0725 229.323 
15.2231C229.166 15.3708 228.977 15.4446 228.756 15.4446Z" fill="#7497F7"/>
+<path d="M232.375 19.1137V23H231.101V16.4546H232.324V17.5199H232.405C232.555 
17.1733 232.791 16.8949 233.112 16.6847C233.436 16.4745 233.844 16.3694 234.335 
16.3694C234.781 16.3694 235.172 16.4631 235.507 16.6506C235.842 16.8353 236.102 
17.1108 236.287 17.4773C236.471 17.8438 236.564 18.2969 236.564 
18.8367V23H235.29V18.9901C235.29 18.5157 235.166 18.1449 234.919 
17.8779C234.672 17.608 234.332 17.4731 233.9 17.4731C233.605 17.4731 233.342 
17.537 233.112 17.6648C232.885 17.7927 232.704 17 [...]
+<path d="M241.017 25.591C240.497 25.591 240.05 25.5228 239.675 25.3864C239.302 
25.25 238.998 25.0696 238.763 24.8452C238.527 24.6208 238.351 24.375 238.234 
24.108L239.329 23.6563C239.406 23.7813 239.508 23.9134 239.636 24.0526C239.767 
24.1946 239.943 24.3154 240.165 24.4148C240.389 24.5142 240.677 24.564 241.03 
24.564C241.513 24.564 241.912 24.4461 242.227 24.2103C242.542 23.9773 242.7 
23.6052 242.7 23.0938V21.8069H242.619C242.542 21.9461 242.432 22.1009 242.287 
22.2714C242.145 22.4418 2 [...]
+<path d="M248.526 
15.4063V14.2728H255.281V15.4063H252.558V23H251.245V15.4063H248.526Z" 
fill="#7497F7"/>
+<path d="M257.945 19.1137V23H256.671V14.2728H257.928V17.5199H258.009C258.162 
17.1677 258.397 16.8878 258.712 16.6804C259.028 16.4731 259.439 16.3694 259.948 
16.3694C260.397 16.3694 260.789 16.4617 261.124 16.6464C261.462 16.831 261.724 
17.1066 261.908 17.4731C262.096 17.8367 262.189 18.2912 262.189 
18.8367V23H260.915V18.9901C260.915 18.51 260.792 18.1378 260.545 
17.8736C260.297 17.6066 259.954 17.4731 259.513 17.4731C259.212 17.4731 258.942 
17.537 258.704 17.6648C258.468 17.7927 258.282  [...]
+<path d="M263.89 23V16.4546H265.121V17.4944H265.189C265.309 17.1421 265.519 
16.8651 265.82 16.6634C266.124 16.4589 266.468 16.3566 266.851 16.3566C266.931 
16.3566 267.025 16.3594 267.133 16.3651C267.243 16.3708 267.33 16.3779 267.393 
16.3864V17.6052C267.341 17.591 267.251 17.5753 267.12 17.5583C266.989 17.5384 
266.858 17.5285 266.728 17.5285C266.427 17.5285 266.158 17.5924 265.922 
17.7202C265.689 17.8452 265.505 18.0199 265.368 18.2444C265.232 18.466 265.164 
18.7188 265.164 19.0029V23H26 [...]
+<path d="M271.018 23.1321C270.404 23.1321 269.869 22.9915 269.411 
22.7103C268.954 22.429 268.599 22.0356 268.346 21.5299C268.093 21.0242 267.967 
20.4333 267.967 19.7571C267.967 19.0782 268.093 18.4844 268.346 17.9759C268.599 
17.4674 268.954 17.0725 269.411 16.7912C269.869 16.51 270.404 16.3694 271.018 
16.3694C271.632 16.3694 272.167 16.51 272.624 16.7912C273.082 17.0725 273.437 
17.4674 273.69 17.9759C273.943 18.4844 274.069 19.0782 274.069 19.7571C274.069 
20.4333 273.943 21.0242 273.69 2 [...]
+<path d="M279.638 20.2856V16.4546H280.916V23H279.663V21.8665H279.595C279.444 
22.216 279.203 22.5071 278.871 22.7401C278.541 22.9702 278.131 23.0853 277.639 
23.0853C277.219 23.0853 276.846 22.9929 276.523 22.8083C276.202 22.6208 275.949 
22.3438 275.764 21.9773C275.582 21.6108 275.491 21.1577 275.491 
20.6179V16.4546H276.765V20.4645C276.765 20.9106 276.889 21.2657 277.136 
21.5299C277.383 21.7941 277.704 21.9262 278.099 21.9262C278.338 21.9262 278.575 
21.8665 278.811 21.7472C279.05 21.6279 2 [...]
+<path d="M285.372 25.591C284.852 25.591 284.405 25.5228 284.03 25.3864C283.658 
25.25 283.354 25.0696 283.118 24.8452C282.882 24.6208 282.706 24.375 282.59 
24.108L283.685 23.6563C283.762 23.7813 283.864 23.9134 283.992 24.0526C284.122 
24.1946 284.298 24.3154 284.52 24.4148C284.744 24.5142 285.033 24.564 285.385 
24.564C285.868 24.564 286.267 24.4461 286.583 24.2103C286.898 23.9773 287.056 
23.6052 287.056 23.0938V21.8069H286.975C286.898 21.9461 286.787 22.1009 286.642 
22.2714C286.5 22.4418  [...]
+<path d="M291.308 19.1137V23H290.034V14.2728H291.291V17.5199H291.372C291.526 
17.1677 291.76 16.8878 292.075 16.6804C292.391 16.4731 292.803 16.3694 293.311 
16.3694C293.76 16.3694 294.152 16.4617 294.487 16.6464C294.825 16.831 295.087 
17.1066 295.271 17.4731C295.459 17.8367 295.553 18.2912 295.553 
18.8367V23H294.279V18.9901C294.279 18.51 294.155 18.1378 293.908 
17.8736C293.661 17.6066 293.317 17.4731 292.877 17.4731C292.575 17.4731 292.306 
17.537 292.067 17.6648C291.831 17.7927 291.645 17 [...]
+<path d="M297.253 25.4546V16.4546H298.497V17.5157H298.604C298.678 17.3793 
298.784 17.2216 298.923 17.0427C299.063 16.8637 299.256 16.7074 299.503 
16.5739C299.75 16.4375 300.077 16.3694 300.483 16.3694C301.012 16.3694 301.483 
16.5029 301.898 16.7699C302.313 17.037 302.638 17.4219 302.874 17.9248C303.112 
18.4276 303.232 19.0327 303.232 19.7401C303.232 20.4475 303.114 21.054 302.878 
21.5597C302.642 22.0625 302.318 22.4503 301.906 22.7231C301.494 22.9929 301.024 
23.1279 300.496 23.1279C300.0 [...]
+<path d="M308.806 20.2856V16.4546H310.084V23H308.831V21.8665H308.763C308.612 
22.216 308.371 22.5071 308.039 22.7401C307.709 22.9702 307.298 23.0853 306.807 
23.0853C306.387 23.0853 306.014 22.9929 305.691 22.8083C305.369 22.6208 305.117 
22.3438 304.932 21.9773C304.75 21.6108 304.659 21.1577 304.659 
20.6179V16.4546H305.933V20.4645C305.933 20.9106 306.057 21.2657 306.304 
21.5299C306.551 21.7941 306.872 21.9262 307.267 21.9262C307.506 21.9262 307.743 
21.8665 307.979 21.7472C308.217 21.6279 3 [...]
+<path d="M314.851 16.4546V17.4773H311.276V16.4546H314.851ZM312.235 
14.8864H313.509V21.0782C313.509 21.3253 313.546 21.5114 313.62 21.6364C313.694 
21.7586 313.789 21.8424 313.905 21.8878C314.025 21.9304 314.154 21.9517 314.293 
21.9517C314.395 21.9517 314.485 21.9446 314.562 21.9304C314.638 21.9162 314.698 
21.9049 314.741 21.8964L314.971 22.9489C314.897 22.9773 314.792 23.0057 314.655 
23.0341C314.519 23.0654 314.349 23.0824 314.144 23.0853C313.809 23.091 313.496 
23.0313 313.206 22.9063C312 [...]
+<path d="M108.458 165.812C109.571 165.165 110.878 164.938 112.144 
165.171C112.854 165.433 113.471 165.897 113.921 166.505C114.371 167.114 114.633 
167.84 114.675 168.596C114.746 170.095 114.415 171.585 113.718 172.914C111.409 
177.945 107.248 181.916 104.677 186.812C103.079 189.859 102.125 193.203 101.877 
196.636C101.624 200.211 101.743 204.545 98.6423 206.372C96.4434 207.63 93.4931 
206.776 91.7055 204.972C89.9179 203.169 89.0558 200.662 88.4625 198.202C86.8562 
191.35 86.7988 184.225 88.29 [...]
+<path d="M98.1836 276.769L99.5203 266.091C98.848 271.469 98.1915 276.848 
97.5191 282.234V282.432C96.7756 282.179 96.04 281.902 95.3044 281.641C83.5506 
277.077 73.1098 269.579 63.8713 260.997L63.4442 260.601C65.4058 252.549 67.6521 
244.553 69.8985 236.587C73.442 224.003 76.2262 209.56 84.6738 199.594C86.0422 
198.012 88.6286 198.486 90.6219 199.198C92.6151 199.91 94.7824 200.78 96.8231 
201.571C98.1399 201.996 99.3122 202.779 100.208 203.833C101.055 205.02 101.15 
206.562 101.205 208.026C102 [...]
+<path d="M299.984 271.817C299.256 272.213 298.52 272.608 297.793 
272.94C286.442 278.477 274.159 281.499 261.63 283.389C254.867 268.867 247.764 
253.585 238.343 240.764C235.18 236.461 231.952 232.751 229.991 227.697C228.52 
223.916 226.408 218.996 226.036 214.986C225.68 210.691 228.796 208.5 231.905 
205.993C238.919 200.328 247.051 196.209 255.768 193.907C256.516 193.616 257.341 
193.597 258.102 193.851C258.756 194.244 259.268 194.834 259.565 195.536L283.943 
240.068C289.329 249.899 294.724 25 [...]
+<path d="M215.674 202.932C213.792 199.618 215.065 195.481 214.844 
191.668C214.464 185.341 209.948 180.168 206.459 174.868C204.933 172.558 203.533 
169.94 203.762 167.18C203.841 166.191 204.348 165.036 205.344 164.941C205.793 
164.931 206.236 165.052 206.618 165.289C208.179 166.093 209.587 167.164 210.778 
168.453C212.162 169.948 213.657 171.91 215.682 171.673C216.504 171.493 217.285 
171.16 217.984 170.692C220.665 169.252 223.734 168.77 226.74 168.319L230.568 
167.726C233.677 167.243 236.896  [...]
+<path d="M248.863 140.453C248.479 144.996 246.402 149.23 243.045 
152.314C239.687 155.399 235.294 157.111 230.734 157.111H230.624V150.783C233.51 
150.771 236.296 149.722 238.474 147.827C240.652 145.932 242.077 143.318 242.488 
140.461L248.863 140.453Z" fill="#7497F7"/>
+<path d="M248.863 140.453C248.479 144.996 246.402 149.23 243.045 
152.314C239.687 155.399 235.294 157.111 230.734 157.111H230.624V150.783C233.51 
150.771 236.296 149.722 238.474 147.827C240.652 145.932 242.077 143.318 242.488 
140.461L248.863 140.453Z" fill="url(#paint4_linear_998_3474)"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear_998_3474" x1="130.669" y1="203.375" 
x2="55.8825" y2="185.562" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint1_linear_998_3474" x1="198.684" y1="197.972" 
x2="247.97" y2="197.972" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint2_linear_998_3474" x1="87.1891" y1="181.987" 
x2="114.691" y2="181.987" gradientUnits="userSpaceOnUse">
+<stop stop-color="#E5C5D5"/>
+<stop offset="0.42" stop-color="#EAD4D1"/>
+<stop offset="1" stop-color="#F0E9CB"/>
+</linearGradient>
+<linearGradient id="paint3_linear_998_3474" x1="203.738" y1="187.895" 
x2="254.819" y2="187.895" gradientUnits="userSpaceOnUse">
+<stop stop-color="#E5C5D5"/>
+<stop offset="0.42" stop-color="#EAD4D1"/>
+<stop offset="1" stop-color="#F0E9CB"/>
+</linearGradient>
+<linearGradient id="paint4_linear_998_3474" x1="226.93" y1="131.072" 
x2="257.793" y2="173.737" gradientUnits="userSpaceOnUse">
+<stop offset="0.02" stop-color="white" stop-opacity="0"/>
+<stop offset="0.32" stop-color="white" stop-opacity="0.39"/>
+<stop offset="0.68" stop-color="white" stop-opacity="0.68"/>
+<stop offset="1" stop-color="white"/>
+</linearGradient>
+<clipPath id="clip0_998_3474">
+<rect width="382.118" height="288" fill="white" transform="translate(0.882324 
0.791504)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/static/img/Homepage/WAD-3.svg b/static/img/Homepage/WAD-3.svg
new file mode 100644
index 000000000..eebd8062a
--- /dev/null
+++ b/static/img/Homepage/WAD-3.svg
@@ -0,0 +1,173 @@
+<svg width="383" height="289" viewBox="0 0 383 289" fill="none" 
xmlns="http://www.w3.org/2000/svg";>
+<g clip-path="url(#clip0_1074_4036)">
+<path opacity="0.18" d="M42.1873 135.41C31.3632 148.337 19.9024 163.094 21.01 
179.927C21.8921 193.271 30.7066 205.276 30.574 218.627C30.4413 231.978 21.2885 
244.494 23.2783 257.758C25.4935 272.814 41.1129 282.126 55.9098 285.701C87.1486 
293.248 119.707 285.038 151.742 282.517C176.335 280.587 201.054 282.06 225.674 
283.532L294.843 287.644C304.129 288.201 313.746 288.712 322.427 285.382C330.386 
282.338 336.813 276.336 342.325 269.896C354.402 255.861 363.469 237.589 360.637 
219.297C356.067  [...]
+<path opacity="0.1" d="M336.919 227.932C337.417 233.537 336.183 238.319 
334.107 240.912C332.031 243.505 328.927 245.124 325.717 245.986C322.507 246.848 
312.087 249.461 308.771 249.647C311.995 248.645 324.397 244.898 326.016 
241.933C326.691 240.57 327.284 239.169 327.793 237.735C328.887 234.983 330.32 
222.102 332.436 219.987C334.896 217.546 336.681 225.213 336.919 227.932Z" 
fill="url(#paint0_linear_1074_4036)"/>
+<path opacity="0.1" d="M198.487 243.479C168.885 240.799 139.157 239.772 109.44 
240.401C101.004 240.587 91.1081 240.209 86.2664 233.298C91.6718 229.086 99.0206 
228.655 105.865 228.423C173.138 226.022 235.536 223.986 302.809 221.585C299.725 
219.35 302.809 213.891 302.185 210.131C308.818 208.101 322.852 211.252 327.209 
215.861C323.13 212.936 314.429 211.882 310.714 213.401C307 214.919 303.989 
218.262 306.012 221.718C306.609 222.739 307.571 223.608 307.73 224.782C307.995 
226.738 305.946 228. [...]
+<path d="M76.2846 74.9222L68.989 83.2393C67.7155 84.6851 66.336 86.3963 
66.6278 88.3064C66.8668 89.3831 67.3994 90.3726 68.1665 91.165C69.5458 92.8113 
71.1205 94.2834 72.8557 95.549C75.3097 88.8636 77.2065 81.999 76.2846 74.9222Z" 
fill="#7497F7"/>
+<path d="M76.3775 74.889L69.0818 83.2061C67.8084 84.652 66.4288 86.3698 
66.7206 88.2733C66.9502 89.3464 67.4711 90.3355 68.2262 91.1319C69.6081 92.7761 
71.185 94.246 72.922 95.5093C75.429 88.8304 77.2994 81.9725 76.3775 74.889Z" 
fill="url(#paint2_linear_1074_4036)"/>
+<path d="M303.054 0.791504H83.4476V220.962H303.054V0.791504Z" fill="#7497F7"/>
+<path d="M303.054 0.791504H83.4476V220.962H303.054V0.791504Z" 
fill="url(#paint3_linear_1074_4036)"/>
+<path d="M88.3704 60.1112L48.5333 256.443L49.8983 256.72L89.7354 
60.3881L88.3704 60.1112Z" fill="#FF8B8B"/>
+<path d="M109.643 60.5828L69.4546 257.411L70.8192 257.69L111.008 
60.8614L109.643 60.5828Z" fill="#FF8B8B"/>
+<path d="M107.537 72.9258H86.2465V74.3187H107.537V72.9258Z" fill="#FF8B8B"/>
+<path d="M104.181 89.5467H82.8905V90.9395H104.181V89.5467Z" fill="#FF8B8B"/>
+<path d="M100.818 106.161H79.5279V107.554H100.818V106.161Z" fill="#FF8B8B"/>
+<path d="M97.4553 122.782H76.1652V124.175H97.4553V122.782Z" fill="#FF8B8B"/>
+<path d="M94.0927 139.403H72.8026V140.795H94.0927V139.403Z" fill="#FF8B8B"/>
+<path d="M90.73 156.024H69.4399V157.416H90.73V156.024Z" fill="#FF8B8B"/>
+<path d="M87.3741 172.644H66.084V174.037H87.3741V172.644Z" fill="#FF8B8B"/>
+<path d="M84.0114 189.265H62.7213V190.658H84.0114V189.265Z" fill="#FF8B8B"/>
+<path d="M80.6487 205.886H59.3586V207.279H80.6487V205.886Z" fill="#FF8B8B"/>
+<path d="M77.2861 222.507H55.996V223.9H77.2861V222.507Z" fill="#FF8B8B"/>
+<path d="M73.9235 239.121H52.6334V240.514H73.9235V239.121Z" fill="#FF8B8B"/>
+<path opacity="0.1" d="M113.008 220.776L111.271 62.8313L109.818 
62.5527L109.951 74.5773H106.071C106.011 72.508 105.726 70.505 104.996 
69.152C102.947 65.3383 100.354 69.152 99.6109 71.7054C99.2792 72.8197 98.7619 
73.9936 97.7604 74.5574H93.8473C93.3889 74.4646 92.9221 74.4202 92.4545 
74.4247C92.1659 74.4397 91.8795 74.4819 91.5989 74.5508H89.6092L89.4566 
62.3139L88.0041 62.042L88.1898 77.2037C88.0903 77.3629 87.9908 77.5287 87.9046 
77.7012C87.0159 79.4455 86.7904 81.4352 86.5781 83.3852C8 [...]
+<g opacity="0.74">
+<path d="M150.674 9.94427H107.722V14.4278H150.674V9.94427Z" fill="#7497F7"/>
+<path d="M133.94 18.6261H107.722V22.8443H133.94V18.6261Z" fill="#7497F7"/>
+<path opacity="0.54" d="M227.013 18.6261H144.512V22.8709H227.013V18.6261Z" 
fill="#7497F7"/>
+<path d="M281.174 18.6261H234.733V22.8709H281.174V18.6261Z" fill="#7497F7"/>
+<path d="M157.406 27.308H121.359V31.7583H157.406V27.308Z" fill="#7497F7"/>
+<path opacity="0.48" d="M144.758 60.6757H121.359V65.6832H144.758V60.6757Z" 
fill="#7497F7"/>
+<path d="M195.854 75.9834H185.972V80.971H195.854V75.9834Z" fill="#7497F7"/>
+<path d="M144.758 68.1439H121.359V73.1513H144.758V68.1439Z" fill="#7497F7"/>
+<path d="M144.758 158.524H121.359V163.531H144.758V158.524Z" fill="#7497F7"/>
+<path d="M158.076 117.164H134.677V122.172H158.076V117.164Z" fill="#7497F7"/>
+<path opacity="0.48" d="M158.076 125.382H134.677V130.389H158.076V125.382Z" 
fill="#7497F7"/>
+<path d="M158.076 141.067H134.677V146.075H158.076V141.067Z" fill="#7497F7"/>
+<path d="M158.076 149.285H134.677V154.292H158.076V149.285Z" fill="#7497F7"/>
+<path d="M187.212 125.382H163.813V130.389H187.212V125.382Z" fill="#7497F7"/>
+<path opacity="0.48" d="M187.212 149.033H163.813V154.04H187.212V149.033Z" 
fill="#7497F7"/>
+<path d="M228.32 158.524H152.359V163.531H228.32V158.524Z" fill="#7497F7"/>
+<path d="M175.884 35.9898H132.932V40.4733H175.884V35.9898Z" fill="#7497F7"/>
+<path opacity="0.52" d="M214.69 35.9898H178.689V40.9708H214.69V35.9898Z" 
fill="#7497F7"/>
+<path d="M166.041 44.6783H132.873V48.8965H166.041V44.6783Z" fill="#7497F7"/>
+<path opacity="0.48" d="M181.369 76.5471H132.873V80.4802H181.369V76.5471Z" 
fill="#7497F7"/>
+<path d="M295.016 44.6783H261.847V48.8965H295.016V44.6783Z" fill="#7497F7"/>
+<path d="M237.672 44.6783H169.225V49.3541H237.672V44.6783Z" fill="#7497F7"/>
+<path d="M259.26 44.6783H244.171V49.4337H259.26V44.6783Z" fill="#7497F7"/>
+<path opacity="0.48" d="M207.534 53.3602H132.747V57.5452H207.534V53.3602Z" 
fill="#7497F7"/>
+<path d="M182.072 167.272H132.747V171.643H182.072V167.272Z" fill="#7497F7"/>
+<path d="M188.956 86.0381H146.005V90.5217H188.956V86.0381Z" fill="#7497F7"/>
+<path opacity="0.48" d="M188.956 108.695H146.005V113.178H188.956V108.695Z" 
fill="#7497F7"/>
+<path d="M172.09 199.081H146.005V203.419H172.09V199.081Z" fill="#7497F7"/>
+<path d="M151.914 207.485H134.245V211.491H151.914V207.485Z" fill="#7497F7"/>
+<path d="M172.488 174.429H146.005V178.912H172.488V174.429Z" fill="#7497F7"/>
+<path d="M204.423 174.429H177.94V178.912H204.423V174.429Z" fill="#7497F7"/>
+<path d="M184.632 182.646H158.149V187.13H184.632V182.646Z" fill="#7497F7"/>
+<path d="M216.561 182.646H190.077V187.13H216.561V182.646Z" fill="#7497F7"/>
+<path d="M194.481 191.049H158.149V195.533H194.481V191.049Z" fill="#7497F7"/>
+<path d="M209.868 191.049H200.165V195.533H209.868V191.049Z" fill="#7497F7"/>
+<path d="M167.487 133.347H146.005V137.632H167.487V133.347Z" fill="#7497F7"/>
+<path d="M188.963 100.729H159.064V104.722H188.963V100.729Z" fill="#7497F7"/>
+<path d="M226.808 100.729H196.909V104.722H226.808V100.729Z" fill="#7497F7"/>
+<path d="M226.808 124.884H196.909V128.877H226.808V124.884Z" fill="#7497F7"/>
+<path d="M262.663 100.729H232.764V104.722H262.663V100.729Z" fill="#7497F7"/>
+<path d="M262.663 191.235H213.397V195.228H262.663V191.235Z" fill="#7497F7"/>
+<path opacity="0.48" d="M239.754 86.0381H196.802V90.5217H239.754V86.0381Z" 
fill="#7497F7"/>
+<path d="M202.904 92.7634H159.953V97.2469H202.904V92.7634Z" fill="#7497F7"/>
+<path opacity="0.48" d="M253.696 92.7634H210.744V97.2469H253.696V92.7634Z" 
fill="#7497F7"/>
+<path d="M288.118 86.0381H245.166V90.5217H288.118V86.0381Z" fill="#7497F7"/>
+</g>
+<path d="M101.223 58.6329C101.095 58.2439 101.039 57.8349 101.057 
57.4258C101.083 57.25 101.083 57.0711 101.057 56.8952C100.959 56.6475 100.812 
56.422 100.626 56.232C100.416 55.9507 100.278 55.6222 100.225 55.2752C100.172 
54.9282 100.204 54.5735 100.321 54.2423C100.778 54.1494 100.937 53.7913 101.097 
53.3602C101.208 52.9123 101.395 52.4864 101.647 52.1C101.674 52.0583 101.711 
52.0231 101.753 51.9968C101.795 51.9704 101.843 51.9536 101.892 51.9474C101.946 
51.9528 101.998 51.9721 102.042 5 [...]
+<path d="M88.2827 74.6569C88.0978 74.4024 87.874 74.1786 87.6194 
73.9937C87.2038 73.7273 86.7118 73.606 86.22 73.6488C85.7333 73.696 85.2502 
73.7758 84.7741 73.8875C82.6915 74.2722 80.5559 73.7881 78.4402 73.8875C76.0658 
74.0268 75.177 76.5405 74.7592 77.5486C73.942 79.492 73.4189 81.5463 73.2072 
83.6438C73.1077 84.6387 73.0812 85.6336 73.0546 86.6417C72.9352 90.7074 72.6633 
94.7333 72.8225 98.7989L73.0878 105.471C73.0582 105.872 73.1632 106.271 73.3862 
106.605C73.6309 106.848 73.9428 10 [...]
+<path d="M88.2827 74.6569C88.0978 74.4024 87.874 74.1786 87.6194 
73.9937C87.2038 73.7273 86.7118 73.606 86.22 73.6488C85.7333 73.696 85.2502 
73.7758 84.7741 73.8875C82.6915 74.2722 80.5559 73.7881 78.4402 73.8875C76.0658 
74.0268 75.177 76.5405 74.7592 77.5486C73.942 79.492 73.4189 81.5463 73.2072 
83.6438C73.1077 84.6387 73.0812 85.6336 73.0546 86.6417C72.9352 90.7074 72.6633 
94.7333 72.8225 98.7989L73.0878 105.471C73.0582 105.872 73.1632 106.271 73.3862 
106.605C73.6309 106.848 73.9428 10 [...]
+<path d="M85.6695 71.606C86.1579 71.2584 86.5615 70.8049 86.8501 
70.2795C87.0403 69.7741 87.1062 69.2305 87.0424 68.6943C87.0047 67.8438 86.7781 
67.0123 86.3792 66.2602C86.1774 65.8855 85.8998 65.557 85.5641 65.2955C85.2284 
65.034 84.8419 64.8453 84.4292 64.7414C83.1027 64.4695 81.7365 65.4046 81.113 
66.5852C80.5439 67.8322 80.2736 69.1948 80.3238 70.5647C80.2773 72.2825 78.9575 
74.9089 80.5692 75.5125C82.4329 76.2089 83.8854 74.186 84.1971 73.2972C84.5101 
72.6004 85.0224 72.0119 85.6695 [...]
+<path d="M86.2665 62.8114C86.2591 63.3997 86.0867 63.9742 85.769 
64.4695C85.4922 65.0117 85.1587 65.523 84.7742 65.9949C84.5069 66.2587 84.2831 
66.5632 84.1109 66.8969C83.9675 67.4743 84.0188 68.0828 84.2568 68.628C83.9716 
68.7739 83.6997 68.1239 83.4344 68.303C83.3855 68.3472 83.3509 68.4049 83.3349 
68.4688C83.2705 68.674 83.263 68.8928 83.3132 69.1019C83.3634 69.311 83.4695 
69.5025 83.6201 69.656C83.7084 69.7262 83.7807 69.8144 83.8324 69.9147C83.9119 
70.1203 83.7395 70.3325 83.6599 70 [...]
+<path d="M72.9684 123.253C73.0887 124.256 73.1131 125.269 73.0414 
126.277C72.9263 127.084 72.7444 127.881 72.4975 128.658C71.6667 131.809 70.6116 
134.897 69.3405 137.897C68.4252 139.887 67.3043 141.877 66.5748 143.946C65.8186 
146.399 65.3316 148.928 65.1223 151.487C65.7644 151.318 66.3359 150.948 66.7538 
150.432C72.6365 144.489 77.5851 137.689 81.4314 130.263C82.305 128.695 82.9737 
127.021 83.4211 125.282C83.6997 123.806 83.8396 122.307 83.839 120.805C84.0094 
117.567 83.9606 114.321 83.6 [...]
+<path d="M72.9684 123.253C73.0887 124.256 73.1131 125.269 73.0414 
126.277C72.9263 127.084 72.7444 127.881 72.4975 128.658C71.6667 131.809 70.6116 
134.897 69.3405 137.897C68.4252 139.887 67.3043 141.877 66.5748 143.946C65.8186 
146.399 65.3316 148.928 65.1223 151.487C65.7644 151.318 66.3359 150.948 66.7538 
150.432C72.6365 144.489 77.5851 137.689 81.4314 130.263C82.305 128.695 82.9737 
127.021 83.4211 125.282C83.6997 123.806 83.8396 122.307 83.839 120.805C84.0094 
117.567 83.9606 114.321 83.6 [...]
+<path d="M86.7373 132.618C86.8941 135.159 86.7516 137.71 86.3129 
140.218L84.5951 153.099C84.6854 153.257 84.8073 153.395 84.9533 153.504C85.0993 
153.613 85.2661 153.691 85.4435 153.732C85.6208 153.774 85.8048 153.779 85.9841 
153.746C86.1633 153.714 86.334 153.644 86.4853 153.543C87.0806 153.11 87.5406 
152.516 87.8118 151.832C90.4183 146.712 93.058 141.492 94.0264 135.834C94.4342 
133.175 94.6007 130.485 94.5238 127.796C94.4407 121.04 93.6674 114.311 92.2157 
107.713C92.1844 107.397 92.0409 [...]
+<path d="M63.7825 152.488C63.8912 152.744 64.0568 152.97 64.2667 
153.152C65.5863 154.446 67.2806 155.291 69.1084 155.566C69.3483 155.636 69.6023 
155.642 69.8454 155.584C70.0884 155.526 70.3122 155.405 70.4945 155.234C70.6232 
155.028 70.677 154.783 70.6468 154.542C70.6166 154.3 70.5043 154.076 70.3287 
153.908C69.9864 153.579 69.5831 153.32 69.1415 153.145C68.7079 152.975 68.313 
152.72 67.9802 152.394C67.6475 152.068 67.3838 151.678 67.2049 151.248C66.2564 
148.091 62.9667 149.895 63.7825 1 [...]
+<path d="M83.965 155.924C84.2972 156.459 84.7993 156.868 85.3909 
157.085C86.8236 157.748 88.4352 158.318 89.9872 157.96C90.4406 157.884 90.852 
157.649 91.1479 157.297C91.2901 157.119 91.3642 156.897 91.3569 156.67C91.3496 
156.442 91.2614 156.225 91.1081 156.057C90.75 155.732 90.1862 155.831 89.702 
155.778C89.4219 155.744 89.1523 155.651 88.911 155.504C88.6697 155.358 88.4623 
155.162 88.3026 154.929C88.1235 154.664 88.0108 154.359 87.845 154.087C86.419 
151.686 82.738 153.397 83.965 155.92 [...]
+<path d="M63.6697 150.353C63.7996 150.207 63.9646 150.096 64.149 
150.031C64.3335 149.966 64.5315 149.949 64.7243 149.981C65.2814 150.114 65.5733 
150.771 66.1038 150.996C66.3426 151.096 66.6079 151.102 66.8533 151.189C67.3112 
151.409 67.7179 151.723 68.0471 152.11C68.989 152.973 70.3486 153.437 70.972 
154.531C71.0496 154.64 71.0982 154.766 71.1132 154.898C71.1283 155.03 71.1094 
155.164 71.0583 155.287C70.9974 155.37 70.92 155.439 70.8309 155.491C70.7419 
155.542 70.6431 155.575 70.5409 155 [...]
+<path d="M84.0579 153.888C83.8788 153.815 83.6599 153.722 83.5206 
153.855C83.489 153.884 83.4642 153.921 83.4477 153.961C83.2849 154.375 83.2556 
154.83 83.3638 155.261C83.472 155.693 83.7123 156.08 84.0512 156.368C84.7359 
156.94 85.5146 157.389 86.3527 157.695C87.1877 158.131 88.0812 158.443 89.0057 
158.623C89.4655 158.709 89.94 158.668 90.3782 158.505C90.8164 158.341 91.2018 
158.061 91.4928 157.695C91.688 157.42 91.771 157.081 91.7249 156.746C91.5857 
156.017 90.7566 155.699 90.0668 155. [...]
+<path d="M88.2297 74.2324L93.4427 71.6391C94.0994 71.3437 94.7203 70.9743 
95.2932 70.5381C98.3905 68.0178 98.2181 63.3618 99.8231 59.7074C99.9029 59.4619 
100.064 59.2512 100.281 59.1104C100.471 59.0473 100.674 59.0336 100.871 
59.0706L102.974 59.3227L101.296 71.6656C101.204 72.5696 101.008 73.4598 100.712 
74.3186C100.453 74.9242 100.133 75.502 99.7568 76.043C97.7417 79.0664 95.1797 
81.687 92.2025 83.7698C91.8914 84.0215 91.5293 84.2026 91.1413 84.3004C90.6841 
84.3717 90.2162 84.2852 89.81 [...]
+<path d="M88.2297 74.2324L93.4427 71.6391C94.0994 71.3437 94.7203 70.9743 
95.2932 70.5381C98.3905 68.0178 98.2181 63.3618 99.8231 59.7074C99.9029 59.4619 
100.064 59.2512 100.281 59.1104C100.471 59.0473 100.674 59.0336 100.871 
59.0706L102.974 59.3227L101.296 71.6656C101.204 72.5696 101.008 73.4598 100.712 
74.3186C100.453 74.9242 100.133 75.502 99.7568 76.043C97.7417 79.0664 95.1797 
81.687 92.2025 83.7698C91.8914 84.0215 91.5293 84.2026 91.1413 84.3004C90.6841 
84.3717 90.2162 84.2852 89.81 [...]
+<path d="M303.054 220.962H83.4476V233.285H303.054V220.962Z" fill="#7497F7"/>
+<path d="M303.054 223.203H83.4476V233.285H303.054V223.203Z" 
fill="url(#paint12_linear_1074_4036)"/>
+<path d="M334.89 228.708C333.921 233.218 331.275 238.06 326.38 242.172C317.4 
249.72 305.787 251.676 297.622 251.995C296.614 252.035 295.632 252.054 294.611 
252.054C287.315 252.054 280.02 251.093 272.963 250.158L267.962 249.494C259.505 
248.44 249.762 247.571 241.167 250.602L240.411 248.453L239.621 246.225C249.166 
242.855 259.552 243.771 268.532 244.898C270.21 245.104 271.888 245.329 273.573 
245.561C281.412 246.596 289.524 247.67 297.45 247.365C304.885 247.073 315.43 
245.323 323.402 238.62 [...]
+<path d="M334.983 226.188C334.585 231.381 331.952 237.35 326.102 
242.272C317.121 249.813 305.501 251.776 297.337 252.088C296.335 252.127 295.347 
252.147 294.326 252.147C287.03 252.147 279.734 251.186 272.684 250.25L267.677 
249.587C259.22 248.533 249.477 247.664 240.888 250.695L239.343 246.317C239.728 
246.185 240.112 246.052 240.504 245.933L241.26 248.082C249.882 245.051 259.598 
245.919 268.055 246.974L273.056 247.637C280.119 248.572 287.395 249.534 294.704 
249.534C295.705 249.534 296.693 [...]
+<path d="M222.012 224.444L253.384 231.607L247.408 259.058L226.648 
269.014L198.202 256.631L217.283 248.102L222.012 224.444Z" fill="#FF8B8B"/>
+<path d="M222.012 224.444L253.384 231.607L247.408 259.058L226.648 
269.014L198.202 256.631L217.283 248.102L222.012 224.444Z" 
fill="url(#paint14_linear_1074_4036)"/>
+<path d="M219.956 223.887L251.328 231.043L245.352 258.495L224.997 
268.397L196.55 256.007L215.227 247.538L219.956 223.887Z" fill="#FF8B8B"/>
+<path d="M219.207 247.664L243.488 255.324L248.529 233.099L223.319 
227.687L219.207 247.664Z" fill="#FF8B8B"/>
+<path d="M219.207 247.664L243.488 255.324L248.529 233.099L223.319 
227.687L219.207 247.664Z" fill="url(#paint15_linear_1074_4036)"/>
+<path d="M329.703 218.972L329 218.839C326.745 215.278 322.693 212.989 319.224 
211.968C314.071 210.449 308.267 210.642 302.815 210.841L302.756 208.612C302.756 
208.612 314.694 207.949 321.764 211.345C326.248 213.507 329.703 218.972 329.703 
218.972Z" fill="url(#paint16_linear_1074_4036)"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear_1074_4036" x1="308.751" y1="234.565" 
x2="337.032" y2="234.565" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint1_linear_1074_4036" x1="86.2664" y1="236.223" 
x2="327.209" y2="236.223" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint2_linear_1074_4036" x1="66.4487" y1="87.6631" 
x2="122.095" y2="70.9826" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint3_linear_1074_4036" x1="419.228" y1="-137.236" 
x2="53.2104" y2="264.636" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0"/>
+<stop offset="0.99" stop-color="white"/>
+</linearGradient>
+<linearGradient id="paint4_linear_1074_4036" x1="21.6272" y1="-20298.4" 
x2="140.401" y2="10998.5" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint5_linear_1074_4036" x1="100.181" y1="55.582" 
x2="104.002" y2="55.582" gradientUnits="userSpaceOnUse">
+<stop stop-color="#ECC4D7"/>
+<stop offset="0.42" stop-color="#EFD4D1"/>
+<stop offset="1" stop-color="#F2EAC9"/>
+</linearGradient>
+<linearGradient id="paint6_linear_1074_4036" x1="80.8477" y1="94.6073" 
x2="178.325" y2="-29.9498" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint7_linear_1074_4036" x1="79.76" y1="70.1601" 
x2="87.0557" y2="70.1601" gradientUnits="userSpaceOnUse">
+<stop stop-color="#ECC4D7"/>
+<stop offset="0.42" stop-color="#EFD4D1"/>
+<stop offset="1" stop-color="#F2EAC9"/>
+</linearGradient>
+<linearGradient id="paint8_linear_1074_4036" x1="77.4453" y1="127.119" 
x2="84.4226" y2="125.375" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint9_linear_1074_4036" x1="63.6565" y1="152.601" 
x2="70.6471" y2="152.601" gradientUnits="userSpaceOnUse">
+<stop stop-color="#ECC4D7"/>
+<stop offset="0.42" stop-color="#EFD4D1"/>
+<stop offset="1" stop-color="#F2EAC9"/>
+</linearGradient>
+<linearGradient id="paint10_linear_1074_4036" x1="83.7196" y1="155.506" 
x2="91.3601" y2="155.506" gradientUnits="userSpaceOnUse">
+<stop stop-color="#ECC4D7"/>
+<stop offset="0.42" stop-color="#EFD4D1"/>
+<stop offset="1" stop-color="#F2EAC9"/>
+</linearGradient>
+<linearGradient id="paint11_linear_1074_4036" x1="100.261" y1="76.3349" 
x2="37.3258" y2="3.50415" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint12_linear_1074_4036" x1="193.254" y1="244.182" 
x2="193.254" y2="213.228" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0"/>
+<stop offset="0.99" stop-color="white"/>
+</linearGradient>
+<linearGradient id="paint13_linear_1074_4036" x1="334.432" y1="195.142" 
x2="57.6807" y2="458.449" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint14_linear_1074_4036" x1="230.595" y1="247.763" 
x2="287.362" y2="290.901" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<linearGradient id="paint15_linear_1074_4036" x1="241.054" y1="206.755" 
x2="226.867" y2="272.111" gradientUnits="userSpaceOnUse">
+<stop stop-color="white" stop-opacity="0"/>
+<stop offset="0.99" stop-color="white"/>
+</linearGradient>
+<linearGradient id="paint16_linear_1074_4036" x1="323.595" y1="206.788" 
x2="277.022" y2="251.093" gradientUnits="userSpaceOnUse">
+<stop stop-opacity="0"/>
+<stop offset="0.99"/>
+</linearGradient>
+<clipPath id="clip0_1074_4036">
+<rect width="382.118" height="288" fill="white" transform="translate(0 
0.791504)"/>
+</clipPath>
+</defs>
+</svg>
diff --git a/static/img/Homepage/arrow-right.svg 
b/static/img/Homepage/arrow-right.svg
new file mode 100644
index 000000000..2bc0299db
--- /dev/null
+++ b/static/img/Homepage/arrow-right.svg
@@ -0,0 +1,3 @@
+<svg width="20" height="21" viewBox="0 0 20 21" fill="none" 
xmlns="http://www.w3.org/2000/svg";>
+<path d="M10.5893 4.36896C10.2638 4.04352 9.73618 4.04352 9.41074 
4.36896C9.0853 4.69439 9.0853 5.22203 9.41074 5.54747L13.8215 
9.95821H4.16666C3.70642 9.95821 3.33333 10.3313 3.33333 10.7915C3.33333 11.2518 
3.70642 11.6249 4.16666 11.6249H13.8215L9.41074 16.0356C9.0853 16.3611 9.0853 
16.8887 9.41074 17.2141C9.73618 17.5396 10.2638 17.5396 10.5893 17.2141L16.4226 
11.3808C16.5853 11.2181 16.6667 11.0048 16.6667 10.7915C16.6667 10.6786 16.6442 
10.5708 16.6034 10.4726C16.5628 10.3743 16.502 [...]
+</svg>
diff --git a/tailwind.config.js b/tailwind.config.js
index 16d797326..a9fad24be 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -43,8 +43,8 @@ module.exports = {
       },
       fontSize: {
         heading0: ['48px', { lineHeight: '64px' }],
-        heading1: ['32px', { lineHeight: 1.25 }],
-        heading2: ['24px', { lineHeight: 1.25 }],
+        heading1: ['32px', { lineHeight: '40px' }],
+        heading2: ['24px', { lineHeight: '30px' }],
         heading3: ['20px', { lineHeight: 1.25 }],
         heading4: ['16px', { lineHeight: 1.25 }],
         label14: ['14px', { lineHeight: 1.43 }],

Reply via email to