-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
1354 lines (1285 loc) · 74.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<!-- Mirrored from www.netlify.com/ by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 31 Jan 2020 07:23:43 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta name="generator" content="Hugo 0.57.2" />
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<link rel="manifest" href="img/global/favicon/manifest.json">
<link rel="apple-touch-icon" sizes="180x180" href="img/global/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" href="img/global/favicon/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="img/global/favicon/favicon-16x16.png" sizes="16x16" />
<link rel="manifest" href="img/global/favicon/manifest.json" />
<link rel="mask-icon" href="img/global/favicon/safari-pinned-tab.svg" color="#00c7b7" />
<meta name="google-site-verification" content="ld9HaWmKr8SefRjXbwCg7Wydyhtepoo1mzNPr4g-uMk" />
<meta name="apple-mobile-web-app-title" content="Netlify" />
<meta name="application-name" content="Netlify" />
<meta name="msapplication-config" content="img/global/favicon/browserconfig.xml" />
<meta name="theme-color" content="#ffffff" />
<meta name="description" content="Deploy modern static websites with Netlify. Get CDN, Continuous deployment, 1-click HTTPS, and all the services you need. Get started for free.">
<meta itemprop="name" content="Netlify: All-in-one platform for automating modern web projects">
<meta itemprop="description" content="Deploy modern static websites with Netlify. Get CDN, Continuous deployment, 1-click HTTPS, and all the services you need. Get started for free.">
<meta itemprop="image" content="img/global/meta-image.jpg" />
<meta property="og:title" content="Netlify: All-in-one platform for automating modern web projects">
<meta property="og:description" content="Deploy modern static websites with Netlify. Get CDN, Continuous deployment, 1-click HTTPS, and all the services you need. Get started for free.">
<meta name="og:image" content="img/global/meta-image.jpg" />
<meta name="og:image:secure_url" content="img/global/meta-image.jpg" />
<meta property="og:site_name" content="Netlify" />
<meta name="google-site-verification" content="RMV-cjpAWkM-B69Nn0Pc-3hqjZzD8rKr6zpzm0Zhlak" />
<script>
if ("serviceWorker" in navigator && !localStorage.getItem("no_sw")) {
navigator.serviceWorker
.register("sw.js")
.then(function(reg) {
window.sw = reg;
})
.catch(function(err) {
console.error("Failed to load service worker");
});
}
</script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,400italic|Roboto+Mono:400">
<link rel='stylesheet' href='https://cdn.netlify.com/css/22cab30d0146c3ae0fbdb64a7b32c6ba7e80ea2c/main-v2.css'/>
<!-- extra //-->
<link rel='stylesheet' href='https://cdn.netlify.com/css/2f1b8f68c8e86ca8b10a53fc5dbd6916cc578639/home.css'/>
</head>
<body class="page page--home">
<svg hidden aria-hidden="true">
<defs>
<radialGradient id="netlifyGradient" cx="0%" cy="0%" r="100%" fx="0%" fy="0%">
<stop stop-color="#20C6B7" offset="0%" />
<stop stop-color="#4D9ABF" offset="100%" />
</radialGradient>
<symbol id="logo" viewBox="0 0 40 40">
<use xlink:href="#netlifyGem" fill="url(#netlifyGradient)" />
</symbol>
<symbol id="logo-mono" viewBox="0 0 40 40">
<use xlink:href="#netlifyGem" />
</symbol>
<symbol id="logotype" viewBox="0 0 148 40">
<title>Netlify logotype</title>
<use xlink:href="#logo" transform="translate(-54, 0)" />
<!-- <use xlink:href="#netlifyWord" /> -->
<text x="0" y="35" fill="white" style="font: bold 1.9rem helvetica neue, sans-serif;">AI</text>
<text x="35" y="35" fill="white" style="font: 1.9rem helvetica neue, sans-serif;">DEN</text>
</symbol>
<symbol id="logotype-mono" viewBox="0 0 148 40">
<title>Netlify logotype monotone</title>
<use xlink:href="#logo-mono" transform="translate(-54, 0)" />
<use xlink:href="#netlifyWord" />
</symbol>
<radialGradient id="netlify-community-logo-a" cx="15.68%" r="250.87%" fx="15.68%" fy="50%" gradientTransform="matrix(.18985 0 0 1.152 .13 -.08)">
<stop offset="0%" stop-color="#20C6B7"/>
<stop offset="100%" stop-color="#4D9ABF"/>
</radialGradient>
<radialGradient id="netlify-community-logo-b" cy="0%" r="100.11%" fx="50%" fy="0%" gradientTransform="matrix(0 .9989 -1.152 0 .5 -.5)">
<stop offset="0%" stop-color="#20C6B7"/>
<stop offset="100%" stop-color="#4D9ABF"/>
</radialGradient>
<symbol viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/symbol" id="mega-nav-arrow">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M5.3359 1.49607C6.12754 0.308603 7.87246 0.308602 8.6641 1.49607L13.6667 9H0.333279L5.3359 1.49607Z"
fill="white" />
</symbol>
<filter id="mega-nav-build-filter0_d" x="0" y="-2" width="72" height="72" filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" />
<feOffset dy="2" />
<feGaussianBlur stdDeviation="2" />
<feColorMatrix type="matrix" values="0 0 0 0 0.054902 0 0 0 0 0.117647 0 0 0 0 0.145098 0 0 0 0.12 0" />
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow" />
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape" />
</filter>
<radialGradient id="mega-nav-build-paint0_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="translate(36) rotate(90) scale(54.3917)">
<stop stop-color="#27C7BA" />
<stop offset="1" stop-color="#4D9BBF" />
</radialGradient>
<symbol viewBox="0 0 72 70" fill="none" xmlns="http://www.w3.org/2000/symbol" id="mega-nav-builds">
<g filter="url(#mega-nav-build-filter0_d)">
<path
d="M5.8899 28.5073L32.5073 1.8899C33.7218 0.675408 34.2886 0.361457 34.9701 0.15491C35.6515 -0.0516367 36.3485 -0.0516367 37.0299 0.15491C37.7114 0.361457 38.2782 0.675408 39.4927 1.8899L66.1101 28.5073C67.3246 29.7218 67.6385 30.2886 67.8451 30.9701C68.0516 31.6515 68.0516 32.3485 67.8451 33.0299C67.6385 33.7114 67.3246 34.2782 66.1101 35.4927L39.4927 62.1101C38.2782 63.3246 37.7114 63.6385 37.0299 63.8451C36.3485 64.0516 35.6515 64.0516 34.9701 63.8451C34.2886 63.6385 33.7218 63.3246 32.5073 62.1101L5.8899 35.4927C4.67541 34.2782 4.36146 33.7114 4.15491 33.0299C3.94836 32.3485 3.94836 31.6515 4.15491 30.9701C4.36146 30.2886 4.67541 29.7218 5.8899 28.5073Z"
fill="url(#mega-nav-build-paint0_radial)" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M35.2192 21.1374C35.6877 20.9542 36.3123 20.9542 36.7808 21.1374L47.7117 25.5787C49.4294 26.2252 49.4294 28.5082 47.7117 29.1533L45.8378 29.9338L47.7117 30.7127C49.4294 31.3577 49.4294 33.6423 47.7117 34.2873L45.8378 35.0662L47.7117 35.8452C49.4294 36.4902 49.4294 38.7748 47.7117 39.4198L36.7808 43.8626C36.3123 44.0458 35.6877 44.0458 35.2192 43.8626L24.2883 39.4198C22.5706 38.7748 22.5706 36.4902 24.2883 35.8452L26.1622 35.0662L24.2883 34.2873C22.5706 33.6423 22.5706 31.3577 24.2883 30.7127L26.1622 29.9338L24.2883 29.1533C22.5706 28.5082 22.5706 26.2252 24.2883 25.5787L35.2192 21.1374ZM29.5976 31.3146L26.6306 32.5L36 36.2501L45.3694 32.5L42.4024 31.3146L36.7808 33.5961C36.3123 33.7793 35.6877 33.7793 35.2192 33.5961L29.5976 31.3146ZM29.5976 36.4487L26.6306 37.6325L36 41.3841L45.3694 37.6325L42.4024 36.4487L36.7808 38.7286C36.3123 38.9133 35.6877 38.9133 35.2192 38.7286L29.5976 36.4487ZM36 23.6159L26.6306 27.366L36 31.1176L45.3694 27.366L36 23.6159Z"
fill="white" />
<path
d="M6.34245 28.9598L32.9598 2.34245C34.1377 1.16462 34.6161 0.930951 35.1557 0.767394C35.7161 0.597535 36.2839 0.597535 36.8443 0.767394C37.3839 0.930951 37.8623 1.16462 39.0402 2.34245L65.6575 28.9598C66.8354 30.1377 67.069 30.6161 67.2326 31.1557C67.4025 31.7161 67.4025 32.2839 67.2326 32.8443C67.069 33.3839 66.8354 33.8623 65.6575 35.0402L39.0402 61.6575C37.8623 62.8354 37.3839 63.069 36.8443 63.2326C36.2839 63.4025 35.7161 63.4025 35.1557 63.2326C34.6161 63.069 34.1377 62.8354 32.9598 61.6575L6.34245 35.0402C5.16462 33.8623 4.93095 33.3839 4.76739 32.8443C4.59754 32.2839 4.59754 31.7161 4.76739 31.1557C4.93095 30.6161 5.16462 30.1377 6.34245 28.9598Z"
stroke="#E9EBEB" stroke-width="1.28" />
</g>
</symbol>
<filter id="mega-nav-edge-filter0_d" x="0" y="-2" width="72" height="72" filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" />
<feOffset dy="2" />
<feGaussianBlur stdDeviation="2" />
<feColorMatrix type="matrix" values="0 0 0 0 0.054902 0 0 0 0 0.117647 0 0 0 0 0.145098 0 0 0 0.12 0" />
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow" />
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape" />
</filter>
<radialGradient id="mega-nav-edge-paint0_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse"
gradientTransform="translate(36) rotate(90) scale(54.3917)">
<stop stop-color="#27C7BA" />
<stop offset="1" stop-color="#4D9BBF" />
</radialGradient>
<symbol viewBox="0 0 72 70" fill="none" xmlns="http://www.w3.org/2000/symbol" id="mega-nav-edge">
<g filter="url(#mega-nav-edge-filter0_d)">
<path
d="M5.8899 28.5073L32.5073 1.8899C33.7218 0.675408 34.2886 0.361457 34.9701 0.15491C35.6515 -0.0516367 36.3485 -0.0516367 37.0299 0.15491C37.7114 0.361457 38.2782 0.675408 39.4927 1.8899L66.1101 28.5073C67.3246 29.7218 67.6385 30.2886 67.8451 30.9701C68.0516 31.6515 68.0516 32.3485 67.8451 33.0299C67.6385 33.7114 67.3246 34.2782 66.1101 35.4927L39.4927 62.1101C38.2782 63.3246 37.7114 63.6385 37.0299 63.8451C36.3485 64.0516 35.6515 64.0516 34.9701 63.8451C34.2886 63.6385 33.7218 63.3246 32.5073 62.1101L5.8899 35.4927C4.67541 34.2782 4.36146 33.7114 4.15491 33.0299C3.94836 32.3485 3.94836 31.6515 4.15491 30.9701C4.36146 30.2886 4.67541 29.7218 5.8899 28.5073Z"
fill="url(#mega-nav-edge-paint0_radial)" />
<path fill-rule="evenodd" clip-rule="evenodd"
d="M36 45C28.8265 45 23 39.1801 23 31.9992C23 24.8199 28.8265 19 36 19C43.1735 19 49 24.8199 49 31.9992C49 39.1801 43.1735 45 36 45ZM36 21.5998C35.7494 21.5998 35.5145 21.6077 35.2795 21.6249C35.2325 21.6813 35.1855 21.7439 35.1229 21.8113C34.8096 22.2435 34.3554 22.9092 33.9169 23.8066C33.494 24.6476 33.0711 25.6969 32.7265 26.953C33.7446 26.8559 34.8253 26.7995 36 26.7995C37.1747 26.7995 38.2554 26.8559 39.2735 26.953C38.9289 25.6969 38.506 24.6476 38.0831 23.8066C37.6446 22.9092 37.1904 22.2435 36.8614 21.8113C36.8145 21.7439 36.7675 21.6813 36.7205 21.6249C36.4855 21.6077 36.2506 21.5998 36 21.5998ZM29.5 31.9992C29.5 31.3367 29.5313 30.7009 29.5783 30.0901C28.8422 30.2608 28.1843 30.4471 27.6361 30.6335C26.8687 30.8904 26.2578 31.1457 25.8349 31.3493C26.2578 31.5544 26.8687 31.8097 27.6361 32.0666C28.1687 32.2467 28.7952 32.4283 29.5 32.5944C29.5 32.3986 29.5 32.1997 29.5 31.9992ZM29.7349 35.3038C30.0952 37.8332 30.8313 39.852 31.5831 41.3555L31.6301 41.4401C28.7012 40.0822 26.5084 37.4072 25.8349 34.1778C26.1325 34.2937 26.4614 34.4143 26.806 34.5333C27.6361 34.8058 28.6072 35.0767 29.7349 35.3038ZM32.4289 35.7157C33.5253 35.8316 34.7157 35.899 36 35.899C37.2843 35.899 38.4747 35.8316 39.5711 35.7157C39.2265 37.5779 38.647 39.0705 38.0831 40.1934C37.6446 41.0908 37.1904 41.7565 36.8614 42.1887C36.8145 42.2561 36.7675 42.3187 36.7205 42.3751C36.4855 42.3908 36.2506 42.4002 36 42.4002C35.7494 42.4002 35.5145 42.3908 35.2795 42.3751C35.2325 42.3187 35.1855 42.2561 35.1229 42.1887C34.8096 41.7565 34.3554 41.0908 33.9169 40.1934C33.353 39.0705 32.7735 37.5779 32.4289 35.7157ZM39.8687 33.0626C38.7253 33.2083 37.4253 33.2991 36 33.2991C34.5747 33.2991 33.2747 33.2083 32.1313 33.0626C32.1157 32.7181 32.1 32.3626 32.1 31.9992C32.1 31.1582 32.147 30.3657 32.2253 29.6233C33.353 29.4855 34.606 29.3994 36 29.3994C37.394 29.3994 38.647 29.4855 39.759 29.6233C39.853 30.3657 39.9 31.1582 39.9 31.9992C39.9 32.3626 39.8843 32.7181 39.8687 33.0626ZM42.2651 35.3038C41.9048 37.8332 41.1687 39.852 40.4169 41.3555L40.3699 41.4401C43.2988 40.0822 45.4759 37.4072 46.1651 34.1762C45.8675 34.2937 45.5386 34.4143 45.1783 34.5333C44.3639 34.8058 43.3928 35.0767 42.2651 35.3038ZM46.1651 31.3493C45.7422 31.5544 45.1313 31.8097 44.3639 32.0666C43.8313 32.2467 43.2048 32.4283 42.5 32.5944C42.5 32.3986 42.5 32.1997 42.5 31.9992C42.5 31.3367 42.4687 30.7009 42.4217 30.0901C43.1578 30.2608 43.8 30.4471 44.3639 30.6335C45.1313 30.8904 45.7422 31.1457 46.1651 31.3493ZM26.806 28.1668C27.6831 27.8739 28.7482 27.5857 29.9699 27.3493C30.3614 25.4401 30.9723 23.8708 31.5831 22.6429L31.6301 22.5599C29.1554 23.7063 27.2133 25.794 26.2578 28.361C26.4301 28.2968 26.6181 28.231 26.806 28.1668ZM40.3699 22.5599C42.8446 23.7063 44.7867 25.794 45.7422 28.3626C45.5699 28.2968 45.3819 28.2326 45.1783 28.1668C44.3169 27.8755 43.2518 27.5857 42.0301 27.3493C41.6386 25.4401 41.0277 23.8708 40.4169 22.6429L40.3699 22.5599Z"
fill="white" />
<path
d="M6.34245 28.9598L32.9598 2.34245C34.1377 1.16462 34.6161 0.930951 35.1557 0.767394C35.7161 0.597535 36.2839 0.597535 36.8443 0.767394C37.3839 0.930951 37.8623 1.16462 39.0402 2.34245L65.6575 28.9598C66.8354 30.1377 67.069 30.6161 67.2326 31.1557C67.4025 31.7161 67.4025 32.2839 67.2326 32.8443C67.069 33.3839 66.8354 33.8623 65.6575 35.0402L39.0402 61.6575C37.8623 62.8354 37.3839 63.069 36.8443 63.2326C36.2839 63.4025 35.7161 63.4025 35.1557 63.2326C34.6161 63.069 34.1377 62.8354 32.9598 61.6575L6.34245 35.0402C5.16462 33.8623 4.93095 33.3839 4.76739 32.8443C4.59754 32.2839 4.59754 31.7161 4.76739 31.1557C4.93095 30.6161 5.16462 30.1377 6.34245 28.9598Z"
stroke="#E9EBEB" stroke-width="1.28" />
</g>
</symbol>
<symbol id="icon-twitter-fullcolor" viewBox="0 0 400 400">
<circle cx="200" cy="200" r="200" fill="#1da1f2" />
<path
d="M163.4 305.5c88.7 0 137.2-73.5 137.2-137.2 0-2.1 0-4.2-.1-6.2 9.4-6.8 17.6-15.3 24.1-25-8.6 3.8-17.9 6.4-27.7 7.6 10-6 17.6-15.4 21.2-26.7-9.3 5.5-19.6 9.5-30.6 11.7-8.8-9.4-21.3-15.2-35.2-15.2-26.6 0-48.2 21.6-48.2 48.2 0 3.8.4 7.5 1.3 11-40.1-2-75.6-21.2-99.4-50.4-4.1 7.1-6.5 15.4-6.5 24.2 0 16.7 8.5 31.5 21.5 40.1-7.9-.2-15.3-2.4-21.8-6v.6c0 23.4 16.6 42.8 38.7 47.3-4 1.1-8.3 1.7-12.7 1.7-3.1 0-6.1-.3-9.1-.9 6.1 19.2 23.9 33.1 45 33.5-16.5 12.9-37.3 20.6-59.9 20.6-3.9 0-7.7-.2-11.5-.7 21.1 13.8 46.5 21.8 73.7 21.8"
fill="#fff" />
</symbol>
<symbol id="icon-dribble-fullcolor" viewBox="0 0 22 22">
<g transform="translate(.5 .5)" fill="none" fill-rule="evenodd">
<path d="M0 0h21v21H0z" />
<circle fill="#EA4C89" fill-rule="nonzero" cx="10.5" cy="10.5" r="10.08" />
<path
d="M10.5 0C4.703 0 0 4.703 0 10.5S4.703 21 10.5 21C16.285 21 21 16.297 21 10.5S16.285 0 10.5 0zm6.935 4.84a8.927 8.927 0 012.028 5.58c-.297-.057-3.257-.66-6.241-.284-.069-.148-.125-.308-.194-.467a26.69 26.69 0 00-.592-1.299c3.303-1.343 4.806-3.28 5-3.53zM10.5 1.549c2.278 0 4.362.854 5.945 2.255-.16.227-1.515 2.038-4.704 3.234-1.469-2.7-3.097-4.908-3.348-5.25a9.12 9.12 0 012.107-.24zm-3.815.843c.24.318 1.833 2.54 3.325 5.181C5.82 8.69 2.118 8.667 1.72 8.667a9.01 9.01 0 014.965-6.275zm-5.159 8.12v-.274c.387.011 4.738.068 9.213-1.275.262.5.501 1.013.729 1.526-.114.034-.24.068-.353.102-4.624 1.492-7.084 5.569-7.289 5.91a8.948 8.948 0 01-2.3-5.99zm8.974 8.962a8.906 8.906 0 01-5.5-1.89c.159-.33 1.981-3.838 7.037-5.604.023-.01.035-.01.057-.022a37.074 37.074 0 011.914 6.799 8.82 8.82 0 01-3.508.717zm5-1.537c-.092-.547-.57-3.166-1.743-6.39 2.813-.443 5.273.285 5.58.388a8.892 8.892 0 01-3.838 6.002z"
fill="#C32361" />
</g>
</symbol>
<symbol id="icon-discourse-fullcolor" viewBox="0 0 22 21">
<g fill-rule="nonzero" fill="none">
<path
d="M11.24.033C5.65.033.942 4.566.942 10.16v10.485l10.296-.01c5.591 0 10.126-4.707 10.126-10.298S16.825.033 11.24.033z"
fill="#231F20" />
<path d="M11.34 3.953a6.278 6.278 0 00-5.518 9.266l-1.136 3.653 4.078-.921a6.276 6.276 0 102.581-11.998h-.006z"
fill="#FFF9AE" />
<path d="M16.319 6.41a6.274 6.274 0 01-7.555 9.53l-4.078.934 4.152-.49a6.274 6.274 0 007.481-9.973z"
fill="#00AEEF" />
<path d="M15.163 5.253A6.274 6.274 0 018.645 15.52l-3.959 1.354 4.078-.923a6.274 6.274 0 006.4-10.698z"
fill="#00A94F" />
<path d="M6.197 13.358a6.276 6.276 0 0110.126-6.95 6.276 6.276 0 00-10.501 6.81l-1.136 3.654 1.511-3.514z"
fill="#F15D22" />
<path d="M5.822 13.219a6.276 6.276 0 019.341-7.966 6.276 6.276 0 00-9.728 7.868l-.747 3.753 1.134-3.655z"
fill="#E31B23" />
</g>
</symbol>
<symbol id="icon-youtube-fullcolor" viewBox="0 0 22 16">
<path
d="M10.994.524s-6.508 0-8.142.435c-.874.25-1.594.99-1.839 1.9C.59 4.536.59 8.007.59 8.007s0 3.484.424 5.134c.245.91.952 1.636 1.84 1.887 1.646.448 8.14.448 8.14.448s6.521 0 8.155-.435a2.623 2.623 0 001.826-1.887c.437-1.663.437-5.134.437-5.134s.013-3.484-.437-5.16A2.605 2.605 0 0019.148.984C17.514.524 10.994.524 10.994.524zM8.923 4.8l5.415 3.207L8.923 11.2V4.8z"
fill-rule="nonzero" fill="red" />
</symbol>
</defs>
</svg>
<header class="site-header full-width inverse">
<div class="container">
<nav class="nav nav--inline hr hr--bottom">
<a class="visuallyhidden" href="#main">Skip to main content</a>
<a href="index.html" class="highlight" id="cta-mainNav-netlifyLogo">
<svg role="img" aria-label="Netlify" class="logotype">
<use xlink:href="#logotype" />
</svg>
<span class="visuallyhidden">Home</span>
</a>
</nav>
</div>
</header>
<main id="main" class="">
<section class="hero hero--home inverse">
<div class="container">
<h1 class="h1">
<span class="H1__phrase">One assistant.</span>
<span class="smaller">One platform.</span>
<span class="smaller">For Your Good Health.</span>
</h1>
<p>
AIDEN is everything you need from your physiotherapist.
</p>
<footer>
<ul>
<li>
<a class="button" href="live_stream.html" id="cta-hero-getstartedforfree">
Get started for free
</a>
</li>
</ul>
</footer>
</div>
<div class="illo">
<svg
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 4096 690.58"
aria-hidden="true"
>
<style>
.anim-hide { visibility: hidden; }
</style>
<defs>
<path
id="h-wave"
d="M0 0v690.58s365.72 11.77 800.48-160.7c263.68-104.61 593.41 42.08 800.73 27.26 181-12.95 178.54-61.69 347.77-91.17s266.94 7.16 503.74-122.81c172.6-94.74 451.68-314.28 856.62-245.79S4096 109 4096 0z"
></path>
<mask id="h-mask" fill="white" class="hero-mask">
<rect width="100%" height="100%" y="74"></rect>
</mask>
<linearGradient
data="blue.html"
id="h-e"
y1="345.37"
x2="4096"
y2="345.37"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#6f0084"></stop>
<stop offset=".1" stop-color="#59238a"></stop>
<stop offset=".28" stop-color="#335e93"></stop>
<stop offset=".43" stop-color="#178a9a"></stop>
<stop offset=".55" stop-color="#06a49e"></stop>
<stop offset=".62" stop-color="#00aea0"></stop>
</linearGradient>
<linearGradient
data="darken.html"
id="h-d"
x1="851.36"
y1="-851.36"
x2="2909.93"
y2="1207.22"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#010758"></stop>
<stop offset=".6" stop-color="#010758" stop-opacity=".2"></stop>
<stop offset="1" stop-color="#010758" stop-opacity="0"></stop>
</linearGradient>
<linearGradient
data="lighten.html"
id="h-h"
y1="345.37"
x2="4096"
y2="345.37"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#fff" stop-opacity="0"></stop>
<stop offset=".44" stop-color="#fbfefe" stop-opacity=".01"></stop>
<stop offset=".6" stop-color="#eafcfa" stop-opacity=".04"></stop>
<stop offset=".72" stop-color="#cef7f4" stop-opacity=".1"></stop>
<stop offset=".81" stop-color="#a6f1eb" stop-opacity=".17"></stop>
<stop offset=".89" stop-color="#72e8df" stop-opacity=".28"></stop>
<stop offset=".96" stop-color="#32ded1" stop-opacity=".4"></stop>
<stop offset="1" stop-color="#00d6c6" stop-opacity=".5"></stop>
</linearGradient>
<clipPath id="h-i">
<path
d="M2696.67 0v203.76c-50.47 25.58-96.52 52.41-138.3 77.33-38.87 23.18-74 44.72-105.65 62.07-34.54 19-66.12 34.37-95.39 46.95-129.55 55.73-214 56.17-309.85 63.93V0z"
fill="none"
></path>
</clipPath>
<linearGradient
id="h-a"
x1="2157.59"
y1="347.13"
x2="2290.94"
y2="347.13"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#6f0084"></stop>
<stop offset="1" stop-color="#00aea0"></stop>
</linearGradient>
<linearGradient
id="h-j"
x1="2260.84"
y1="63.28"
x2="2429.72"
y2="63.28"
xlink:href="#h-a"
></linearGradient>
<linearGradient
id="h-k"
x1="2362.2"
y1="222.38"
x2="2423.77"
y2="222.38"
xlink:href="#h-a"
></linearGradient>
<linearGradient
id="h-l"
x1="2338.26"
y1="337.17"
x2="2432.61"
y2="337.17"
xlink:href="#h-a"
></linearGradient>
<linearGradient
id="h-m"
x1="2321.46"
y1="361.59"
x2="2400.52"
y2="361.59"
xlink:href="#h-a"
></linearGradient>
<linearGradient
id="h-c"
x1="2500.65"
y1="264.92"
x2="2546.44"
y2="264.92"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#00aea0"></stop>
<stop offset="1" stop-color="#b800aa"></stop>
</linearGradient>
<linearGradient
id="h-b"
x1="2142.12"
y1="229.07"
x2="2300.42"
y2="229.07"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#b800aa"></stop>
<stop offset="1" stop-color="#00aea0"></stop>
</linearGradient>
<linearGradient
id="h-n"
x1="2392.79"
y1="173.56"
x2="2429.99"
y2="173.56"
xlink:href="#h-b"
></linearGradient>
<linearGradient
id="h-o"
x1="2468.89"
y1="166.19"
x2="2473.81"
y2="166.19"
xlink:href="#h-b"
></linearGradient>
<linearGradient
id="h-p"
x1="2549.53"
y1="100.08"
x2="2638.28"
y2="100.08"
xlink:href="#h-c"
></linearGradient>
<linearGradient
id="h-q"
x1="2223.08"
y1="136.43"
x2="2335.94"
y2="136.43"
xlink:href="#h-b"
></linearGradient>
<linearGradient
id="h-r"
x1="2414.67"
y1="30.9"
x2="2433.66"
y2="30.9"
xlink:href="#h-c"
></linearGradient>
<linearGradient
id="h-s"
x1="2327.79"
y1="230.73"
x2="2405.03"
y2="230.73"
xlink:href="#h-b"
></linearGradient>
<linearGradient
id="h-t"
x1="2511.38"
y1="97.61"
x2="2532.34"
y2="97.61"
gradientTransform="rotate(2.69 2607.494612 195.31943)"
xlink:href="#h-c"
></linearGradient>
<linearGradient
id="h-u"
x1="2515.3"
y1="131.86"
x2="2627.74"
y2="131.86"
xlink:href="#h-a"
></linearGradient>
<linearGradient
id="h-v"
x1="2126.98"
y1="307.08"
x2="2277.4"
y2="307.08"
gradientTransform="rotate(3.47 2146.796864 352.809564)"
xlink:href="#h-b"
></linearGradient>
<linearGradient
id="h-w"
x1="2449.94"
y1="328.68"
x2="2469.25"
y2="347.98"
xlink:href="#h-d"
></linearGradient>
<linearGradient
id="h-x"
x1="2565.67"
y1="513.73"
x2="2336.4"
y2="181.52"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#00d6c6" stop-opacity=".5"></stop>
<stop offset="1" stop-color="#fff" stop-opacity="0"></stop>
</linearGradient>
</defs>
<g data-name="Wave">
<use xlink:href="#h-wave" fill="url(#h-e)"></use>
<use xlink:href="#h-wave" fill="url(#h-g)"></use>
<use xlink:href="#h-wave" fill="url(#h-d)"></use>
<use xlink:href="#h-wave" fill="url(#h-h)"></use>
<use class="bk1" xlink:href="#h-wave" fill="#19427A"></use>
</g>
<g data-name="Line" mask="url(#h-mask)">
<path
d="M2520.33 326.2c1.06-.84 3.08-1.73 3.83-1a7.31 7.31 0 0 1 1.63 3.73l-3.82 1.95z"
fill="#c9f5f2"
></path>
<path
d="M2521.69 331.54l-2-5.51.28-.23c1-.77 3.37-2 4.48-1a7.73 7.73 0 0 1 1.79 4.1v.31zm-.77-5.16l1.33 3.75 3-1.53a7.22 7.22 0 0 0-1.44-3.07c-.37-.35-1.81.08-2.89.85z"
fill="#c9f5f2"
></path>
<path
d="M2524.5 327.54c1.25-.72 2.64 3.43-1.09 5.59l-2.15-3.72z"
fill="#c9f5f2"
></path>
<path
d="M2524.5 327.54c1.25-.72 2.64 3.43-1.09 5.59l-2.15-3.72z"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></path>
<circle cx="2514.57" cy="331.43" r="8.48" fill="#c9f5f2"></circle>
<circle
cx="2514.57"
cy="331.43"
r="8.48"
transform="rotate(-37.94 2514.68261 331.414419)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></circle>
<path
d="M2523 330.18c1.39 4 2.74 9.76-1.91 12.45-5 2.91-9-1.34-11.74-4.54z"
fill="#c9f5f2"
></path>
<path
d="M2523 330.18c1.39 4 2.74 9.76-1.91 12.45-5 2.91-9-1.34-11.74-4.54z"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></path>
<circle cx="2514.21" cy="331.07" r="5.37" fill="#00aea0"></circle>
<circle
cx="2514.21"
cy="331.07"
r="5.37"
transform="rotate(-88.83 2514.191311 331.083234)"
fill="none"
stroke="#00aea0"
stroke-miterlimit="10"
></circle>
<path
d="M2508.22 369.07l-60.81 35.22a3.79 3.79 0 0 1-5.18-1.38L2419 362.72l67.38-39 23.28 40.19a3.8 3.8 0 0 1-1.44 5.16z"
fill="#fff"
></path>
<path
d="M2492.71 377.2c-3.5 2-21.2 12.19-40.54 23.41l-3.65 2.12-.91.53c-.3.18-.63.37-.86.48a3.07 3.07 0 0 1-1.64.24 2.91 2.91 0 0 1-1.51-.66 4.54 4.54 0 0 1-1.08-1.48c-.71-1.22-1.42-2.43-2.12-3.65l-8.19-14.06-12.39-21.13.14-.09c3.52-2.07 7.07-4.26 10.54-6.23 12-6.8 23.88-13.54 35.68-20.63 1.79-1 4.82-2.72 8.45-4.82l11.49-6.69 11.22 19.11 9.84 16.86 1.93 3.24a3.66 3.66 0 0 1 .55 3.26 5.87 5.87 0 0 1-1.35 2.08c-.08.13 0 .18.17.11a2.44 2.44 0 0 0 1-.71 4.12 4.12 0 0 0 1.1-2.51 4 4 0 0 0-.17-1.53 5.21 5.21 0 0 0-.3-.74l-.34-.62c-1.46-2.62-3-5.34-4.58-8l-18.64-32.29-56 32.32-12.75 7.37 14.35 24.77c1.75 3 3.94 6.75 6.23 10.69l1.74 3 .87 1.5.44.75a5.54 5.54 0 0 0 .57.82 4.5 4.5 0 0 0 5.54 1.07c.54-.3 1-.56 1.45-.84l13.52-7.87 22.77-13.15c6.6-3.86 13.17-7.79 19.59-11.66a19.63 19.63 0 0 0 3.29-2.41c.11-.13-2.68 1.29-6 3.05s-7.27 3.79-9.45 4.99z"
fill="#fff"
></path>
<rect
x="2435.37"
y="372.79"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2438.336644 375.83047)"
fill="#c9f5f2"
></rect>
<rect
x="2435.37"
y="372.79"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2438.313036 375.844077)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></rect>
<rect
x="2444.44"
y="367.54"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2447.388615 370.581281)"
fill="#c9f5f2"
></rect>
<path
d="M2449.14 372.27c-.18.07-.67.33-1.34.71l-1.08.61a.06.06 0 0 1-.06 0l-.09-.14c-.53-.88-1.07-1.78-1.56-2.58l-.63-1a.23.23 0 0 1 0-.23v-.08l.22-.17a2.32 2.32 0 0 1 .46-.31c.56-.26 1.13-.52 1.67-.81a8 8 0 0 0 .8-.47l.39-.26.18-.14.07-.07a.5.5 0 0 1 .27.14l.65 1 1.05 1.57.46.74.19.28a.5.5 0 0 1 .12.31.93.93 0 0 1 0 .43c-.06.16 0 .58.31.54a.86.86 0 0 0 .6-.44 1.37 1.37 0 0 0-.07-1.33l-1.1-2-.55-1-.28-.49-.14-.25a1.7 1.7 0 0 0-.3-.39 1.59 1.59 0 0 0-1.9-.22l-1 .55-2 1.11-.84.47a1.69 1.69 0 0 0-.79 1.52 1.71 1.71 0 0 0 .25.79l.24.41.48.81 1.24 2 .31.5a1.6 1.6 0 0 0 .6.52 1.89 1.89 0 0 0 .51.16h.2a1.57 1.57 0 0 0 .52-.08 1.22 1.22 0 0 0 .24-.1l.15-.08.52-.28c.35-.18.69-.38 1-.59a13.31 13.31 0 0 0 1.64-1.27.62.62 0 0 0 .1-.55 4.14 4.14 0 0 0-1.71.16z"
fill="#c9f5f2"
></path>
<rect
x="2453.51"
y="362.29"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2456.459195 365.337093)"
fill="#c9f5f2"
></rect>
<rect
x="2453.51"
y="362.29"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2456.482803 365.323485)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></rect>
<rect
x="2462.58"
y="357.03"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2465.534775 360.074297)"
fill="#c9f5f2"
></rect>
<rect
x="2462.58"
y="357.03"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2465.516166 360.069297)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></rect>
<rect
x="2470.61"
y="347.92"
width="21.48"
height="6.07"
rx=".88"
ry=".88"
transform="matrix(.87 -.5 .5 .87 158.25 1290.9)"
fill="#c9f5f2"
></rect>
<rect
x="2470.61"
y="347.92"
width="21.48"
height="6.07"
rx=".88"
ry=".88"
transform="matrix(.87 -.5 .5 .87 158.25 1290.9)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></rect>
<rect
x="2436.22"
y="358.88"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2439.178443 361.930807)"
fill="#c9f5f2"
></rect>
<rect
x="2436.22"
y="358.88"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2439.159835 361.925807)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></rect>
<rect
x="2445.29"
y="353.62"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2448.235415 356.66301)"
fill="#c9f5f2"
></rect>
<rect
x="2445.29"
y="353.62"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2448.254023 356.66801)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></rect>
<rect
x="2427.19"
y="364.11"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2430.15508 367.147778)"
fill="#c9f5f2"
></rect>
<rect
x="2427.19"
y="364.11"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2430.131472 367.161386)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></rect>
<rect
x="2454.35"
y="348.37"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2457.305994 351.418823)"
fill="#c9f5f2"
></rect>
<rect
x="2454.35"
y="348.37"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2457.305994 351.418823)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></rect>
<rect
x="2463.42"
y="343.12"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2466.376574 346.174635)"
fill="#c9f5f2"
></rect>
<rect
x="2463.42"
y="343.12"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2466.357966 346.169635)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></rect>
<rect
x="2455.85"
y="368.26"
width="28"
height="9.33"
rx=".88"
ry=".88"
transform="rotate(-30.08 2469.763962 372.922358)"
fill="#c9f5f2"
></rect>
<rect
x="2455.85"
y="368.26"
width="28"
height="9.33"
rx=".88"
ry=".88"
transform="rotate(-30.08 2469.763962 372.922358)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></rect>
<rect
x="2472.49"
y="337.87"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2475.452154 340.911839)"
fill="#c9f5f2"
></rect>
<rect
x="2472.49"
y="337.87"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2475.470762 340.916839)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></rect>
<rect
x="2481.56"
y="332.62"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2484.522733 335.66765)"
fill="#c9f5f2"
></rect>
<rect
x="2481.56"
y="332.62"
width="6.07"
height="6.07"
rx=".88"
ry=".88"
transform="rotate(-30.08 2484.504125 335.66265)"
fill="none"
stroke="#c9f5f2"
stroke-miterlimit="10"
></rect>
<path
d="M2536.6 393.86c2.69 4.64 2 21.42 1 26.38s-3.92 11.29-24.17 23-27.14 11-32 9.52-18.65-9.72-21.34-14.36z"
fill="#00506b"
></path>
<path
d="M2536.6 393.86c2.69 4.64 2 21.42 1 26.38s-3.92 11.29-24.17 23-27.14 11-32 9.52-18.65-9.72-21.34-14.36z"
fill="none"
stroke="#00506b"
stroke-miterlimit="10"
stroke-width="2"
></path>
<path
class="arm1"
d="M2525 352c-4.36.09-25.51-.86-27.45-1.63s-6.73-4.31-7.72-4.9-3.64-1.81-4.1-2.1a5.63 5.63 0 0 0-2.07-.23c-.64 0-1.8-.11-2 .64a3.36 3.36 0 0 0-.9-.27c-.63 0-1.31.72-1.64 1.26s-.5 1.22-.1 1.61a4.32 4.32 0 0 0-1.49-.19 3.36 3.36 0 0 0-2.2 2 2.33 2.33 0 0 0 .22 1.46 11.25 11.25 0 0 0-2-.33 1 1 0 0 0-.55 1.68c.61.59 4.82 2.36 5.29 2.58l1.05.47c-1.1.31-2 .8-2 1.54-.09 1.12 1.44.76 2.82 1.31s3.6 1.63 5.79 2.32a24.53 24.53 0 0 0 7 .87c1.13-.11 2.48-1.24 4.86-1.05s24.5 4.19 26.06 5.29l14.69 1.5a15.23 15.23 0 0 0-.79-6.58c-2.19-4.49-5.99-7.34-12.77-7.25zm-45.46-1.42c-.35-.06-1.8-.42-3.2-.74.43-.29 1-.8 1.3-.78a35.09 35.09 0 0 1 4.28 2c-.71-.06-1.92-.37-2.41-.44zm.31-4c.28-.13.48-.4.7-.36.4.09 2.41 1.23 3.3 1.64-.85-.17-2.59-.78-4.03-1.21z"
fill="#ff927c"
stroke="#ff927c"
stroke-miterlimit="10"
></path>
<path
d="M2525.17 365.27c-.18-.17-.51.2-.35.58 0 .07.16.24.1.21-.21-.09-.5-.2-.22.17-.35-.22-.06.36-.06.38v.2a.74.74 0 0 0 .2.18c.12.09.8.45 1.07.59l.4.22.1.06a.69.69 0 0 0 .33 0s.1 0 .1-.07-.07-.29 0-.26.14.07.12 0a3 3 0 0 0-.27-.48l-.52-.7c-.17-.16-.88-.99-1-1.08z"
></path>
<path
class="arm2"
d="M2453.23 364.5c-.4 1.07-1.25 5.35-1.58 6.28a53.88 53.88 0 0 0-1.92 5.42 8.46 8.46 0 0 1-2.19 3.56c-1.14 1.2-2.59 5.85-3.13 9.29-.45 2.82-1.14 16.76-1.57 21.12 2.47.46 9.95 3.62 14.24 4.94l-7.65 16c-7-1.86-17.45-8-19.92-13s.18-16.55 1.06-19.05 8.53-18.62 8.7-20.26-1.19-5.82-1.68-7.73a35.08 35.08 0 0 1-1-6.05 10.89 10.89 0 0 1 1.51-3.18 3.92 3.92 0 0 1 .61-.51 4.65 4.65 0 0 1 2.11-1.92c.43-.12.8.5.86 1.21a10.15 10.15 0 0 1 .11-1.51c.15-.48 1.69-1.25 2.13-1.39a1.88 1.88 0 0 1 1.6.8c.38.51-.24 1-.59 1.1s-.27.71-.17 1.5.45 4.52 1 3.81 1.28-3.76 1.69-5.16c.35-1.21 1.17-4.18 2-4.05s.9 2.32.51 4a47.56 47.56 0 0 0-.7 7.57 19.45 19.45 0 0 1 1.81-2.8c1.1-1.31 2.56-1.06 2.16.01z"
fill="#ff927c"
stroke="#ff927c"
stroke-miterlimit="10"
></path>
<path
d="M2540 386.39c-1.33 5-4 11.34-6.06 16.39s-10.45 18.94-28.38 29.32c-7 4-15.56 8.77-23 10.27s-17.44-2.58-20.06-3-27.09-14.63-29.4-15.53-2.19-3.75 0-8c2.33-4.47 7.93-7.79 10.43-7.85s19.24 4 21.78 3 5.5-2.39 11.4-4.28c10.67-3.41 26.93-16.54 26.93-16.54 2.12-1.24 6.62-8 8-8.44 1.18-.48 4.07-5.19 4.92-5.85a2.28 2.28 0 0 1 .58-.52c.83-.78 3.61-4.77 4.13-6.83a27.06 27.06 0 0 1 1-3.11c.79-2.69 3.27-4.61 6.48-6 6.27-2.74 9.68-1.15 10.85.29s1.7 21.67.4 26.68z"
fill="#00aea0"
></path>
<path
d="M2540 386.39c-1.33 5-4 11.34-6.06 16.39s-10.45 18.94-28.38 29.32c-7 4-15.56 8.77-23 10.27s-17.44-2.58-20.06-3-27.09-14.63-29.4-15.53-2.19-3.75 0-8c2.33-4.47 7.93-7.79 10.43-7.85s19.24 4 21.78 3 5.5-2.39 11.4-4.28c10.67-3.41 26.93-16.54 26.93-16.54 2.12-1.24 6.62-8 8-8.44 1.18-.48 4.07-5.19 4.92-5.85a2.28 2.28 0 0 1 .58-.52c.83-.78 3.61-4.77 4.13-6.83a27.06 27.06 0 0 1 1-3.11c.79-2.69 3.27-4.61 6.48-6 6.27-2.74 9.68-1.15 10.85.29s1.7 21.67.4 26.68z"
fill="none"
stroke="#00aea0"
stroke-miterlimit="10"
></path>
<path
d="M2501.54 382.17c-3.11-2.23-12.2-7.35-22.12-2.14-10.81 5.7-7.58 22.59-6.7 26z"
fill="#ff927c"
></path>
<path
d="M2501.54 382.17c-3.11-2.23-12.2-7.35-22.12-2.14-10.81 5.7-7.58 22.59-6.7 26z"
fill="none"
stroke="#ff927c"
stroke-miterlimit="10"
></path>
<path
d="M2482.54 379c-1-.46-3.72-2-5.36-1s-1.68 4.11-1.76 5.16z"
fill="#ff927c"
></path>
<path
d="M2482.54 379c-1-.46-3.72-2-5.36-1s-1.68 4.11-1.76 5.16z"
fill="none"
stroke="#ff927c"
stroke-miterlimit="10"
></path>
<path
d="M2474 400.84s-1.29-10.28 5.67-15.6 17-6.81 25.27-1.19 6.41 15.93 8.54 20.74 6.44 12.89 1.95 21.33-19.55 9.13-21.37 2.85-4.64-5.56-8.69-6.86-10.28-6.65-11.82-11.32c-2.23-6.79.45-9.95.45-9.95z"
fill="#002c51"
></path>
<path
d="M2474 400.84s-1.29-10.28 5.67-15.6 17-6.81 25.27-1.19 6.41 15.93 8.54 20.74 6.44 12.89 1.95 21.33-19.55 9.13-21.37 2.85-4.64-5.56-8.69-6.86-10.28-6.65-11.82-11.32c-2.23-6.79.45-9.95.45-9.95z"
fill="none"
stroke="#002c51"
stroke-miterlimit="10"
stroke-width="2"
></path>
<g clip-path="url(#h-i)">
<g class="extrashapes anim-hide">
<path
d="M2381.72 300.79a2.15 2.15 0 0 0-1.49-.55 2.1 2.1 0 0 0-1.45.67c-13.43 14.58-18.49 26.41-18.7 26.9a2.08 2.08 0 0 0 1.11 2.73 2.24 2.24 0 0 0 .8.16 2.07 2.07 0 0 0 1.08-.3 2.06 2.06 0 0 0 .84-1c.05-.11 4.94-11.58 17.93-25.69a2.08 2.08 0 0 0-.12-2.94zm40.91-30.21a2.07 2.07 0 0 0-2.81-.87 159.55 159.55 0 0 0-17.61 10.75 2.08 2.08 0 0 0 2.27 3.48l.13-.08a158.19 158.19 0 0 1 17.14-10.47 2 2 0 0 0 1-1.21 2.08 2.08 0 0 0-.12-1.6zm60.19-16.85c-.5 0-12.46-1-30.58 3.52a2.08 2.08 0 0 0 .51 4.09 2.2 2.2 0 0 0 .5-.06c17.47-4.36 29.09-3.42 29.21-3.41a2 2 0 0 0 1.25-.29 2.06 2.06 0 0 0 1-1.6 2.08 2.08 0 0 0-1.89-2.25z"
fill="#00d6c6"
></path>
<path
d="M2525.2 98.72c1.4-9.7 25.38-16.74 40.05 1.42s19.23 25.66 38.37 23.63c23-2.45 26.64 15.77 22.8 23.77l-19.89 27.3a109.08 109.08 0 0 0-37.1-19.32c-24.94-7.15-54.13-7.92-54.13-7.92z"
fill="url(#h-u)"
opacity=".25"
></path>
<path
d="M2572.94 152.76c-.62-.18-15.35-4.45-39-6.95a3.76 3.76 0 0 0-4.15 3.34 3.8 3.8 0 0 0 .82 2.77 3.71 3.71 0 0 0 2.53 1.37c23 2.45 37.53 6.65 37.68 6.7a3.77 3.77 0 0 0 2.12-7.23z"
fill="#00506b"
></path>
<path
fill="#53007a"
d="M2597.14 153.34l-.57-1.92 12.65-3.71-3.72-12.65 1.92-.56 4.28 14.56-14.56 4.28z"
opacity=".25"
></path>
<path
d="M2398.81 368.5a2.85 2.85 0 0 0-2.1-.64 2.86 2.86 0 1 0 3.12 2.57 2.86 2.86 0 0 0-1.02-1.93zm-19.45-5.5a1.68 1.68 0 1 0-1.07 3h.16a1.65 1.65 0 0 0 1.14-.6 1.71 1.71 0 0 0 .38-1.23 1.66 1.66 0 0 0-.61-1.17z"
fill="#c9f5f2"
></path>
<path
d="M2140.52 297.54c4.71 1.25 48.73 11 62.32 13.69 2.42.49 4.91.85 7.24 1.42 8.05 2 16 4 24.21 5.44 5 1.46 25.77 5.57 27.28 5.9 6.36 1.39 5.14 1.07 11.5 2.44 1.47.32 3 .56 4.43.77 1.68.24 2.31-.28 1-.82a25.5 25.5 0 0 0-3-1.06c-1.74-.47-3.59-.89-5.4-1.3l-59-13.37c-8.17-1.85-16.35-3.7-24.54-5.48s-24.56-5.24-24.56-5.27c-5.15-1.17-10.3-2.41-15.44-3.5-4.51-.94-9.05-1.76-13.5-2.53a4.84 4.84 0 0 0-2.54.17c-.23.14 7.09 2.72 10 3.5z"
opacity=".5"
fill="url(#h-v)"
></path>
<path
d="M2503.06 314.17c-17.69 10.51-34.47 20.28-50.34 29q-18.87 10.35-36.59 19.33l6.18-3.89 58.45-34z"
fill="url(#h-w)"
></path>
<path
fill="#53007a"
d="M2487.49 37.57l-.01-2-6.81.04-.04-6.31h-1l.04 6.32-6.81.03.01 2 6.81-.03.04 6.31 1-.01-.04-6.31 6.81-.04z"
></path>
<path
fill="#6f0084"
d="M2251.18 161.42l-4.5-4.43 4.42-4.5-1.43-1.4-4.42 4.5-4.5-4.42-1.4 1.43 4.5 4.42-4.42 4.5 1.42 1.4 4.43-4.5 4.5 4.42 1.4-1.42z"
></path>
<path
fill="#007585"
d="M2326.49 249.69l-3.66-3.24 3.25-3.66-1.5-1.33-3.25 3.66-3.65-3.25-1.33 1.5 3.66 3.24-3.25 3.66 1.49 1.33 3.25-3.66 3.66 3.25 1.33-1.5z"
></path>
<path
d="M2072.14 407c-7.81-9.35-2.11-18.67 3.85-26.67 4.19-5.62 2.29-9.56-.13-14.55-1.81-3.74-3.85-8-3.25-13.42.68-6.22 3.45-8.41 6.13-10.53 2.85-2.26 5.8-4.59 7.16-12.2 1.24-6.92-.41-10.64-2-14.23-1.9-4.26-3.71-8.29-.75-16.53l1.88.68c-2.68 7.47-1.12 11 .7 15 1.65 3.68 3.51 7.86 2.16 15.39-1.5 8.36-4.9 11.05-7.89 13.42-2.57 2-4.79 3.79-5.38 9.18-.54 4.88 1.29 8.67 3.06 12.33 2.5 5.15 4.85 10-.07 16.62-5.75 7.72-10.8 16-3.91 24.19z"
fill="#53007a"
opacity=".25"
></path>
<path
d="M2243.86 430.5c0-93.33 47.08-164.73 47.08-164.73l-33.7-17.09c-20.83-1.87-28.41 6.82-29.79 28.17-.94 14.54-28 10.54-35.32 27-8.21 18.6 8.76 28.62-10.93 49.56-17.88 19-38.5 63-8.08 92.37 0 0 21.46-3.63 35.37-6.78s35.37-8.5 35.37-8.5z"
fill="url(#h-a)"
opacity=".25"
></path>
<path
d="M2263.72 115.14c-12-29.85 16.91-40.06 28.48-38.52 12.72 1.69 19.26-3 18.31-17.55-1.26-19.21 12.95-31.29 33.45-32s21.61-2.52 29.94-18.07 26.3-21.83 43.18-26.06l12.64 88.09s-62.47 6.74-145.08 72.51z"
fill="url(#h-j)"
opacity=".25"
></path>
<path
d="M2362.45 225.2c-2.45-17.11 14.22-25.64 26.66-17.66 15.29 9.81 7.87-11.26 28.8-8.64l5.86 21.91s-30.8 13.11-46.88 25.28z"
fill="url(#h-k)"
opacity=".25"
></path>
<path
d="M2103.87 409c-5.76-6.84-3.84-18.36 4.47-26.79 6.87-7 3.17-13.2-.1-18.71l-.67-1.13c-3.43-5.89-.81-20.06 10.95-28 4-2.72 2.79-5.92 0-11.81-2.6-5.58-5.83-12.52-2.07-20.5l1.81.85c-3.36 7.14-.47 13.34 2.08 18.8s4.89 10.51-.74 14.32c-10.45 7.07-13.43 20.05-10.34 25.35.21.37.43.74.66 1.12 3.27 5.52 7.76 13.08-.19 21.14-7.58 7.69-9.46 18-4.37 24.09z"
fill="#53007a"
opacity=".25"
></path>
<path
fill="#6f0084"
d="M2175.48 180.56l-1.18-16.6 2-.14 1.03 14.6 14.61-1.03.14 1.99-16.6 1.18z"
></path>
<path
fill="#00d6c6"
d="M2335.91 391.2l-11.02-7.63 1.14-1.64 9.38 6.49 6.49-9.37 1.64 1.14-7.63 11.01z"
></path>
<path
fill="#53007a"
d="M2208.34 365.71l-8.58-12.52 1.65-1.13 7.45 10.87 10.87-7.45 1.13 1.65-12.52 8.58z"
opacity=".25"
></path>
<path
d="M2394.13 289.86a3 3 0 1 0-5.09 3.08 3 3 0 0 0 2.55 1.44 3 3 0 0 0 2.54-4.52z"
fill="#00d6c6"
></path>
<path
d="M2313.53 318.16a4.33 4.33 0 0 0-6-1.47 4.34 4.34 0 0 0 1.2 7.92 4.71 4.71 0 0 0 1 .13 4.34 4.34 0 0 0 3.7-6.58z"
fill="#007585"
></path>
<path
d="M2321.16 215.19c-.18-.21-.71-.19-1-.06a.79.79 0 0 0 .52-.5 1.33 1.33 0 0 0-.08-.88 3.26 3.26 0 0 0-.95-1 6.25 6.25 0 0 0-7.11-.06 6.42 6.42 0 0 0-2.37 2.94 6.1 6.1 0 0 0-.23 3.85 5.93 5.93 0 0 0 4.59 4.3 6.32 6.32 0 0 0 3.9-.54 6.54 6.54 0 0 0 1.39-.92 6.75 6.75 0 0 0 .5-.46 5.54 5.54 0 0 0 1.85-3.45 4.49 4.49 0 0 0-1.01-3.22zm-85.68 212.96a5.83 5.83 0 0 0-10 6 5.5 5.5 0 0 0 3.54 2.54 5.66 5.66 0 0 0 1.29.14 5.91 5.91 0 0 0 3.07-.86 5.73 5.73 0 0 0 2.1-7.82z"
fill="#00506b"
></path>
<path
d="M2307.89 100.76a5.52 5.52 0 0 0-3.54-2.53 6 6 0 0 0-7 4.24 5.5 5.5 0 0 0 .59 4.31 5.62 5.62 0 0 0 4.83 2.68 6 6 0 0 0 5.75-4.38 5.57 5.57 0 0 0-.63-4.32z"
fill="#6f0084"
opacity=".25"
></path>
<path
d="M2215 101.12a5 5 0 0 0-3.22-2.31 5.46 5.46 0 0 0-6.44 3.88 5 5 0 0 0 .54 3.93 5.11 5.11 0 0 0 4.4 2.44 5.44 5.44 0 0 0 2.81-.79 5.24 5.24 0 0 0 1.91-7.15z"
fill="#53007a"
></path>
<path
d="M2499.69 146.55a5.86 5.86 0 0 0-2.51-3.64 5.51 5.51 0 0 0-7.8 1.77 6 6 0 0 0 1.82 8 5.47 5.47 0 0 0 3.06.93 5.14 5.14 0 0 0 1.22-.14 5.46 5.46 0 0 0 3.52-2.56 5.9 5.9 0 0 0 .69-4.36zm2.93-44.8a5.94 5.94 0 0 0-2.51-3.64 5.52 5.52 0 0 0-7.81 1.78 5.86 5.86 0 0 0-.68 4.36 5.78 5.78 0 0 0 5.57 4.57 5.62 5.62 0 0 0 1.22-.13 5.75 5.75 0 0 0 4.21-6.94zm135.85 79.49a5.89 5.89 0 0 0-2.5-3.64 5.57 5.57 0 0 0-4.29-.79 5.83 5.83 0 0 0 2.59 11.37 5.56 5.56 0 0 0 3.52-2.57 5.9 5.9 0 0 0 .68-4.37z"