-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1020 lines (980 loc) · 79.2 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" dir="ltr">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-158755807-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-158755807-1', { 'anonymize_ip': true });
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Elysa Smigielski Portfolio Home</title>
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400|Open+Sans:600,700&display=swap"
rel="stylesheet">
<script src="https://kit.fontawesome.com/e2ccdfd65b.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="nav-container">
<nav class="nav-logo">
<ul>
<li><a href="index.html" class="logo a2">Elysa Smigielski</a></li>
</ul>
</nav>
<div class="navtoggle" id="myNavtoggle">
<nav class="nav-links">
<ul>
<li><a href="https://elysasmigielski.com#projects">Projects</a></li>
<li><a href="about.html">About & Approach</a></li>
<li><a href="#contact" onclick="menuContactToggle()">Contact</a></li>
<li><a href="javascript:void(0);" class="icon" onclick="menuToggle()"><i class="fas fa-bars"></i></a></li>
</ul>
</nav>
</div>
</div>
</header>
<main>
<div id="hero">
<div class="container">
<div class="row debug-outline">
<div class="col-lg-3 col-md-3">
<p></p>
</div>
<div class="col-lg-3 col-md-3 col-sm-2 col-xs-2 debug-outline">
<div class="center">
<img src="img/elysa/elysa.jpg" class="img">
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-2 col-xs-2 debug-outline">
<div class="inline">
<h1>Elysa <br> Smigielski</h1>
</div>
</div>
<div class="col-lg-3 col-md-3">
<p></p>
</div>
</div>
<p>Content Strategist <br> Civic Tech <br> Inclusivity & Accessibility</p>
</div>
</div>
<div id="social">
<div class="container">
<div class="social">
<a href="https://www.linkedin.com/in/elysasmigielski/" target="_blank"> <svg class="svg2"
height="512" id="Layer_1" version="1.1" viewbox="0 0 512 512" width="512" xml:space="preserve"
xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs12" />
<g id="g5891">
<rect height="512" id="rect2987" rx="64" ry="64" width="512" x="0" y="5.6843419e-014" />
<g id="g9-1" transform="matrix(1.5537946,0,0,1.5537946,-140.87332,-132.64552)">
<rect height="166.021" id="rect11" style="fill:#ffffff" width="55.194" x="129.957" y="200.35699" />
<path
d="m 157.927,120.303 c -18.884,0 -31.222,12.415 -31.222,28.687 0,15.93 11.963,28.687 30.491,28.687 h 0.357 c 19.245,0 31.224,-12.757 31.224,-28.687 -0.357,-16.272 -11.978,-28.687 -30.85,-28.687 z"
id="path13-0" style="fill:#ffffff" />
<path
d="m 320.604,196.453 c -29.277,0 -42.391,16.101 -49.734,27.41 v -23.506 h -55.18 c 0.732,15.573 0,166.021 0,166.021 h 55.179 V 273.66 c 0,-4.963 0.357,-9.924 1.82,-13.471 3.982,-9.911 13.068,-20.178 28.313,-20.178 19.959,0 27.955,15.23 27.955,37.539 v 88.828 h 55.182 v -95.206 c 0,-50.996 -27.227,-74.719 -63.535,-74.719 z"
id="path15" style="fill:#ffffff" />
</g>
</g>
</svg></a>
<a href="https://github.com/elysa-ux" target="_blank"> <svg class="svg2"
height="1024" width="1024" viewbox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
<path
d="M512 0C229.25 0 0 229.25 0 512c0 226.25 146.688 418.125 350.156 485.812 25.594 4.688 34.938-11.125 34.938-24.625 0-12.188-0.469-52.562-0.719-95.312C242 908.812 211.906 817.5 211.906 817.5c-23.312-59.125-56.844-74.875-56.844-74.875-46.531-31.75 3.53-31.125 3.53-31.125 51.406 3.562 78.47 52.75 78.47 52.75 45.688 78.25 119.875 55.625 149 42.5 4.654-33 17.904-55.625 32.5-68.375C304.906 725.438 185.344 681.5 185.344 485.312c0-55.938 19.969-101.562 52.656-137.406-5.219-13-22.844-65.094 5.062-135.562 0 0 42.938-13.75 140.812 52.5 40.812-11.406 84.594-17.031 128.125-17.219 43.5 0.188 87.312 5.875 128.188 17.281 97.688-66.312 140.688-52.5 140.688-52.5 28 70.531 10.375 122.562 5.125 135.5 32.812 35.844 52.625 81.469 52.625 137.406 0 196.688-119.75 240-233.812 252.688 18.438 15.875 34.75 47 34.75 94.75 0 68.438-0.688 123.625-0.688 140.5 0 13.625 9.312 29.562 35.25 24.562C877.438 930 1024 738.125 1024 512 1024 229.25 794.75 0 512 0z" />
</svg></a>
<a href="https://medium.com/@elysasmigielski" target="_blank"> <svg class="svg2" height="100%"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;" version="1.1"
viewBox="0 0 512 512" width="100%" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"
xmlns:serif="http://www.serif.com/" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M256,0c141.29,0 256,114.71 256,256c0,141.29 -114.71,256 -256,256c-141.29,0 -256,-114.71 -256,-256c0,-141.29 114.71,-256 256,-256Zm149.439,390.919l0,-5.04l-23.389,-22.963c-2.065,-1.573 -3.089,-4.161 -2.661,-6.721l0,-168.719c-0.428,-2.561 0.596,-5.148 2.661,-6.722l23.95,-22.962l0,-5.041l-82.912,0l-59.105,147.438l-67.227,-147.438l-86.975,0l0,5.041l28.012,33.744c2.751,2.478 4.154,6.119 3.781,9.802l0,132.595c0.815,4.782 -0.692,9.669 -4.06,13.161l-31.514,38.224l0,5.04l89.356,0l0,-5.04l-31.513,-38.224c-3.394,-3.485 -4.995,-8.34 -4.342,-13.161l0,-114.673l78.433,171.098l9.103,0l67.367,-171.098l0,136.376c0,3.639 0,4.34 -2.382,6.719l-24.229,23.524l0,5.04l117.646,0Z" />
</svg>
</a>
<a href="https://twitter.com/elysa_smi" target="_blank"> <svg class="svg2" enable-background="new 0 0 48 48"
id="Layer_1" version="1.1" viewbox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<circle cx="24" cy="24" r="24" />
<g>
<g>
<path
d="M36.8,15.4c-0.9,0.5-2,0.8-3,0.9c1.1-0.7,1.9-1.8,2.3-3.1c-1,0.6-2.1,1.1-3.4,1.4c-1-1.1-2.3-1.8-3.8-1.8 c-2.9,0-5.3,2.5-5.3,5.7c0,0.4,0,0.9,0.1,1.3c-4.4-0.2-8.3-2.5-10.9-5.9c-0.5,0.8-0.7,1.8-0.7,2.9c0,2,0.9,3.7,2.3,4.7 c-0.9,0-1.7-0.3-2.4-0.7c0,0,0,0.1,0,0.1c0,2.7,1.8,5,4.2,5.6c-0.4,0.1-0.9,0.2-1.4,0.2c-0.3,0-0.7,0-1-0.1 c0.7,2.3,2.6,3.9,4.9,3.9c-1.8,1.5-4.1,2.4-6.5,2.4c-0.4,0-0.8,0-1.3-0.1c2.3,1.6,5.1,2.6,8.1,2.6c9.7,0,15-8.6,15-16.1 c0-0.2,0-0.5,0-0.7C35.2,17.6,36.1,16.6,36.8,15.4z"
fill="#FFFFFF" />
</g>
</g>
</svg></a>
<a href="mailto:[email protected]"> <svg class="svg2" enable-background="new 0 0 32 32" height="32px"
id="Layer_1" version="1.1" viewbox="0 0 32 32" width="32px" xml:space="preserve"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M28,5H4C1.791,5,0,6.792,0,9v13c0,2.209,1.791,4,4,4h24c2.209,0,4-1.791,4-4V9 C32,6.792,30.209,5,28,5z M2,10.25l6.999,5.25L2,20.75V10.25z M30,22c0,1.104-0.898,2-2,2H4c-1.103,0-2-0.896-2-2l7.832-5.875 l4.368,3.277c0.533,0.398,1.166,0.6,1.8,0.6c0.633,0,1.266-0.201,1.799-0.6l4.369-3.277L30,22L30,22z M30,20.75l-7-5.25l7-5.25 V20.75z M17.199,18.602c-0.349,0.262-0.763,0.4-1.199,0.4c-0.436,0-0.851-0.139-1.2-0.4L10.665,15.5l-0.833-0.625L2,9.001V9 c0-1.103,0.897-2,2-2h24c1.102,0,2,0.897,2,2L17.199,18.602z"
id="mail" />
</svg></a>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="center">
<a href="#projects">
<svg class="chevron" enable-background="new 0 0 100 100" id="Layer_1" version="1.1" viewbox="0 0 100 100"
xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<polygon points="23.1,34.1 51.5,61.7 80,34.1 81.5,35 51.5,64.1 21.5,35 23.1,34.1 " /></svg>
</a>
</div>
</div>
</div>
<div id="projects">
<div class="container">
<h2 class="h2-padding-top">Projects</h2>
<h2 class="padding-top"> </h2>
<!-- Start embed -->
<div id="retainable-rss-embed"
data-rss="https://elysasmigielski.medium.com/feed"
data-maxcols="2.5"
data-layout="slider"
data-poststyle="modal"
data-readmore=" "
data-buttonclass="btn btn-primary"
data-offset="-200"> </div>
<!-- End embed -->
<h2 class="padding-top"> </h2>
<div class="row debug-outline">
<div class="row-mobile project-margin">
<a href="civic.html">
<div class="col-sm-12 col-md-6 col-lg-6">
<div class="box col-sm-12 col-md-11 col-lg-11">
<div class="col-sm-2 col-md-6 col-lg-6 debug-outline">
<div class="center">
<img src="img/civic/site.png" class="img box">
</div>
</div>
<div class="col-sm-2 col-md-6 col-lg-6 debug-outline">
<div class="padding">
<h3>Code for Atlanta: Public Comment Transcription Project</h3>
<p>Providing the Qualitative Approach to an Automated Service</p>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="row-mobile project-margin">
<a href="methods.html">
<div class="col-sm-12 col-md-6 col-lg-6">
<div class="box col-sm-12 col-md-11 col-lg-11">
<div class="col-sm-2 col-md-6 col-lg-6 debug-outline">
<div class="center">
<img src="img/methods/cardsort.png" class="img box">
</div>
</div>
<div class="col-sm-2 col-md-6 col-lg-6 debug-outline">
<div class="padding">
<p>METHODS DEEP DIVES</p>
<h3>Introspection of Research Methods</h3>
<p>Focus: Best Practices for Qualitative Research</p>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
<div class="row debug-outline">
<div class="row-mobile project-margin">
<a href="community.html">
<div class="col-sm-12 col-md-6 col-lg-6">
<div class="box col-sm-12 col-md-11 col-lg-11">
<div class="col-sm-2 col-md-6 col-lg-6 debug-outline">
<div class="center">
<img src="img/community/meet2.png" class="img box">
</div>
</div>
<div class="col-sm-2 col-md-6 col-lg-6 debug-outline">
<div class="padding">
<h3>Surveys & Workshops for Community Research</h3>
<p>Focus: Participatory Methods and Inclusive Recruitment</p>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="row-mobile project-margin">
<a href="visuals.html">
<div class="box-up col-sm-12 col-md-6 col-lg-6">
<div class="box col-sm-12 col-md-11 col-lg-11">
<div class="col-sm-2 col-md-6 col-lg-6 debug-outline">
<div class="center">
<img src="img/community/map.png" class="img box">
</div>
</div>
<div class="col-sm-2 col-md-6 col-lg-6 debug-outline">
<div class="padding">
<h3>Visualizations and Document Design</h3>
<p>Tools: Adobe Suite, Sketch, & ArcGIS</p>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="center">
<a href="#blog">
<svg class="chevron" enable-background="new 0 0 100 100" id="Layer_1" version="1.1" viewbox="0 0 100 100"
xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<polygon points="23.1,34.1 51.5,61.7 80,34.1 81.5,35 51.5,64.1 21.5,35 23.1,34.1 " /></svg>
</a>
</div>
</div>
</div>
<div id="blog">
<div class="container">
<h2 class="h2-padding-top">Daily Idea Nugget</h2>
<div class="row debug-outline">
<div class="col-sm-12 col-md-6 col-lg-6 debug-outline">
<svg class="animation" version="1.1" id="layer_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 1417.32 1133.859"
enable-background="new 0 0 1417.32 1133.859" xml:space="preserve">
<path id="XMLID_41_" opacity="0.6" fill="#006A7C" d="M-970.892-370.863c-0.65-0.396-1.386-0.595-2.123-0.595
c-0.643,0-1.287,0.152-1.876,0.457l-34.516,17.858c-1.34,0.693-2.189,2.069-2.207,3.578c-0.018,1.509,0.797,2.905,2.119,3.63
l34.517,18.935c0.612,0.336,1.289,0.503,1.964,0.503c0.72,0,1.44-0.19,2.081-0.57c1.242-0.735,2.003-2.071,2.003-3.514v-36.793
C-968.931-368.8-969.674-370.122-970.892-370.863z M-973.015-330.581l-34.517-18.935l34.517-17.858V-330.581z" />
<path id="XMLID_32_" opacity="0.6" fill="#006A7C" d="M-1598.871-365.348c0.396,0.241,0.844,0.362,1.293,0.362
c0.391,0,0.783-0.092,1.142-0.278l21.015-10.872c0.816-0.422,1.333-1.26,1.344-2.178c0.011-0.919-0.485-1.768-1.29-2.21
l-21.015-11.528c-0.373-0.205-0.785-0.306-1.196-0.306c-0.439,0-0.877,0.116-1.267,0.347c-0.756,0.448-1.22,1.261-1.22,2.14v22.401
C-1600.065-366.605-1599.613-365.8-1598.871-365.348z M-1597.579-389.873l21.015,11.528l-21.015,10.872V-389.873z" />
<polygon fill="#177175"
points="-927.155,-729.436 -900.496,-741.626 -892.655,-724.029 -919.429,-712.099 " />
<g>
<radialgradient id="XMLID_6_" cx="718.58" cy="784.9136" r="642.8467"
gradienttransform="matrix(0.8823 0 0 1.5919 76.0629 -683.0785)" gradientunits="userSpaceOnUse">
<stop offset="0.1721" style="stop-color:#BCDDD7" />
<stop offset="1" style="stop-color:#88CAD6" />
</radialgradient>
<rect id="XMLID_88_" x="-21.313" y="-27.843" fill="url(#XMLID_6_)" width="1462.75" height="1188.481" />
<g opacity="0.4">
<path class="gear" fill="#FFFFFF" d="M1108.351,570.233l20.997,2.022l1.991-11.306l-20.49-5.443c0.378-3.154,0.651-6.333,0.832-9.531
l21.203-1.402l0.141-11.479l-21.224-2.078c-0.109-2.666-0.288-5.342-0.537-8.026l20.876-4.618l-1.595-11.368l-21.374,1.158
c-0.459-2.41-0.968-4.8-1.534-7.162l19.884-7.607l-3.251-11.01l-20.827,4.261c-0.843-2.442-1.744-4.853-2.701-7.231l18.448-10.445
l-4.857-10.402l-19.842,7.278c-1.422-2.728-2.922-5.403-4.495-8.024l16.446-13.148l-6.445-9.5l-18.29,10.25
c-1.922-2.592-3.921-5.119-5.994-7.576l13.982-15.488l-7.893-8.336l-16.221,12.927c-1.953-1.907-3.952-3.765-6.001-5.564
l11.399-17.298l-9.062-7.047l-13.954,15.091c-3.304-2.382-6.705-4.628-10.189-6.744l7.992-18.641l-10.165-5.335l-10.809,16.915
c-2.429-1.175-4.892-2.286-7.385-3.333l5.031-19.28l-10.847-3.758l-8.01,17.992c-3.074-0.958-6.181-1.828-9.324-2.594l1.87-19.413
l-11.306-1.991l-4.946,18.621c-3.362-0.484-6.755-0.85-10.17-1.11l-1.258-19.032l-11.479-0.141l-1.836,18.757
c-2.893,0.055-5.797,0.19-8.712,0.41l-4.051-18.31l-11.368,1.595l1.001,18.484c-2.665,0.453-5.303,0.973-7.912,1.556
l-6.822-17.022l-10.516,3.105l2.867,17.895c-2.606,0.856-5.177,1.779-7.713,2.764l-9.063-15.434l-9.935,4.639l5.377,16.865
c-2.932,1.482-5.808,3.049-8.62,4.706l-11.117-13.464l-9.074,6.156l7.802,15.441c-2.811,2.046-5.542,4.185-8.198,6.408
l-12.847-11.234l-7.962,7.539l9.973,13.681c-2.071,2.1-4.087,4.251-6.032,6.462l-14.13-8.994l-6.731,8.656l11.709,11.797
c-2.577,3.56-4.995,7.235-7.262,11.003l-15.183-6.227l-5.096,9.709l13.354,9.364c-1.275,2.658-2.48,5.352-3.602,8.085
l-15.687-3.83l-3.59,10.361l14.397,7.165c-1.008,3.313-1.902,6.669-2.686,10.062l-15.893-1.278l-1.902,10.799l15.202,4.745
c-0.478,3.593-0.832,7.217-1.055,10.868l-15.757,1.292l-0.135,10.964l15.685,2.218c0.102,3.063,0.308,6.14,0.596,9.227
l-15.308,3.641l1.524,10.859l15.785-0.177c0.541,2.879,1.166,5.722,1.858,8.533l-14.674,5.882l3.105,10.516l15.682-2.513
c0.991,2.842,2.07,5.637,3.217,8.392l-13.673,8.029l4.639,9.935l15.228-4.855c1.639,3.079,3.375,6.091,5.208,9.032l-12.33,10.181
l6.156,9.074l14.443-7.298c2.19,2.867,4.477,5.65,6.854,8.347l-10.684,12.217l7.539,7.962l13.302-9.697
c2.204,2.069,4.463,4.077,6.781,6.012l-8.814,13.846l8.656,6.731l11.828-11.739c3.573,2.449,7.253,4.741,11.022,6.884
l-6.401,15.607l9.709,5.096l9.842-14.035c2.586,1.16,5.204,2.254,7.857,3.271l-4.077,16.7l10.361,3.59l7.792-15.657
c3.155,0.872,6.346,1.641,9.568,2.313l-1.409,17.524l10.799,1.902l5.337-17.099c3.342,0.362,6.707,0.625,10.096,0.766
l1.473,17.966l10.964,0.135l2.576-18.211c2.782-0.156,5.574-0.386,8.374-0.696l4.259,17.906l10.859-1.524l-0.21-18.765
c2.561-0.536,5.094-1.135,7.6-1.793l6.727,17.583l11.01-3.251l-3.826-18.703c2.63-0.965,5.224-1.994,7.777-3.092l9.464,16.716
l10.401-4.857l-6.707-18.285c2.842-1.56,5.626-3.204,8.347-4.931l12.251,15.325l9.5-6.445l-9.721-17.347
c2.633-2.049,5.194-4.178,7.68-6.386l14.88,13.433l8.335-7.893l-12.648-15.872c1.902-2.047,3.748-4.143,5.536-6.288l17.02,11.216
l7.047-9.062l-15.129-13.988c2.263-3.314,4.392-6.72,6.393-10.203l19.048,8.166l5.335-10.165l-17.601-11.248
c1.074-2.372,2.088-4.774,3.042-7.203l20.258,5.286l3.758-10.847l-19.244-8.568
C1106.928,576.21,1107.689,573.238,1108.351,570.233z M986.944,652.818l-12.651-78.753l-7.443,1.196
c14.388-2.312,25.664-12.2,30.435-24.936l79.508,12.876C1066.808,606.79,1032.62,642.523,986.944,652.818z M859.148,599.045
l71.093-37.801c8.528,10.517,22.279,16.319,36.607,14.017l-6.337,1.018l12.663,78.823
C926.479,660.081,882.593,637.141,859.148,599.045z M976.398,534.109c1.398,8.7-4.522,16.887-13.223,18.284
s-16.887-4.522-18.284-13.223c-1.398-8.7,4.522-16.887,13.223-18.284C966.814,519.488,975,525.408,976.398,534.109z
M868.722,460.883l58.694,55.137c-4.798,7.724-6.949,17.141-5.393,26.824c0.341,2.125,0.855,4.18,1.512,6.159l-70.991,37.747
c-4.487-9.692-7.737-20.152-9.514-31.215C837.382,520.383,847.74,486.362,868.722,460.883z M1009.05,427.788l-37.793,71.202
c-5.307-1.5-11.014-1.904-16.817-0.972c-6.673,1.072-12.679,3.773-17.677,7.632l-58.555-55.006
c16.879-16.209,38.688-27.628,63.542-31.621C965.454,415.216,988.644,418.691,1009.05,427.788z M1079.099,549.435l-79.337-12.848
c-0.005-2.03-0.164-4.085-0.496-6.152c-1.696-10.559-7.475-19.443-15.462-25.312l37.642-70.918
c29.316,17.422,50.982,47.236,56.814,83.54C1079.985,528.484,1080.208,539.117,1079.099,549.435z" />
<path class="gear" fill="#FFFFFF" d="M585.325,724.368l13.108-6.111l-1.775-10.872l-14.37-1.626c-2.046-5.25-5.04-10.031-8.778-14.128
l4.943-13.579l-8.943-6.433l-11.313,9.013c-4.954-2.175-10.374-3.494-16.078-3.764l-6.124-13.134l-10.872,1.775l-1.627,14.379
c-5.235,2.035-10.004,5.012-14.095,8.73l-13.652-4.969l-6.433,8.943l9.04,11.346c-2.193,4.977-3.522,10.426-3.79,16.162
l-13.184,6.147l1.775,10.872l14.453,1.635c2.034,5.21,5.002,9.958,8.704,14.033l-4.98,13.682l8.943,6.433l11.372-9.061
c4.961,2.185,10.392,3.509,16.108,3.782l6.143,13.176l10.872-1.775l1.632-14.425c5.23-2.035,9.995-5.01,14.083-8.725l13.628,4.961
l6.433-8.943l-9.022-11.323C583.727,735.58,585.059,730.118,585.325,724.368z M568.208,730.706
c-4.66,15.621-21.101,24.506-36.722,19.845c-15.62-4.66-24.506-21.101-19.845-36.722c4.66-15.621,21.101-24.506,36.722-19.845
C563.983,698.645,572.868,715.086,568.208,730.706z" />
<path class="gear" fill="#FFFFFF" d="M841.677,784.587c0.1-4.52-0.085-9.083-0.574-13.668l20.026-10.576l-3.777-15.829l-22.643-0.393
c-1.8-4.753-3.92-9.314-6.322-13.671l14.117-17.368l-9.633-13.117l-20.806,8.275c-3.16-3.301-6.521-6.388-10.059-9.247
l6.542-21.429l-13.864-8.522l-16.166,15.513c-4.567-2.054-9.285-3.794-14.121-5.195l-2.299-22.271l-16.086-2.464l-8.856,20.554
c-4.52-0.1-9.084,0.084-13.669,0.574l-10.576-20.026l-15.829,3.777l-0.393,22.643c-4.753,1.8-9.314,3.921-13.671,6.322
l-17.368-14.117l-13.117,9.632l8.276,20.807c-3.301,3.16-6.388,6.521-9.247,10.059l-21.429-6.542l-8.522,13.864l15.513,16.166
c-2.054,4.567-3.794,9.285-5.195,14.121l-22.271,2.299l-2.464,16.086l20.554,8.856c-0.1,4.52,0.084,9.083,0.574,13.668
l-20.026,10.576l3.777,15.829l22.643,0.393c1.8,4.752,3.92,9.314,6.322,13.671l-14.117,17.368l9.632,13.117l20.807-8.276
c3.16,3.301,6.521,6.388,10.058,9.247l-6.542,21.429l13.864,8.522l16.166-15.513c4.567,2.054,9.284,3.794,14.121,5.195
l2.299,22.271l16.086,2.464l8.856-20.554c4.52,0.1,9.084-0.084,13.668-0.574l10.575,20.026l15.829-3.777l0.393-22.643
c4.753-1.8,9.314-3.92,13.671-6.322l17.368,14.117l13.117-9.632l-8.276-20.807c3.301-3.16,6.388-6.521,9.247-10.058l21.429,6.542
l8.522-13.864l-15.513-16.166c2.054-4.567,3.794-9.284,5.195-14.121l22.271-2.299l2.464-16.086L841.677,784.587z M807.946,803.993
c-12.067,40.445-54.636,63.451-95.081,51.384c-40.445-12.067-63.451-54.636-51.384-95.081
c12.067-40.445,54.636-63.451,95.081-51.384C797.007,720.978,820.013,763.547,807.946,803.993z" />
<path class="gear" fill="#FFFFFF" d="M1016.011,863.128c4.8-4.437,9.066-9.403,12.643-14.875l-8.653-14.958
c2.884-5.795,4.92-12.046,5.979-18.573l15.74-7.101c0.113-3.187,0.099-6.456-0.179-9.739c-0.258-3.302-0.749-6.508-1.386-9.679
l-16.7-4.425c-2.123-6.326-5.103-12.126-8.884-17.38l6.129-16.204c-4.45-4.741-9.437-9.017-14.878-12.567l-14.971,8.63
c-5.786-2.896-11.979-4.934-18.644-6.001l-7.016-15.778c-3.252-0.107-6.509-0.085-9.81,0.173c-3.263,0.289-6.55,0.794-9.636,1.423
l-4.49,16.69c-6.344,2.118-12.166,5.155-17.368,8.908l-16.232-6.069c-4.771,4.421-8.988,9.421-12.615,14.83l8.66,14.999
c-2.823,5.754-4.892,12.001-5.953,18.566l-15.755,7.086c-0.124,3.208-0.086,6.464,0.16,9.773c0.28,3.26,0.798,6.488,1.412,9.642
l16.687,4.47c2.114,6.24,5.187,12.059,8.904,17.332l-6.147,16.184c4.481,4.799,9.431,9.035,14.877,12.62l14.994-8.628
c5.743,2.83,12.004,4.897,18.59,5.985l7.121,15.736c3.191,0.133,6.494,0.085,9.782-0.157c3.297-0.308,6.472-0.759,9.683-1.434
l4.414-16.679c6.347-2.112,12.161-5.137,17.402-8.927L1016.011,863.128z M985.636,848.196
c-24.214,13.132-54.489,4.147-67.621-20.067s-4.148-54.489,20.067-67.621s54.489-4.148,67.621,20.067
S1009.85,835.065,985.636,848.196z" />
<g>
<path fill="#F9F9F9" d="M751.515,448.004c-0.422-6.85-1.279-13.728-2.601-20.601l28.95-18.535l-7.719-23.464l-34.3,2.275
c-3.326-6.96-7.11-13.591-11.295-19.877l19.152-28.059l-16.232-18.619l-30.422,15.155c-5.198-4.593-10.674-8.836-16.386-12.711
l7.179-33.243l-22.05-11.133l-22.487,25.514c-7.168-2.528-14.524-4.561-22.017-6.068l-6.301-33.395l-24.644-1.688l-10.79,32.212
c-6.85,0.421-13.729,1.279-20.601,2.601l-18.535-28.951l-23.464,7.72l2.275,34.3c-6.96,3.325-13.591,7.11-19.877,11.295
L471.29,303.58l-18.619,16.232l15.155,30.423c-4.593,5.198-8.836,10.673-12.711,16.387l-33.243-7.179l-11.133,22.051
l25.514,22.486c-2.528,7.168-4.561,14.524-6.068,22.017l-33.395,6.301l-1.688,24.643l32.211,10.79
c0.422,6.85,1.279,13.729,2.601,20.602l-28.95,18.534l7.72,23.464l34.3-2.275c3.325,6.96,7.11,13.591,11.295,19.877
l-19.152,28.06l16.232,18.619l30.422-15.155c5.198,4.593,10.674,8.836,16.386,12.711l-7.179,33.242l22.05,11.133l22.486-25.514
c7.168,2.528,14.524,4.562,22.017,6.068l6.3,33.395l24.644,1.688l10.79-32.212c6.85-0.421,13.729-1.279,20.602-2.6l18.535,28.95
l23.464-7.72l-2.275-34.299c6.96-3.326,13.591-7.111,19.877-11.295l28.059,19.152l18.619-16.232L711.003,565.5
c4.593-5.198,8.836-10.674,12.711-16.386l33.243,7.179l11.133-22.05l-25.514-22.486c2.528-7.169,4.561-14.524,6.068-22.017
l33.395-6.3l1.688-24.644L751.515,448.004z M660.292,516.508c-32.386,39.145-90.374,44.624-129.518,12.237
c-39.145-32.386-44.624-90.374-12.237-129.519c32.386-39.144,90.374-44.623,129.519-12.237
C687.2,419.376,692.678,477.363,660.292,516.508z" />
<path fill="#F9F9F9" d="M698.573,495.538c20.805-60.287-11.201-126.025-71.488-146.83
c-60.287-20.805-126.025,11.201-146.83,71.488c-20.805,60.287,11.201,126.025,71.488,146.83
C612.03,587.831,677.768,555.825,698.573,495.538z M674.23,487.137c-16.165,46.843-67.244,71.712-114.086,55.546
c-46.843-16.165-71.711-67.244-55.546-114.086c16.165-46.843,67.244-71.712,114.086-55.546
C665.527,389.216,690.396,440.295,674.23,487.137z" />
</g>
<g>
<path fill="#FFFFFF" d="M409.161,577.76l20.995-19.232l-9.767-19.365l-27.944,5.452c-6.949-8.646-15.4-15.852-24.844-21.333
l1.245-28.424l-20.599-6.786l-15.908,23.619c-10.589-1.153-21.547-0.421-32.418,2.447L280.65,493.1l-19.364,9.767l5.455,27.962
c-8.625,6.919-15.818,15.333-21.3,24.734l-28.575-1.252l-6.786,20.599l23.688,15.954c-1.173,10.643-0.442,21.661,2.448,32.591
l-21.118,19.345l9.767,19.364l28.107-5.483c6.903,8.58,15.286,15.738,24.65,21.199l-1.255,28.637l20.599,6.786l15.992-23.744
c10.609,1.166,21.59,0.44,32.484-2.432l19.333,21.106l19.364-9.767l-5.472-28.051c8.615-6.916,15.802-15.323,21.28-24.717
l28.526,1.25l6.786-20.599l-23.641-15.923C412.797,599.759,412.064,588.714,409.161,577.76z M348.807,600.284
c0.222,14.435-11.3,26.318-25.735,26.54c-14.435,0.222-26.317-11.3-26.54-25.735c-0.222-14.435,11.3-26.317,25.735-26.54
S348.585,585.848,348.807,600.284z" />
<path fill="#FFFFFF" d="M378.736,620.057c10.691-30.978-5.756-64.758-36.734-75.449c-30.978-10.691-64.758,5.756-75.449,36.734
c-10.691,30.978,5.756,64.758,36.734,75.449C334.266,667.482,368.045,651.036,378.736,620.057z M348.453,609.607
c-4.919,14.254-20.462,21.821-34.715,16.902c-14.254-4.919-21.821-20.461-16.902-34.715
c4.919-14.254,20.462-21.821,34.715-16.902C345.805,579.81,353.372,595.353,348.453,609.607z" />
</g>
</g>
<g id="XMLID_101_">
<g id="XMLID_423_">
<path id="XMLID_107_" fill="#3E9A9F" d="M958.891,204.138v11.838h2.559v-11.838c0-0.852-0.573-1.544-1.28-1.544
C959.464,202.594,958.891,203.285,958.891,204.138z" />
<path id="XMLID_426_" fill="#3E9A9F" d="M958.891,255.881c0,0.853,0.573,1.544,1.28,1.544c0.707,0,1.28-0.692,1.28-1.544v-11.126
h-2.559V255.881z" />
<path id="XMLID_425_" fill="#3E9A9F" d="M932.755,230.01c0,0.707,0.692,1.28,1.544,1.28h11.838v-2.559h-11.838
C933.446,228.73,932.755,229.303,932.755,230.01z" />
<path id="XMLID_424_" fill="#3E9A9F" d="M986.042,228.73h-11.126v2.559h11.126c0.853,0,1.544-0.572,1.544-1.28
C987.587,229.303,986.895,228.73,986.042,228.73z" />
</g>
<g id="XMLID_102_">
<path id="XMLID_106_" fill="#3E9A9F" d="M940.972,212.62l8.371,8.371l1.81-1.81l-8.371-8.371
c-0.603-0.603-1.497-0.687-1.997-0.187S940.369,212.018,940.972,212.62z" />
<path id="XMLID_105_" fill="#3E9A9F" d="M977.56,249.209c0.603,0.603,1.497,0.687,1.997,0.187c0.5-0.5,0.416-1.394-0.187-1.997
l-7.867-7.867l-1.81,1.81L977.56,249.209z" />
<path id="XMLID_104_" fill="#3E9A9F" d="M940.784,249.396c0.5,0.5,1.394,0.416,1.997-0.187l8.371-8.371l-1.81-1.81l-8.371,8.371
C940.369,248.002,940.285,248.896,940.784,249.396z" />
<path id="XMLID_103_" fill="#3E9A9F" d="M977.56,210.811l-7.867,7.867l1.81,1.81l7.867-7.867
c0.603-0.603,0.687-1.497,0.187-1.997C979.057,210.124,978.163,210.208,977.56,210.811z" />
</g>
</g>
<g id="XMLID_77_">
<g id="XMLID_83_">
<path id="XMLID_87_" fill="#3E9A9F" d="M388.634,466.687v9.785h2.115v-9.785c0-0.705-0.473-1.276-1.058-1.276
S388.634,465.982,388.634,466.687z" />
<path id="XMLID_86_" fill="#3E9A9F" d="M388.634,509.456c0,0.705,0.473,1.276,1.058,1.276s1.058-0.572,1.058-1.276v-9.196h-2.115
V509.456z" />
<path id="XMLID_85_" fill="#3E9A9F" d="M367.031,488.072c0,0.584,0.572,1.058,1.276,1.058h9.785v-2.115h-9.785
C367.602,487.014,367.031,487.487,367.031,488.072z" />
<path id="XMLID_84_" fill="#3E9A9F" d="M411.076,487.014h-9.196v2.115h9.196c0.705,0,1.276-0.473,1.276-1.058
C412.353,487.487,411.781,487.014,411.076,487.014z" />
</g>
<g id="XMLID_78_">
<path id="XMLID_82_" fill="#3E9A9F" d="M373.823,473.698l6.919,6.919l1.496-1.496l-6.919-6.919
c-0.498-0.498-1.237-0.568-1.65-0.155S373.324,473.2,373.823,473.698z" />
<path id="XMLID_81_" fill="#3E9A9F" d="M404.065,503.941c0.498,0.498,1.237,0.568,1.65,0.155c0.413-0.413,0.344-1.152-0.155-1.65
l-6.503-6.503l-1.496,1.496L404.065,503.941z" />
<path id="XMLID_80_" fill="#3E9A9F" d="M373.668,504.095c0.413,0.413,1.152,0.344,1.65-0.155l6.919-6.919l-1.496-1.496
l-6.919,6.919C373.324,502.943,373.255,503.682,373.668,504.095z" />
<path id="XMLID_79_" fill="#3E9A9F" d="M404.065,472.203l-6.503,6.503l1.496,1.496l6.503-6.503
c0.498-0.498,0.568-1.237,0.155-1.65C405.302,471.635,404.563,471.704,404.065,472.203z" />
</g>
</g>
<g id="XMLID_4540_" enable-background="new ">
<path id="XMLID_4541_" fill="#FCFCFD" d="M1215.213,366.371h-6.344v-4.167h6.344v-7.373h3.893v7.373h6.344v4.167h-6.344v7.373
h-3.893V366.371z" />
</g>
<g id="XMLID_65_" enable-background="new ">
<path id="XMLID_69_" fill="#FCFCFD" d="M155.942,540.217h-6.344v-4.167h6.344v-7.373h3.893v7.373h6.344v4.167h-6.344v7.373h-3.893
V540.217z" />
</g>
<g id="XMLID_4543_">
<g>
<path id="XMLID_20_" fill="#E47D3A" d="M669.249,555.063h-7.507v-4.932h7.507v-8.726h4.607v8.726h7.508v4.932h-7.508v8.726
h-4.607V555.063z" />
</g>
</g>
<g id="XMLID_3_" enable-background="new ">
<path id="XMLID_27_" fill="#FCFCFD" d="M1200.972,517.987h-10.031v-6.59h10.031v-11.659h6.156v11.659h10.031v6.59h-10.031v11.659
h-6.156V517.987z" />
</g>
<g id="XMLID_54_" enable-background="new ">
<path id="XMLID_55_" fill="#FCFCFD" d="M277.531,367.582H267.5v-6.59h10.031v-11.659h6.155v11.659h10.031v6.59h-10.031v11.659
h-6.155V367.582z" />
</g>
<g id="XMLID_1874_">
<g id="XMLID_1884_">
<path id="XMLID_1890_" fill="#F3F7F8" d="M1291.3,717.886c0.29-1.46,0.403-3.002,0.334-4.583c-0.01-0.254-0.168-0.482-0.4-0.584
l-3.29-1.439l-0.044-0.208c-0.243-1.139-0.619-2.257-1.118-3.325l-0.09-0.193l1.763-3.115c0.126-0.223,0.115-0.493-0.03-0.705
c-0.464-0.682-0.923-1.28-1.4-1.827c-0.459-0.531-0.987-1.067-1.616-1.638c-0.189-0.174-0.454-0.222-0.693-0.128l-3.332,1.303
l-0.178-0.116c-0.982-0.637-2.038-1.164-3.139-1.565l-0.199-0.073l-0.963-3.448c-0.068-0.245-0.265-0.428-0.514-0.477
c-1.486-0.292-3.034-0.398-4.599-0.321c-0.255,0.014-0.478,0.167-0.58,0.401l-1.429,3.276l-0.208,0.044
c-1.149,0.243-2.271,0.619-3.335,1.116l-0.193,0.09l-3.108-1.761c-0.22-0.125-0.49-0.114-0.703,0.027
c-0.613,0.412-1.214,0.868-1.835,1.394c-0.588,0.519-1.139,1.065-1.648,1.631c-0.17,0.189-0.218,0.454-0.126,0.69l1.301,3.335
l-0.115,0.178c-0.634,0.98-1.162,2.038-1.568,3.144l-0.073,0.199l-3.453,0.973c-0.244,0.069-0.426,0.267-0.475,0.516
c-0.287,1.479-0.396,3.023-0.325,4.591c0.012,0.256,0.165,0.48,0.401,0.583l3.292,1.434l0.045,0.207
c0.256,1.167,0.627,2.284,1.106,3.32l0.088,0.192l-1.755,3.122c-0.124,0.221-0.111,0.499,0.033,0.707
c0.498,0.72,0.941,1.302,1.397,1.831c0.487,0.552,1.032,1.103,1.617,1.632c0.189,0.173,0.456,0.22,0.694,0.127l3.33-1.308
l0.178,0.116c0.97,0.631,2.024,1.157,3.134,1.566l0.198,0.073l0.969,3.459c0.068,0.244,0.273,0.431,0.521,0.477
c1.532,0.284,3.077,0.392,4.579,0.316c0.255-0.013,0.476-0.165,0.579-0.397l1.452-3.286l0.207-0.044
c1.152-0.244,2.273-0.619,3.332-1.114l0.192-0.09l3.124,1.751c0.223,0.126,0.493,0.114,0.702-0.029
c0.652-0.443,1.27-0.912,1.835-1.396c0.532-0.465,1.069-0.996,1.64-1.62c0.171-0.187,0.221-0.461,0.128-0.698l-1.32-3.321
l0.117-0.18c0.642-0.985,1.171-2.046,1.572-3.152l0.072-0.2l3.447-0.967C1291.069,718.331,1291.251,718.134,1291.3,717.886z
M1290.107,716.961l-0.041,0.263l-3.391,0.953c-0.217,0.061-0.387,0.224-0.456,0.439c-0.436,1.361-1.075,2.644-1.9,3.811
c-0.131,0.186-0.159,0.422-0.076,0.633l1.298,3.265l-0.186,0.192c-0.37,0.381-0.717,0.712-1.059,1.012
c-0.369,0.316-0.757,0.621-1.156,0.911l-0.214,0.156l-3.071-1.722c-0.196-0.111-0.432-0.115-0.633-0.011
c-1.266,0.649-2.62,1.102-4.025,1.345c-0.221,0.039-0.407,0.184-0.497,0.389l-1.428,3.231l-0.266,0.002
c-0.06,0.001-0.12,0.001-0.181,0.001c-0.902,0-1.822-0.069-2.738-0.205l-0.265-0.039l-0.951-3.396
c-0.06-0.215-0.223-0.385-0.435-0.455c-1.371-0.451-2.648-1.089-3.795-1.897c-0.184-0.131-0.42-0.159-0.63-0.077l-3.274,1.286
l-0.191-0.185c-0.353-0.341-0.693-0.695-1.01-1.055c-0.302-0.35-0.598-0.728-0.911-1.156l-0.156-0.214l1.723-3.064
c0.11-0.195,0.115-0.431,0.013-0.631c-0.625-1.23-1.077-2.586-1.344-4.029c-0.04-0.219-0.186-0.402-0.39-0.49l-3.231-1.409
l-0.002-0.268c-0.009-0.995,0.06-1.979,0.205-2.926l0.041-0.262l3.393-0.957c0.215-0.061,0.385-0.224,0.455-0.436
c0.445-1.362,1.084-2.642,1.897-3.805c0.128-0.184,0.156-0.417,0.075-0.627l-1.278-3.278l0.184-0.191
c0.338-0.35,0.695-0.69,1.06-1.013c0.397-0.337,0.778-0.638,1.158-0.914l0.215-0.157l3.058,1.731
c0.197,0.113,0.436,0.116,0.635,0.014c1.265-0.652,2.622-1.105,4.033-1.349c0.222-0.038,0.409-0.185,0.499-0.392l1.406-3.222
l0.266-0.004c0.982-0.021,1.971,0.052,2.928,0.202l0.263,0.041l0.947,3.391c0.061,0.216,0.224,0.387,0.438,0.456
c1.357,0.438,2.634,1.076,3.798,1.893c0.184,0.129,0.419,0.159,0.628,0.076l3.275-1.281l0.191,0.185
c0.378,0.366,0.709,0.714,1.011,1.063c0.31,0.354,0.609,0.73,0.911,1.144l0.157,0.216l-1.732,3.06
c-0.111,0.196-0.115,0.433-0.013,0.634c0.655,1.28,1.11,2.634,1.353,4.025c0.038,0.221,0.184,0.408,0.391,0.498l3.23,1.414
l0.002,0.268C1290.324,715.041,1290.254,716.023,1290.107,716.961z" />
<path id="XMLID_1885_" fill="#F3F7F8"
d="M1272.81,733.359c-1.215,0-2.448-0.115-3.677-0.343c-0.32-0.059-0.583-0.3-0.671-0.614
l-0.943-3.364l-0.106-0.039c-1.125-0.415-2.193-0.949-3.173-1.586l-0.095-0.062l-3.238,1.272
c-0.307,0.121-0.649,0.058-0.893-0.164c-0.585-0.528-1.134-1.082-1.631-1.646c-0.462-0.537-0.91-1.124-1.411-1.849
c-0.186-0.268-0.202-0.626-0.042-0.91l1.707-3.037l-0.047-0.103c-0.484-1.046-0.86-2.176-1.119-3.359l-0.024-0.111l-3.202-1.395
c-0.304-0.133-0.502-0.42-0.516-0.75c-0.072-1.585,0.038-3.145,0.328-4.636c0.064-0.322,0.298-0.576,0.612-0.664l3.358-0.946
l0.039-0.106c0.41-1.119,0.944-2.189,1.587-3.182l0.062-0.095l-1.266-3.244c-0.119-0.305-0.057-0.645,0.162-0.888
c0.516-0.574,1.076-1.128,1.664-1.647c0.625-0.531,1.231-0.991,1.854-1.41c0.276-0.182,0.622-0.196,0.905-0.034l3.022,1.712
l0.104-0.048c1.078-0.504,2.214-0.884,3.377-1.13l0.112-0.024l1.39-3.186c0.132-0.301,0.418-0.498,0.746-0.516
c1.591-0.078,3.153,0.03,4.646,0.324c0.321,0.063,0.574,0.298,0.662,0.614l0.936,3.353l0.107,0.039
c1.115,0.406,2.184,0.94,3.178,1.585l0.096,0.062l3.24-1.267c0.307-0.121,0.649-0.057,0.892,0.166
c0.633,0.575,1.166,1.116,1.631,1.654c0.482,0.551,0.945,1.155,1.414,1.844c0.186,0.272,0.201,0.62,0.039,0.907l-1.714,3.029
l0.048,0.103c0.505,1.081,0.886,2.214,1.132,3.366l0.024,0.111l3.199,1.4c0.299,0.131,0.501,0.426,0.515,0.752
c0.069,1.596-0.045,3.154-0.338,4.628l0,0c-0.064,0.319-0.297,0.573-0.611,0.661l-3.352,0.941l-0.039,0.107
c-0.406,1.121-0.942,2.195-1.592,3.192l-0.063,0.096l1.284,3.229c0.12,0.305,0.056,0.657-0.165,0.898
c-0.573,0.627-1.115,1.162-1.655,1.635c-0.57,0.489-1.193,0.963-1.854,1.411c-0.271,0.185-0.618,0.199-0.904,0.037l-3.037-1.703
l-0.103,0.048c-1.07,0.501-2.205,0.881-3.373,1.128l-0.111,0.023l-1.412,3.197c-0.132,0.299-0.418,0.494-0.745,0.511
C1273.442,733.351,1273.126,733.359,1272.81,733.359z M1264.188,726.921l0.261,0.17c0.957,0.622,1.998,1.142,3.096,1.548
l0.29,0.106l0.996,3.553c0.049,0.174,0.194,0.308,0.371,0.34c1.521,0.283,3.048,0.389,4.535,0.314
c0.182-0.009,0.34-0.118,0.414-0.284l1.492-3.376l0.303-0.064c1.139-0.241,2.246-0.612,3.29-1.1l0.282-0.131l3.209,1.799
c0.159,0.091,0.351,0.082,0.5-0.02c0.649-0.44,1.261-0.906,1.819-1.383c0.528-0.462,1.059-0.987,1.623-1.603
c0.122-0.133,0.158-0.329,0.091-0.498l-1.357-3.413l0.171-0.263c0.634-0.973,1.156-2.02,1.552-3.113l0.106-0.293l3.542-0.994
c0.173-0.049,0.303-0.189,0.339-0.366c0.287-1.445,0.398-2.971,0.331-4.537c-0.007-0.181-0.119-0.344-0.285-0.416l-3.381-1.478
l-0.064-0.304c-0.24-1.124-0.612-2.229-1.104-3.284l-0.132-0.283l1.811-3.201c0.09-0.159,0.082-0.352-0.021-0.502
c-0.46-0.677-0.914-1.268-1.386-1.808c-0.456-0.527-0.979-1.058-1.6-1.623c-0.137-0.126-0.322-0.159-0.494-0.091l-3.424,1.339
l-0.261-0.17c-0.969-0.629-2.012-1.149-3.1-1.546l-0.292-0.106l-0.99-3.543c-0.049-0.175-0.189-0.306-0.367-0.341
c-1.463-0.288-2.995-0.394-4.553-0.317c-0.182,0.01-0.34,0.12-0.414,0.287l-1.469,3.366l-0.305,0.065
c-1.135,0.24-2.242,0.611-3.294,1.102l-0.283,0.132l-3.194-1.81c-0.157-0.089-0.349-0.081-0.503,0.02
c-0.61,0.41-1.204,0.862-1.816,1.381c-0.574,0.507-1.123,1.051-1.63,1.613c-0.122,0.135-0.156,0.324-0.09,0.492l1.337,3.427
l-0.168,0.26c-0.627,0.969-1.148,2.014-1.549,3.106l-0.106,0.291l-3.547,1c-0.174,0.049-0.304,0.19-0.339,0.368
c-0.284,1.461-0.392,2.99-0.321,4.545c0.009,0.183,0.118,0.342,0.287,0.416l3.382,1.473l0.066,0.303
c0.253,1.155,0.621,2.259,1.093,3.281l0.129,0.282l-1.803,3.207c-0.089,0.158-0.079,0.356,0.023,0.504
c0.493,0.714,0.933,1.29,1.385,1.814c0.487,0.552,1.026,1.096,1.6,1.615c0.135,0.123,0.325,0.157,0.495,0.091L1264.188,726.921z
M1272.823,732.022c-0.914,0-1.844-0.07-2.766-0.208l-0.388-0.056l-0.985-3.516c-0.043-0.154-0.159-0.275-0.31-0.325
c-1.389-0.457-2.683-1.103-3.846-1.922c-0.131-0.093-0.298-0.114-0.449-0.055l-3.389,1.33l-0.28-0.271
c-0.356-0.344-0.7-0.702-1.021-1.066c-0.306-0.356-0.607-0.738-0.922-1.171l-0.229-0.313l1.784-3.172
c0.078-0.139,0.082-0.308,0.01-0.45c-0.633-1.245-1.091-2.619-1.362-4.081c-0.029-0.156-0.133-0.286-0.278-0.349l-3.346-1.459
l-0.003-0.393c-0.009-1.006,0.061-2,0.208-2.956l0.059-0.384l3.512-0.991c0.153-0.043,0.274-0.16,0.325-0.311
c0.451-1.38,1.098-2.676,1.922-3.855c0.091-0.131,0.111-0.298,0.053-0.447l-1.323-3.392l0.269-0.279
c0.344-0.356,0.704-0.7,1.071-1.024c0.408-0.346,0.791-0.648,1.172-0.925l0.315-0.229l3.165,1.792
c0.14,0.08,0.308,0.084,0.452,0.01c1.283-0.661,2.658-1.121,4.088-1.368c0.159-0.027,0.292-0.132,0.356-0.279l1.455-3.335
l0.39-0.006c0.96-0.021,1.959,0.048,2.961,0.204l0.385,0.06l0.98,3.51c0.044,0.154,0.16,0.276,0.313,0.325
c1.375,0.445,2.67,1.09,3.849,1.919c0.132,0.093,0.3,0.114,0.447,0.055l3.391-1.327l0.279,0.271
c0.384,0.372,0.718,0.724,1.022,1.076c0.311,0.355,0.613,0.733,0.922,1.157l0.23,0.316l-1.793,3.168
c-0.079,0.139-0.082,0.308-0.009,0.452c0.663,1.297,1.125,2.669,1.371,4.079c0.027,0.158,0.132,0.291,0.279,0.356l3.344,1.464
l0.003,0.392c0.008,1.01-0.064,2.003-0.212,2.949l-0.06,0.384l-3.51,0.986c-0.155,0.043-0.276,0.16-0.325,0.313
c-0.442,1.38-1.09,2.68-1.926,3.862c-0.093,0.132-0.114,0.301-0.054,0.452l1.343,3.379l-0.272,0.281
c-0.378,0.389-0.728,0.723-1.071,1.022c-0.37,0.317-0.763,0.627-1.169,0.922l-0.314,0.228l-3.178-1.782
c-0.141-0.079-0.308-0.082-0.451-0.009c-1.285,0.659-2.657,1.118-4.081,1.364c-0.157,0.028-0.29,0.132-0.354,0.277l-1.479,3.344
L1272.823,732.022z M1269.971,731.414l0.142,0.021c0.903,0.135,1.815,0.204,2.71,0.204l0.322-0.002l1.379-3.118
c0.116-0.264,0.355-0.451,0.639-0.5c1.385-0.24,2.721-0.686,3.97-1.327c0.257-0.133,0.561-0.128,0.815,0.015l2.963,1.662
l0.115-0.084c0.398-0.289,0.783-0.593,1.144-0.901c0.333-0.291,0.676-0.619,1.047-1l0.099-0.103l-1.252-3.149
c-0.107-0.272-0.071-0.577,0.098-0.815c0.814-1.151,1.444-2.415,1.874-3.758c0.089-0.277,0.308-0.488,0.587-0.566l3.272-0.919
l0.022-0.141c0.145-0.925,0.215-1.896,0.207-2.886l-0.001-0.143l-3.116-1.364c-0.266-0.117-0.454-0.356-0.503-0.642
c-0.24-1.371-0.689-2.707-1.335-3.97c-0.132-0.259-0.126-0.563,0.016-0.816l1.672-2.953l-0.084-0.115
c-0.302-0.414-0.597-0.784-0.901-1.131c-0.298-0.344-0.624-0.688-1-1.052l-0.102-0.099l-3.16,1.236
c-0.268,0.107-0.57,0.07-0.808-0.098c-1.148-0.807-2.409-1.435-3.747-1.868c-0.276-0.089-0.486-0.308-0.564-0.587l-0.914-3.273
l-0.141-0.022c-0.979-0.153-1.952-0.218-2.895-0.199l-0.144,0.002l-1.356,3.109c-0.117,0.266-0.357,0.455-0.643,0.504
c-1.392,0.24-2.73,0.688-3.978,1.331c-0.26,0.133-0.566,0.127-0.818-0.018l-2.949-1.67l-0.115,0.084
c-0.374,0.272-0.749,0.568-1.147,0.905c-0.356,0.315-0.709,0.652-1.046,1l-0.099,0.102l1.234,3.164
c0.104,0.269,0.068,0.57-0.096,0.806c-0.803,1.148-1.433,2.411-1.872,3.755c-0.09,0.274-0.309,0.483-0.585,0.562l-3.274,0.923
l-0.022,0.141c-0.144,0.935-0.212,1.909-0.203,2.894l0.001,0.144l3.118,1.359c0.262,0.113,0.45,0.349,0.502,0.631
c0.264,1.426,0.71,2.764,1.327,3.977c0.131,0.257,0.124,0.56-0.017,0.812l-1.662,2.957l0.083,0.114
c0.309,0.424,0.603,0.799,0.901,1.144c0.312,0.353,0.649,0.705,0.998,1.042l0.102,0.099l3.159-1.241
c0.27-0.105,0.574-0.069,0.811,0.099c1.131,0.797,2.391,1.426,3.744,1.871c0.273,0.09,0.483,0.309,0.56,0.586L1269.971,731.414z" />
</g>
<g id="XMLID_1875_">
<path id="XMLID_1881_" fill="#F3F7F8" d="M1272.776,720.324c-3.325,0-6.03-2.705-6.03-6.03c0-3.325,2.705-6.03,6.03-6.03
c3.325,0,6.03,2.705,6.03,6.03C1278.806,717.618,1276.101,720.324,1272.776,720.324z M1272.776,709.206
c-2.805,0-5.087,2.282-5.087,5.087c0,2.805,2.282,5.087,5.087,5.087c2.805,0,5.087-2.282,5.087-5.087
C1277.863,711.488,1275.581,709.206,1272.776,709.206z" />
<path id="XMLID_1876_" fill="#F3F7F8" d="M1272.776,720.707c-3.537,0-6.414-2.877-6.414-6.414s2.877-6.414,6.414-6.414
s6.414,2.877,6.414,6.414S1276.312,720.707,1272.776,720.707z M1272.776,708.647c-3.113,0-5.646,2.533-5.646,5.646
c0,3.113,2.533,5.646,5.646,5.646c3.114,0,5.646-2.533,5.646-5.646C1278.422,711.18,1275.889,708.647,1272.776,708.647z
M1272.776,719.765c-3.017,0-5.471-2.455-5.471-5.471c0-3.017,2.454-5.471,5.471-5.471c3.017,0,5.471,2.454,5.471,5.471
C1278.247,717.31,1275.792,719.765,1272.776,719.765z M1272.776,709.59c-2.594,0-4.703,2.11-4.703,4.703
c0,2.594,2.11,4.704,4.703,4.704s4.704-2.11,4.704-4.704C1277.479,711.699,1275.369,709.59,1272.776,709.59z" />
</g>
</g>
<g>
<path fill="#55B6CA" d="M1154.461,963.612l-3.35-13.857c1.569-0.173,3.121-0.432,4.655-0.819c2.463-0.617,4.833-1.511,7.124-2.649
l3.355,13.877c-2.299,1.117-4.674,1.995-7.131,2.612C1157.584,963.16,1156.03,963.431,1154.461,963.612z" />
<path fill="#ABD8E1" d="M1037.411,795.114l1.668-6.633c3.43,1.091,6.921,2.078,10.481,2.929c2.212,0.535,4.43,1.005,6.649,1.432
l-1.666,6.622c-2.219-0.434-4.435-0.909-6.649-1.441C1044.351,797.17,1040.856,796.196,1037.411,795.114z" />
<ellipse opacity="0.6" fill="#77B1BE" cx="1099.874" cy="1014.451" rx="172.901" ry="14.178" />
<path fill="#E8BEA9" d="M1099.872,544.49c0,0,12.181-15.464,8.617-33.226c-1.88-9.369-25.253-16.295-33.249-16.295
s-6.96,10.859-6.96,10.859s-14.794,19.116-15.977,22.46l7.51,5.254c0,0-8.803,15.983-3.915,18.399
c2.884,1.425,16.948,2.606,16.948,2.606l2.011,23.65l24.235-7.532L1099.872,544.49z" />
<path fill="#094B5B" d="M1086.537,505.993c0.509-5.601-11.552-1.738-17.461-3.51c-3.756-1.126-0.128-7.514,4.587-9.643
c8.751-3.951,21.377,4.668,21.377,4.668s12.884,6.104,14.921,14.595c2.037,8.491-5.092,31.062-5.092,31.062
s4.792-2.358-3.894-4.489c-8.686-2.131-4.603-11.877-9.266-12.351c-4.663-0.473-11.876,8.032-11.876,8.032l-5.516-1.317
C1074.316,533.041,1086.028,511.595,1086.537,505.993z" />
<polygon fill="#D3AF94" points="1093.391,538.133 1083.187,555.804 1073.863,557.726 1072.844,554.546 1082.628,553.534
1092.289,538.133 " />
<polygon fill="#D3AF94"
points="1056.219,524.894 1065.13,509.946 1052.302,528.288 1053.501,529.534 " />
<lineargradient id="SVGID_1_" gradientunits="userSpaceOnUse" x1="778.4943" y1="998.6125" x2="778.4943"
y2="734.9987" gradienttransform="matrix(-1 0 0 1 1886.5901 0)">
<stop offset="0" style="stop-color:#002D49" />
<stop offset="1" style="stop-color:#002737" />
</lineargradient>
<polygon fill="url(#SVGID_1_)" points="1033.432,990.098 1062.597,998.568 1070.764,904.684 1067.489,873.902 1080.588,776.316
1106.786,868.008 1153.942,998.613 1182.759,998.613 1160.753,915.294 1141.17,854.581 1132.984,742.858 1071.101,738.857
1035.397,734.999 " />
<lineargradient id="SVGID_2_" gradientunits="userSpaceOnUse" x1="724.7607" y1="655.2875" x2="951.7298"
y2="655.2875" gradienttransform="matrix(-1 0 0 1 1886.5901 0)">
<stop offset="0" style="stop-color:#62B4BD" />
<stop offset="1" style="stop-color:#1CA7BF" />
</lineargradient>
<path fill="url(#SVGID_2_)" d="M943.046,606.744l49.662,18.127c0,0,2.083,5.241,6.013-0.4
c2.481-3.562,21.676-24.561,35.487-39.557l12.498-14.958l1.423-0.104c0.237-0.255,0.368-0.397,0.368-0.397l-0.041,0.373
l17.089-1.247l8.504,73.144l34.047-77.611l40.279,28.902l10.835,19.016l2.62,41.261l-29.173-23.183l-3.93,48.504l5.567,67.845
l-104.791-6.877l11.778-108.666l-8.597,5.548l-36.583,29.267c0,0-6.549,0-8.689-2.846c-2.139-2.847-52.552-29.881-52.552-29.881
L943.046,606.744z" />
<polygon opacity="0.6" fill="#000023" points="1064.87,868.662 1067.618,903.052 1061.614,995.621 1070.907,901.39
1067.865,868.993 1080.588,776.316 1076.986,763.544 " />
<line fill="none" stroke="#3E2B68" stroke-miterlimit="10" x1="1122.832" y1="874.229" x2="1132.656"
y2="884.708" />
<polygon fill="#19132E" points="987.587,1013.676 1043.912,1013.676 1048.168,1009.747 1051.771,1013.676 1061.614,1013.676
1061.614,995.621 1033.612,991.891 1019.681,1004.35 987.587,1011.34 " />
<polygon fill="#19132E"
points="1155.252,1015.969 1183.32,1014.591 1184.069,1007.127 1180.139,998.613 1155.252,999.595 " />
<polygon fill="#FFFFFF" points="1074.048,641.725 1107.113,565.097 1102.931,564.515 1080.588,576.559 1071.101,566.616
1065.544,568.581 " />
<polygon fill="#DD873D" points="1078.623,586.383 1070.917,614.614 1074.048,641.725 1085.838,614.852 1081.571,587.038
1085.838,582.453 1080.926,576.231 1075.676,582.126 " />
<polygon fill="#459FA7"
points="1115.955,579.178 1074.048,641.725 1108.096,564.115 1114.973,573.284 1108.567,573.595 " />
<polygon fill="#459FA7" points="1055.046,573.611 1074.048,641.725 1065.544,568.581 " />
<polygon fill="#29667D"
points="1133.311,747.443 1083.208,745.478 1036.38,739.583 1133.966,743.84 " />
<lineargradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="1054.6407" y1="656.6752"
x2="1074.4714" y2="656.6752">
<stop offset="0" style="stop-color:#006782" />
<stop offset="1" style="stop-color:#006883" />
</lineargradient>
<polygon opacity="0.6" fill="url(#SVGID_3_)" points="1071.521,738.871 1070.68,738.842 1073.626,641.776 1054.641,574.708
1055.45,574.479 1074.471,641.675 1074.469,641.74 " />
<line fill="none" stroke="#382B66" stroke-miterlimit="10" x1="1134.621" y1="608.978" x2="1132.656"
y2="629.936" />
<line fill="none" stroke="#25596B" stroke-miterlimit="10" x1="1043.693" y1="600.341" x2="1041.281"
y2="630.917" />
<polygon fill="#E8BEA9" points="923.605,594.155 919.895,597.73 924.981,605.505 913.599,603.594 906.447,608.993 906.74,613.529
916.552,619.495 927.099,622.956 936.5,624.047 942.178,613.214 " />
<line fill="none" stroke="#3E2B68" stroke-miterlimit="10" x1="1126.946" y1="871.937" x2="1142.296"
y2="887.634" />
<line fill="none" stroke="#3E2B68" stroke-miterlimit="10" x1="1039.327" y1="868.99" x2="1049.151"
y2="879.469" />
<polygon opacity="0.6" fill="#19132E" points="1042.274,625.352 1041.947,630.038 996.101,665.732 " />
<polygon opacity="0.6" fill="#19132E" points="1154.596,647.508 1154.596,647.508 1132.984,630.919 1133.966,626.334
1157.527,647.404 " />
<g>
<lineargradient id="SVGID_4_" gradientunits="userSpaceOnUse" x1="773.772" y1="595.851" x2="692.9315"
y2="735.8707" gradientTransform="matrix(-1 0 0 1 1886.5901 0)">
<stop offset="0" style="stop-color:#62B4BD" />
<stop offset="1" style="stop-color:#1CA7BF" />
</lineargradient>
<polygon fill="url(#SVGID_4_)" points="1157.286,669.13 1129.493,640.465 1134.916,583.093 1150.056,593.956 1185.989,660.724
1179.704,743.927 1157.381,739.428 " />
</g>
<polygon fill="#E8BEA9" points="1150.802,762.201 1155.112,764.507 1160.918,758.123 1162.239,768.472 1154.502,784.684
1159.512,784.869 1169.168,773.296 1176.134,761.87 1176.473,751.852 1174.932,743.428 1163.38,741.262 " />
</g>
<g>
<ellipse opacity="0.6" fill="#77B1BE" cx="797.233" cy="1049.589" rx="125.681" ry="10.244" />
<g>
<path fill="#E8BEA9" d="M783.56,598.221c0,0-12.183-15.54-8.618-33.391c1.88-9.415,25.256-16.375,33.254-16.375
c7.997,0,11.621,10.913,11.621,10.913l8.469,25.176c0,0,4.145,18.738-0.744,21.165c-2.884,1.432-16.95,2.618-16.95,2.618
l-2.011,23.767l-24.239-5.701L783.56,598.221z" />
<polygon fill="#D3AF94" points="790.042,591.832 800.247,609.59 809.573,611.522 810.591,608.327 800.806,607.309
791.144,591.832 " />
</g>
<path fill="#19132E" d="M750.252,1042.894c-7.916,1.461-20.025,3.262-20.025,3.262l-0.701-6.983l1.186-7.965l27.563-0.766
l13.636,2.257l3.113,2.64C775.025,1035.338,756.383,1041.762,750.252,1042.894z" />
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="788.03" y1="1035.4553" x2="788.03"
y2="775.937">
<stop offset="0" style="stop-color:#002D49" />
<stop offset="1" style="stop-color:#002737" />
</linearGradient>
<polygon fill="url(#SVGID_5_)" points="845.639,1027.531 818.354,1035.455 810.713,932.558 813.777,903.76 801.522,812.463
777.013,898.245 757.095,1035.455 730.421,1035.455 737.611,943.118 744.845,885.684 752.504,783.29 810.398,779.546
843.801,775.937 " />
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="709.3065" y1="705.9029" x2="894.7285"
y2="705.9029">
<stop offset="0" style="stop-color:#E9903E" />
<stop offset="1" style="stop-color:#D76A37" />
</linearGradient>
<path fill="url(#SVGID_6_)" d="M894.728,768.959c0,0-17.463-77.339-21.139-82.616c-2.322-3.332-15.755-31.446-28.676-45.474
l-8.579-10.258l-3.821-3.833c-0.222-0.239-0.967-0.371-0.967-0.371l0.038,0.349l-15.988-1.166l-14.075-0.009l-25.735-0.434
l-29.605,11.852l-29.893,75.795l-6.983,72.098l21.683-1.736l-0.568-67.871l23.308-26.592l2.757,32.368l-5.208,65.6l98.037-6.434
l-11.019-103.79l-0.229,5.19l20.899,31.783l12.785,57.811L894.728,768.959z" />
<polygon opacity="0.6" fill="#19132E" points="816.228,898.858 813.657,931.031 819.273,1032.698 810.579,929.476
813.426,899.167 801.522,812.463 804.892,800.515 " />
<polygon fill="#19132E" points="871.244,1049.589 832.649,1049.589 829.732,1045.913 827.264,1049.589 820.519,1049.589
820.519,1032.698 839.707,1029.208 849.252,1040.865 871.244,1047.403 " />
<polygon fill="#E8BEA9" points="737.611,804.534 733.424,806.773 727.785,800.573 726.502,810.625 734.017,826.372
729.15,826.551 719.772,815.311 713.005,804.213 712.676,794.482 714.173,786.299 725.393,784.195 " />
<polygon opacity="0.6" fill="#19132E"
points="752.198,787.579 799.071,785.741 842.882,780.226 751.585,784.209 " />
<polygon fill="#E8BEA9" points="869.998,793.109 874.549,794.586 878.865,787.517 882.103,797.174 877.827,813.95 882.64,813.285
889.633,800.616 894.09,788.539 892.497,778.918 889.417,771.135 877.987,771.008 " />
<path fill="#094B5B" d="M823.721,548.744c-1.678-2.987-8.448-5.033-13.009-5.569c0,0-2.986-15.363-14.604-8.347
c-11.617,7.016-21.82,12.308-25.027,24.609c-1.636,6.277-0.717,26.854,3.051,41.162c3.769,14.308,28.525,8.967,32.217,4.579
c1.461-1.736,2.236-6.961,3.142-13.346c-1.379-1.261-2.816-2.92-4.155-4.885c-3.776-5.538-2.793-8.257-0.953-9.879
c1.729-1.524,3.601-1.535,6.954,3.065c0.426-2.234,0.913-4.452,1.49-6.574c1.135-4.172,1.272-9.504,3.749-11.848
C821.841,556.728,825.623,552.131,823.721,548.744z" />
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="709.2869" y1="710.9442" x2="755.4383"
y2="710.9442">
<stop offset="0.0624" style="stop-color:#B45F2D" />
<stop offset="1" style="stop-color:#D76A37" />
</linearGradient>
<path fill="url(#SVGID_7_)" d="M746.182,636.998l-8.078,3.979c0,0-21.49,46.52-25.389,70.998
c-3.898,24.478-3.41,72.915-3.41,72.915l21.683-1.736c0,0,1.601-42.383,7.115-63.014c5.514-20.63,15.625-31.449,15.625-31.449
l1.669,19.591c0.024-1.313,0.04-2.629,0.04-3.953C755.438,678.951,753.569,655.588,746.182,636.998z" />
</g>
<g>
<ellipse opacity="0.6" fill="#77B1BE" cx="331.916" cy="1028.713" rx="125.681" ry="10.244" />
<path fill="#49478A" d="M317.031,777.318c0.407,0,0.779-0.264,0.89-0.668l6.235-22.774c0.131-0.478-0.16-0.974-0.653-1.101
c-0.5-0.126-0.994,0.155-1.127,0.636l-6.235,22.774c-0.131,0.478,0.16,0.974,0.653,1.101
C316.873,777.308,316.954,777.318,317.031,777.318z" />
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="262.9317" y1="884.71" x2="389.6916"
y2="884.71">
<stop offset="0" style="stop-color:#002D49" />
<stop offset="1" style="stop-color:#002737" />
</linearGradient>
<path fill="url(#SVGID_8_)"
d="M263.52,745.715l98.271-2.808c1.03,18.12,3.421,68.092,5.248,95.82
c3.989,77.529,11.473,176.207,11.473,176.207l11.18,11.58h-27.64l-34.104-187.786l-10.821-54.911l-6.855,0.138l-4.605,54.773
l-18.501,187.786h-23.282l5.777-10.562c0,0-4.277-87.401-6.22-177.224C262.798,814.419,262.7,768.378,263.52,745.715z" />
<path fill="#BB793A" d="M231.532,680.947c0.088-1.673,0.364-3.629,0.996-5.496c0.913-6.38,3.562-12.568,6.188-18.664
c5.866-13.618,11.732-27.235,17.598-40.852c2.23-5.176,6.564-11.782,10.053-16.486c7.369-9.934,18.32-13.199,32.103-13.151
c6.429,0.023-10.704,25.896-14.792,32.214c-6.045,9.344-8.022,20.694-17.435,38.355c-3.148,5.907-5.654,15.072-9.331,22.032
c0.083,1.278,0.087,2.566,0.074,3.831c-0.093,9.124-0.185,18.249-0.278,27.373c-0.084,8.252-0.37,15.955,1.704,23.987
c0.838,3.246-0.387,6.645-3.44,8.997c-4.554,3.508-8.291,3.23-8.291,3.23c-5.741-12.33-10.646-25.046-13.232-38.103
c-0.554-2.797-1.002-5.609-1.328-8.437C231.399,693.525,231.199,687.229,231.532,680.947z" />
<path fill="#E9B444" d="M261.054,754.379l102.284,4.221c-0.275-17.965-1.504-42.963-2.407-56.806
c-0.074-0.886-0.109-1.739-0.142-2.558c-0.627-8.898-0.981-17.634-0.868-26.966c0.001-0.922,0.001-1.845,0.039-2.769
c0.079-3.659,0.267-7.424,0.563-11.329c0.463-6.337,1.175-13.058,2.243-20.371c1.481-10.197,7.834-24.554,6.188-32.427
c-2.055-9.534-10.542-16.908-20.899-19.949c-3.799-1.139-7.839-1.689-11.927-1.554l-42.509,1.403
c-29.298,0.967-32.437,29.159-31.687,48.543c0.586,15.357,1.589,30.735,2.29,46.123c0.889,20.951,0.786,31.479-1.288,52.289
C262.347,738.296,261.182,748.19,261.054,754.379z" />
<path fill="#BB793A"
d="M299.517,675.953c12.893,5.759,43.937,16.967,50.258,20.483c3.49,1.935,7.279,3.758,11.172,5.372
c-0.074-0.886-0.109-1.739-0.142-2.558c-0.627-8.898-0.982-17.634-0.868-26.966c-12.584-2.797-25.774-6.53-34.449-10.139
c-3.469-1.423-15.875-8.224-18.26-4.42c-1.778,2.895-5.548,6.197-9.038,8.909C294.809,669.24,295.502,674.172,299.517,675.953z" />
<path fill="#686868" d="M283.882,624.846c-0.018,0.274,0.002,0.556,0.059,0.843l8.246,31.266c0.396,1.455,2.013,2.591,3.602,2.543
l17.838-0.405c0.586-0.042,1.118-0.196,1.522-0.476l0.007-0.034c0.638-0.484,0.915-1.272,0.677-2.179l-8.239-31.299
c-0.365-1.415-1.982-2.551-3.571-2.503l-17.839,0.405C284.907,623.037,284.021,623.792,283.882,624.846z" />
<path fill="#3D403F" d="M283.882,624.846c-0.018,0.274,0.002,0.556,0.059,0.843l8.246,31.266c0.396,1.455,2.013,2.591,3.602,2.543
l17.838-0.405c0.586-0.042,1.118-0.196,1.522-0.476l0.007-0.034c0.055-0.269,0.035-0.55-0.059-0.843l-8.239-31.299
c-0.366-1.415-1.982-2.551-3.608-2.509l-17.838,0.405C284.788,624.371,284.293,624.532,283.882,624.846z" />
<path fill="#F3C6A0"
d="M311.242,653.073c6.094,2.661,7.044,11.262,9.433,14.33c2.891,3.714-3.012,4.91-9.418,4.118
c-5.737-0.709-12.757-3.124-15.044-5.832c-1.934-2.29-4.42-5.035-4.194-11.991C292.203,648.02,303.286,649.6,311.242,653.073z" />
<path fill="#E9B444" d="M315.363,657.999c2.34-2.658,4.805-0.71,8.262,0.324c12.39,3.705,33.883,2.799,49.897,4.693
c-1.086-2.549-2.098-5.003-3.057-7.181c-9.47-21.505-15.057-30.601-18.691-38.301c-3.396-7.198-18.88-33.375-12.529-33.584
c16.156-0.533,25.697,3.125,32.267,14.254c13.786,23.352,20.635,43.29,25.19,55.563c2.946,7.936,6.734,13.029,7.293,20.726
c0.027,0.221,0.027,5.211,0.04,5.439c0.175,3.666-0.462,2.019-2.348,4.137c-0.193,0.376-0.357,0.739-0.575,1.125
c-4.204,7.447-32.289,6.026-51.109-1.482c-8.93-3.562-36.193-16.024-36.193-16.024S311.53,662.353,315.363,657.999z" />
<path fill="#BB793A" d="M300.622,585.043c0.227,0.915,0.564,1.758,1.014,2.563c2.219,4.232,7.1,6.839,13.497,6.628
c7.382-0.244,14.878-4.182,19.882-9.78c0.182-0.177,0.363-0.388,0.508-0.563L300.622,585.043z" />
<path fill="#E8BEA9"
d="M331.916,563.461v21.551c0,0-16.326,18.453-31.321,0.431l1.311-21.982H331.916z" />
<path fill="#BA745D" d="M315.938,578.195c0.399,0.058,0.803,0.103,1.208,0.134c5.022,0.387,9.665-1.077,13.426-4.234
c0.342-0.285,0.347-0.779,0.014-1.099c-0.331-0.32-0.879-0.354-1.22-0.064c-3.415,2.864-7.616,4.194-12.152,3.844
c-4.735-0.369-8.78-2.657-12.026-6.81c-0.282-0.36-0.822-0.457-1.205-0.222c-0.387,0.236-0.47,0.719-0.19,1.078
C307.04,574.979,311.218,577.51,315.938,578.195z" />
<path fill="#F3C6A0" d="M338.019,538.954c1.96,17.577-0.251,36.588-13.642,37.828c-13.925,1.289-28.629-6.897-30.589-24.474
c-1.96-17.577,7.193-34.179,20.443-37.081C327.481,512.325,336.059,521.376,338.019,538.954z" />
<path fill="#094B5B"
d="M336.85,522.893c0.636-1.649,0.433-3.603-0.929-5.772c-0.273-0.43-0.587-0.875-0.965-1.344
c-1.552-2.018-3.803-3.907-5.857-5.543c-0.07,0.012-0.147,0.012-0.21,0.025c-10.135-3.198-21.858-3.971-31.022,0.583
c-4.488,2.157-6.983,5.403-8.129,9.145c-2.377,5.037-1.671,13.154-0.364,19.256c0.349,1.663,0.741,3.171,1.132,4.44
c1.782,5.86,4.068,13.801,8.793,18.241c0.986,0.798,2.572,1.622,4.019,1.447c0.077-0.015,0.147-0.027,0.21-0.041
c-0.168-0.265-0.342-0.543-0.496-0.836c-0.468-1.775-0.364-3.768-0.364-5.531c-0.72,0.659-1.293,1-1.957,1.041
c-0.643,0.049-1.356-0.205-2.321-0.786c-2.509-1.385-3.383-4.024-3.488-6.776c0-0.708,0.119-1.952,0.419-3.132
c0.014-0.014,0.014-0.039,0.028-0.053c0.224-0.836,0.545-1.622,1.014-2.154c0.37-0.42,0.811-0.688,1.377-0.688
c0.776,0,2.097,1.004,2.775,1.841c0.056,0.077,0.105,0.151,0.154,0.214c0.147,0.839,0.329,1.665,0.538,2.475
c0.217,0.94,0.496,1.877,0.783,2.791c1.111,0.559,2.237,1.306,3.474,1.434l0.049-0.608c-1.775-5.062-1.734-10.414-1.538-15.77
c0.049-1.305,0.112-2.611,0.154-3.919c0.049-1.216,0.084-2.42,0.084-3.627l-0.014-0.192c5.515-0.353,11.128-0.712,15.853-2.737
c-1.838,0.821-3.39,1.948-4.816,3.207c-0.482,0.418-0.944,0.85-1.398,1.281c-1.097,1.041-2.153,2.106-3.25,3.096
c6.277,0.457,15.651-3.073,22.019-6.978c0.915-0.573,1.768-1.142,2.544-1.712l0.021,0.025l0.028,0.037
c0.119,1.381,0.21,2.777,0.273,4.199c0.272,5.036,0.293,10.261-0.196,15.337c0.084,0,0.189,0.012,0.293,0.025
c0.259-1.345,0.636-2.652,0.992-3.96c0.482-1.775,0.937-3.564,1.084-5.441C337.941,531.774,338.807,526.306,336.85,522.893z" />
<path fill="#F3C6A0"
d="M263.644,740.247C263.644,740.247,262.715,740.22,263.644,740.247c-1.541-1.406-3.203-3-4.853-4.44
c-0.218,0.27-0.503,0.499-0.667,0.829c-2.028,4.078-3.969,7.551-12.12,8.899c1.383,2.134,2.669,3.819,10.181,9.284
c5.524,3.151,9.808,3.626,13.238,3.252c2.771-0.302,4.9-2.677,4.861-4.16C270.408,748.692,266.362,742.822,263.644,740.247z" />
<polygon fill="#19132E"
points="274.208,1015.29 288.172,1016.083 286.974,1026.513 257.397,1026.513 " />
<polygon fill="#19132E" points="412.098,1026.879 373.503,1026.879 370.587,1023.202 368.118,1026.879 361.373,1026.879
361.373,1009.987 380.561,1006.497 390.107,1018.154 412.098,1024.693 " />
</g>
<g>
<ellipse opacity="0.6" fill="#77B1BE" cx="528.18" cy="1048.062" rx="95.549" ry="13.303" />
<path fill="#094B5B"
d="M541.497,570.239c0,0,2.187-38.439-8.274-42.43c-10.461-3.991-17.989,14.653-17.989,14.653
s-5.189,8.892-6.32,17.029c-1.131,8.137,2.26,12.189,2.26,12.189s13.771,1.16,17.822,12.655
c4.051,11.496-0.999,43.517-0.999,43.517s30.602-9.549,21.085-24.126C540.854,591.124,541.497,570.239,541.497,570.239z" />
<ellipse transform="matrix(0.9159 -0.4015 0.4015 0.9159 -189.1297 273.8384)" fill="#094B5B"
cx="558.78" cy="588.16" rx="21.157" ry="65.387" />
<g>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="1346.3088" y1="995.124"
x2="1346.3088" y2="757.9842" gradientTransform="matrix(-1 0 0 1 1886.5901 0)">
<stop offset="0" style="stop-color:#002D49" />
<stop offset="1" style="stop-color:#002737" />
</linearGradient>
<polygon fill="url(#SVGID_9_)" points="495.577,993.779 517.718,995.084 524.691,912.309 530.96,882.938 534.046,853.783
543.567,883.236 566.304,995.124 584.985,995.124 580.23,920.173 573.689,865.557 568.382,765.054 528.266,761.455
505.121,757.984 " />
<polygon fill="#D3AF94" points="585.316,1039.385 550.071,1043.305 573.008,1024.822 573.008,996.256 582.519,996.256
583.078,1019.781 " />
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="560.9804" y1="1048.0662"
x2="560.9804" y2="1034.3435">
<stop offset="0" style="stop-color:#002D49" />
<stop offset="1" style="stop-color:#002737" />
</linearGradient>
<path fill="url(#SVGID_10_)" d="M575.806,1038.264c0,0-14.349,1.323-20.14,2.1c-11.469,1.54-18.741,7.702-18.741,7.702h19.301
l19.58-6.232v4.552h9.231v-12.042L575.806,1038.264z" />
<polygon fill="#D3AF94" points="515.857,1038.181 480.612,1042.102 503.549,1023.618 503.549,995.053 513.06,995.053
513.619,1018.577 " />
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="491.5215" y1="1046.8625"
x2="491.5215" y2="1033.14">
<stop offset="0" style="stop-color:#002D49" />
<stop offset="1" style="stop-color:#002737" />
</linearGradient>
<path fill="url(#SVGID_11_)" d="M506.347,1037.061c0,0-14.349,1.323-20.14,2.1c-11.468,1.54-18.741,7.701-18.741,7.701h19.301
l19.58-6.232v4.552h9.231v-12.042L506.347,1037.061z" />
</g>
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="501.4756" y1="683.8793"
x2="573.1705" y2="683.8793">
<stop offset="0" style="stop-color:#409DB2" />
<stop offset="1" style="stop-color:#0090B6" />
</linearGradient>
<path fill="url(#SVGID_12_)"
d="M573.17,655.389l-17.873-54.812l-25.734,12.015c0,0-10.901,18.829-15.855,39.293
c-3.879,16.023-2.165,32.397-1.674,45.843c1.119,30.619-10.559,64.972-10.559,64.972s17.643-1.098,34.054-0.362
c16.411,0.736,33.724,4.842,33.724,4.842s-14.201-33.378-14.266-55.896C554.924,688.767,573.17,655.389,573.17,655.389z" />
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="550.1782" y1="666.6248"
x2="636.6295" y2="666.6248">
<stop offset="0" style="stop-color:#006E80" />
<stop offset="1" style="stop-color:#0090B6" />
</linearGradient>
<path fill="url(#SVGID_13_)"
d="M634.977,682.419l-78.014-79.384c0,0-8.379,8.437-6.514,24.12s22.721,28.234,22.721,28.234
l32.476,37.413l-16.41,15.755l9.697,21.657c0,0,28.3-22.548,34.476-27.891C639.586,696.982,634.977,682.419,634.977,682.419z" />
<path fill="#F3C6A0" d="M544.482,571.144l-20.4-40.002l-5.746,9.807c0,0-2.421,3.482-3.296,6.364
c-0.665,2.191-8.279,9.009-5.692,9.809c0,0,1.514,0.374,1.859,2.128s-0.477,4.888-0.477,5.734c0,8.215,3.916,11.762,3.916,11.762
s13.799-0.747,19.394,10.082s0.007,23.163,0.007,23.163s33.989,6.408,22.557-6.721
C546.719,591.919,544.482,571.144,544.482,571.144z" />
<ellipse transform="matrix(0.916 -0.4011 0.4011 0.916 -174.7545 262.3773)" fill="#094B5B" cx="539.339"
cy="548.608" rx="14.107" ry="22.603" />
<polygon fill="#F3C6A0" points="569.417,734.369 595.591,724.888 591.683,714.294 566.464,724.39 " />
<ellipse fill="#F3C6A0" cx="555.247" cy="730.073" rx="17.924" ry="7.423" />
<path fill="#094B5B"
d="M532.355,527.148c-1.441,0.42-2.831,0.916-4.175,1.471c11.476,8.041,20.843,20.848,25.448,36.648
c0.624,2.141,1.137,4.281,1.559,6.416c11.66-6.697,18.104-18.526,14.943-29.37C566.245,528.989,549.333,522.199,532.355,527.148z" />
</g>
<path class="bubble1" fill="#845059" d="M421.69,232.125c-25.371-7.498-81.378,6.354-124.677,19.317c-43.281,12.957-81.671,33.152-97.457,51.711
c-7.117,8.368-7.332,20.3-4.661,29.744c8.594,30.387,21.615,76.426,21.615,76.426s4.675,15.48,37.305,8.783
c1.313-0.269,2.675-0.55,4.059-0.836c0.897,25.154,24.612,45.417,54.279,46.672c-10.526-10.524-17.064-25.141-17.064-41.318
c0-4.586,0.533-9.043,1.524-13.322c27.416-5.507,57.348-11.054,78.358-13c33.151-3.069,37.586-29.215,37.586-29.215
s12.64-54.713,20.986-103.376C436.391,247.101,433.113,235.501,421.69,232.125z" />
<path class="bubble2" fill="#EA944A" d="M924.866,297.4c-2.705-11.212-13.752-23.381-25.131-25.718c-5.75-1.18-11.585-1.589-16.472-1.589
c-49.009,0-156.366,3.327-208.042,1.08c-24.842-1.08-34.303,10.674-34.715,27.467c-1.237,50.378,28.31,151.852,69.647,151.852
c96.286,0,159.136-4.325,159.136-4.325s28.104,35.379,31.778,38.467c3.674,3.089,7.527,5.961,8.276,1.32
C914.373,454.77,933.251,332.147,924.866,297.4z" />
<path class="bubble3" fill="#67C0D1" d="M1252.825,301.234c-9.59-51.888-95.636-79.199-157.331-69.173
c-61.694,10.026-110.829,55.544-97.875,112.105c14.8,64.619,70.91,85.824,132.604,75.798c20.246-3.29,41.426-11.641,60.427-23.182
c2.808,7.787,4.384,16.432,4.384,25.548c0,7.844-1.204,15.318-3.315,22.22c17.874-9.157,30.495-31.281,30.495-57.163
c0-4.703-0.43-9.276-1.219-13.677C1243.518,352.236,1257.435,326.173,1252.825,301.234z" />
<path class="bubble4" fill="#49A0A7" d="M528.844,405.825l-16.868-2.102c-16.865-2.102-28.834-16.79-26.598-32.641l24.243-171.848
c2.236-15.851,17.864-27.1,34.729-24.998l133.704,16.662c16.865,2.102,28.834,16.79,26.598,32.641L680.41,395.387
c-2.236,15.851-17.864,27.1-34.729,24.998l-81.577-10.166c-15.977,25.764-39.438,42.644-65.191,43.527
c-3.613,0.124-7.161-0.105-10.633-0.607C506.131,444.627,519.488,427.653,528.844,405.825z" />
<g id="XMLID_1_" enable-background="new ">
<path id="XMLID_2_" fill="#FCFCFD" d="M190.241,802.758h-10.031v-6.59h10.031v-11.659h6.156v11.659h10.031v6.59h-10.031v11.659
h-6.156V802.758z" />
</g>
<g>
<circle fill="#FFFFFF" cx="737.083" cy="379.241" r="12.892" />
<circle fill="#FFFFFF" cx="787.897" cy="379.241" r="12.892" />
<circle fill="#FFFFFF" cx="839.25" cy="379.241" r="12.892" />
</g>
<g>
<rect x="1062.66" y="297.235" fill="#FFFFFF" width="115.095" height="5.758" />
<rect x="1062.66" y="313.397" fill="#FFFFFF" width="115.095" height="5.758" />
<rect x="1062.66" y="329.56" fill="#FFFFFF" width="115.095" height="5.758" />
<rect x="1062.66" y="345.358" fill="#FFFFFF" width="83.863" height="5.758" />
</g>
<g id="XMLID_889_">
<path id="XMLID_890_" fill="#FFFFFF" d="M331.38,338.139c0,9.655,0,11.27-8.051,11.27v17.978
c18.783,0,24.154-12.623,24.154-34.885v-29.508h-34.885v29.508h18.783V338.139z" />
<path id="XMLID_891_" fill="#FFFFFF" d="M291.141,332.501v5.638c0,9.655,0,11.27-8.051,11.27v17.978
c18.777,0,24.148-12.623,24.148-34.885v-29.508h-34.874v29.508H291.141z" />
</g>
<g>
<rect x="544.405" y="272.747" transform="matrix(0.9922 0.1247 -0.1247 0.9922 39.1518 -72.4337)"
fill="#FFFFFF" width="107.166" height="7.359" />
<rect x="541.829" y="293.239" transform="matrix(0.9922 0.1247 -0.1247 0.9922 41.6879 -71.9523)"
fill="#FFFFFF" width="107.166" height="7.359" />
<rect x="539.253" y="313.731" transform="matrix(0.9922 0.1247 -0.1247 0.9922 44.2239 -71.4708)"
fill="#FFFFFF" width="107.166" height="7.359" />
<rect x="536.848" y="331.948" transform="matrix(0.9922 0.1247 -0.1247 0.9922 46.3639 -69.2149)"
fill="#FFFFFF" width="78.086" height="7.359" />
<rect x="546.914" y="252.787" transform="matrix(0.9922 0.1247 -0.1247 0.9922 36.6816 -72.9026)"
fill="#FFFFFF" width="107.166" height="7.359" />
</g>
</g>
</svg>
</div>
<div class="col-sm-12 col-md-6 col-lg-6 debug-outline">
<!-- <div class="padding"> -->
<a class="twitter-timeline" data-height="400" data-theme="dark"
href="https://twitter.com/elysa_smi?ref_src=twsrc%5Etfw">Tweets by elysa_smi</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</div>
</div>
<div id="chevron">
<div class="container">
<div class="row">
<div class="center">
<a href="#contact">
<svg class="chevron" enable-background="new 0 0 100 100" id="Layer_1" version="1.1" viewBox="0 0 100 100"
xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<polygon points="23.1,34.1 51.5,61.7 80,34.1 81.5,35 51.5,64.1 21.5,35 23.1,34.1 " /></svg>
</a>
</div>
</div>
</div>
</div>
</main>
<footer id="contact">
<div class="container">
<div>
<h2 class="h2-padding-top">Get in Touch</h2>
</div>
<div>
<!--Social Media Icons-->
<a href="https://www.linkedin.com/in/elysasmigielski/" target="_blank"> <svg class="svg" height="512"
id="Layer_1" version="1.1" viewBox="0 0 512 512" width="512" xml:space="preserve"
xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs12" />
<g id="g5891">
<rect height="512" id="rect2987" rx="64" ry="64" width="512" x="0" y="5.6843419e-014" />
<g id="g9-1" transform="matrix(1.5537946,0,0,1.5537946,-140.87332,-132.64552)">
<rect height="166.021" id="rect11" style="fill:#ffffff" width="55.194" x="129.957" y="200.35699" />
<path
d="m 157.927,120.303 c -18.884,0 -31.222,12.415 -31.222,28.687 0,15.93 11.963,28.687 30.491,28.687 h 0.357 c 19.245,0 31.224,-12.757 31.224,-28.687 -0.357,-16.272 -11.978,-28.687 -30.85,-28.687 z"
id="path13-0" style="fill:#ffffff" />
<path
d="m 320.604,196.453 c -29.277,0 -42.391,16.101 -49.734,27.41 v -23.506 h -55.18 c 0.732,15.573 0,166.021 0,166.021 h 55.179 V 273.66 c 0,-4.963 0.357,-9.924 1.82,-13.471 3.982,-9.911 13.068,-20.178 28.313,-20.178 19.959,0 27.955,15.23 27.955,37.539 v 88.828 h 55.182 v -95.206 c 0,-50.996 -27.227,-74.719 -63.535,-74.719 z"
id="path15" style="fill:#ffffff" />
</g>
</g>
</svg></a>
<a href="https://github.com/elysa-ux" target="_blank"> <svg class="svg"
height="1024" width="1024" viewbox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
<path
d="M512 0C229.25 0 0 229.25 0 512c0 226.25 146.688 418.125 350.156 485.812 25.594 4.688 34.938-11.125 34.938-24.625 0-12.188-0.469-52.562-0.719-95.312C242 908.812 211.906 817.5 211.906 817.5c-23.312-59.125-56.844-74.875-56.844-74.875-46.531-31.75 3.53-31.125 3.53-31.125 51.406 3.562 78.47 52.75 78.47 52.75 45.688 78.25 119.875 55.625 149 42.5 4.654-33 17.904-55.625 32.5-68.375C304.906 725.438 185.344 681.5 185.344 485.312c0-55.938 19.969-101.562 52.656-137.406-5.219-13-22.844-65.094 5.062-135.562 0 0 42.938-13.75 140.812 52.5 40.812-11.406 84.594-17.031 128.125-17.219 43.5 0.188 87.312 5.875 128.188 17.281 97.688-66.312 140.688-52.5 140.688-52.5 28 70.531 10.375 122.562 5.125 135.5 32.812 35.844 52.625 81.469 52.625 137.406 0 196.688-119.75 240-233.812 252.688 18.438 15.875 34.75 47 34.75 94.75 0 68.438-0.688 123.625-0.688 140.5 0 13.625 9.312 29.562 35.25 24.562C877.438 930 1024 738.125 1024 512 1024 229.25 794.75 0 512 0z" />
</svg></a>
<a href="https://medium.com/@elysasmigielski" target="_blank"> <svg class="svg" height="100%"
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;" version="1.1"
viewBox="0 0 512 512" width="100%" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"
xmlns:serif="http://www.serif.com/" xmlns:xlink="http://www.w3.org/1999/xlink">
<path
d="M256,0c141.29,0 256,114.71 256,256c0,141.29 -114.71,256 -256,256c-141.29,0 -256,-114.71 -256,-256c0,-141.29 114.71,-256 256,-256Zm149.439,390.919l0,-5.04l-23.389,-22.963c-2.065,-1.573 -3.089,-4.161 -2.661,-6.721l0,-168.719c-0.428,-2.561 0.596,-5.148 2.661,-6.722l23.95,-22.962l0,-5.041l-82.912,0l-59.105,147.438l-67.227,-147.438l-86.975,0l0,5.041l28.012,33.744c2.751,2.478 4.154,6.119 3.781,9.802l0,132.595c0.815,4.782 -0.692,9.669 -4.06,13.161l-31.514,38.224l0,5.04l89.356,0l0,-5.04l-31.513,-38.224c-3.394,-3.485 -4.995,-8.34 -4.342,-13.161l0,-114.673l78.433,171.098l9.103,0l67.367,-171.098l0,136.376c0,3.639 0,4.34 -2.382,6.719l-24.229,23.524l0,5.04l117.646,0Z" />
</svg>
</a>
<a href="https://twitter.com/elysa_smi" target="_blank"> <svg class="svg" enable-background="new 0 0 48 48"
id="Layer_1" version="1.1" viewbox="0 0 48 48" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<circle cx="24" cy="24" r="24" />
<g>
<g>
<path
d="M36.8,15.4c-0.9,0.5-2,0.8-3,0.9c1.1-0.7,1.9-1.8,2.3-3.1c-1,0.6-2.1,1.1-3.4,1.4c-1-1.1-2.3-1.8-3.8-1.8 c-2.9,0-5.3,2.5-5.3,5.7c0,0.4,0,0.9,0.1,1.3c-4.4-0.2-8.3-2.5-10.9-5.9c-0.5,0.8-0.7,1.8-0.7,2.9c0,2,0.9,3.7,2.3,4.7 c-0.9,0-1.7-0.3-2.4-0.7c0,0,0,0.1,0,0.1c0,2.7,1.8,5,4.2,5.6c-0.4,0.1-0.9,0.2-1.4,0.2c-0.3,0-0.7,0-1-0.1 c0.7,2.3,2.6,3.9,4.9,3.9c-1.8,1.5-4.1,2.4-6.5,2.4c-0.4,0-0.8,0-1.3-0.1c2.3,1.6,5.1,2.6,8.1,2.6c9.7,0,15-8.6,15-16.1 c0-0.2,0-0.5,0-0.7C35.2,17.6,36.1,16.6,36.8,15.4z"
fill="#FFFFFF" />
</g>
</g>
</svg></a>