-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
1045 lines (953 loc) · 130 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>
<head>
<title>Mile Two</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="Mile Two Website" />
<link rel="canonical" href="http://miletwo.us/" />
<link rel="apple-touch-icon" sizes="180x180" href="/img/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/icons/favicon-16x16.png">
<link rel="manifest" href="/img/icons/site.webmanifest">
<link rel="mask-icon" href="/img/icons/safari-pinned-tab.svg" color="#016848">
<link rel="shortcut icon" href="/img/icons/favicon.ico">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-config" content="/img/icons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<meta name="zoom-domain-verification" content="ZOOM_verify_HrPO9H24RMSmgWyV9bR0VA">
<link href='//fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<style>/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700");html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit;font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}[hidden],template{display:none}.slick-slider{box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list,.slick-slider{position:relative;display:block}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{transform:translateZ(0)}.slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;min-height:1px;display:none}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}body,html{background:#fff;margin:0;padding:0;width:100%;height:100%;box-sizing:border-box}body{font-size:20px;line-height:1.7em}body,h1,h2,h3,h4,h5,h6{font-family:Roboto,Open Sans,-apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Helvetica Neue,sans-serif}h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.35em}.button-large,.button-wide,.button_base{background:#016848;border:none;border-radius:8px;color:#fff;display:inline-block;font-weight:700;outline:none;text-decoration:none}.button-wide{font-size:1em;padding:.5em 2em}.button-large{text-transform:uppercase;font-size:1em;padding:.5em 1em}footer{background-color:#1b3a43;color:#fff;display:flex;flex-direction:column;justify-content:flex-start;padding:3em 1em;font-size:16px}@media (min-width:1024px){footer{flex-direction:row}}footer .logo{align-items:center;display:flex;flex:1;justify-content:center}footer .logo svg{fill:#fff;margin-bottom:2em}footer .footer_text{flex:1;padding:0}footer .footer_text p{margin:0 1em 1em 0}footer .footer_text .social-icons a.fa svg{fill:#fff;height:36px;margin:auto;padding:.5em 1em 0 0;width:36px}header{background-color:#fff;box-shadow:0 5px 12px -10px #9696968c;display:flex;height:75px;left:0;position:fixed;right:0;top:0;z-index:3}header .logo{align-items:center;display:flex;flex:1;padding:0 1em}@media (min-width:1024px){header .logo{padding:0 6rem}}header .logo svg{fill:#016848;height:60px;width:75px}header .logo a{align-items:center;display:flex;margin:0}header #nav_hamburger{cursor:pointer;display:inline-block;padding:1em;width:40px;z-index:2}@media (min-width:1024px){header #nav_hamburger{visibility:hidden}}header #nav_hamburger .bar{width:40px;height:4px;margin:6px 0;border-radius:50px;background-color:#016848;transition:all .2s ease-in-out}header #nav_hamburger .bar_top{top:0}header #nav_hamburger .bar_middle{top:18px}header #nav_hamburger .bar_bottom{top:36px}header .nav_hamburger-close .bar_top{background:#016848;transform:rotate(45deg) translate(8px,7px)}header .nav_hamburger-close .bar_middle{opacity:0;transition:all .2s ease-in-out}header .nav_hamburger-close .bar_bottom{background:#016848;transform:rotate(-45deg) translate(7px,-7px)}.nav{align-items:stretch;display:none;flex:1;white-space:nowrap}@media (min-width:1024px){.nav{display:flex}}.nav ul{height:100%;justify-content:space-between;margin:0;padding:0}.nav li,.nav ul{align-items:stretch;display:flex;flex:1}.nav li{border-bottom:4px solid transparent;font-weight:700;font-size:1rem;text-align:center;text-transform:uppercase;transition:all .35s ease-in-out;white-space:nowrap;padding:0 .5em}.nav li,.nav li a{justify-content:center}.nav li a{align-items:center;color:#696969;display:flex;padding:0 1em;text-decoration:none;width:100%}.nav li:hover{border-bottom:4px solid #016848}.nav li:hover a{color:#222}.nav .active{border-bottom:4px solid #016848}.nav .active a{color:#222}.sidenav{width:0;height:100%;z-index:1;position:fixed;top:0;right:0;background-color:#fff;overflow-x:hidden;transition:.5s;text-align:right;white-space:nowrap}.sidenav .horizontal_divider{display:block;height:1px;width:88%;margin:0 0 1em auto;background-color:#e3e3e3}.sidenav .logo{height:75px;padding:0 2rem}.sidenav a{padding:1rem;color:gray;display:block;font-size:1.5rem;transition:.3s;text-decoration:none;text-transform:uppercase;visibility:hidden}.sidenav a:active,.sidenav a:hover{color:#696969}.sidenav_slideIn{width:100%}.sidenav_slideIn a{visibility:visible}.sidenav_slideOut{width:0}.revealOnScroll{opacity:0}.slick-slide:focus{outline:none}.slick-dots{color:#222;margin:0;padding:0;width:100%;display:flex;justify-content:center;list-style-position:inside}.slick-dots .slick-active{color:#e3e3e3}.slick-dots li{padding-left:.5rem;cursor:pointer}.slick-dots li button{outline:none;background-color:transparent;border:none;color:transparent;opacity:1}.come-in{transform:translateY(200px);animation:a .5s ease forwards;opacity:0}.come-in:nth-child(odd){animation-duration:.6s}.already-visible{transform:translateY(0);animation:none}@keyframes a{to{transform:translateY(0);opacity:1}}.svg_B .svg_bottom{margin:0;padding:0;vertical-align:bottom}.team{background-color:#fff;display:flex;flex-wrap:wrap;width:100%}.team .teamMember{width:100vw;height:100vw;float:left;position:relative}@media (min-width:563px) and (max-width:1023px){.team .teamMember{height:50vw;width:50vw}}@media (min-width:1024px){.team .teamMember{height:25vw;width:25vw}}.team .teamMember .name_person{display:flex;align-items:center;top:5%;position:absolute;left:0;text-transform:uppercase}@media (min-width:563px) and (max-width:1023px){.team .teamMember .name_person{top:5%}}@media (min-width:1024px){.team .teamMember .name_person{top:10%}}.team .teamMember .name_person h4{transform:translateX(150px);animation:a .8s ease forwards;margin:0;margin-left:1em;color:#1b3a43;font-size:1.25em;padding:0 .5em}@media (min-width:563px) and (max-width:1023px){.team .teamMember .name_person h4{font-size:1.25em}}@media (min-width:1024px){.team .teamMember .name_person h4{font-size:.9em}}.team .teamMember .name_person .line_person{display:none;transform:translateX(150px);animation:a .8s ease forwards;background-color:#1b3a43;height:2px;width:20px}@media (min-width:1024px){.team .teamMember .name_person .line_person{display:block}}.team .teamMember .image_person{margin:0;padding:0;height:100%;width:100%;align-items:flex-end;display:flex}.team .teamMember .image_person:focus{outline:none}.team .teamMember .image_person img{height:80%;margin-left:50%;transform:translateX(-50%)}.team .color0{background-color:#fff}.team .color1{background-color:#e2eba1}.team .color2{background-color:#dcf1f7}.team .color3{background-color:rgba(1,104,71,.6)}.team .color4{background-color:#dcf1f7}@media (min-width:563px) and (max-width:1023px){.team .color4{background-color:#e2eba1}}@media (min-width:1024px){.team .color4{background-color:#dcf1f7}}.team .color5{background-color:#fff}@media (min-width:563px) and (max-width:1023px){.team .color5{background-color:#fff}}@media (min-width:1024px){.team .color5{background-color:#fff}}.team .color6{background-color:rgba(1,104,71,.6)}@media (min-width:563px) and (max-width:1023px){.team .color6{background-color:#dcf1f7}}@media (min-width:1024px){.team .color6{background-color:rgba(1,104,71,.6)}}.team .color7{background-color:#e2eba1}@media (min-width:563px) and (max-width:1023px){.team .color7{background-color:rgba(1,104,71,.6)}}@media (min-width:1024px){.team .color7{background-color:#e2eba1}}.team .color8{background-color:rgba(1,104,71,.6)}.team .color9{background-color:#dcf1f7}.team .color10{background-color:#e2eba1}.team .color11{background-color:#fff}.team .color12{background-color:#dcf1f7}@media (min-width:563px) and (max-width:1023px){.team .color12{background-color:#fff}}@media (min-width:1024px){.team .color12{background-color:#e2eba1}}.team .color13{background-color:#fff}@media (min-width:563px) and (max-width:1023px){.team .color13{background-color:#e2eba1}}@media (min-width:1024px){.team .color13{background-color:rgba(1,104,71,.6)}}.team .color14{background-color:rgba(1,104,71,.6)}@media (min-width:563px) and (max-width:1023px){.team .color14{background-color:#dcf1f7}}@media (min-width:1024px){.team .color14{background-color:#fff}}.team .color15{background-color:#e2eba1}@media (min-width:563px) and (max-width:1023px){.team .color15{background-color:rgba(1,104,71,.6)}}@media (min-width:1024px){.team .color15{background-color:#dcf1f7}}.tab{overflow:hidden;display:flex;align-items:center;justify-content:center}.tab a{float:left;border:none;background:none;outline:none;transition:.3s;margin:0 1em;font-weight:700;cursor:pointer;color:#848484;text-decoration:none}.tab a.active,.tab a:hover{color:#1b3a43}.tabcontent{display:none}.job-list{list-style-type:circle}.eeo a,.job-list a{font-weight:400;color:#53a3b7}.eeo a.active,.eeo a:hover,.job-list a.active,.job-list a:hover{color:#1b3a43}.crew{display:grid;grid-template-columns:1fr;grid-template-rows:auto;grid-row-gap:1.25em}.crewMember img{padding:0}@media screen and (min-width:576px){.crew{grid-template-columns:1fr 1fr;grid-column-gap:.5em}.crewMember img{padding:0}}@media screen and (min-width:768px){.crew{grid-template-columns:1fr 1fr 1fr;grid-column-gap:.5em}.crewMember img{padding:0}}@media screen and (min-width:1200px){.crew{grid-template-columns:1fr 1fr 1fr 1fr 1fr;grid-column-gap:.5em}.crewMember img{padding:0}}.crew{color:#696969}.crew img{max-width:100%;height:auto}.crew .crew_details{font-size:16px;padding:0 20px;line-height:1.25em}.crew h3{font-size:20px;margin:0;color:#016848}.crew h3+p{margin-top:0}.crew .social_links{border-top:1px solid #016848;padding-top:8px;height:32px}.crew .social_links a{height:auto;color:#016848}.crew .social_links a.fa svg{fill:#016848;width:32px;height:32px;margin:auto;vertical-align:top;padding:.15em}.page-position-container{font-size:20px;line-height:1.7em}.page-position-container blockquote p{text-align:center}.page-position-container h3{color:#1b3a43;font-weight:700}.page-position-container ul{display:flex;width:70%;margin:auto;flex-direction:column;list-style-type:circle;text-align:left;color:#1b3a43}.page-position-container li{flex:1;margin:auto 0;padding:0;font-size:18px}.blog h1{text-transform:uppercase;margin-bottom:0}.post h1{text-transform:none}.blog h1+p{margin-top:0;font-weight:400;font-style:italic;font-size:1.2em;margin-bottom:2em}.blog h2{text-align:left!important}.post h2{margin-bottom:0;color:#1b3a43;margin-top:2em;font-style:normal;text-transform:none}.post .page-section,.post .page-section-small,.post h2{text-align:left}.post h2~p{margin-top:0}.post h3{margin-bottom:0}.post h4{font-size:18px}.blog .categories{margin-top:20px}.blog-preview .categories{margin-top:0}.blog-preview,.news-preview{grid-row-gap:1.25em}.blog-preview,.news-preview,.session-speaker{display:grid;grid-template-columns:1fr;grid-template-rows:auto}.session-speaker{margin-bottom:2.25em}.session h3,.session h3+p{margin-top:0;margin-bottom:0}@media screen and (min-width:700px){.blog-preview{grid-template-columns:1fr 1fr;grid-column-gap:1.25em}.news-preview{grid-template-columns:1fr 1fr 1fr;grid-column-gap:1.25em}.session-speaker{display:grid;grid-template-columns:1fr 2fr;grid-template-rows:auto;column-gap:1.25em}}.blog{text-align:left!important}.blog summary{font-style:italic;border-left:6px solid;padding-left:1em;font-size:1.1em;font-weight:400;margin-top:1em;display:block}.blog .author{font-size:16px}.blog h4{text-transform:uppercase;font-size:14px;margin:0}.blog img{max-width:100%;height:auto}.blog .news-title,.blog .post-title{margin:0}.blog-preview .news-title,.blog-preview .post-title,.news-preview .news-title,.news-preview .post-title{font-size:1em}.blog-preview .news-title a,.blog-preview .post-title a,.news-preview .news-title a,.news-preview .post-title a{text-decoration:none;color:#696969}.blog-preview .news-title a:hover,.blog-preview .post-title a:hover,.news-preview .news-title a:hover,.news-preview .post-title a:hover{color:#53a3b7}.blog-preview h3,.blog-preview h4,.news-preview h3,.news-preview h4{margin:0}.blog-preview p,.news-preview p{font-size:.75em;line-height:1.4em}.blog-preview .blog-preview-content,.news-preview .blog-preview-content{background-color:#f6f6f6}.blog-preview .blog-preview-content h3,.blog-preview h4,.blog-preview p,.news-preview .blog-preview-content h3,.news-preview h4,.news-preview p{padding:0 15px}.blog-preview .news-preview-content p,.news-preview .news-preview-content p{padding:0}.blog-footer-social a.fa svg{fill:#016848;width:48px;height:48px;vertical-align:top;padding:.5em .5em .5rem 0}.accent,.page-title{background:linear-gradient(180deg,transparent 68%,#e2eba1 0,#e2eba1 90%,transparent 0)}.heading{color:#1b3a43;margin:1em auto;text-align:center;text-transform:uppercase;font-weight:400;font-size:1em}@media (min-width:1024px){.heading{font-size:1.8em}}.heading:after,.heading:before{display:inline-block;content:"";border-top:1px solid #1b3a43;width:1.5em;margin:0 .5em;transform:translateY(-.35em)}.page-title{color:#1b3a43;display:inline-block;padding:0 1em;font-size:1.8em}@media (min-width:1024px){.page-title{font-size:2em}}.page-intro,.page-section,.page-section-small{color:#696969;margin:0 auto;max-width:900px;padding:0 1em 2em;text-align:center}@media (min-width:1024px){.page-intro,.page-section,.page-section-small{padding:0 .5em 2em}}.page-intro p,.page-section-small p,.page-section p{text-align:left}@media (min-width:1024px){.page-intro p,.page-section-small p,.page-section p{text-align:left}}.page-section-small{max-width:768px}.page-intro-alt{background-color:#016848;background-image:url(/img/shapes_pattern.png);background-size:cover;color:#fff;padding:5em 0;text-align:center;width:100%}.page-intro-alt h1{padding:0 1em;text-transform:uppercase}.page-intro-alt p{text-align:center;padding:0 1em;margin:0 auto;max-width:768px}.content{padding-top:75px}main{width:100vw;max-width:100vw;overflow:hidden}a{color:#016848;font-weight:700;transition:all .35s ease-in-out}.button-large:hover,.button-wide:hover{background-color:#007d55}.home{display:flex;flex-direction:column;height:100%;width:100%}@media (min-width:1024px){.home{flex-direction:row}}.home .background_image{background-image:url(/img/444_4k.jpg);background-size:cover;flex:1;min-height:444px}@media (min-width:1024px){.home .background_image{flex:1.4}}@media screen and (min-width:1024px) and (max-height:720px){.home .background_image{flex:1.2}}@media screen and (min-width:1024px) and (max-height:620px){.home .background_image{flex:1}}.home .description{color:#696969;display:block;flex:1;margin:auto;padding:.5em 2.5rem}.home .description h1{color:#1b3a43;margin:0 auto 0 0;font-size:1.4em}@media (min-width:1024px){.home .description{flex:0.33;padding:0 6rem}}@media screen and (min-width:1024px) and (max-height:720px){.home .description{flex:0.66}}@media screen and (min-width:1024px) and (max-height:660px){.home .description{flex:0.88}}.about_valuesSlider{background:#1b3a43;color:#fff;padding:3em .5em}.about_valuesSlider .slick-slider{display:table;table-layout:fixed;width:100%}.about_valuesSlider .slide{align-items:center;display:flex;flex-direction:column;justify-content:center;text-align:center}@media (min-width:1024px){.about_valuesSlider .slide{text-align:center}}.about_valuesSlider .slide .customization{position:relative;right:24px}.about_valuesSlider .slide h3{font-size:1.3em;font-weight:700;padding:1em .5em .5em;text-align:center}.about_valuesSlider .slide p{margin:0 auto;max-width:768px;line-height:1.6em}.join .svg{width:100%}.join .svg .svg_middle_left{display:none;position:absolute;left:0;padding-top:6em;width:15%}@media (min-width:1024px){.join .svg .svg_middle_left{display:block}}.join .heading a{font-weight:100;color:#1b3a43;text-decoration:none}.join .heading,.meet .heading{font-weight:100}.person .person_nav{padding:2em 0 0 1em}.person .person_details{display:flex;flex-direction:column;min-height:256px}@media (min-width:1024px){.person .person_details{flex-direction:row}}.person .person_details .person_image{align-items:flex-end;display:flex;justify-content:center;width:100%;order:2}@media (min-width:1024px){.person .person_details .person_image{background-color:#fff;background-image:none;border-bottom:0;padding-top:1em;width:40%;order:1}}.person .person_details .person_image img{max-width:95%}@media (min-width:1024px){.person .person_details .person_image img{max-width:450px;max-height:450px}}.person .person_details .person_bio{flex:1;padding:1em;max-width:768px;width:100%;order:1}@media (min-width:1024px){.person .person_details .person_bio{width:60%;order:2}}.person .person_details .person_bio .person_title{color:#1b3a43;font-size:1.2em}.person .person_details .person_bio h2{color:#1b3a43;display:inline-block;margin:0;margin-left:-1em;padding-left:1em;padding-right:1em}.person .person_details .person_bio p{color:#696969;font-size:1em;margin-right:1em;padding:0 1em 0 0}.person .person_footer{display:flex;height:75px}.person .person_footer .person_footer-gutter{display:none;width:40%}@media (min-width:1024px){.person .person_footer .person_footer-gutter{display:inline-block}}.person .person_footer .person_footer-social{display:flex}@media (min-width:1024px){.person .person_footer .person_footer-social{display:flex;width:60%}}.person .person_footer .person_footer-social a{height:auto}.person .person_footer .person_footer-social a.fa svg{fill:#016848;width:48px;height:48px;margin:auto;vertical-align:top;padding:.5em .5em .5rem 0}.services_container{align-items:center;display:flex;padding:0 0 2em;flex-direction:column;flex-wrap:wrap;justify-content:center}@media (min-width:1024px){.services_container{align-items:stretch;flex-direction:row;align-items:flex-end}}.services_container .service{display:block;margin:1em}@media (min-width:1024px){.services_container .service{width:25%}}.services_container .service .service_icon{padding:1em;margin-bottom:.5em;text-align:center}.services_container .service .service_icon img{max-width:130px;width:100%}.services_container .service .service_title{font-size:1.2em;color:#1b3a43;margin:0;text-align:center}.services_container .service .service_desc{display:none;padding:.5em 0;color:#696969;font-size:.7em;line-height:1.7em}.projects,.projects .project{display:flex;flex-direction:column}.projects .project{background-color:#f6f6f6;margin-bottom:1em}@media (min-width:1024px){.projects .project{flex-direction:row}}.projects .project .image{flex:1}.projects .project .image img{height:100%;width:100%}.projects .project .info{align-items:center;display:flex;flex:1;flex-direction:column;justify-content:center;padding:1em}@media (min-width:1024px){.projects .project .info{flex:0.4}}.projects .project .info h2,.projects .project .info p{color:#1b3a43;margin:0;text-align:center}.projects a{text-decoration:none}.project-section,.project-section-alt{display:flex;flex-direction:column}.project-section-alt .project-info,.project-section .project-info{color:#222;flex:1;margin:auto;padding:1em}.project-section-alt .project-image,.project-section .project-image{align-items:center;display:flex;flex:1;justify-content:center;padding:1em}.project-section-alt .project-image img,.project-section .project-image img{width:100%}@media (min-width:1024px){.project-section,.project-section-alt{flex-direction:row}.project-section-alt .project-info,.project-section .project-info{padding:4em 2em 4em 6rem}.project-section-alt .project-image,.project-section .project-image{flex:none;padding:2em;width:256px}}@media (min-width:1024px){.project-section-alt .project-info{padding:4em 2em}.project-section-alt .project-image{padding:2em 2em 2em 6rem}}.project-banner img{width:100%}.project-specs{background:#f6f6f6;display:flex;flex-direction:column;padding:1em;text-align:center}.project-specs li,.project-specs ul{list-style:none;margin:0;padding:0}.project-specs h2{margin:0}.project-specs hr{width:66%}.project-specs .specs{flex:1;padding:1em}@media (min-width:1024px){.project-specs{flex-direction:row;padding:6rem 1em}.project-specs hr{display:none}}.projects-navigation{padding:2em 1em;text-align:center}.projects-navigation .projects-cards{align-items:center;display:flex;flex-direction:column;justify-content:center}@media (min-width:1024px){.projects-navigation .projects-cards{flex-direction:row}}.projects-navigation .project-navbox{background:#f6f6f6;margin:1em;max-width:320px}.projects-navigation .project-navbox a{text-decoration:none}.projects-navigation .project-navbox h2,.projects-navigation .project-navbox p{margin:0;color:#1b3a43}.projects-navigation .project-navbox h2{margin-top:1em}.projects-navigation .project-navbox p{margin-bottom:1em}.projects-navigation .project-navbox img{width:100%}.opportunities{background-color:#f6f6f6}.opportunities .page-openings{margin:2em auto 0}.opportunities .page-openings h3{color:#1b3a43}.opportunities .job-openings{display:flex;width:100%;margin:auto;flex-direction:column;text-align:left}.opportunities .page-openings-bring,.opportunities .page-openings-support{height:auto}.opportunities .page-openings-bring .info-list,.opportunities .page-openings-support .info-list{display:flex;width:70%;margin:auto;flex-direction:column;list-style-type:circle;text-align:left}.opportunities .page-openings-bring .info-list li,.opportunities .page-openings-support .info-list li{flex:1;margin:auto 0;padding:0;font-size:18px;color:#016848}.opportunities .page-openings-bring .info-list li span,.opportunities .page-openings-support .info-list li span{color:#1b3a43}.opportunities .page-subtitle{color:#1b3a43;font-weight:700;text-align:center}.benefits{background-color:#1b3a43}.benefits .heading{color:#fff}.benefits .heading:after,.benefits .heading:before{border-top:1px solid #fff}.benefits .benefits-list{list-style-type:circle;display:block;margin:a auto;width:90%;text-align:left;margin:auto}@media (min-width:1024px){.benefits .benefits-list{width:50%}}.benefits .benefits-list li{color:#d0df63}.benefits .benefits-list li span,.benefits h1,.benefits li,.benefits p{color:#fff}.internship{background-color:#f6f6f6}.benefits,.internship,.opportunities{padding:1em 0}.benefits .heading,.internship .heading,.opportunities .heading{font-weight:100}.expertise-cards{display:grid;grid-template-columns:1fr;grid-template-rows:auto;grid-row-gap:1.25em}@media screen and (min-width:700px){.expertise-cards{grid-template-columns:1fr 1fr 1fr;grid-column-gap:1.25em}}.embed-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;max-width:100%}.embed-container embed,.embed-container iframe,.embed-container object{position:absolute;top:0;left:0;width:100%;height:100%}
/*# sourceMappingURL=styles.min.css.map */</style>
<script type="text/javascript" src="/scripts/main.bundle.js"></script>
</head>
<body>
<header>
<div class="logo">
<a href="/">
<svg>
<title>Mile Two Home</title>
<use xlink:href="#M2Logo2"></use>
</svg>
</a>
</div>
<nav class="nav">
<ul>
<li class="active" ><a href="/">Home</a></li>
<li ><a href="/about/">About Us</a></li>
<li ><a href="/services/">Services</a></li>
<li ><a href="/join/">Join the Crew</a></li>
<li ><a href="/blog/">Mile Markers</a></li>
</ul>
</nav>
<a id="nav_hamburger" class="" href="#" aria-label="Open Navigation">
<div class="bar bar_top"></div>
<div class="bar bar_middle"></div>
<div class="bar bar_bottom"></div>
</a>
<div class="sidenav">
<div class="logo">
<a href="/"><svg class="M2_svg">
<use xlink:href="#M2Logo2"></use>
</svg></a>
</div>
<div class="horizontal_divider"></div>
<div class="sidenav_links">
<a href="/">Home</a>
<a href="/about/">About Us</a>
<a href="/services/">Services</a>
<a href="/join/">Join the Crew</a>
<a href="/blog/">Mile Markers</a>
</div>
</div>
</header>
<svg display="none" width="0" height="0" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<symbol id="icon-paint-format" viewBox="0 0 32 32">
<title>paint-format</title>
<path d="M32 18v-12h-6v-2c0-1.1-0.9-2-2-2h-22c-1.1 0-2 0.9-2 2v6c0 1.1 0.9 2 2 2h22c1.1 0 2-0.9 2-2v-2h4v8h-18v4h-1c-0.552 0-1 0.448-1 1v10c0 0.552 0.448 1 1 1h4c0.552 0 1-0.448 1-1v-10c0-0.552-0.448-1-1-1h-1v-2h18zM24 6h-22v-2h22v2z"></path>
</symbol>
<symbol id="icon-stack" viewBox="0 0 32 32">
<title>stack</title>
<path d="M32 10l-16-8-16 8 16 8 16-8zM16 4.655l10.689 5.345-10.689 5.345-10.689-5.345 10.689-5.345zM28.795 14.398l3.205 1.602-16 8-16-8 3.205-1.602 12.795 6.398zM28.795 20.398l3.205 1.602-16 8-16-8 3.205-1.602 12.795 6.398z"></path>
</symbol>
<symbol id="icon-compass" viewBox="0 0 32 32">
<title>compass</title>
<path d="M17 32c-0.072 0-0.144-0.008-0.217-0.024-0.458-0.102-0.783-0.507-0.783-0.976v-15h-15c-0.469 0-0.875-0.326-0.976-0.783s0.129-0.925 0.553-1.123l30-14c0.381-0.178 0.833-0.098 1.13 0.199s0.377 0.749 0.199 1.13l-14 30c-0.167 0.358-0.524 0.577-0.906 0.577zM5.508 14h11.492c0.552 0 1 0.448 1 1v11.492l10.931-23.423-23.423 10.931z"></path>
</symbol>
<symbol id="icon-map2" viewBox="0 0 32 32">
<title>map2</title>
<path d="M21 6l-10-4-11 4v24l11-4 10 4 11-4v-24l-11 4zM12 4.554l8 3.2v19.692l-8-3.2v-19.692zM2 7.401l8-2.909v19.744l-8 2.909v-19.744zM30 24.599l-8 2.909v-19.744l8-2.909v19.744z"></path>
</symbol>
<symbol id="icon-database" viewBox="0 0 32 32">
<title>database</title>
<path d="M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z"></path>
<path d="M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z"></path>
<path d="M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z"></path>
</symbol>
<symbol id="icon-wrench" viewBox="0 0 32 32">
<title>wrench</title>
<path d="M31.342 25.559l-14.392-12.336c0.67-1.259 1.051-2.696 1.051-4.222 0-4.971-4.029-9-9-9-0.909 0-1.787 0.135-2.614 0.386l5.2 5.2c0.778 0.778 0.778 2.051 0 2.828l-3.172 3.172c-0.778 0.778-2.051 0.778-2.828 0l-5.2-5.2c-0.251 0.827-0.386 1.705-0.386 2.614 0 4.971 4.029 9 9 9 1.526 0 2.963-0.38 4.222-1.051l12.336 14.392c0.716 0.835 1.938 0.882 2.716 0.104l3.172-3.172c0.778-0.778 0.731-2-0.104-2.716z"></path>
</symbol>
<symbol id="icon-download2" viewBox="0 0 32 32">
<title>download2</title>
<path d="M28 16h-5l-7 7-7-7h-5l-4 8v2h32v-2l-4-8zM0 28h32v2h-32v-2zM18 10v-8h-4v8h-7l9 9 9-9h-7z"></path>
</symbol>
<symbol id="icon-earth" viewBox="0 0 32 32">
<title>earth</title>
<path d="M16 0c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zM16 30c-1.967 0-3.84-0.407-5.538-1.139l7.286-8.197c0.163-0.183 0.253-0.419 0.253-0.664v-3c0-0.552-0.448-1-1-1-3.531 0-7.256-3.671-7.293-3.707-0.188-0.188-0.442-0.293-0.707-0.293h-4c-0.552 0-1 0.448-1 1v6c0 0.379 0.214 0.725 0.553 0.894l3.447 1.724v5.871c-3.627-2.53-6-6.732-6-11.489 0-2.147 0.484-4.181 1.348-6h3.652c0.265 0 0.52-0.105 0.707-0.293l4-4c0.188-0.188 0.293-0.442 0.293-0.707v-2.419c1.268-0.377 2.61-0.581 4-0.581 2.2 0 4.281 0.508 6.134 1.412-0.13 0.109-0.256 0.224-0.376 0.345-1.133 1.133-1.757 2.64-1.757 4.243s0.624 3.109 1.757 4.243c1.139 1.139 2.663 1.758 4.239 1.758 0.099 0 0.198-0.002 0.297-0.007 0.432 1.619 1.211 5.833-0.263 11.635-0.014 0.055-0.022 0.109-0.026 0.163-2.541 2.596-6.084 4.208-10.004 4.208z"></path>
</symbol>
<symbol id="icon-share" viewBox="0 0 32 32">
<title>share</title>
<path d="M8 20c0 0 1.838-6 12-6v6l12-8-12-8v6c-8 0-12 4.99-12 10zM22 24h-18v-12h3.934c0.315-0.372 0.654-0.729 1.015-1.068 1.374-1.287 3.018-2.27 4.879-2.932h-13.827v20h26v-8.395l-4 2.667v1.728z"></path>
</symbol>
<symbol id="icon-envelope" viewBox="0 0 32 32">
<title>envelope</title>
<path d="M29 4h-26c-1.65 0-3 1.35-3 3v20c0 1.65 1.35 3 3 3h26c1.65 0 3-1.35 3-3v-20c0-1.65-1.35-3-3-3zM12.461 17.199l-8.461 6.59v-15.676l8.461 9.086zM5.512 8h20.976l-10.488 7.875-10.488-7.875zM12.79 17.553l3.21 3.447 3.21-3.447 6.58 8.447h-19.579l6.58-8.447zM19.539 17.199l8.461-9.086v15.676l-8.461-6.59z"></path>
</symbol>
<symbol id="facebook" viewBox="0 0 448 512">
<title id="facebook-title">Facebook</title>
<path d="M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"></path>
</symbol>
<symbol id="facebook-f" viewBox="0 0 264 512">
<title id="facebook-f-title">Facebook F</title>
<path d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path>
</symbol>
<symbol id="facebook-messenger" viewBox="0 0 448 512">
<title id="facebook-messenger-title">Facebook Messenger</title>
<path d="M224 32C15.9 32-77.5 278 84.6 400.6V480l75.7-42c142.2 39.8 285.4-59.9 285.4-198.7C445.8 124.8 346.5 32 224 32zm23.4 278.1L190 250.5 79.6 311.6l121.1-128.5 57.4 59.6 110.4-61.1-121.1 128.5z"></path>
</symbol>
<symbol id="facebook-square" viewBox="0 0 448 512">
<title id="facebook-square-title">Facebook Square</title>
<path d="M448 80v352c0 26.5-21.5 48-48 48h-85.3V302.8h60.6l8.7-67.6h-69.3V192c0-19.6 5.4-32.9 33.5-32.9H384V98.7c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9H184v67.6h60.9V480H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z"></path>
</symbol>
<symbol id="desktop" viewBox="0 0 576 512">
<title id="desktop-title">Desktop</title>
<path d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"></path>
</symbol>
<symbol id="twitter" viewBox="0 0 512 512">
<title id="twitter-title">Twitter</title>
<path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"></path>
</symbol>
<symbol id="twitter-square" viewBox="0 0 448 512">
<title id="twitter-square-title">Twitter Square</title>
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z"></path>
</symbol>
<symbol id="linkedin" viewBox="0 0 448 512">
<title id="linkedin-title">LinkedIn</title>
<path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"></path>
</symbol>
<symbol id="linkedin-in" viewBox="0 0 448 512">
<title id="linkedin-in-title">LinkedIn In</title>
<path d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path>
</symbol>
<symbol id="creative-commons" viewBox="0 0 496 512">
<title id="creative-commons-title">Creative Commons</title>
<path d="M254.8 214.8l-33.2 17.3c-9.4-19.6-25.2-19.9-27.5-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.7-7.1 30.6-21.3l30.6 15.5c-6.2 11.5-25.7 39-65.1 39-22.6 0-74-10.3-74-77.1 0-58.7 43-77.1 72.6-77.1 30.8.2 52.7 12.1 66 36zm143.1 0l-32.8 17.3c-9.5-19.8-25.7-19.9-27.9-19.9-22.1 0-33.2 14.6-33.2 43.8 0 23.6 9.2 43.8 33.2 43.8 14.5 0 24.6-7.1 30.5-21.3l31 15.5c-2.1 3.7-21.4 39-65.1 39-22.7 0-74-9.9-74-77.1 0-58.7 43-77.1 72.6-77.1 30.8.2 52.7 12.1 65.7 36zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z"></path>
</symbol>
<symbol id="github" viewBox="0 0 24 24">
<title id="github-title">GitHub</title>
<path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" />
</symbol>
<symbol id="amazon" viewBox="0 0 24 24">
<title id="amazon-title">Amazon</title>
<path d="M.045 18.02c.072-.116.187-.124.348-.022 3.636 2.11 7.594 3.166 11.87 3.166 2.852 0 5.668-.533 8.447-1.595l.315-.14c.138-.06.234-.1.293-.13.226-.088.39-.046.525.13.12.174.09.336-.12.48-.256.19-.6.41-1.006.654-1.244.743-2.64 1.316-4.185 1.726-1.53.406-3.045.61-4.516.61-2.265 0-4.41-.396-6.435-1.187-2.02-.794-3.82-1.91-5.43-3.35-.1-.074-.15-.15-.15-.22 0-.047.02-.09.05-.13zm6.565-6.218c0-1.005.247-1.863.743-2.577.495-.71 1.17-1.25 2.04-1.615.796-.335 1.756-.575 2.912-.72.39-.046 1.033-.103 1.92-.174v-.37c0-.93-.105-1.558-.3-1.875-.302-.43-.78-.65-1.44-.65h-.182c-.48.046-.896.196-1.246.46-.35.27-.575.63-.675 1.096-.06.3-.206.465-.435.51l-2.52-.315c-.248-.06-.372-.18-.372-.39 0-.046.007-.09.022-.15.247-1.29.855-2.25 1.82-2.88.976-.616 2.1-.975 3.39-1.05h.54c1.65 0 2.957.434 3.888 1.29.135.15.27.3.405.48.12.165.224.314.283.45.075.134.15.33.195.57.06.254.105.42.135.51.03.104.062.3.076.615.01.313.02.493.02.553v5.28c0 .376.06.72.165 1.036.105.313.21.54.315.674l.51.674c.09.136.136.256.136.36 0 .12-.06.226-.18.314-1.2 1.05-1.86 1.62-1.963 1.71-.165.135-.375.15-.63.045-.195-.166-.375-.332-.526-.496l-.31-.347c-.06-.074-.166-.21-.317-.42l-.3-.435c-.81.886-1.603 1.44-2.4 1.665-.494.15-1.093.227-1.83.227-1.11 0-2.04-.343-2.76-1.034-.72-.69-1.08-1.665-1.08-2.94l-.05-.076zm3.753-.438c0 .566.14 1.02.425 1.364.285.34.675.512 1.155.512.045 0 .106-.007.195-.02.09-.016.134-.023.166-.023.614-.16 1.08-.553 1.424-1.178.165-.28.285-.58.36-.91.09-.32.12-.59.135-.8.015-.195.015-.54.015-1.005v-.54c-.84 0-1.484.06-1.92.18-1.275.36-1.92 1.17-1.92 2.43l-.035-.02zm9.162 7.027c.03-.06.075-.11.132-.17.362-.243.714-.41 1.05-.5.55-.133 1.09-.222 1.612-.24.14-.012.28 0 .41.03.65.06 1.05.168 1.172.33.063.09.09.228.09.39v.15c0 .51-.14 1.11-.415 1.8-.278.69-.664 1.248-1.156 1.68-.073.06-.14.09-.197.09-.03 0-.06 0-.09-.012-.09-.044-.107-.12-.064-.24.54-1.26.806-2.143.806-2.64 0-.15-.03-.27-.087-.344-.145-.166-.55-.257-1.224-.257-.243 0-.533.016-.87.046-.363.045-.7.09-1 .135-.09 0-.148-.014-.18-.044-.03-.03-.036-.047-.02-.077 0-.017.006-.03.02-.063v-.06z" />
</symbol>
<symbol id="blogger" viewBox="0 0 24 24">
<title id="blogger-title">Blogger</title>
<path d="M21.976 24H2.026C.9 24 0 23.1 0 21.976V2.026C0 .9.9 0 2.025 0H22.05C23.1 0 24 .9 24 2.025v19.95C24 23.1 23.1 24 21.976 24zM12 3.975H9c-2.775 0-5.025 2.25-5.025 5.025v6c0 2.774 2.25 5.024 5.025 5.024h6c2.774 0 5.024-2.25 5.024-5.024v-3.975c0-.6-.45-1.05-1.05-1.05H18c-.524 0-.976-.45-.976-.976 0-2.776-2.25-5.026-5.024-5.026zm3.074 12H9c-.525 0-.975-.45-.975-.975s.45-.976.975-.976h6.074c.526 0 .977.45.977.976s-.45.976-.975.976zm-2.55-7.95c.527 0 .976.45.976.975s-.45.975-.975.975h-3.6c-.525 0-.976-.45-.976-.975s.45-.975.975-.975h3.6z" />
</symbol>
<symbol id="codepen" viewBox="0 0 24 24">
<title id="codepen-title">Codepen</title>
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="codepen" class="svg-inline--fa fa-codepen fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z"></path></svg>
</symbol>
<symbol id="dribble" viewBox="0 0 24 24">
<title id="dribble-title">Dribble</title>
<svg aria-hidden="true" focusable="false" data-prefix="fab" data-icon="dribbble-square" class="svg-inline--fa fa-dribbble-square fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z"></path></svg>
</symbol>
<symbol id="user" viewBox="0 0 24 24">
<title id="user-title">Website</title>
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="user" class="svg-inline--fa fa-user fa-w-14" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>
</symbol>
<symbol id="envelope" viewBox="0 0 512 512">
<title id="envelope-title">Envelope</title>
<path d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z" />
</symbol>
<symbol id="envelope-open" viewBox="0 0 512 512">
<title id="envelope-open-title">Envelope Open</title>
<path d="M349.32 52.26C328.278 35.495 292.938 0 256 0c-36.665 0-71.446 34.769-93.31 52.26-34.586 27.455-109.525 87.898-145.097 117.015A47.99 47.99 0 0 0 0 206.416V464c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V206.413a47.989 47.989 0 0 0-17.597-37.144C458.832 140.157 383.906 79.715 349.32 52.26zM464 480H48c-8.837 0-16-7.163-16-16V206.161c0-4.806 2.155-9.353 5.878-12.392C64.16 172.315 159.658 95.526 182.59 77.32 200.211 63.27 232.317 32 256 32c23.686 0 55.789 31.27 73.41 45.32 22.932 18.207 118.436 95.008 144.714 116.468a15.99 15.99 0 0 1 5.876 12.39V464c0 8.837-7.163 16-16 16zm-8.753-216.312c4.189 5.156 3.393 12.732-1.776 16.905-22.827 18.426-55.135 44.236-104.156 83.148-21.045 16.8-56.871 52.518-93.318 52.258-36.58.264-72.826-35.908-93.318-52.263-49.015-38.908-81.321-64.716-104.149-83.143-5.169-4.173-5.966-11.749-1.776-16.905l5.047-6.212c4.169-5.131 11.704-5.925 16.848-1.772 22.763 18.376 55.014 44.143 103.938 82.978 16.85 13.437 50.201 45.69 73.413 45.315 23.219.371 56.562-31.877 73.413-45.315 48.929-38.839 81.178-64.605 103.938-82.978 5.145-4.153 12.679-3.359 16.848 1.772l5.048 6.212z"></path>
</symbol>
<symbol id="envelope-square" viewBox="0 0 448 512">
<title id="envelope-square-title">Envelope Square</title>
<path d="M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm16 400c0 8.822-7.178 16-16 16H48c-8.822 0-16-7.178-16-16V80c0-8.822 7.178-16 16-16h352c8.822 0 16 7.178 16 16v352zm-64-304H96c-17.673 0-32 14.327-32 32v192c0 17.673 14.327 32 32 32h256c17.673 0 32-14.327 32-32V160c0-17.673-14.327-32-32-32zm0 32v33.855c-14.136 11.628-36.566 29.664-82.117 65.821C259.426 268.015 238.748 288 224.256 288l-.256-.002-.256.002c-14.492 0-35.17-19.984-45.628-28.324-45.544-36.152-67.978-54.192-82.117-65.822V160H352zM96 352V235.092c14.109 11.367 33.624 26.948 62.221 49.648 13.777 11.01 37.902 35.26 65.523 35.26l.253-.001.258.001c27.529 0 51.392-23.975 65.541-35.274 28.583-22.689 48.099-38.27 62.203-49.634V352H96z"></path>
</symbol>
<symbol id="M2LogoNavigation" viewBox="0 0 141.5 225.7">
<title>M2-Logo</title>
<path id="M2_Backdrop" fill="#016848" d="M24,3.7h91.2c11.2,0,20.3,9.1,20.3,20.3v174.1c0,11.2-9.1,20.3-20.3,20.3H24c-11.2,0-20.3-9.1-20.3-20.3V24C3.7,12.8,12.8,3.7,24,3.7z" />
<path d="M115.2,7.4c9.2,0,16.6,7.4,16.6,16.6v174.1c0,9.2-7.4,16.6-16.6,16.6H24c-9.2,0-16.6-7.4-16.6-16.6V24c0-9.2,7.4-16.6,16.6-16.6H115.2 M115.2,0H24C10.8,0,0,10.8,0,24v174.1c0,13.2,10.8,24,24,24h91.2c13.2,0,24-10.8,24-24V24C139.2,10.8,128.5,0,115.2,0z" />
<path d="M31.1,38.1l8.1,17.8l8.2-17.8h5.8v44.5h-6V51.8l-6.9,14.5h-2.5l-6.9-14.8v31.2h-6V38.1L31.1,38.1z" />
<path d="M65.2,38.1v44.5h-6V38.1H65.2z" />
<path d="M77.7,38.1v39.1h13.5v5.5H71.7V38.2L77.7,38.1z" />
<path d="M113.9,38.1v5.5h-12.7v14.2h8.9v5.3h-9v14.2h12.9v5.5H95.2V38.2L113.9,38.1z" />
<path d="M45,126.1c5.7-7.9,15-12.5,24.7-12.1c12.7,0,23.3,6.3,23.3,20.2c0.2,5.9-2.6,11.5-7.4,14.8c-5.6,4.3-14.5,8.1-19.8,11.7c-5.3,3.7-6.5,7-6.5,10.6h33.4v12.7H44V180c0-10.3,2.1-18.8,8.5-24.5c5.6-5,15.9-9.3,20.8-12.1c4.9-2.8,6.6-5.1,6.6-8.6c0-5.5-4.1-7.9-9.7-7.9c-6.4,0.1-12.4,3.3-16.1,8.5L45,126.1z" />
</symbol>
<symbol id="M2LogoFooter" viewBox="0 0 141.5 225.7">
<title>M2-Logo</title>
<path id="M2_Backdrop" fill="#1A3A44" d="M24,3.7h91.2c11.2,0,20.3,9.1,20.3,20.3v174.1c0,11.2-9.1,20.3-20.3,20.3H24c-11.2,0-20.3-9.1-20.3-20.3V24C3.7,12.8,12.8,3.7,24,3.7z" />
<path d="M115.2,7.4c9.2,0,16.6,7.4,16.6,16.6v174.1c0,9.2-7.4,16.6-16.6,16.6H24c-9.2,0-16.6-7.4-16.6-16.6V24c0-9.2,7.4-16.6,16.6-16.6H115.2 M115.2,0H24C10.8,0,0,10.8,0,24v174.1c0,13.2,10.8,24,24,24h91.2c13.2,0,24-10.8,24-24V24C139.2,10.8,128.5,0,115.2,0z" />
<path d="M31.1,38.1l8.1,17.8l8.2-17.8h5.8v44.5h-6V51.8l-6.9,14.5h-2.5l-6.9-14.8v31.2h-6V38.1L31.1,38.1z" />
<path d="M65.2,38.1v44.5h-6V38.1H65.2z" />
<path d="M77.7,38.1v39.1h13.5v5.5H71.7V38.2L77.7,38.1z" />
<path d="M113.9,38.1v5.5h-12.7v14.2h8.9v5.3h-9v14.2h12.9v5.5H95.2V38.2L113.9,38.1z" />
<path d="M45,126.1c5.7-7.9,15-12.5,24.7-12.1c12.7,0,23.3,6.3,23.3,20.2c0.2,5.9-2.6,11.5-7.4,14.8c-5.6,4.3-14.5,8.1-19.8,11.7c-5.3,3.7-6.5,7-6.5,10.6h33.4v12.7H44V180c0-10.3,2.1-18.8,8.5-24.5c5.6-5,15.9-9.3,20.8-12.1c4.9-2.8,6.6-5.1,6.6-8.6c0-5.5-4.1-7.9-9.7-7.9c-6.4,0.1-12.4,3.3-16.1,8.5L45,126.1z" />
</symbol>
<symbol id="M2Logo" viewBox="0 0 141.5 225.7">
<title>M2-Logo</title>
<path class="M2_Backdrop" fill="#ffffff" d="M24,3.7h91.2c11.2,0,20.3,9.1,20.3,20.3v174.1c0,11.2-9.1,20.3-20.3,20.3H24c-11.2,0-20.3-9.1-20.3-20.3V24C3.7,12.8,12.8,3.7,24,3.7z" />
<path d="M115.2,7.4c9.2,0,16.6,7.4,16.6,16.6v174.1c0,9.2-7.4,16.6-16.6,16.6H24c-9.2,0-16.6-7.4-16.6-16.6V24c0-9.2,7.4-16.6,16.6-16.6H115.2 M115.2,0H24C10.8,0,0,10.8,0,24v174.1c0,13.2,10.8,24,24,24h91.2c13.2,0,24-10.8,24-24V24C139.2,10.8,128.5,0,115.2,0z" />
<path d="M31.1,38.1l8.1,17.8l8.2-17.8h5.8v44.5h-6V51.8l-6.9,14.5h-2.5l-6.9-14.8v31.2h-6V38.1L31.1,38.1z" />
<path d="M65.2,38.1v44.5h-6V38.1H65.2z" />
<path d="M77.7,38.1v39.1h13.5v5.5H71.7V38.2L77.7,38.1z" />
<path d="M113.9,38.1v5.5h-12.7v14.2h8.9v5.3h-9v14.2h12.9v5.5H95.2V38.2L113.9,38.1z" />
<path d="M45,126.1c5.7-7.9,15-12.5,24.7-12.1c12.7,0,23.3,6.3,23.3,20.2c0.2,5.9-2.6,11.5-7.4,14.8c-5.6,4.3-14.5,8.1-19.8,11.7c-5.3,3.7-6.5,7-6.5,10.6h33.4v12.7H44V180c0-10.3,2.1-18.8,8.5-24.5c5.6-5,15.9-9.3,20.8-12.1c4.9-2.8,6.6-5.1,6.6-8.6c0-5.5-4.1-7.9-9.7-7.9c-6.4,0.1-12.4,3.3-16.1,8.5L45,126.1z" />
</symbol>
<symbol id="M2Logo2" viewBox="0 0 334.68 216">
<title>M2-Logo2</title>
<path d="M312.14,9a13.56,13.56,0,0,1,13.54,13.55v170.9A13.56,13.56,0,0,1,312.14,207H221.86a13.57,13.57,0,0,1-13.55-13.55V22.55A13.57,13.57,0,0,1,221.86,9h90.28m0-9H221.86a22.61,22.61,0,0,0-22.55,22.55v170.9A22.61,22.61,0,0,0,221.86,216h90.28a22.61,22.61,0,0,0,22.54-22.55V22.55A22.61,22.61,0,0,0,312.14,0Z" />
<path d="M11.7,63.79,26.88,97.33,42.2,63.79H53v83.86H41.85V89.43l-13,27.37H24.15L11.26,89.08v58.57H0V63.79Z" />
<path d="M75.88,63.79v83.86H64.49V63.79Z" />
<path d="M99.32,63.79v73.54h25.16v10.32H88V63.79Z" />
<path d="M167.34,63.79V74.11H143.55V100.6h16.86v10h-16.9v26.48h24.23v10.33H132.43V63.52Z" />
<path d="M238.12,78.18A35.84,35.84,0,0,1,268.4,63.65c15.5,0,28.61,7.64,28.61,24.19a21.38,21.38,0,0,1-8.83,18c-6,4.77-16.56,10-23,14.44s-7.37,7.15-7.37,10h39V147.7H237v-5.39c0-12.14,2.52-22.38,10-29.44A143.15,143.15,0,0,1,271.4,98c5.83-3.36,7.51-5.74,7.51-9.19,0-5.34-3.8-7.85-9.89-7.85a24.19,24.19,0,0,0-18.45,9.53Z" />
</symbol>
<symbol id="M2Logo3" viewBox="0 0 216 344.64">
<title>M2-Logo3</title>
<g id="rectangle"><rect fill="#016848" x="5.47" y="5.54" width="205.06" height="333.79" rx="30.17" ry="30.17"/>
<path fill="#FFFFFF" d="M180.36,11.09A24.65,24.65,0,0,1,205,35.72V309.16a24.65,24.65,0,0,1-24.62,24.63H35.64A24.65,24.65,0,0,1,11,309.16V35.72A24.65,24.65,0,0,1,35.64,11.09H180.36m0-11.09H35.64A35.82,35.82,0,0,0-.07,35.72V309.16a35.82,35.82,0,0,0,35.71,35.72H180.36a35.82,35.82,0,0,0,35.71-35.72V35.72A35.82,35.82,0,0,0,180.36,0Z"/>
<path fill="#016848" d="M180.36,3a32.75,32.75,0,0,1,32.71,32.72V309.16a32.75,32.75,0,0,1-32.71,32.72H35.64A32.75,32.75,0,0,1,2.93,309.16V35.72A32.75,32.75,0,0,1,35.64,3H180.36m0-3H35.64A35.82,35.82,0,0,0-.07,35.72V309.16a35.82,35.82,0,0,0,35.71,35.72H180.36a35.82,35.82,0,0,0,35.71-35.72V35.72A35.82,35.82,0,0,0,180.36,0Z"/>
<path fill="#FFFFFF" d="M70,195.21a45.14,45.14,0,0,1,38.32-18.78c19.71,0,36.16,9.78,36.16,31.35a26.79,26.79,0,0,1-11.48,23c-8.69,6.67-22.5,12.56-30.73,18.15s-10.08,10.86-10.08,16.45H144v19.71H68.43v-6.21c0-16,3.26-29.17,13.19-38,8.69-7.76,24.68-14.43,32.28-18.77s10.24-7.92,10.24-13.35c0-8.53-6.36-12.26-15-12.26a31.39,31.39,0,0,0-25,13.19Z"/>
<path fill="#FFFFFF" d="M48.42,58.66,61,86.28,73.71,58.66h9v69.05H73.4V79.92l-10.71,22.5H58.81l-10.7-23v48.41H38.8V58.66Z"/>
<path fill="#FFFFFF" d="M101.33,58.66v69.05H92v-69Z"/>
<path fill="#FFFFFF" d="M120.73,58.66v60.67h21v8.53H111.42v-69Z"/>
<path fill="#FFFFFF" d="M176.9,58.66v8.53H157.19v22H171v8.22H157v22h20V128H147.88V58.81Z"/>
</symbol>
<symbol id="lowest_Crystal" viewBox="0 0 299.7 117.7">
<path fill="#016848" d="M.1 12.7l40.2 104.9h4.8l-.6-.2 19.1-4.8 96.1-24.1 30.4 29.1h2.9l-30.6-29.3 137.3-3.9v-2L174.5 86l-12.3.4 71.5-84 66 47.7v-2.5L234.2.2c-.2-.1-.4-.2-.6-.2L.9 11.4H.7.6c-.1 0-.1.1-.2.1 0 0-.1 0-.1.1-.1.1-.1.1-.1.2l-.1.1c0 .1-.1.2-.1.3v.4c0 .1 0 .1.1.1zM231.3 2.1l-45.5 53.4-26.1 30.7L5 13.2 231.3 2.1zM119.8 69.5l37.3 17.6-95.6 24-19.6 4.9L2.8 14.3l117 55.2z" />
</symbol>
<symbol id="top_Crystal" viewBox="0 0 247.9 98">
<path fill="#016848" d="M160 63v-.1-.1s0-.1-.1-.1c0 0 0-.1-.1-.1 0-.1-.1-.1-.2-.2l-.1-.1c-.1-.1-.2-.1-.3-.2l-56.8-19.4c-.2-.1-.4-.1-.5 0h-.1c-.1 0-.1 0-.2.1-.1 0-.1.1-.2.1h-.1L66.5 74.6s0 .1-.1.1l-.1.1-.1.1V75.5c0 .1.1.2.1.2v.1c0 .1.1.2.2.2.1.1.1.1.2.1L112 97.9h.4c.2 0 .4-.1.6-.2l46.6-33.9.1-.1s.1-.1.1-.2c0 0 0-.1.1-.1 0-.1.1-.1.1-.2v-.1-.1c0 .1 0 .1 0 0zm-8.1-1.3l-45.7-2.4-2.7-14.1 48.4 16.5zm-50.3-16l2.6 14-32.3 12.7 29.7-26.7zm-32 29.7l35-13.8 6.4 33.6-41.4-19.8zm43.5 19.9l-6.5-33.9 49.6 2.6-43.1 31.3zM247.9 62.8v-.2-.2s0-.1-.1-.1c0-.1-.1-.1-.1-.2l-.1-.1c0-.1-.1-.1-.2-.1l-43.5-26.7h-.1H203.5h-.4-.1L175.6 44c-.1 0-.2.1-.3.1l-.2.2v.1c0 .1-.1.1-.1.2v.5c0 .1 0 .2.1.2 0 .1.1.3.2.4l20.5 23.1c.1.1.2.2.3.2h.1c.1 0 .2.1.4.1h.1l50.4-5.3h.1c.1 0 .1 0 .2-.1h.1c.1 0 .1-.1.2-.1 0 0 .1 0 .1-.1.1-.1.1-.1.1-.2v-.1-.1-.3zm-50.7 4.1L192 49l49.4 13.4-44.2 4.5zm-6.9-20.4l-10.2-1.9 19.2-6.1-9 8zm-.5 1.9l4.5 15.6-15.7-17.7 11.2 2.1zm2.8-1.4l10.9-9.7 37 22.7-47.9-13zM90.3 28.1V28c0-.1-.1-.2-.2-.3l-.2-.2c-.1-.1-.2-.1-.3-.1l-67.4-14L0 0v2.3l20.4 12.3L0 40.3v4.2L.6 43l82.8-12.8L0 73.1v2.2l89.8-46.2c.1 0 .1-.1.2-.1 0 0 .1 0 .1-.1s.1-.1.1-.2l.1-.1v-.1-.2c.1-.1 0-.1 0-.2zm-46 6.1L2.2 40.8l20-25.3 61.5 12.7-39.4 6z"
class="st0" />
</symbol>
<symbol id="side_crystal_1" viewBox="0 0 123.6 330.7">
<style>
.st0 {
fill: #016848
}
.st1 {
fill: #c5e8f3
}
.st2 {
fill: #d0df63
}
</style>
<path id="Path_1835" d="M0 114.4l66.1 148.1L87.7 87.3 0 114.4z" class="st0" />
<path id="Path_1836" d="M61.7 16.1L0 114.4l87.7-27-26-71.3z" class="st1" />
<path d="M123.6 114L87.7 87.3 66.1 262.4l57.5-73.6z" class="st1" />
<path d="M123.6 94.5L61.7 16.1l26 71.2 35.9 26.7z" class="st2" />
<path d="M123.6 0l-18 24.8 18-.8z" class="st1" />
<path d="M123.6 24l-18 .8 18 18.9z" class="st2" />
<path d="M123.6 271.5l-27.3 17 27.3 8.4z" class="st1" />
<path d="M123.6 296.9l-27.3-8.4 27.3 42.2z" class="st0" />
</symbol>
<symbol id="crystal_group_3" viewBox="0 0 306.9 210.9">
<style>
.st00 {
fill: #d0df63
}
.st11 {
fill: #c5e8f3
}
.st22 {
fill: #1a3a44
}
.st33 {
fill: #016848
}
</style>
<path id="Path_1855" d="M306.9 141.6l-13.6 15.8v-15.8h13.6z" class="st00" />
<path id="Path_1856" d="M283.2 127.8l23.7 13.7h-13.6l-10.1-13.7z" class="st11" />
<path id="Path_1857" d="M293.3 157.3l-10.1-8.2 10.1-7.5v15.7z" class="st22" />
<path id="Path_1858" d="M283.2 127.8V149l10.1-7.5-10.1-13.7z" class="st33" />
<path id="Path_1859" d="M256.6 134.7l-30.8 22.6-12-13.3 42.8-9.3z" class="st22" />
<path id="Path_1860" d="M230.4 104.4l26.2 30.3-42.8 9.3 16.6-39.6z" class="st11" />
<path id="Path_1861" d="M225.9 157.3l-58-15.8 45.9 2.5 12.1 13.3z" class="st33" />
<path id="Path_1862" d="M230.4 104.4l-62.5 37.1 45.9 2.5 16.6-39.6z" class="st00" />
<path id="Path_1867" d="M167.8 104.3L65.5 39.2l4.1 42.5 98.2 22.6z" class="st00" />
<path id="Path_1868" d="M59.6 168.7l108.2-64.4-98.2-22.6-10 87z" class="st33" />
<path d="M0 15.5v118.7l59.6 34.5z" class="st00" />
<path d="M0 134.2v76.7l59.6-42.2zM0 4.1v11.4l59.6 153.2 10-87z" class="st22" />
<path d="M0 4.1l69.6 77.6-4.1-42.5L0 0z" class="st11" />
</symbol>
<symbol id="crystal_group_4" viewBox="0 0 201.4 328.7">
<style>
.st0 {
fill: #016848
}
</style>
<path d="M96.5 259v-.3c0-.1 0-.2-.1-.3v-.1c0-.1-.1-.1-.1-.2l-.2-.2-62.5-26.1h-.1H33.2h-.1c-.1 0-.1 0-.2.1h-.1c-.1 0-.1.1-.2.1h-.1l-.1.1-.1.1L.2 277.5c-.1.1-.1.2-.1.4v.5c0 .1.1.2.2.3l48.3 49.6h.1c.1.1.1.1.2.1 0 0 .1 0 .1.1h.4c.1 0 .2 0 .4-.1.1 0 .1-.1.2-.1l.2-.2 46.3-69v-.1c-.1.2 0 .1 0 0zm-3 0L48 290.7l-13.5-56.3 59 24.6zm-60.9-24L46 290.8 2.6 277.6l30-42.6zM4.4 280.2l42 12.9 1.7 32.1-43.7-45zm45.7 44.5l-1.7-31.9 43.3-30.2-41.6 62.1zM23.4 1.1v.1c0 .1 0 .1.1.2 0 0 0 .1.1.1 0 .1.1.1.2.2l39.8 34.6h.1c.1.1.1.1.2.1H64.2l31.9 2.2h.1c.1 0 .3 0 .4-.1h.1c.1 0 .2-.1.2-.2h.1s.1-.1.1-.2c0 0 0-.1.1-.1v-.1-.2-.2-.2c0-.1-.1-.1-.1-.2 0 0 0-.1-.1-.1L79.9 13.7c0-.1-.1-.1-.2-.2l-.1-.1s-.1-.1-.2-.1c0 0-.1 0-.1-.1L24.7 0h-.4-.1c-.1 0-.2 0-.2.1h-.1c-.1 0-.1.1-.2.1l-.1.1-.1.1s0 .1-.1.1c0 0 0 .1-.1.1V.9c.1.1.1.1.1.2zM63.3 18L34 4.4l41.2 10.1L63.3 18zm-1.1 1.7l.9 13.6L30.5 4.9l31.7 14.8zm3 15l-.9-13.8 27.6 15.7-26.7-1.9zm.5-15.3l13-3.9 14 19.2-27-15.3zM201.4 235.4l-129.1-35 48.6-52.7 80.5 84.3v-2.9l-78.7-82.4 71.6-22.1 7.1 58.9v-16.8l-5.2-43.5v-.1c0-.1-.1-.2-.1-.3v-.1l-.3-.3h-.1c-.1 0-.1-.1-.2-.1L18.9 65.4h-.4H18.2s-.1 0-.1.1c0 0-.1 0-.1.1l-.1.1-.1.1v.1c0 .1 0 .1-.1.2V66.8l51.9 134.5s0 .1.1.1v.1l.1.1.1.1.1.1h.1s.1 0 .2.1h.1l131.2 35.7v-2.2zm-9.5-112.1l-70.8 21.8-97.5-76 168.3 54.2zM20.8 69.4l98.7 76.9L70.8 199l-50-129.6z"
class="st0" />
</symbol>
<symbol id="crystal_5" viewBox="0 0 239.3 144.8">
<style>
.st000 {
fill: #1a3a44
}
.st111 {
fill: #c5e8f3
}
.st222 {
fill: #016848
}
.st333 {
fill: #d0df63
}
</style>
<path id="Path_1794" d="M76.6 28.3l128.6 116.5-70.6-104.7-58-11.8z" class="st000" />
<path id="Path_1796" d="M76.6 28.3L203.1 0l-68.5 40.1-58-11.8z" class="st111" />
<path id="Path_1797" d="M69 53.9l-55.7 5.4-1.4-20L69 53.9z" class="st222" />
<path id="Path_1798" d="M0 35.1l11.9 4.1 24.9-19.9L0 35.1z" class="st333" />
<path id="Path_1799" d="M69 53.9L36.8 19.3 11.9 39.2 69 53.9z" class="st111" />
<path id="Path_1800" d="M13.3 59.3L0 35.1l11.9 4.1 1.4 20.1z" class="st000" />
<path d="M239.3 37L203.1 0l36.2 103.1z" class="st111" />
<path d="M239.3 121.8l-34.1 23 34.1-1.6z" class="st000" />
<path d="M239.3 114.5L134.6 40.1l70.6 104.7 34.1-23z" class="st222" />
<path d="M239.3 103.1L203.1 0l-68.5 40.1 104.7 74.4z" class="st333" />
</symbol>
<symbol id="crystal_6" viewBox="0 0 221.3 219.8">
<style>
.st0 {
fill: #016848
}
</style>
<path d="M221.3 4.2V4v-.1s0-.1-.1-.1c0 0 0-.1-.1-.1 0-.1-.1-.1-.1-.2l-.1-.1c-.1-.1-.2-.1-.3-.2-.1 0-.2-.1-.3-.1L162.6 0h-.2c-.1 0-.1 0-.2.1h-.1l-.1.1s-.1 0-.1.1l-.1.1-.1.1v.2L154 27.9V28.2c0 .1 0 .2.1.3 0 .1.1.1.1.2.1.1.2.2.3.2l42.8 22.9h.5c.1 0 .2 0 .3-.1h.1c.1 0 .1-.1.2-.1h.1l.1-.1.1-.1 22.7-46.9c0-.1 0-.1.1-.2-.2 0-.2 0-.2-.1zm-23.6 44.4l-8.6-21.3 28.6-20.1-20 41.4zm-9.7-23L165.1 2.1 217.4 5 188 25.6zM163.1 2.9l22.6 23-29.4 1.2 6.8-24.2zm24.1 25l8.5 21L158.6 29l28.6-1.1zM162.8 181.8c0-.1 0-.2-.1-.2v-.1c0-.1-.1-.2-.1-.2l-.2-.2-39.4-20.9c-.1 0-.1-.1-.2-.1h-.5-.1c-.1 0-.2.1-.2.1l-23.4 16.4-.1.1c-.1 0-.1.1-.2.1 0 0 0 .1-.1.1l-.1.1V177.7c0 .1 0 .1.1.2l.1.1.1.1 41.3 40.5c.2.2.4.3.7.3.2 0 .3 0 .5-.1.3-.1.4-.4.5-.6l21.3-35.9s0-.1.1-.1v-.1-.3zM141 215l-5.9-36.5 25.1 4.1L141 215zm-6.5-38.7l-8.7-12.4 30.1 15.9-21.4-3.5zm-12.2-13.8l9.7 13.8-14.7.1-15 .1 20-14zm-20.7 16l16.5-.1 15-.1 5.9 36.9-37.4-36.7zM172.4 69.4v-.2-.2-.1l-.1-.1-.1-.1-.1-.1s-.1-.1-.2-.1L40.1 12.7c-.1 0-.2-.1-.4-.1h-.1c-.1 0-.2 0-.3.1h-.1L0 33.6v2.3l38.1-20.3L17 91.1l-17-.8v2l17.2.8 2.9 4.2L65.5 162 0 131.3v2.2l68 32h.2c.1 0 .1 0 .2.1h.1c.1 0 .2 0 .3-.1l.1-.1c.1 0 .1-.1.2-.1l103-95.1.1-.1.1-.1v-.1c0-.1 0-.1.1-.2v-.3zm-132-54.5l127.4 54L19.1 91l21.3-76.1zm28.2 148.2L19.5 92.9l148.9-22-99.8 92.2z"
class="st0" />
</symbol>
<symbol id="crystal_7" viewBox="0 0 101.5 125">
<style>
.st1 {
fill: #c5e8f3
}
</style>
<g id="Group_502">
<path id="Path_1909" fill="#d0df63" d="M59.4 0L0 84.4l59.4-10.9V0z" />
</g>
<g id="Group_503" transform="translate(59.365)">
<path id="Path_1910" d="M42.2 84.4L0 0v73.4l42.2 11z" class="st1" />
</g>
<g id="Group_504" transform="translate(0 73.425)">
<path id="Path_1911" d="M0 10.9l29.7 40.6L59.4 0 0 10.9z" class="st1" />
</g>
<g id="Group_505" transform="translate(29.682 73.425)">
<path id="Path_1912" fill="#016848" d="M71.9 10.9L0 51.6 29.7 0l42.2 10.9z" />
</g>
</symbol>
<symbol id="crystal_8" viewBox="0 0 228.6 185.1">
<style>
.st00000 {
fill: #1a3a44
}
.st11111 {
fill: #c5e8f3
}
.st22222 {
fill: #016848
}
.st33333 {
fill: #d0df63
}
</style>
<path d="M228.2 169.5l-53.4 15.6-12.9-21.9 66.3 6.3z" class="st00000" />
<path d="M200.7 120.2l27.6 49.4-66.4-6.3 38.8-43.1z" class="st11111" />
<path d="M174.8 185.1l-79.5-44.4 66.6 22.5 12.9 21.9z" class="st22222" />
<path d="M200.7 120.2L95.3 140.8l66.6 22.5 38.8-43.1z" class="st33333" />
<path d="M117.8 45.9L37.5 0l1 102 79.3-56.1z" class="st1" />
<path d="M54.3 148.8l63.5-102.9L38.5 102l15.8 46.8z" class="st22222" />
<path d="M0 105.8l38.6-3.8-1-102L0 31.3z" class="st33333" />
<path d="M0 137.1l54.4 11.7L38.6 102 0 105.7z" class="st00000" />
</symbol>
<symbol id="crystal_9" viewBox="0 0 142.5 90.5">
<path fill="#016848" d="M142.5 64.2l-38.3-34.5-25.8 29.8 64.1 4.7z" />
<path fill="#1a3a44" d="M65.7 90.5l76.8-26.3-64.1-4.7-12.7 31z" />
<path fill="#d0df63" d="M104.2 29.7L0 0l78.4 59.5 25.8-29.8z" />
<path fill="#c5e8f3" d="M65.7 90.5L0 0l78.4 59.5-12.7 31z" />
</symbol>
<symbol id="crystal_10" viewBox="0 0 101.7 155.7">
<path fill="#d0df63" d="M101.7 12.9L68.3 0l33.4 87.1z" />
<path fill="#016848" d="M101.7 114.5L0 113.6l101.7 42.1z" />
<path fill="#c5e8f3" d="M101.7 87.1L68.3 0 0 113.6l101.7.9z" />
</symbol>
<symbol id="customization" xmlns="http://www.w3.org/2000/svg" width="100%" height="150.528" viewBox="0 0 192.885 150.528">
<g id="Group_278" data-name="Group 278" transform="translate(813.217 -864.23)">
<path id="Path_228" data-name="Path 228" d="M-761.231,966.29c6.252,16.636,16.706,24.808,16.706,24.808l16.5-9.065a54.351,54.351,0,0,0,13.77,7.932v19.04c23.594,7.622,41.38,0,41.38,0V989.38a54.409,54.409,0,0,0,12.414-7.422l17.241,9.74c18.241-16.794,20.353-36.029,20.353-36.029l-17.381-9.819a54.879,54.879,0,0,0,.4-6.538,54.86,54.86,0,0,0-.282-5.572l17.445-9.584c-4.68-24.349-19.925-36.267-19.925-36.267l-17.082,9.385a54.448,54.448,0,0,0-13.187-8.029V869.983c-23.594-7.622-41.38,0-41.38,0v18.676a54.369,54.369,0,0,0-13.527,7.742l-16.128-9.111a67.2,67.2,0,0,0-18.3,27.766"
fill="none" stroke="#d0df65" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
<path id="Path_229" data-name="Path 229" d="M-760.81,947.417" fill="none" stroke="#fff" stroke-linecap="round"
stroke-linejoin="round" stroke-width="4.7" />
<path id="Path_230" data-name="Path 230" d="M-760.763,930.75" fill="none" stroke="#1b3a43" stroke-linecap="round"
stroke-linejoin="round" stroke-width="4.7" />
<path id="Path_231" data-name="Path 231" d="M-705.071,945.445v-10.8a7.118,7.118,0,0,1,7.118-7.118h28.721a28.558,28.558,0,0,0-7.426-9.765,28.59,28.59,0,0,0-36.86-.03,28.582,28.582,0,0,0-7.458,9.8h-77.373a12.518,12.518,0,0,0-12.518,12.517h0a12.518,12.518,0,0,0,12.518,12.517h77.913a28.609,28.609,0,0,0,6.818,8.6,28.575,28.575,0,0,0,36.332.574,28.6,28.6,0,0,0,7.507-9.171h-28.174A7.118,7.118,0,0,1-705.071,945.445Z"
fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
<path id="Path_232" data-name="Path 232" d="M-798.349,935.453" fill="none" stroke="#1b3a43" stroke-linecap="round"
stroke-linejoin="round" stroke-width="4.7" />
<line id="Line_40" data-name="Line 40" x2="4.888" transform="translate(-799.342 939.494)" fill="none" stroke="#fff"
stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
<line id="Line_41" data-name="Line 41" x2="52.423" transform="translate(-785.245 939.494)" fill="none" stroke="#fff"
stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
</g>
</symbol>
<symbol id="hcd" xmlns="http://www.w3.org/2000/svg" width="100%" height="184.985" viewBox="0 0 167.623 210">
<g id="Group_275" data-name="Group 275" transform="translate(1040.46 -846.452)">
<path id="Path_218" data-name="Path 218" d="M-1037.011,961.04a82.034,82.034,0,0,1-1.1-13.415,81.457,81.457,0,0,1,44.4-72.562"
fill="none" stroke="#d0df65" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
<path id="Path_219" data-name="Path 219" d="M-930.1,1024.663a81.351,81.351,0,0,1-26.549,4.424,81.445,81.445,0,0,1-24.224-3.662"
fill="none" stroke="#d0df65" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
<path id="Path_220" data-name="Path 220" d="M-922.523,873.634a81.474,81.474,0,0,1,47.336,73.991,81.944,81.944,0,0,1-1.049,13.107"
fill="none" stroke="#d0df65" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
<g id="Group_271" data-name="Group 271">
<circle id="Ellipse_1" data-name="Ellipse 1" cx="12.172" cy="12.172" r="12.172" transform="translate(-968.821 848.802)"
stroke-width="4.7" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" fill="none" />
<path id="Path_221" data-name="Path 221" d="M-952.491,873.147c.4,8.471,10.36,8.062,10.36,8.062a6.088,6.088,0,0,1,6.088,6.088v6.088h-41.211V887.3a6.088,6.088,0,0,1,6.088-6.088s9.812.409,10.212-8.062"
fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
</g>
<g id="Group_272" data-name="Group 272">
<circle id="Ellipse_2" data-name="Ellipse 2" cx="12.172" cy="12.172" r="12.172" transform="translate(-911.027 963.922)"
stroke-width="4.7" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" fill="none" />
<path id="Path_222" data-name="Path 222" d="M-894.7,988.266c.4,8.472,10.36,8.063,10.36,8.063a6.088,6.088,0,0,1,6.088,6.088v6.088H-919.46v-6.088a6.087,6.087,0,0,1,6.088-6.088s9.812.409,10.211-8.063"
fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
</g>
<g id="Group_273" data-name="Group 273">
<circle id="Ellipse_3" data-name="Ellipse 3" cx="12.172" cy="12.172" r="12.172" transform="translate(-1029.677 963.922)"
stroke-width="4.7" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" fill="none" />
<path id="Path_223" data-name="Path 223" d="M-1013.347,988.266c.4,8.472,10.36,8.063,10.36,8.063a6.088,6.088,0,0,1,6.088,6.088v6.088h-41.211v-6.088a6.087,6.087,0,0,1,6.088-6.088s9.812.409,10.211-8.063"
fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
</g>
<g id="Group_274" data-name="Group 274">
<path id="Path_224" data-name="Path 224" d="M-956.149,912.917v38.368l-34.8,21.511" fill="none" stroke="#fff"
stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
<line id="Line_36" data-name="Line 36" x2="33.626" y2="21.511" transform="translate(-956.149 951.285)" fill="none"
stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
</g>
</g>
</symbol>
<symbol id="innovation" xmlns="http://www.w3.org/2000/svg" width="100%" height="245" viewBox="0 0 117.146 325">
<g id="Group_277" data-name="Group 277" transform="translate(1015.588 -579.95)">
<g id="Group_276" data-name="Group 276">
<path id="Path_225" data-name="Path 225" d="M-928.393,636.6a29.087,29.087,0,0,0-.15-2.968l9.293-5.106c-2.493-12.97-10.614-19.319-10.614-19.319l-9.1,5a29.012,29.012,0,0,0-7.025-4.278v-10.26c-12.568-4.061-22.042,0-22.042,0v9.948a28.949,28.949,0,0,0-7.206,4.124l-8.591-4.853c-9.717,8.946-10.842,19.192-10.842,19.192l8.514,4.81a29.294,29.294,0,0,0-.244,3.71,29.221,29.221,0,0,0,.224,3.546l-8.593,4.721c2.493,12.97,10.614,19.318,10.614,19.318l8.789-4.828a28.931,28.931,0,0,0,7.335,4.225v10.142c12.568,4.06,22.042,0,22.042,0V663.274a28.977,28.977,0,0,0,6.613-3.954l9.184,5.189c9.717-8.946,10.842-19.192,10.842-19.192l-9.259-5.231A29.215,29.215,0,0,0-928.393,636.6Z"
fill="none" stroke="#d0df65" stroke-miterlimit="10" stroke-width="4.7" />
<circle id="Ellipse_4" data-name="Ellipse 4" cx="12.407" cy="12.407" r="12.407" transform="translate(-969.416 624.293)"
fill="none" stroke="#d0df65" stroke-miterlimit="10" stroke-width="4.7" />
</g>
<path id="Path_226" data-name="Path 226" d="M-935.231,725.205v-1.747c0-17.309,7.081-33.672,19-46.225a56.02,56.02,0,0,0,15.44-38.7A56.223,56.223,0,0,0-961,582.457a56.424,56.424,0,0,0-52.145,53.07,56.051,56.051,0,0,0,15.51,41.861,66.745,66.745,0,0,1,18.851,46.069v1.748"
fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
<line id="Line_37" data-name="Line 37" x2="52.999" transform="translate(-983.509 740.234)" fill="none" stroke="#fff"
stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
<line id="Line_38" data-name="Line 38" x2="49.033" transform="translate(-981.165 755.512)" fill="none" stroke="#fff"
stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
<path id="Rectangle_203" data-name="Rectangle 203" d="M5.222,0H47.777A5.222,5.222,0,0,1,53,5.222V24.877a26.5,26.5,0,0,1-26.5,26.5h0A26.5,26.5,0,0,1,0,24.877V5.222A5.222,5.222,0,0,1,5.222,0Z"
transform="translate(-983.509 725.632)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"
stroke-width="4.7" />
<path id="Path_227" data-name="Path 227" d="M-957.009,725.847V699.52l-9.6-9.6" fill="none" stroke="#fff"
stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
<line id="Line_39" data-name="Line 39" y1="9.6" x2="9.6" transform="translate(-957.009 689.92)" fill="none"
stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.7" />
</g>
</symbol>
<symbol id="serv_c1" viewBox="0 0 175.621 180.545">
<defs>
<style>
.cls-2 {
fill: #c5e8f3
}
.cls-3 {
fill: #016848
}
</style>
</defs>
<path id="Path_2278" fill="#d0df63" d="M158.255 136.547L37.1 50 96 129.014z" data-name="Path 2278" transform="translate(-6.668 -9.06)" />
<path id="Path_2279" d="M153.859 0L66.5 11.709l58.9 79.014z" class="cls-2" data-name="Path 2279" transform="translate(-11.952)" />
<path id="Path_2280" d="M200.477 98.256L166.764 0 138.3 90.723z" class="cls-3" data-name="Path 2280" transform="translate(-24.856)" />
<path id="Path_2281" d="M82.9 207.091l77.024-53.058-62.257-7.533L46.4 207.091z" class="cls-3" data-name="Path 2281"
transform="translate(-8.339 -26.546)" />
<path id="Path_2282" d="M38.061 189.605l51.267-60.591L30.432 50 0 189.605z" class="cls-2" data-name="Path 2282"
transform="translate(0 -9.06)" />
</symbol>
<symbol id="serv_c2" viewBox="0 0 147.464 275">
<defs>
<style>
.cls-1 {
fill: #c5e8f3
}
.cls-2 {
fill: #016848
}
.cls-3 {
fill: #d0df63
}
.cls-4 {
fill: #1a3a44
}
</style>
</defs>
<path id="Path_2283" d="M65.566 117L12.4 173.883l42.057 4.11z" class="cls-1" data-name="Path 2283" transform="translate(4 38.135)" />
<path id="Path_2284" d="M109 173.883l-64.8 4.11L55.309 117z" class="cls-2" data-name="Path 2284" transform="translate(14.256 38.135)" />
<path id="Path_2285" d="M16.4 61.2L0 88.117h16.4z" class="cls-1" data-name="Path 2285" transform="translate(0 19.948)" />
<path id="Path_2286" d="M31.709 88.117L12.4 61.2v26.917z" class="cls-2" data-name="Path 2286" transform="translate(4 19.948)" />
<path id="Path_2287" d="M16.4 112.925L0 81.5h16.4z" class="cls-3" data-name="Path 2287" transform="translate(0 26.564)" />
<path id="Path_2288" d="M31.709 81.5L12.4 112.925V81.5z" class="cls-4" data-name="Path 2288" transform="translate(4 26.564)" />
<path id="Path_2289" d="M86.389 116.056L99.615 36.5H44.2z" class="cls-3" data-name="Path 2289" transform="translate(14.256 11.897)" />
<path id="Path_2290" d="M122.918 36.5L76.1 116.056 89.325 36.5z" class="cls-4" data-name="Path 2290" transform="translate(24.546 11.897)" />
<path id="Path_2291" d="M74.486 222.882L109 159.9l-64.8 4.11 8.6 58.872z" class="cls-4" data-name="Path 2291"
transform="translate(14.256 52.118)" />
<path id="Path_2292" d="M77.9 0l10.845 48.4h33.593L85.571 0z" class="cls-2" data-name="Path 2292" transform="translate(25.126)" />
<path id="Path_2293" d="M76.073 0L44.2 48.4h55.415L88.77 0z" class="cls-1" data-name="Path 2293" transform="translate(14.256)" />
<path id="Path_2294" d="M63.053 222.882l-8.6-58.872L12.4 159.9l37.031 62.982z" class="cls-3" data-name="Path 2294"
transform="translate(4 52.118)" />
</symbol>
<symbol id="serv_c3" viewBox="0 0 153.3 229">
<path fill="#d0df63" d="M124.2 0L0 90.962l103.6-18.95z" data-name="Path 2295" />
<path fill="#016848" d="M153.3 142.028l-49.7-70.017L124.2 0z" data-name="Path 2296" />
<path fill="#1a3a44" d="M87.8 229l65.5-86.972-49.7-70.017L44.2 229z" data-name="Path 2297" />
<path fill="#c5e8f3" d="M44.2 229l59.4-156.989L0 90.961V229z" data-name="Path 2298" />
</symbol>
<symbol id="work_banner">
<path id="Rectangle_72-2" fill="#016948" d="M0 0h1369.1v363.5H0z" />
<path d="M385 136.4L325.5 164l-83 41c-.1.1-.2.1-.3.2-.1.1-.1.2-.2.2v.8s0 .1.1.1l.1.1.1.1.1.1h.1l87.8 40.4 58 31.9c.2.1.3.1.5.1.3 0 .6-.1.8-.3l77.4-88.2c.1-.1.1-.1.1-.2s.1-.2.1-.3v-.1-.2-.1c0-.1-.1-.1-.1-.2l-.2-.2-80.9-52.7h-.1c-.1 0-.1-.1-.2-.1h-.1-.1-.1-.1H385zm-63.4 54.4l-71.9 12.9 75-37-3.1 24.1zm2 1.3l54.7-47.2 4.1-3.5-51 101.7-3-20.1-4.8-30.9zm.2-2.9l3-23.6 52.5-24.4-55.5 48zm-77.6 17.2l75.5-13.5 2.2 14.4 5.6 37.5-83.3-38.4zM388.5 277L333 246.5l129.5-53.8-74 84.3zm-55.7-32.6l53-105.6 78.2 51.1-131.2 54.5zM432.7 28l42.7 135.9c0 .1 0 .1.1.1 0 0 0 .1.1.1 0 .1.1.1.2.2l.1.1c.1.1.2.1.3.1l72.2 19.3h.3c.1 0 .2 0 .3-.1.1 0 .2-.1.2-.1l.2-.2c.1-.2.2-.4.2-.6L547.1 92c0-.1 0-.3-.1-.4-.1-.1-.1-.2-.2-.3h-.1l-.1-.1-112.4-64.4h-.1c-.1 0-.1 0-.2-.1h-.4c-.1 0-.1 0-.2.1h-.1c-.1 0-.1.1-.2.1l-.1.1s0 .1-.1.1c0 .1-.1.1-.1.2V28zm54.9 72.7l-11.4 58.9-39.8-126.7 51.2 67.8zm-10 62.2l11.6-60 27.3 37.5 29.6 40.8-68.5-18.3zm69.9 16.8l-31.6-43.5-25.5-35.1 54.6-7.9 2.5 86.5zm-58.4-80.3L437.4 31 543 91.6l-53.9 7.8zM337 279.9v-.2c0-.1 0-.1-.1-.2 0-.1-.1-.1-.1-.2l-.1-.1s-.1-.1-.2-.1h-.1l-180.3-94h-.1-.1-.1H155.5 155.2h-.1s-.1 0-.1.1h-.1l-77.8 68.9c-.1.1-.1.1-.1.2l-.1.1c0 .1-.1.2-.1.3v.4c0 .1 0 .1.1.2 0 0 0 .1.1.1 0 0 0 .1.1.1l.1.1.1.1 49.9 33.5c.1 0 .1.1.2.1h.4l208.3-8.3h.1c.1 0 .2 0 .2-.1 0 0 .1 0 .1-.1.1 0 .1-.1.2-.1l.1-.1s.1-.1.1-.2c0 0 0-.1.1-.1v-.1-.1-.1c.1 0 .1 0 0-.1zm-172.4-45.1l-2.3-14.3-5.3-32.7 170.8 89.1-163.2-42.1zm-9.6-46.9l7.6 46.9-69.7 15.6-11.4 2.6 73.5-65.1zm-60.3 64.2l66.8-15-34 49.8-47.1-31.6 14.3-3.2zm69.5-15.3l165 42.5-199.5 8 34.5-50.5zM65.2 124.7v.2c0 .1 0 .1.1.1v.2s0 .1.1.1l.1.1s.1 0 .1.1c.1 0 .2.1.2.1L192 159.7h.3c.1 0 .3 0 .4-.1h.1c.1-.1.2-.1.3-.3.1-.1.1-.1.1-.2s0-.2.1-.3v-.1c0-.1 0-.2-.1-.3v-.1c0-.1-.1-.2-.1-.2L106.7 56.3l-.2-.2h-.1c-.1 0-.1-.1-.2-.1h-.4-.1-.1s-.1 0-.1.1c-.1 0-.1.1-.1.1l-.1.1c0 .1-.1.1-.1.2v.1L91.3 95.9l-25.9 28-.1.1c0 .1-.1.1-.1.2V124.5c-.1.1 0 .2 0 .2zm40.1-12.2l-12-16.2L105 62.7l.3 49.8zm-35 12.2l35.8-8h.1l64 32.1 12.8 6.4-112.7-30.5zm98.2 21L107.4 115l-.4-55.3 81.4 96-19.9-10zM92.1 98l12.5 16.9-35.6 8L92.1 98zM659.4 126.6l-53.5 220.6v.6c0 .1.1.1.1.2v.1c.1.1.2.2.3.2.1.1.3.1.4.1.1 0 .2 0 .3-.1h.2l202-125.2.1-.1.1-.1s0-.1.1-.1c0-.1.1-.1.1-.2v-.1-.2-.1-.1-.1-.1c0-.1-.1-.1-.1-.2l-.1-.1-.1-.1L660.9 126c-.1 0-.2-.1-.3-.1H660.3h-.1c-.1 0-.1 0-.2.1h-.1c-.1.1-.2.1-.3.2v.1c0 .1-.1.1-.1.2 0 0-.1 0-.1.1zm53.5 106.8L608.8 344l52.1-214.9 70.3 84.9-18.3 19.4zm7.8-5.4l12.2-13 72.9 7.9-193 119.6L720.7 228zm84-7.2L733 213l-67.8-81.8 139.5 89.6zM761.2 182.5l.1.1c.1 0 .1.1.2.1s.1.1.2.1c0 0 .1 0 .1.1l76.3 8.3h.1c.3 0 .6-.1.8-.4.2-.3.3-.6.1-1L797.9 81.4c0-.1-.1-.2-.1-.2l-.2-.2h-.1c-.1 0-.1-.1-.2-.1H797h-.1-.1l-107.2 13c-.4 0-.7.3-.8.6-.1.3-.1.7.2 1l72.2 87zm2.2-1.5l33.1-94.6.6-1.7L836.8 189l-73.4-8zm32.1-98.1l-29.2 83.5-4.7 13.4-69.9-84.3 103.8-12.6zM1248.8 153.2c.1-.1.2-.1.3-.2.1-.1.1-.1.1-.2v-.1c0-.1.1-.2.1-.3v-.1-.2-.1c0-.1-.1-.1-.1-.2v-.1l-79.6-102.2s-.1 0-.1-.1c-.1-.1-.1-.1-.2-.1h-.1c-.1 0-.1-.1-.2-.1H1168.7h-.1-.1-.1s-.1 0-.1.1c-.1 0-.1.1-.2.1l-.1.1c0 .1-.1.1-.1.2v.1L1154 79.2l-39.1-16.4c-.1 0-.2-.1-.3-.1H1114.3h-.1s-.1 0-.1.1h-.1l-.1.1c-.1 0-.1.1-.1.2v.2c0 .1-.1.1-.1.2v.4l27.1 135.7c0 .1 0 .1.1.2v.1c.1.1.1.2.2.2.1.1.2.1.3.2H1141.7c.1 0 .3 0 .4-.1l106.7-47zm-105.6 44.5l26.2-88.4 76.8 43-103 45.4zm31.9-87.5l-5.4-3V53.1l74.8 96-69.4-38.9zm-7.4-55.6v49l-12.2-23.2 12.2-25.8zm-13.9 26.7l11.9 22.6-45.1-36.6 33.2 14zm13.8 26.8l-25.8 87.2-25.8-129 51.6 41.8zM1330.4 208.2v-.1-.1s0-.1-.1-.1c0 0 0-.1-.1-.1l-.1-.1-.1-.1-51.1-33.1c-.3-.2-.6-.2-.9-.1l-69.8 24.2c-.1 0-.1.1-.2.1h-.1l-.2.2-34.8 58.9v.1s0 .1-.1.1v.6s0 .1.1.1c0 0 0 .1.1.1v.1c.1.1.2.2.3.2l100.9 46.4c.1.1.3.1.4.1.4 0 .7-.2.9-.5l54.7-96.4v-.1-.1-.1-.1-.1-.1c.2.2.2.2.2.1zm-52.2-31.8l47.4 30.7-112.1-8.3 64.7-22.4zm-69.1 24.1l3.7.3 111.4 8.2-148.2 47.6 33.1-56.1zm65.2 103l-97.8-44.9 150.7-48.4-52.9 93.3zM601.3 144.9c0 .1.1.2.1.2s0 .1.1.1c0 .1.1.1.1.1l.1.1s.1.1.2.1l.1.1h.4c.1 0 .2 0 .3-.1h.1c.1 0 .2-.1.3-.2l.1-.1.1-.1L634.5 98s0-.1.1-.1c.1-.2.1-.5 0-.8l-13.5-31.7c0-.1-.1-.1-.1-.2h-.1c-.1 0-.1-.1-.2-.1 0 0-.1 0-.1-.1-.1 0-.1 0-.2-.1H620.1c-.1 0-.2.1-.3.1L592 80.8c-.1 0-.2.1-.2.2v.1c0 .1-.1.1-.1.2v.1c0 .1 0 .1-.1.2V81.9l9.7 63zm18.5-76.8l12 28.1-26.1-6 4.6-7.1 9.5-15zm-16.7 23.2l-1.4 42.7-7.7-50 9.1 7.3zm1.9.8l26.8 6.2-28.4 43 1.6-49.2zm11.9-23.3l-10.5 16.5-2.6 4-9.5-7.6 22.6-12.9zM1009.9 113.3v-.1-.1s0-.1-.1-.1c0 0 0-.1-.1-.1l-.1-.1s0-.1-.1-.1l-73.4-52.4h-.1c-.1 0-.2-.1-.2-.1H935.5h-.1c-.1 0-.1 0-.2.1 0 0-.1 0-.1.1h-.1l-.1.1-.1.1c0 .1-.1.1-.1.2 0 0 0 .1-.1.1 0 .1-.1.2-.1.3l-4.6 88.6V150.1c0 .1 0 .1.1.2 0 0 0 .1.1.1l.1.1s.1 0 .1.1l.1.1 64.5 37h.2c.1.1.3.1.4.1h.4c.1-.1.2-.1.3-.2v-.1c0-.1.1-.1.1-.2v-.1-.1l13.5-73.2v-.1c.1-.4.1-.5.1-.5zm-25.7 10.5L955.7 137l-7.1-28.1-11.5-45.5 69.8 49.8-22.7 10.6zm-29.5 15.9L991 183l-58-33.2 21.7-10.1zm-18.5-72l15.2 60.3 2.5 9.9L932 148l4.2-80.3zm58.6 116.7l-38.2-45.6 24.2-11.2 26.8-12.4-12.8 69.2zM1005.1 74.7v.1c0 .1.1.1.1.2 0 0 0 .1.1.1l67.6 74.1h.1l.2.2h.1c.1 0 .2.1.4.1H1074s.1 0 .1-.1h.1c.1 0 .1-.1.2-.1 0 0 .1 0 .1-.1s.1-.1.1-.2v-.1l18.2-57.7v-.1-.2l-4.4-61.5v-.2c0-.1 0-.1-.1-.2l-.1-.1c0-.1-.1-.1-.1-.1l-.1-.1c-.1 0-.1-.1-.2-.1l-80.1-28h-.2H1007.2h-.1c-.3.1-.5.4-.6.7v.2l-1.2 73.1v.1c-.2-.1-.2-.1-.2 0zm68.5 70.8l-22.7-59.9-21.5-56.8 4.5 4.6 56.8 57.7-17.1 54.4zM1008.2 4.1l17.4 20.8-18.5 44.3 1.1-65.1zm-.9 70.1l19.5-46.8 44.1 116.6-63.6-69.8zm83.4 14l-61.3-62.3 57.1 4.3 4.2 58zm-10.8-60.4l-39.5-3-13.1-1-16.9-20.3 69.5 24.3zM559.9 305.8h.2s.1 0 .1-.1c0 0 .1 0 .1-.1l.1-.1.1-.1.1-.1v-.1-.1-.1-.2-89.3-.1-.2-.1c0-.1 0-.1-.1-.2l-.1-.1-.1-.1-.1-.1s-.1 0-.1-.1h-.1H559.7h-.1l-71.3-2.5h-.1-.1c-.2 0-.4.1-.6.3 0 .1-.1.1-.1.2V213.2l30 92.1s0 .1.1.1c0 .1.1.1.1.2v.1h.1c.1.1.1.1.2.1 0 0 .1 0 .1.1.1 0 .2.1.3.1l41.6-.2zm-27.7-40.2L520 249l19.4-15.6 19.6-15.7v84l-26.8-36.1zm25-49.1l-38.5 30.9-27.9-33.3 66.4 2.4zm-61.1 7l21.5 25.6v49.7l-26.4-81.2 4.9 5.9zm23.5 28.3l.5.7 37.9 51.3-38.3.4v-52.4zM890.8 60.9l-39.1 28.5-.1.1-.1.1c0 .1-.1.1-.1.2 0 0 0 .1-.1.1V90.2l4.2 74.8V165.3c0 .1.1.1.1.2 0 0 0 .1.1.1.1.1.2.2.3.2.1 0 .2.1.3.1h.1c.1 0 .3 0 .4-.1h.1l.3-.3 46.7-62.1s0-.1.1-.1c0-.1.1-.1.1-.2v-.2-.2-.2-.1l-11.9-41.2c0-.1 0-.1-.1-.2 0 0 0-.1-.1-.1l-.1-.1-.1-.1s-.1 0-.1-.1l-.1-.1h-.2-.1c-.1 0-.2 0-.3.1 0 0-.1 0-.1.1 0 .2-.1.2-.1.2zm-33.6 99.2l-3.9-69 13.3-2.8 17.7-3.8-24 67.1-3.1 8.5zm32.5-95.9L885 82.3l-28.4 6 33.1-24.1zm-30 95l26.6-74.1 15.7 18-42.3 56.1zM887 82.9l4.5-17.3 9.6 33.4L887 82.9zM265.4 174.2l-15.6-32.9c-.1-.2-.3-.4-.6-.5l-24.6-9H224.3h-.1-.1-.1-.1-.1-.1s-.1 0-.1.1h-.1l-.1.1h-.1l-11 12.1c-.3.3-.3.8-.1 1.2l11 18.9v.1s0 .1.1.1l.1.1s.1 0 .1.1c.1 0 .2.1.2.1l40.2 11H264.6c.1 0 .1 0 .2-.1.1 0 .1-.1.2-.2l.1-.1s0-.1.1-.1c0 0 0-.1.1-.1v-.2-.1c.2-.4.1-.5.1-.6zm-4.4-4.7l-33-34.4 20.2 7.4 12.8 27zm-37.7-34.2v24.6l-8.7-15 8.7-9.6zm2-.2l36 37.6-36-9.9v-27.7zM312.4 333.4c0-.1 0-.1 0 0v-.1-.1-.1-.1-.1l-13-19.5c-.1-.2-.3-.4-.6-.4l-36-9.1h-.3-.1c-.1 0-.2 0-.3.1l-39.7 20.8-.1.1-.1.1c-.1 0-.1.1-.1.1l-.1.1c0 .1-.1.1-.1.2v.5c0 .1.1.2.1.3l.1.1c0 .1.1.1.2.2 0 0 .1 0 .1.1.1 0 .1.1.2.1l60.7 18.3h.3c.1 0 .2 0 .4-.1l27.9-10.6h.1c.1 0 .1-.1.2-.1 0 0 .1 0 .1-.1 0 0 0-.1.1-.1 0 0 0-.1.1-.1v-.1-.1-.1-.1l-.1-.1zm-4.2-3l-35.1-20.5-4-2.3 28.8 7.3 10.3 15.5zM262.5 306l9.3 5.4 35.3 20.6-80.8-7.1 36.2-18.9zm21 37l-51.1-15.4 12.8 1.1 61.8 5.4-23.5 8.9zM603.1 40.7L576.8 0h-2.4l28.1 43.3L563 21.5 556.7 0h-2.1l6.6 22.5c.1.3.2.5.5.6L605 47c.1 0 .1 0 .2.1H605.5c.1 0 .2 0 .3-.1h.1c.1-.1.2-.1.3-.2l.1-.1.1-.1c0-.1 0-.1.1-.2v-.1-.3L595.4 0h-2.1l9.8 40.7zM529.2 23.7L506.7 0h-2.8L531 28.4 426.3 0h-7.6L534 31.3h.7c.1 0 .1-.1.2-.1l.2-.2c.1-.1.1-.2.1-.3v-.3-.1c0-.1 0-.1-.1-.2L518 0h-2.3l13.5 23.7zM346.4 37v89.9L297 0h-2.1l50.9 130.6-170.2-54.7L272.7 0h-3.2l-96.6 75.5c-.3.2-.4.6-.4 1 .1.4.3.7.7.8l173.9 56h.6s.1 0 .1-.1c.1 0 .1-.1.2-.1 0 0 .1 0 .1-.1 0 0 0-.1.1-.1 0-.1.1-.1.1-.2v-.1-.2-95.8c0-.3-.1-.6-.3-.7L308.2 0h-3l41.2 37zM217.3 2.2L103.2 24.4 163.7 0h-5.3l-14.7 5.9-49.5 20V0h-2v27.6c0 .1.1.1.1.2 0 0 0 .1.1.1 0 .1.1.1.1.2h.1s.1 0 .1.1c0 0 .1 0 .1.1h.5L224.5 2.9c.5-.1.8-.5.8-1s-.4-.9-.9-.9l-9.5-1h-21.1l23.5 2.2zM59.6 114.4c.2 0 .3 0 .4-.1h.2l.1-.1v-.1l.1-.1v-.1l23.9-58.7V55v-.1-.3c0-.1 0-.2-.1-.2 0 0 0-.1-.1-.1l-.1-.1-.1-.1-.1-.1L0 6.3v2.3l80.9 45.7L69 57.5l-9.1 2.4L0 9v2.6l10.6 9.1 45.7 38.9-56.3-8v2l58.6 8.2v49.5L0 63.4V66l56.2 46L0 104.1v2l59.5 8.3h.1zm1-52.6l8.2-2.2 13.1-3.5-21.2 52.2V61.8zM104.6 194c0-.1.1-.1.1-.2v-.1-.2-.1-.2-.1c0-.1-.1-.2-.2-.3h-.1c-.1-.1-.1-.1-.2-.1 0 0-.1 0-.1-.1h-.1L0 157.9v2.1l101.3 33.7L0 251.9v2.3l99.6-57.3L0 321.1v3.2L104.6 194c-.1 0-.1 0 0 0zM224.3 349.6l.1-.1.1-.1.1-.1c0-.1 0-.1.1-.2v-.1-.2-.1c0-.1 0-.1-.1-.2v-.1c-.1-.1-.1-.2-.2-.3-.1-.1-.2-.1-.3-.2L66.8 289.7c-.1 0-.3-.1-.4-.1h-.1c-.1 0-.2 0-.3.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1-55.8 68.6s0 .1-.1.1l-.1.1c0 .1 0 .1-.1.2v.4c0 .1.1.2.1.3l.2.2.1.1c.1 0 .1.1.2.1l8 3.2h5.3l-9.4-3.8 102-20.2 1.6 24.1h2l-1.6-24.2 5.7.6 96.8 9.6-25.9 14h4.2l25.5-13.9c0 .1 0 0 0 0zm-115.2-10.8l-96 19.1 53.5-65.7 48.3 45.5-5.8 1.1zm21.2-.2l-13-1.3-46.6-44L216.1 347l-85.8-8.4zM467.1 264.1c0-.3-.2-.6-.5-.8-.3-.2-.6-.2-.9 0L337 328.5h-.1l-.1.1-.1.1-25.7 34.7h2.5l24.3-32.8 50.7 32.8h3.7L340.6 330l48.9-4.7 80.4-7.7-13.8 45.8h2.1l10.1-33.4 3.1-10.3 15.2 43.7h2.1l-16.4-47.1-5.2-52.2zM397 322.7l-54.3 5.2 122.6-62.1 4.7 49.9-73 7zM560.7 339.5c0-.1 0-.1-.1-.2 0 0 0-.1-.1-.1 0-.1-.1-.1-.1-.1l-.1-.1-.1-.1s-.1 0-.1-.1c-.1 0-.2 0-.2-.1h-.1-.1c-.2 0-.4 0-.5.1l-30.3 19.9-.1.1-.1.1s-.1.1-.1.2l-.1.1v4.1h2v-2.9l22.7-3.7-2.8 6.7h2.2l2.5-6 4.7 6h2.5l-6.4-8.1 3.7-11.8 4.5 19.9h2.1l-5.5-23.9zm-6.7 15.2l-20.1 3.3 24.1-15.8-4 12.5zM679.2 343.5c-.1-.1-.2-.1-.2-.1H678.7 678.4h-.1c-.1 0-.1 0-.2.1h-.1-.1l-22.9 20h3l19.9-17.3 3.5 17.3h2l-3.5-17 24.3 17h3.5l-28.5-20zM794.6 331.6v-.4-.1c0-.1 0-.2-.1-.2 0 0 0-.1-.1-.1 0 0 0-.1-.1-.1l-.1-.1-.1-.1c-.1 0-.1-.1-.2-.1h-.1c-.1 0-.2 0-.3-.1h-.1l-84.5-2c-.3 0-.6.1-.8.4-.2.3-.2.6-.1.9l8.5 26.2v.1c0 .1 0 .1.1.1l.1.1.1.1.1.1 12 7.1h3.9l-13-7.7 71.5-22.8-16.3 30.6h2.3l17.2-31.6c.1-.1.1-.2.1-.3zm-76.3 22.7l-7.8-23.9 77.2 1.8-69.4 22.1zM995.3 297.2v-.2-.1c0-.1 0-.1-.1-.2l-98.8-149.4c-.1-.2-.3-.3-.6-.4h-.4-.1c-.1 0-.2 0-.2.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.1l-.1.1-.1.1c0 .1 0 .1-.1.2v.1l-14.8 100.8-64.2 115h2.3L881 250.2l45.2 28.3-98.5 85h3.1l95.6-82.4-16.7 82.4h2l17-83.8 63.7 18.1-45.2 44.8-21.1 20.9h2.8l8.8-8.7 55.5-55.1v63.8h2l.1-66.3zm-113.5-48.9l13.9-95.3 30.6 123.2-44.5-27.9zm62.3 33.6l-15.3-4.3-30.9-124.4L992 295.6l-47.9-13.7zM1115.4 332.3s0-.1 0 0l-22.1-59.2-39.1-115.7c0-.1-.1-.1-.1-.2s-.1-.1-.1-.2l-.1-.1-.1-.1s-.1 0-.1-.1c-.1 0-.1 0-.2-.1H1053.2h-.1c-.1 0-.1.1-.2.1l-.1.1c-.1 0-.1.1-.2.2 0 0 0 .1-.1.1 0 .1-.1.1-.1.2L1023.1 276v.2l-7.9 87.4h2l7.6-84.7 46.5 58.1-12.8 11.3-17.4 15.4h3l15.1-13.4 13.3-11.7 20.3 25.1h2.6l-20.9-25.7 38.9-4.1 4 29.9h2l-4.2-31.1c.2-.3.2-.4.2-.4zm-61.2-168.5l35.6 105.2-35.6-40.5v-64.7zm-2 2.2v62.6l-25.7 41.7 25.7-104.3zm-26.9 110.2l27.4-44.6 18.3 101.7-45.7-57.1zm29.6-44l36.4 41.5-18.2 59.1-18.2-100.6zm19.2 103.6l18.3-59.3 20.6 55.2-38.9 4.1z"
class="st1" />
<path d="M1213.3 324.3c-.1 0-.1 0 0 0h-.1-.1c-.1 0-.2 0-.2.1h-.1c-.1.1-.2.1-.3.2l-33.1 38.8h2.6l31.4-36.7 40.9 36.7h3l-41.2-37 74.5 5.2 2 31.7h2l-2-31 64.2 31h4.6l-68.1-32.9 75.9-71v-2.7l-78 73-77.9-5.4zM1325.5 16.3c-.1 0-.1 0 0 0h-.2-.1-.1-.1l-38.9 10-41-24.6h-.1l-3.5-1.6h-4.8l6 2.8-29 23-9.9-25.9h-2.1l10.6 27.7v.1s0 .1.1.1l23.8 36.4v.1l31.9 37.5.1.1 57.7 52.3h.1c.1.1.1.1.2.1h.1c.1 0 .2.1.3.1h.2l42.3-7.1v-2l-39.4 6.6 28.2-27 11.2 6.4v-2.3l-9.5-5.4 9.5-6.3V115l-10 6.7 9.2-56.1.8.7V62l-1.2.5-39.4-43.2 40.6 13.2v-2.1l-43.6-14.1zm28.3 102.3l-46.6-45-9.1-8.8h26.5l29.2 53.8zm-29.6-55.9h-26.7l26.7-42v42zm-1.2-43.9l-24.6 38.8-2.3 3.7-8.9-33.2 35.8-9.3zm-29.1 42.4L1261 37l24.1-8.3 8.8 32.5zm-1.3 1.5H1266l-1.5-6.7-3.9-17 1.4 1.1 30.6 22.6zm-9.1-35.6l-24 8.3-.1-.2L1246.7 5l36.8 22.1zm-39.4-23l13.1 31.1-41.8-8.5 28.7-22.6zm-28.8 24.7l41.8 8.5-20 24.7-21.8-33.2zm43.1 10.1l5.5 23.8h-24.8l19.3-23.8zm-19.2 25.8h25.1l3.4 33.4-28.5-33.4zm27.1 0h27.4l-24 33.8-3.4-33.8zm29.5.5l4.5 4.4 54.1 52.3-83.7-21.3 25.1-35.4zm30.9 87l-54-49 11.2 2.9 71.9 18.3-29.1 27.8zm39.4-85.6l-8.9 54.2-30.4-56.1h39.6l-.3 1.9zm-39.9-46.8l39.2 42.9h-39.2V19.8zM761 12.2c0 .1 0 .1.1.2v.1c0 .1.1.1.1.2v.1l70.5 66.4c.1.1.2.1.3.2h.1c.1 0 .2.1.3.1.1 0 .2 0 .3-.1h.1c.1 0 .1-.1.2-.1l.2-.2V79l42.9-79h-2.3l-41.3 76.4-26.1-45.7L863.2 0H859l-54 29.2-39.6-16.8L830.3 0h-10.7l-57.8 11h-.1s-.1 0-.1.1c-.1 0-.1 0-.2.1l-.1.1-.1.1-.1.1v.1c0 .1-.1.1-.1.2v.4zm43.3 18.9l24 42-61.6-58 37.6 16zM1153.2 12.5l-10.3 23-14.8-33.8-.7-1.7h-2.2l2.6 5.8 12.9 29.3-34.9-23.1L1122 0h-3.4l-15.1 11.2c-.3.2-.4.5-.4.8 0 .3.2.6.4.8l38.8 25.9h.1c.2.1.3.1.5.1h.4c.1 0 .1-.1.2-.1v-.1l.1-.1s0-.1.1-.1v-.1l11.6-25.9c.2-.5 0-1.1-.5-1.3L1133.4 0h-4.4l24.2 12.5z"
class="st1" />
</svg>
</symbol>
</defs>
</svg>
<svg display="none" width="0" height="0" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<symbol id="homepage_background" viewBox="0 0 1366 4333" width="100%" height="100%" preserveAspectRatio="none">
<title>homepage_background</title>
<g id="group4_left">
<polygon class="white" points="199.3,3658.5 222.7,3734.3 199.3,3658.5 "/>
<polygon class="st1" points="83.9,4071.9 247.3,3862.4 121.3,3768.8 "/>
<polygon class="st2" points="76.4,3645.6 121.3,3768.8 247.3,3862.4 "/>
<polygon class="st3" points="121.3,3768.8 0,3806.2 0,3883.9 83.9,4071.9 "/>
<polygon class="st1" points="121.3,3768.8 76.4,3645.6 0,3767.1 0,3806.2 "/>
<polygon class="st3" points="222.7,3734.3 250.6,3672 199.3,3658.5 "/>
<polygon class="st2" points="199.3,3658.5 152.2,3660.6 222.7,3734.3 "/>
<polygon class="st2" points="199.3,3658.5 250.6,3672 241.9,3536.9 199.3,3658.5 "/>
<polygon class="st1" points="241.9,3536.9 152.2,3660.6 199.3,3658.5 "/>
<polygon class="st2" points="185.2,4132 185.2,4132 185.2,4132 219,4121.6 187.7,4084.7 "/>
<polygon class="st2" points="187.7,4084.7 187.7,4084.7 187.7,4084.7 "/>
<polygon class="st1" points="193.4,4205.6 219,4121.6 185.2,4132 "/>
<polygon class="st1" points="136.3,4117 136.3,4117 136.3,4117 "/>
<polygon class="st1" points="185.2,4132 187.7,4084.7 187.7,4084.7 187.7,4084.7 187.7,4084.7 136.3,4117 "/>
<polygon class="st3" points="185.2,4132 185.2,4132 185.2,4132 136.3,4117 136.3,4117 136.3,4117 136.3,4117 193.4,4205.6 "/>
</g>
<g id="group4_right">
<g class="white">
<polygon points="1049.7,4102.8 1222.6,4268.4 1303.2,4095.6 "/>
<polygon points="1048.4,4101.8 1090.7,4052 1148.5,3984.1 831.8,3999.6 940.5,4050.8 "/>
<polygon points="1065.7,4101.4 1302.5,4094.6 1149.7,3984.2 1049.6,4101.8 "/>
<polygon points="960.3,4125 886.8,4143.5 1220.6,4267.9 1048.3,4102.9 "/>
<polygon points="970.1,4121.5 1047,4102.2 915.3,4040 830.7,4000.2 885.4,4142.8 "/>
</g>
<path class="st3" d="M1304.5,4095.2c0-0.1,0-0.1,0-0.2c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0-0.1,0-0.1-0.1c0,0,0,0,0-0.1
l-154.4-111.5c0,0,0,0,0,0c-0.1-0.1-0.2-0.1-0.3-0.1l-319.8,15.6c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.1c0,0,0,0,0,0
c0,0,0,0,0,0c-0.1,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0.1,0,0.2,0,0.2c0,0,0,0,0,0l55.3,144.2c0,0,0,0,0,0
c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0l337.6,125.8c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0
c0,0,0.1,0,0.1,0c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0l81.3-174.1
C1304.5,4095.3,1304.5,4095.3,1304.5,4095.2C1304.5,4095.2,1304.5,4095.2,1304.5,4095.2
C1304.5,4095.2,1304.5,4095.2,1304.5,4095.2z M1302.5,4094.6l-236.9,6.8l-16.1,0.5l100.1-117.6L1302.5,4094.6z M1222.6,4268.4
l-172.9-165.5l253.5-7.2L1222.6,4268.4z M1148.5,3984.1l-57.8,67.9l-42.3,49.7l-107.9-50.9l-108.6-51.3L1148.5,3984.1z
M915.3,4040l131.8,62.2l-76.9,19.3l-84.7,21.3l-54.7-142.7L915.3,4040z M886.8,4143.5l73.5-18.5l88-22.1l172.3,165L886.8,4143.5z
"/>
</g>
<g id="group3_left">
<polygon class="st4" points="339.9,3248.1 368.4,3283.9 459.8,3242.7 339.9,3248.1 "/>
<polygon class="st1" points="398.3,3161.6 398.3,3161.6 398.3,3161.6 "/>
<polygon class="st1" points="459.8,3242.7 398.3,3161.6 339.9,3248.1 "/>
<polygon class="st3" points="339.9,3248.1 215.5,3224.7 368.4,3283.9 "/>
<polygon class="st2" points="339.9,3248.1 339.9,3248.1 398.3,3161.6 398.3,3161.6 398.3,3161.6 398.3,3161.6 215.5,3224.7
339.9,3248.1 "/>
<polygon class="st1" points="210.3,3021.9 210.2,3021.9 210.2,3021.9 "/>
<polygon class="st1" points="210.2,3021.9 55.7,2960.2 83.1,3141.6 "/>
<polygon class="st1" points="55.6,2960.1 55.6,2960.2 55.6,2960.1 "/>
<polygon class="st3" points="122.9,3221.2 122.9,3221.2 122.8,3221.1 "/>
<polygon class="st3" points="210.2,3021.9 210.2,3021.8 210.2,3021.9 83.1,3141.6 83.1,3141.7 122.9,3221.1 210.2,3021.9 "/>
<polygon class="st4" points="83.1,3141.7 0,3161.7 0,3212.3 122.8,3221.1 122.9,3221.2 123,3221.2 122.9,3221.1 83.1,3141.7 "/>
<polygon class="st2" points="0,3161.7 83.1,3141.7 83.1,3141.7 83.1,3141.6 55.7,2960.2 55.7,2960.1 55.6,2960.1 55.6,2960.2
0,3021.5 "/>
</g>
<g id="group3_right">
<polygon class="white" points="1055.6,3172.9 1135.9,3178.8 1055.6,3172.9 "/>
<polygon class="white" points="1323.9,3246.9 1366,3190.4 1366,3190.4 1323.9,3246.9 "/>
<polygon class="st3" points="1135.9,3178.8 1177.4,3181.9 1104.5,3116.4 1055.6,3172.9 "/>
<polygon class="st4" points="1135.9,3178.8 1055.6,3172.9 1031.4,3231.9 1177.4,3181.9 1177.4,3181.9 "/>
<polygon class="st2" points="1104.5,3116.4 906.4,3059.8 1055.6,3172.9 "/>
<polygon class="st1" points="1055.6,3172.9 906.4,3059.8 1031.4,3231.9 1055.6,3172.9 "/>
<polygon class="st1" points="1269.1,3104.2 1184.1,3245.7 1323.9,3246.9 "/>
<polygon class="st2" points="1323.9,3246.9 1323.9,3246.9 1366,3190.4 1366,3141.5 1269.1,3104.2 1323.9,3246.9 "/>
<polygon class="st4" points="1366,3316.9 1366,3190.4 1323.9,3246.9 "/>
<polygon class="st3" points="1366,3316.9 1323.9,3246.9 1323.9,3246.9 1323.9,3246.9 1323.9,3246.9 1184.1,3245.7 1366,3320.9
"/>
</g>
<g id="group2_left">
<g class="white">
<polygon points="308.1,2586.9 345.5,2523.8 296.6,2515.8 "/>
<polygon points="176.5,2491 86.3,2362.2 0,2358.1 0,2408 "/>
<polygon points="265.3,2515.9 234.5,2516.1 307.1,2587.2 295.6,2515.7 "/>
<polygon points="361.9,2320.5 126.6,2220.7 92.5,2342.2 87.2,2361.2 225.1,2340.7 "/>
<polygon points="295.1,2514.7 275.5,2486.7 234.9,2515.1 266,2514.9 "/>
<polygon points="343.4,2522.4 277.2,2487.4 296.3,2514.7 "/>
<polygon points="86.2,2361.2 125.5,2221 0,2287.9 0,2357.1 "/>
<polygon points="335.7,2246.8 410,2286.5 393.1,2244.5 "/>
<polygon points="394,2244.2 411,2286.4 450.5,2204.6 446.2,2207.6 "/>
<polygon points="450.4,2203.5 349,2197.9 393.5,2243.4 "/>
<polygon points="348,2198.3 334.5,2245.9 392.2,2243.6 "/>
<polygon points="87.4,2362.1 178.1,2491.5 362.2,2321.5 168.8,2350.1 "/>
</g>
<path class="st3" d="M364.2,2320.5C364.2,2320.5,364.2,2320.5,364.2,2320.5c0-0.1-0.1-0.1-0.1-0.1c0,0-0.1-0.1-0.1-0.1
c0,0,0,0,0,0l-237.4-100.7c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0L0,2286.8v1.1l125.5-66.9
l-39.3,140.2L0,2357.1v1l86.3,4.2l90.3,128.8L0,2408v1.1l177.8,83.7c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0
c0.1,0,0.1,0,0.2,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1-0.1l185.7-171.5c0,0,0,0,0,0c0,0,0.1-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.1
c0,0,0,0,0,0c0,0,0-0.1,0-0.1C364.2,2320.6,364.2,2320.6,364.2,2320.5z M92.5,2342.2l34.1-121.5l235.3,99.8l-136.8,20.2
l-137.9,20.4L92.5,2342.2z M178.1,2491.5l-90.7-129.4l81.3-12l193.4-28.6L178.1,2491.5z"/>
<path class="st3" d="M452.2,2202.8C452.2,2202.7,452.2,2202.7,452.2,2202.8C452.1,2202.7,452.1,2202.7,452.2,2202.8
c-0.1-0.1-0.2-0.2-0.3-0.2l0,0c0,0,0,0,0,0l-104.1-5.7c-0.2,0-0.3,0-0.4,0.1c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0
c0,0,0,0,0,0l-13.8,49c0,0,0,0,0,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0c0,0.1,0,0.1,0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0
c0,0,0.1,0.1,0.1,0.1l77.1,41.2c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.2-0.1c0,0,0,0,0,0
c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0.1,0,0.1-0.1l40.9-84.5c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0,0,0-0.1,0-0.1c0,0,0,0,0,0
C452.3,2202.9,452.2,2202.8,452.2,2202.8z M450.4,2203.5l-56.9,39.9l-44.5-45.4L450.4,2203.5z M348,2198.3l44.3,45.2l-57.7,2.3
L348,2198.3z M335.7,2246.8l57.3-2.3l16.9,42L335.7,2246.8z M411,2286.4l-17-42.2l52.2-36.6l4.4-3.1L411,2286.4z"/>
<path class="st3" d="M346.8,2523.2C346.8,2523.2,346.8,2523.2,346.8,2523.2c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0,0,0,0,0
l-70.7-37.4c-0.1-0.1-0.2-0.1-0.3,0c0,0,0,0,0,0c-0.1,0-0.1,0-0.1,0.1c0,0,0,0,0,0l-42.3,29.6c0,0,0,0,0,0
c-0.1,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0c0,0,0,0.1,0.1,0.1c0,0,0,0.1,0.1,0.1
l74.5,73c0.1,0.1,0.2,0.1,0.4,0.1c0.1,0,0.2,0,0.2-0.1c0.2-0.1,0.3-0.3,0.3-0.5c0,0,0,0,0,0l38.4-65c0,0,0,0,0-0.1c0,0,0,0,0,0
c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1C346.8,2523.3,346.8,2523.3,346.8,2523.2C346.8,2523.2,346.8,2523.2,346.8,2523.2z M343.4,2522.4
l-47-7.7l-19.1-27.3L343.4,2522.4z M275.5,2486.7l19.6,28l-29.1,0.2l-31.1,0.2L275.5,2486.7z M234.5,2516.1l30.8-0.2l30.3-0.2
l11.5,71.6L234.5,2516.1z M308.1,2586.9l-11.5-71.2l48.9,8L308.1,2586.9z"/>
</g>
<g id="group2_right_top_1_">
<g id="Group_506" transform="translate(1016.76 3456.801)">
<g id="Group_502"><path id="Path_1909" class="st2" d="M127.3-1200L0-1019.1l127.3-23.4V-1200z"/></g>
<g id="Group_503" transform="translate(127.295)"><path id="Path_1910" class="st1" d="M90.4-1019.1L0-1200v157.4L90.4-1019.1z"/></g>
<g id="Group_504" transform="translate(0 157.444)"><path id="Path_1911" class="st1" d="M0-1176.6l63.6,87.1l63.7-110.5L0-1176.6z"/></g>
<g id="Group_505" transform="translate(63.648 157.444)"><path id="Path_1912" class="st3" d="M154.1-1176.6L0-1089.5L63.6-1200L154.1-1176.6z"/></g>
</g>
</g>
<g id="group2_right_top">
<polygon class="white" points="1267.7,1892.8 1267.7,1892.8 1267.7,1892.8 "/>
<polygon class="white" points="1267.7,1892.8 1267.7,1892.8 1158.7,2019.8 1366,2176 1366,2176 1158.7,2019.8 "/>
<polygon class="st4" points="1035,2036.1 1035,2036.1 1035,2036.1 "/>
<polygon class="st4" points="1158.7,2019.8 1035,2036.1 1366,2177.8 1366,2176 "/>
<polygon class="st1" points="1366,1942.1 1267.7,1892.8 1366,2017 "/>
<polygon class="st1" points="1267.7,1892.8 1267.7,1892.8 1267.7,1892.8 1267.7,1892.8 1267.7,1892.8 1267.7,1892.8
1267.7,1892.8 1267.7,1892.8 1035,2036.1 1035,2036.1 1035,2036.1 1035,2036.1 1158.7,2019.8 "/>
<polygon class="st3" points="883.3,1952.3 900,1991.3 1007.3,1942.3 883.3,1952.3 "/>
<polygon class="st2" points="919.3,1895.4 856.8,1952.2 883.3,1952.3 "/>
<polygon class="st2" points="856.8,1952.2 856.8,1952.2 856.8,1952.2 "/>
<polygon class="st2" points="883.3,1952.3 883.3,1952.3 883.3,1952.3 "/>
<polygon class="st1" points="883.3,1952.3 883.3,1952.3 1007.3,1942.3 919.3,1895.4 "/>
<polygon class="st4" points="883.3,1952.3 856.8,1952.2 856.8,1952.2 856.8,1952.2 856.8,1952.2 900,1991.3 883.3,1952.3 "/>
<polygon class="st2" points="1267.7,1892.8 1158.7,2019.8 1366,2080.8 1366,2017 1267.7,1892.8 1267.7,1892.8 1267.7,1892.8 "/>
<polygon class="st3" points="1366,2176 1366,2080.8 1158.7,2019.8 "/>
</g>
<g id="group1_left">
<polygon class="st2" points="557.9,1204.9 557.9,1204.9 557.9,1204.9 "/>
<polygon class="st2" points="557.9,1170.8 557.9,1204.9 587.3,1170.8 "/>
<polygon class="st1" points="587.3,1170.8 587.3,1170.8 536.2,1141.2 557.9,1170.8 "/>
<polygon class="st4" points="536.2,1187.1 557.9,1204.9 557.9,1204.9 557.9,1204.9 557.9,1204.9 557.9,1170.8 "/>
<polygon class="st3" points="557.9,1170.8 536.2,1141.2 536.2,1187.1 "/>
<polygon class="st4" points="393.9,1184.9 460.4,1136 367.8,1156.1 "/>
<polygon class="st1" points="367.8,1156.1 460.4,1136 403.8,1070.5 "/>
<polygon class="st3" points="268.6,1150.8 393.9,1184.9 367.8,1156.1 "/>
<polygon class="st2" points="367.8,1156.1 403.8,1070.5 268.6,1150.8 "/>
<polygon class="st2" points="91.2,957.3 98.4,1031.1 269,1070.4 "/>
<polygon class="st3" points="98.4,1031.1 80.9,1182.3 269,1070.4 "/>
<polygon class="st1" points="98.4,1031.1 91.2,957.3 0,902.7 0,921.4 "/>
<polygon class="st4" points="0,974.3 80.9,1182.3 98.4,1031.1 0,921.4 "/>
<polygon class="st4" points="0,1135.4 0,1239.6 80.9,1182.3 "/>
<polygon class="st4" points="80.9,1182.3 80.9,1182.3 80.9,1182.3 "/>
<polygon class="st2" points="0,1135.4 80.9,1182.3 80.9,1182.3 80.9,1182.3 80.9,1182.3 80.9,1182.3 0,974.3 "/>
</g>
<g id="group1_right_bottom">
<g class="white">
<polygon points="1201.5,1096.6 1145.7,1070.5 1203.1,1120.4 "/>
<polygon points="1178.4,1515 1181.2,1567.4 1249.7,1465.3 "/>
<polygon points="1250.6,1463.4 1156.6,1424.1 1178.2,1513.9 "/>
<polygon points="1164,1459 1155.7,1424.5 1107.6,1492.7 1177.2,1514 "/>
<polygon points="1108.5,1494 1180.2,1567.7 1177.4,1515.1 "/>
<polygon points="1203.2,1096.4 1250.8,1123.4 1226.1,1089.5 "/>
<polygon points="1202.5,1097.1 1204.1,1121.1 1250.4,1124.3 "/>
<polygon points="1202,1095.7 1224.4,1089 1147.4,1070.2 "/>
<polygon points="1289.7,1291 1134.7,1170.2 1213.3,1373.7 "/>
<polygon points="1290.6,1290.4 1366,1267.1 1366,1244 1136.1,1170 "/>
<polygon points="1366,1369.3 1366,1268.1 1291.4,1291.2 "/>
<polygon points="1214.1,1374.4 1366,1415.7 1366,1370.8 1290.5,1291.6 "/>
</g>
<path class="st3" d="M1214.1,1374.4l76.4-82.8l75.5,79.2v-1.4l-74.6-78.2l74.6-23v-1l-75.4,23.3L1136.1,1170l229.9,74v-1.1
l-232.2-74.8c0,0-0.1,0-0.1,0c0,0,0,0,0,0c-0.1,0-0.2,0-0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.1,0.1-0.1,0.2c0,0,0,0.1,0,0.1
c0,0,0,0,0,0c0,0.1,0,0.2,0,0.3c0,0,0,0,0,0l79.5,206c0,0,0,0.1,0.1,0.1c0,0,0,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.1c0,0,0,0,0.1,0
l153,41.6v-1L1214.1,1374.4z M1289.7,1291l-76.4,82.8l-78.6-203.6L1289.7,1291z"/>
<path class="st3" d="M1252,1463.1C1252,1463,1252,1463,1252,1463.1C1252,1463,1252,1463,1252,1463.1c-0.1-0.1-0.2-0.2-0.2-0.2
c0,0,0,0,0,0l-95.7-40c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0.1c0,0-0.1,0-0.1,0
c0,0,0,0,0,0.1c0,0,0,0,0,0l-49.2,69.7c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0.1-0.1,0.2-0.1,0.2c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1
c0,0.1,0.1,0.1,0.1,0.2c0,0,0,0,0,0l74,76c0.1,0.1,0.1,0.1,0.2,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0
c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0.1,0,0.2-0.1,0.2-0.2l70.9-105.6c0,0,0,0,0,0c0,0,0,0,0-0.1
C1252.1,1463.4,1252.1,1463.2,1252,1463.1z M1178.4,1515l71.3-49.7l-68.5,102.2L1178.4,1515z M1250.6,1463.4l-72.4,50.4
l-21.6-89.8L1250.6,1463.4z M1155.7,1424.5l8.3,34.5l13.2,55l-69.6-21.3L1155.7,1424.5z M1108.5,1494l68.9,21.1l2.8,52.6
L1108.5,1494z"/>
<path class="st3" d="M1142.1,1068.6C1142.1,1068.6,1142.1,1068.6,1142.1,1068.6c0,0.1,0,0.1,0.1,0.2c0,0,0,0,0,0
c0,0.1,0.1,0.1,0.1,0.1l61,53c0.1,0.1,0.2,0.2,0.3,0.2l48.9,3.4c0,0,0,0,0,0c0,0,0,0,0,0c0.1,0,0.2,0,0.3-0.1c0,0,0,0,0,0
c0,0,0,0,0.1,0c0,0,0-0.1,0-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0-0.1,0-0.2-0.1-0.3c0,0,0,0,0,0l-26.3-36
c0,0,0,0,0,0c0-0.1-0.1-0.1-0.2-0.1c0,0-0.1,0-0.1-0.1c0,0,0,0,0,0l-83.7-20.4c0,0,0,0,0,0c-0.1,0-0.1,0-0.2,0c0,0,0,0,0,0
c-0.1,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0
c0,0,0,0,0,0.1C1142.1,1068.5,1142.1,1068.5,1142.1,1068.6z M1202.5,1097.1l47.9,27.2l-46.3-3.2L1202.5,1097.1z M1203.2,1096.4
l22.9-6.9l24.7,33.9L1203.2,1096.4z M1201.5,1096.6l1.6,23.9l-57.4-49.9L1201.5,1096.6z M1202,1095.7l-54.6-25.5l77,18.8
L1202,1095.7z"/>
</g>
<g id="group1_right_top">
<polygon class="white" points="1314.9,629.3 1305.8,703.4 1314.9,629.3 1281.2,536.9 1314.9,629.3 "/>
<polygon class="st0" points="1366,547 1338.1,548.2 1366,547 "/>
<polygon class="st1" points="1314.9,629.3 1305.8,703.4 1286.9,856.7 1366,755.3 1366,667.3 "/>
<polygon class="st1" points="1286.9,856.7 1286.9,856.7 1286.9,856.7 "/>
<polygon class="st2" points="1366,667.3 1366,644.5 1281.2,536.9 1314.9,629.3 "/>
<polygon class="st3" points="1314.9,629.3 1314.9,629.3 1314.9,629.3 1201,664.4 1286.9,856.7 1286.9,856.7 1286.9,856.7
1286.9,856.7 1305.8,703.4 "/>
<polygon class="st1" points="1314.9,629.3 1281.2,536.9 1201,664.4 1201,664.4 1314.9,629.3 "/>
<polygon class="st2" points="1338.1,548.2 1366,577.4 1366,547 "/>
<polygon class="st1" points="1366,509.7 1338.1,548.2 1366,547 "/>
<polygon class="st2" points="1366,867.9 1364.7,866.4 1362.8,901.8 1366,900.9 "/>
<polygon class="st1" points="1326.1,890.6 1326.1,890.6 1326.1,890.6 "/>
<polygon class="st1" points="1362.8,901.8 1366,930.4 1366,900.9 1362.8,901.8 1362.8,901.8 1364.7,866.4 1326.1,890.6 "/>
<polygon class="st3" points="1366,930.4 1362.8,901.8 1326.1,890.6 1326.1,890.6 1326.1,890.6 1326.1,890.6 1366,952.4 "/>
</g>
<g id="group0_top">
<g class="white">
<polygon points="150,302.2 130,353.8 420.4,204.5 173.1,242.7 "/>
<polygon points="222.6,180.3 173.9,241.6 420.5,203.4 234.6,165.1 "/>
<polygon points="127.8,354.3 61.1,283.4 0,218.4 0,345.3 "/>
<polygon points="614.8,300.3 460.1,247.5 468.6,292.6 "/>
<polygon points="168.8,236.6 172.8,241.5 220.7,181 233.7,164.7 0,23.6 0,30.1 "/>
<polygon points="459.1,247.7 363.5,333.6 467.6,292.7 "/>
<polygon points="63.2,284.1 128.9,353.9 144.5,313.8 172.1,242.6 0,198.1 0,216.9 "/>
<polygon points="171.4,241.4 0,31.7 0,197.1 "/>
<polygon points="362.4,335.2 487.2,395 467.8,293.7 "/>
<polygon points="861.1,298.6 742.7,225.8 707.7,257.1 "/>
<polygon points="667.1,250.6 722.1,312.7 706.3,257.8 "/>
<polygon points="740.5,226.4 667.8,249.7 706.5,256.8 "/>
<polygon points="723.6,314.2 861.6,299.8 707.4,258.1 "/>
<polygon points="488.2,395 617,301.4 468.8,293.6 "/>
</g>
<path class="st3" d="M423.6,203.9C423.6,203.9,423.6,203.9,423.6,203.9c0.1-0.1,0.1-0.1,0.1-0.1c0,0,0,0,0-0.1c0,0,0-0.1,0.1-0.1
c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0,0c-0.1-0.2-0.2-0.3-0.4-0.3l-188.9-39
L0,22.5v1.2l233.7,141l-13,16.4l-47.9,60.4l-4-4.9L0,30.1v1.6l171.4,209.7L0,197.1v1l172.1,44.5l-27.6,71.1l-15.6,40.2l-65.7-69.8
L0,216.9v1.5l61.1,65l66.7,70.9L0,345.3v1l129,9c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0
L423.6,203.9C423.6,204,423.6,203.9,423.6,203.9z M130,353.8l20-51.6l23.1-59.5l247.3-38.3L130,353.8z M173.9,241.6l48.6-61.3
l12-15.2l185.9,38.4L173.9,241.6z"/>
<path class="st3" d="M618.9,300.8C618.9,300.8,618.9,300.8,618.9,300.8c0-0.1-0.1-0.2-0.2-0.2c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1
l-159-54.2c-0.1,0-0.2,0-0.3,0c0,0,0,0-0.1,0c-0.1,0-0.1,0-0.2,0.1c0,0,0,0,0,0c0,0,0,0,0,0l-98.3,88.4c0,0,0,0.1-0.1,0.1
c0,0,0,0,0,0c-0.1,0.1-0.1,0.2-0.1,0.3c0,0,0,0,0,0s0,0,0,0c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.1,0.1,0.2,0.2c0,0,0,0,0,0l126.7,60.7
c0.1,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3-0.1c0,0,0,0,0,0l0,0c0,0,0,0,0,0s0,0,0,0l130.5-94.9c0,0,0,0,0,0c0.1-0.1,0.1-0.1,0.2-0.2
c0,0,0,0,0,0c0,0,0,0,0,0C618.9,301,618.9,300.9,618.9,300.8C618.9,300.8,618.9,300.8,618.9,300.8z M614.8,300.3l-146.3-7.7
l-8.5-45L614.8,300.3z M459.1,247.7l8.5,45l-104.1,40.9L459.1,247.7z M362.4,335.2l105.4-41.4L487.2,395L362.4,335.2z M488.2,395
l-19.5-101.4l148.2,7.8L488.2,395z"/>
<path class="st3" d="M864.6,299.6L864.6,299.6l-121.7-74.8c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.1c0,0-0.1,0-0.1,0c0,0,0,0,0,0
l-76.9,24.7c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c-0.1,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0.1-0.1,0.2,0,0.2c0,0,0,0,0,0
c0,0,0,0,0,0c0,0.1,0.1,0.2,0.1,0.3l57.5,64.8c0,0,0,0,0,0c0,0,0.1,0,0.1,0.1c0.1,0,0.1,0.1,0.2,0.1c0,0,0,0,0,0c0,0,0,0,0.1,0
l141.2-14.7c0.1,0,0.1,0,0.2-0.1c0,0,0,0,0,0c0.1-0.1,0.2-0.2,0.2-0.4C864.9,299.8,864.8,299.7,864.6,299.6z M742.7,225.8
l118.4,72.8l-153.4-41.5L742.7,225.8z M740.5,226.4l-34,30.4l-38.7-7.1L740.5,226.4z M667.1,250.6l39.2,7.2l15.8,54.9L667.1,250.6
z M723.6,314.2l-16.2-56.1l154.2,41.7L723.6,314.2z"/>
</g>
</symbol>
<symbol id = "meet_team_background" viewBox="0 0 1366 2248" width="100%" height="100%" preserveAspectRatio="none">
<title>meet_the_team_background</title>
<g id="footer">
<path class="st1" d="M281.2 2145.5v.1c0 .1.1.2.1.2.1.1.1.2.2.2h.1c.1 0 .1.1.2.1l73.5 19.7h.4l76.2-9.8h.1c.1 0 .1 0 .2-.1 0 0 .1 0 .1-.1.1 0 .1-.1.2-.1l.1-.1c0-.1.1-.1.1-.2 0 0 0-.1.1-.1V2155c0-.1 0-.2-.1-.3 0-.1-.1-.2-.2-.2 0 0-.1 0-.1-.1-.1 0-.1-.1-.2-.1l-92.8-50.7c-.3-.2-.7-.2-1.1.1l-57 40.8-.1.1-.2.2s0 .1-.1.1c0 .1-.1.1-.1.2v.2c.3.1.4.1.4.2zm74.5 18.6l-63.5-17.1 129.4 8.6-65.9 8.5zm-16.5-58.3l88.3 48.2-66.5-4.4-76-5 54.2-38.8zM1008.6 2139.8v-.2-.2s0-.1-.1-.1c0-.1-.1-.1-.1-.2l-.1-.1c-.1 0-.1-.1-.2-.1l-104.4-57.7h-.1c-.1 0-.1 0-.2-.1h-.5l-43.4 14.9c-.1 0-.1.1-.2.1 0 0-.1 0-.1.1l-.2.2v.1c0 .1-.1.1-.1.2V2097.3s0 .1.1.1c0 .1.1.1.1.2l45 57c.1.1.2.2.3.2h.1c.1 0 .2.1.3.1h.1l102.7-14.2h.1c.1 0 .1 0 .2-.1 0 0 .1 0 .1-.1.1 0 .1-.1.2-.1l.1-.1c0-.1.1-.1.1-.2 0 0 0-.1.1-.1v-.1c.1 0 .1 0 .1-.1zm-7.6-2.6l-65.7-14.9-1.1-.2-27.4-36.9 94.2 52zm-138.2-38.1l23.7 8.4 45.3 16-26.9 29-42.1-53.4zm40.1-15.9l28 37.7-67.9-24 39.9-13.7zm4.6 69.4l26.4-28.5 38.2 8.7 29.9 6.8-94.5 13zM676.5 2235l88.8-61.4 6.1 14.5L787 2225l-36.4 10h7.5l29.5-8.1 2.1 8.1h2.1l-2.3-8.9 9.8-6.1 51.5-32.2-26.3 47.2h2.3l27.6-49.6c0-.1 0-.1.1-.2v-.1V2184.8c0-.1 0-.1-.1-.1v-.1c0-.1-.1-.2-.2-.2-.1-.1-.2-.1-.3-.2H853.6l-87.8-12.8h-.3c-.1 0-.2.1-.4.1l-92.2 63.7h3.6v-.2zm174.2-49.5l-3.1 1.9-58.9 36.8-21.4-50.8 83.4 12.1zM415.2 2235l20.5-46.7 53.6 7.7-49.4 38.9h3.2l48.8-38.4 85.8 36.7-9.4 1.8H579l2.3-.4h.1c.1 0 .1 0 .1-.1.1 0 .1-.1.2-.1h.1v-.1l.1-.1s.1-.1.1-.2v-.1c0-.1 0-.1.1-.2v-.1V2233.3l-21.2-82.3v-.2c0-.1-.1-.1-.1-.2 0 0 0-.1-.1-.1-.1-.1-.2-.2-.3-.2h-.6L435 2186.2h-.1c-.1 0-.1.1-.2.1l-.1.1-.1.1-.1.1s0 .1-.1.1L413 2235h2.2zm164.3-3.1l-85.8-36.6 65.5-42.3 20.3 78.9zm-25.9-77.8l-62.2 40.2-51.6-7.4 113.8-32.8zM234.4 2235l55-38 8.9 21.1 7.2 16.9h2.2l-5.2-12.2-11-26 83.4 12.1-41.3 25.9-.4.3h3.8l11.8-7.4 26.3-16.5-13.3 23.8h2.3l14.6-26.3c0-.1 0-.1.1-.2v-.1V2208.1c0-.1 0-.1-.1-.1v-.1c0-.1-.1-.2-.2-.2-.1-.1-.2-.1-.3-.2h-.1c-.1 0-.1 0-.2-.1l-87.8-12.8h-.3c-.1 0-.3.1-.4.2l-58.4 40.3 3.4-.1zM0 2005l197.5 156.2L0 2138.6v2l197.6 22.5L65.7 2235h4.2l131.5-71.6.1-.1.1-.1.1-.1.1-.1v-.1-.2V2162.4c0-.1 0-.1-.1-.2 0 0 0-.1-.1-.1l-.1-.1-.1-.1L0 2002.4v2.6z" class="st0"/>
</g>
<g id="Bottom-left">
<path d="M237 1360.9l281.3 163.3-268.8-77-12.5-86.3z" class="st1"/>
<path d="M115.4 1480.4L237 1360.9l12.5 86.3-134.1 33.2z" class="st2"/>
<path d="M193.4 1538.7l-77.9-58.3 134.1-33.2-56.2 91.5z" class="st0"/>
<path d="M518.3 1524.1l-324.9 14.6 56.1-91.6 268.8 77z" class="st3"/>
<path d="M176.5 1628.7l-39.4-1.5-43.8 38.6 83.2-37.1z" class="st1"/>
<path d="M168.2 1675.4l8.2-46.7-86.7 108.7 78.5-62z" class="st0"/>
<path d="M93.3 1665.8l-3.5 71.6 86.7-108.7-83.2 37.1z" class="st2"/>
<path d="M0 1241.1v162.7l160.9-103.1z" class="st2"/>
<path d="M0 1403.8v120.3l160.9-223.4z" class="st3"/>
</g>
<g id="Middle-right">
<path d="M1366 740.3l-64.5-26.5 64.5 67.4z" class="st1"/>
<path d="M1366 799.5l-151.7 33.6 151.7 68.4z" class="st0"/>
<path d="M1366 781.2l-64.5-67.4-87.2 119.3 151.7-33.6z" class="st2"/>
</g>
<g id="Top-right">
<path class="st1" d="M726.5 28.2V27.9v-.2s0-.1-.1-.1c0-.1-.1-.1-.1-.2l-.1-.1-.1-.1c-.1 0-.1-.1-.2-.1h-.4L667 32.6c-.1 0-.2 0-.3.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.1L590 99.2l-.1.1c0 .1-.1.1-.1.2v.9l.2.2c.1.1.2.1.2.1h.5l101.2-27.1s.1 0 .1-.1h.1c.1-.1.3-.2.3-.3L726 28.5v-.1c0-.1.1-.1.1-.2h.4zm-58.6 6.2l53.2-5-56.7 33.1 2.1-17.4 1.4-10.7zm23.6 37.1L665.8 64l56-32.7-30.3 40.2zm-28.8-10.9l-.4 3.1-19.9 9.7L597 95.5l68.7-59.6-3 24.7zm-62.3 35.6l42.8-20.9 20.2-9.8 24.8 7.2-87.8 23.5zM1366 109l-47 50.6-17.5-127.3 64.5 16v-2.1l-64.9-16.1-8.1-25.8-.4-1.3h-2.1l8.7 27.7-71.2 62.8 34.1-90.4h-2.1l-35.3 93.5c0 .1-.1.3-.1.4v.1c0 .1 0 .2.1.3 0 0 0 .1.1.1.1.1.1.2.3.3l92.7 65c.1.1.2.1.3.1h.3c.1 0 .2 0 .3-.1h.2c.1 0 .1-.1.2-.1l47-50.6-.1-3.1zm-138.8-12.2l68.2-60.1 4.2-3.7 17.4 126.7-89.8-62.9zM1366 22.7L1339.3 3h-3.3l30 22.2zM1212.6 3l-65.9 101.2-69.2-61.7 71.8-30.3L1171 3h-5.1l-13.1 5.5-76.5 32.3L1065.6 3h-2.1l10.9 38.5L915 84.3 999.6 3h-2.9l-85.9 82.5s0 .1-.1.1l-.1.1c0 .1-.1.1-.1.2V86.5s0 .1.1.1c0 .1.1.2.2.2l.2.2h.1c.1 0 .1 0 .2.1h.1l235.4 19.5h.2c.3 0 .5-.2.6-.4l67.3-103.3h-2.3V3zM917.2 85.7l158.1-42.4 68.7 61.2-226.8-18.8zM889.2 3l-53 105.9-37.7-47.2-4.6-5.7 75.3-53h-3.5l-73.5 51.6-36.7-12.7 91.6-39H842l-89.7 38.2s-.1 0-.1.1l-.3.3c-.1.1-.1.2-.1.4l-9.4 93.1v.4c0 .1 0 .1.1.2 0 0 0 .1.1.1.1.1.2.2.3.2 0 0 .1 0 .1.1h.1c.1 0 .2.1.3.1h.3l92.9-24.4s.1 0 .1-.1c0 0 .1 0 .1-.1 0 0 .1 0 .1-.1 0 0 .1 0 .1-.1l.1-.1s0-.1.1-.1L891.3 2.9l-2.1.1zM753.8 43.4l37.3 12.9-8.2 13.3L745 131l8.8-87.6zm-8.1 90.2l47-76.1 42 52.7-89 23.4z" class="st0"/>
</g>
</symbol>
<symbol id="services_page_background" viewBox="0 0 1366 1902" height="100%" width="100%" preserveAspectRatio="none" >
<g id="Bottom-left">
<path class="st1" d="M881 1895.8c.1-.2.2-.4.2-.6 0-.1 0-.2-.1-.3 0-.1-.1-.1-.1-.2 0 0 0-.1-.1-.1l-66-76.4c-.2-.2-.4-.3-.6-.4-.2 0-.4 0-.6.1l-.1.1c-.1 0-.1.1-.1.1l-.1.1-30.2 48.8v.1c0 .1-.1.1-.1.2v.6s0 .1.1.1v.1c0 .1.1.1.2.2l21.7 17.8c.2.1.3.3.6.3l74.4 9.7H880.4c.1 0 .2 0 .2-.1.1 0 .1 0 .2-.1.1 0 .1-.1.2-.1-.1.1-.1.1 0 0zm-94.5-27.3l36.6-1.8-17.5 17.3-19.1-15.5zm27.2-47.2l10.7 43.3-38.7 1.8 28-45.1zm12.1 45.5l49.1 26.6-67.2-8.8 18.1-17.8zm.7-1.9l-10.4-42.3 59.7 69.1-49.3-26.8zM482.1 1835.3v.1c0 .1 0 .1.1.2 0 0 0 .1.1.1l54.1 66.3h2.6l-53.1-65.1 84.3 24.9 113.9 33.6-60.8 6.6h18.5l44.9-4.9-4.1 4.9h2.6l4.3-5.2 7.6-.2 36.5-.9-9.5 6.3h3.6l9.9-6.5.1-.1.1-.1.1-.1s0-.1.1-.1V1894.8v-.2-.1c-.1-.2-.2-.4-.4-.5l-97.6-70.6c-.1 0-.1-.1-.2-.1h-.4l-156.4 11h-.1c-.1 0-.1 0-.2.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.1l-.1.1-.1.1v.1s0 .1-.1.1c0 .1 0 .1-.1.2v.2c.1-.2.1-.2.1-.1zm252.1 58.5l-32.3.8-12.2.3-42.9-62.2-3-4.4 90.4 65.5zm-95.1-68.6l13.8 20 33.9 49-198-58.4 150.3-10.6zM0 1844.1l70.3 58h3.1L0 1841.5zM0 1816.5l184.7-4.4-100.7 90h3l100.7-89.8 93.7 39.4-184.9 50.4h7.6l176.8-48.3-34.3 33.5-15.1 14.8h2.9l40.5-39.5 10-9.7 130.4-13.8-149.1 63h5.1l151-63.8c.1 0 .1-.1.2-.1l.1-.1.1-.1.1-.1v-.2-.2V1837.2v-.1c0-.1 0-.1-.1-.2 0-.1-.1-.1-.1-.2l-.1-.1-.1-.1c-.1 0-.1-.1-.2-.1s-.1 0-.2-.1h-.1l-234.3-26.2h-.2L0 1814.5v2zm412.6 20.8l-128.1 13.5-90.3-38 218.4 24.5zM0 1645.3l97.3-20.7-56.7 34.2-25 15.1-15.6-7.4v2.2l14.9 7.1 9.6 18.6 18.9 36.7L0 1685.7v2.9l46.6 48.9c.1.1.2.2.3.2h.1c.1 0 .2.1.4.1h.3c.1 0 .2-.1.3-.1l.2-.2s0-.1.1-.1v-.1l55.5-114.4v-.1-.2-.2-.2V1621.9v-.1c0-.1-.1-.1-.1-.2l-.1-.1s-.1 0-.1-.1l-.1-.1c-.1 0-.1 0-.2-.1h-.4-.1L0 1643.2v2.1zm47.3 89.3l-29.7-57.8-.7-1.4 6.9-4.2 76.7-46.2-53.2 109.6z" class="st0"/>
</g>
<g id="Bottom-right">
<path d="M1136.6 1526.8l47.5-63.4-20.8 8.5-26.7 54.9z" class="st1"/>
<path d="M1151.2 1451.8l-14.6 75 26.8-54.8-12.2-20.2z" class="st2"/>
<path d="M1183.5 1421.3l-32.3 30.5 12.1 20.2 20.2-50.7z" class="st3"/>
<path d="M1184.1 1463.5l-.6-42.1-20.2 50.7 20.8-8.6z" class="st0"/>
<path d="M1196.1 1512l102.7-154.4 23.6 86.1-126.3 68.3z" class="st3"/>
<path d="M1196.1 1512.1l90.1 21.4 36.2-89.7-126.3 68.3z" class="st0"/>
<path d="M1366 1335.5l-67.2 22.2 23.6 86.1 43.6-62.9z" class="st2"/>
<path d="M1366 1380.9l-43.6 62.9 43.6-8.3z" class="st0"/>
<path d="M1366 1435.5l-43.6 8.3-36.2 89.6 79.8-52z" class="st1"/>
</g>
<g id="Middle-right">
<path d="M1225.3 619.5l116 50.9-93.3 65.7-22.7-116.6z" class="st2"/>
<path d="M1292.3 592.9l49 77.5-116-50.9 67-26.6z" class="st3"/>
<path d="M1222.5 974.1l120.3 52.9-84.8-100-35.5 47.1z" class="st2"/>
<path d="M1350.4 892.3l-7.7 134.7-84.8-100 92.5-34.7z" class="st1"/>
<path d="M1202.3 746.5l20.2 227.5 35.5-47-55.7-180.5z" class="st3"/>
<path d="M1350.4 892.3l-148.1-145.8 55.6 180.5 92.5-34.7z" class="st0"/>
<path d="M1366 635l-73.7-42.1 48.9 77.5 24.8-2.2z" class="st0"/>
<path d="M1366 668.2l-24.8 2.2-93.2 65.7 118-50.6z" class="st1"/>
</g>
<g id="Middle-left">
<path d="M162 769.9L322.5 877l-149.2-29.2-11.3-77.9z" class="st2"/>
<path d="M52.3 877.8L162 769.9l11.3 77.9-121 30z" class="st3"/>
<path d="M122.6 930.5l-70.4-52.7 121-30-50.6 82.7z" class="st0"/>
<path d="M322.5 877l-199.9 53.4 50.7-82.7L322.5 877z" class="st1"/>
<path d="M220.1 1021.9L39.7 1130.8l-7.8-129.6 188.2 20.7z" class="st1"/>
<path d="M0 581.6V726l142.8-91.5z" class="st3"/>
<path d="M0 726v106.8l142.8-198.3z" class="st0"/>
<path d="M0 967.9v40.4l31.9-7.1z" class="st3"/>
<path d="M0 931.6v36.3l31.9 33.3 188.2 20.7z" class="st2"/>
<path d="M0 1112.9l39.8 17.9-7.8-129.7-32 7.2z" class="st0"/>
</g>
<g id="Top-left">
<path class="st1" d="M294 185.9V185.6c0-.1-.1-.1-.1-.2 0 0 0-.1-.1-.1l-.2-.2-152-87.4h-.1c-.1 0-.1 0-.2-.1H140.6L29 138.9h-.1c-.1 0-.1.1-.2.1l-.1.1-.1.1c0 .1-.1.1-.1.2V140.1c0 .1.1.1.1.2 0 0 0 .1.1.1.1.1.2.2.3.2l189.6 95h.5c.3 0 .5-.1.7-.3l73.9-48.8.1-.1.1-.1s0-.1.1-.1c0-.1.1-.1.1-.3 0 .1 0 .1 0 0v-.2c.1.3.1.2 0 .2zm-7.3-2.5l-99.8-23.2-42.3-58.5 142.1 81.7zm-146-83.7l43.4 60.1-150.6-20.4 107.2-39.7zm44.9 62.3l31.4 70.7-181.7-91.1L185.6 162zm33.9 71.3L188 162.5l102.6 23.9-71.1 46.9zM484.3 195.8v-.2-.1c0-.1 0-.1-.1-.2v-.1c0-.1-.1-.1-.1-.2l-.1-.1-.1-.1c-.1 0-.1-.1-.2-.1L369 148.4h-.8l-42.7 20.9c-.1 0-.1.1-.2.1h-.1c-.2.1-.3.3-.3.6v.4c0 .1 0 .1.1.2 0 0 0 .1.1.1 0 .1.1.1.1.2l53.6 53c.1.1.2.1.3.2h.1c.1 0 .2.1.3.1h.2l103.9-27.7c.1 0 .1-.1.2-.1 0 0 .1 0 .1-.1.1 0 .1-.1.1-.1l.1-.1c0-.1.1-.1.1-.2.1 0 .1-.1.1-.1zm-7.9-2l-71-7.1-33-34.7 104 41.8zm-108-43.2l33.7 35.4-73.2-16.1 39.5-19.3zm34.9 37.7l-24 33.4L329 172l74.3 16.3zm-21.5 33.2l23.6-32.8 72.3 7.3-95.9 25.5zM227.7 96.4L201.2.1h-2.1l25.4 92.5L146.3.1h-2.6l75.6 89.4-72.9-58.3L129.2.1H127l17.9 32.2c.1.1.1.2.2.3l81.1 64.8s.1 0 .1.1c0 0 .1 0 .1.1.1 0 .2.1.4.1.1 0 .2 0 .3-.1h.2c.1 0 .1-.1.2-.1h.1c.1-.1.1-.2.2-.3v-.1c0-.1 0-.2.1-.2v-.2c-.1-.2-.1-.2-.2-.3zM121.3 56.1s0-.1 0 0c-.1-.2-.1-.2-.2-.3L81.1.1h-2.5L118 54.7l-31.7-7.9-65.2-16.2L34.1 0h-2.2L19.2 29.9 0 18.6v2.3l18.3 10.8L0 61.9v3.9l20.1-33.1 38.7 9.6 57.5 14.3L0 87.5v2.1l120.6-32.2c.1 0 .2-.1.2-.1l.1-.1c.1 0 .1-.1.2-.2l.1-.1s0-.1.1-.1c0 0 0-.1.1-.1v-.3c0-.1-.1-.2-.1-.3z" class="st0"/>
</g>
</symbol>
<symbol id="case_background" viewBox="0 0 1366 4725.3" width="100%" height="100%" preserveAspectRatio="none">
<style>
.st0{fill:#016848}.st1{fill:#c5e8f3}.st2{fill:#d0df63}.st3{fill:#1a3a44}
</style>
<g id="bottomleft">
<path d="M540.7 4651.3c.1 0 .1 0 .2-.1 0 0 .1 0 .1-.1.1 0 .1-.1.2-.1l.1-.1c0-.1.1-.1.1-.2 0 0 0-.1.1-.1 0-.1.1-.2 0-.3 0-.1 0-.2-.1-.3 0 0 0-.1-.1-.1 0-.1-.1-.1-.1-.2l-.1-.1-.1-.1-82.4-52.8c-.1-.1-.2-.1-.4-.1h-.5l-57.6 19.5c-.1 0-.1.1-.2.1 0 0-.1 0-.1.1 0 0-.1 0-.1.1v.1l-.1.1-.1.1c0 .1 0 .1-.1.2v.4c0 .1.1.2.1.3l26.5 45.1.3.3c.1.1.2.1.4.1h.2l113.8-11.8zm-113.4 9.1l-23.8-40.4 35.7 22.1 3.4 2.1-7.2 7.5-8.1 8.7zm18.3-17.3l13.2-44.1 78 50-91.2-5.9zm-1.9-.6l-40.7-25.3 53.7-18.2-13 43.5zm-1.9 5.7l2.9-3.1 84 5.5-98.9 10.2 12-12.6zM557.4 4712.7l59.3-86.1 3.9 31.2 6.9 54.9h2l-7.3-58.4-3.7-29.4 157.9 1.6-142.7 86.2h3.9l140.5-84.9-28.4 84.9h2.1l29.1-86.9V4625.5 4625.2c0-.1-.1-.2-.1-.2-.1-.1-.1-.2-.2-.2s-.1-.1-.2-.1h-.4l-162.6-1.7c-.1 0-.3 0-.4.1h-.1c-.1 0-.2.1-.3.2l-.1.1-61.5 89.4 2.4-.1zM202.6 4712.7l45.6-51.8 110.1-19.8-100.3 53.8-33.1 17.8h4.2l132.1-70.9-42.7 64.6-28.1 6.3h9.1l19.9-4.5c.3-.1.5-.2.6-.4l45.1-68.3v-.1s0-.1.1-.1V4639 4638.7c0-.1-.1-.1-.1-.2 0 0 0-.1-.1-.1 0-.1-.1-.1-.2-.1l-.1-.1c-.1 0-.2-.1-.2-.1h-.4l-116.6 21c-.2 0-.4.2-.6.3l-47 53.4 2.7-.1zM0 4472.1l20.5-11.5 22.9 150.7L0 4578.9v2.5l42.4 31.7L0 4623.2v2.1l44.2-10.5 48.6 98H95l-48.1-97.1 92.2 41-15.4 56.1h2.1l15.5-56.4v-.1V4656c0-.1 0-.1-.1-.2 0 0 0-.1-.1-.1v-.1l-119-197c-.1-.1-.1-.2-.2-.2s-.1-.1-.2-.1h-.1-.1c-.1 0-.2 0-.3-.1-.1 0-.2 0-.3.1h-.1L0 4469.8v2.3zm137.8 181.7l-1.2-.5-90.9-40.4-22.7-149 114.8 189.9zM0 4672.3l56.2 40.4h3.5L0 4669.9z" class="st0"/>
</g>
<g id="Bottom-right">
<path id="Path_1796" d="M1173.9 4245.1l139.7-86-65.5 76.2-74.2 9.8z" class="st1"/>
<path id="Path_1797" d="M1157.3 4188.8l-64.4 29.4-10-23.4 74.4-6z" class="st0"/>
<path id="Path_1798" d="M1067 4194.7l15.9.1 21.6-34.1-37.5 34z" class="st2"/>
<path id="Path_1799" d="M1157.3 4188.8l-52.8-28.1-21.6 34.1 74.4-6z" class="st1"/>
<path id="Path_1800" d="M1092.9 4218.2l-25.9-23.5 15.9.1 10 23.4z" class="st3"/>
<path d="M1366 4185.3l-52.4-26.2 52.4 66.2z" class="st1"/>
<path d="M1366 4225.3l-52.4-66.2-65.4 76.2 117.8 34.6z" class="st2"/>
<path d="M1366 4269.9l-117.8-34.6 117.8 88.8z" class="st0"/>
<path d="M1366 4324.1l-117.8-88.8-74.3 9.8 192.1 82.2z" class="st3"/>
</g>
<g id="Under-mockup-two-two">
<path d="M1250.6 3781.7v-.3c0-.1 0-.2-.1-.3v-.1c0-.1-.1-.1-.1-.2-.1-.1-.1-.1-.2-.1h-.1l-95.7-40H1153.6c-.1 0-.1.1-.1.1s-.1 0-.1.1l-.1.1-.1.1-49.2 69.7c-.1.1-.1.2-.1.4v.5c0 .1.1.2.2.3l74 76h.1c.1.1.1.1.2.1 0 0 .1 0 .1.1h.4c.1 0 .2 0 .4-.1.1 0 .2-.1.2-.1l.2-.2 70.9-105.6c-.1-.2-.1-.3 0-.5 0 .1 0 .1 0 0zm-30 18.8l-44.1 30.7-21.2-88.1 92.2 38.6-26.9 18.8zm-43.7 32.9l60.7-42.3 8.2-5.7-66.2 98.7-2.7-50.7zm-23.4-89.5l21 87.6-68.1-20.8 47.1-66.8zm-45.3 69.4l66.7 20.4 2.7 50.9-69.4-71.3zM1139.6 3386.8v.1c0 .1 0 .2.1.2 0 0 0 .1.1.1 0 .1.1.1.2.2l61 53 .1.1c.1.1.2.1.3.2.1 0 .2.1.2.1l48.9 3.4h.1c.1 0 .2 0 .3-.1 0 0 .1 0 .1-.1.1 0 .1-.1.2-.2h.1v-.1l.1-.1c0-.1.1-.1.1-.2v-.1-.2-.1-.2c0-.1 0-.1-.1-.2 0 0 0-.1-.1-.1l-26.3-36-.2-.2c-.1 0-.1-.1-.2-.1h-.1-.1l-83.7-20.4h-.4c-.1 0-.2 0-.2.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.1l-.1.1v.1s0 .1-.1.1c0 0 0 .1-.1.1v.1c0 .1 0 .1.1.2 0-.1 0-.1 0 0zm61.5 29.4l45.2 25.6-43.7-3-1.5-22.6zm1.4-1.5l21.4-6.4 23.1 31.7-44.5-25.3zm-3.5.4l1.5 22.4-53.8-46.8 52.3 24.4zm1-1.7l-49.8-23.3 70.3 17.1-20.5 6.2zM1366 3733.9l-153-41.6 37.8-40.9 37.7-40.8 77.5 81.2v-2.9l-75.7-79.3 75.7-23.4v-2.1l-77.3 23.9-152-118.5 229.3 73.9v-2.1l-234.1-75.4h-.6c-.1 0-.1.1-.2.1h-.1l-.1.1-.1.1v.1c0 .1 0 .1-.1.2v.5l79.5 206v.2l.1.1.1.1.1.1s.1 0 .1.1c0 0 .1 0 .1.1h.1l155.1 42.2.1-2zm-232.2-244l153.2 119.3-75.5 81.8-77.7-201.1z" class="st0"/>
</g>
<g id="Under-mockup-two">
<path id="Path_1855" d="M585.3 3573.1l-29.4 34.6v-34.6h29.4z" class="st2"/>
<path id="Path_1856" d="M534.2 3543.1l51.1 30h-29.4l-21.7-30z" class="st1"/>
<path id="Path_1857" d="M555.9 3607.7l-21.7-18 21.7-16.5v34.5z" class="st3"/>
<path id="Path_1858" d="M534.2 3543.1v46.6l21.7-16.5-21.7-30.1z" class="st0"/>
<path id="Path_1859" d="M458.4 3537.8l-66.5 49.6-26.1-29.1 92.6-20.5z" class="st3"/>
<path id="Path_1860" d="M401.8 3471.4l56.6 66.4-92.6 20.4 36-86.8z" class="st1"/>
<path id="Path_1861" d="M391.9 3587.4l-125.3-34.6 99.2 5.4 26.1 29.2z" class="st0"/>
<path id="Path_1862" d="M401.8 3471.4l-135.1 81.4 99.2 5.4 35.9-86.8z" class="st2"/>
<path id="Path_1867" d="M267 3471.3L89.2 3356.6l7.2 74.9 170.6 39.8z" class="st2"/>
<path id="Path_1868" d="M78.9 3584.8L267 3471.3l-170.6-39.9-17.5 153.4z" class="st0"/>
<path d="M0 3322.5l96.4 108.9-7.2-74.8L0 3302.5z" class="st1"/>
<path d="M0 3322.5v56.5l78.9 205.8 17.5-153.4z" class="st3"/>
<path d="M0 3379v159.4l78.9 46.4z" class="st2"/>
<path d="M0 3538.4v103.1l78.9-56.7z" class="st3"/>
</g>
<g id="Video-section">
<path id="Path_2488" d="M1046.5 2671l-5.7-122.6 97.3 69.9-91.6 52.7z" class="st0"/>
<path id="Path_2489" d="M1242.5 2650.2l-107.5-114 3.1 82.1 104.4 31.9z" class="st2"/>
<path id="Path_2490" d="M1046.5 2671.1l196.1-20.8-104.5-31.8-91.6 52.6z" class="st3"/>
<path id="Path_2491" d="M1135 2536.3l-94.3 12.2 97.3 69.9-3-82.1z" class="st1"/>
<path id="Path_2503" d="M1205.6 2522l142.4 3.8-86.3-25.7-56.1 21.9z" class="st3"/>
<path id="Path_2504" d="M1309.5 2399.2l-103.6 122.7 55.6-21.9 48-100.8z" class="st2"/>
<path d="M1366 2446.1l-105.6 54 87.4 25.7 18.2-35z" class="st0"/>
<path d="M1366 2419l-57.5-19.8-48.1 100.9 105.6-54z" class="st1"/>
</g>
<g id="Middle-right">
<path id="Path_2476" d="M1250.6 1658.4l82 42.2-79.3 149-2.7-191.2z" class="st2"/>
<path id="Path_2479" d="M1249.9 1558.1l58.7-63.2-69.7-17.3 11 80.5z" class="st3"/>
<path id="Path_2480" d="M1192.9 1518.1l57 40-11.1-80.5-45.9 40.5z" class="st0"/>
<path id="Path_2481" d="M1224.8 1433l-31.9 85 46-40.5-14.1-44.5z" class="st1"/>
<path id="Path_2482" d="M1308.6 1494.9l-83.8-61.8 14.1 44.5 69.7 17.3z" class="st2"/>
<path d="M1366 1609.2l-33.4 91.3 33.4-3.1z" class="st0"/>
<path d="M1366 1697.4l-33.4 3.1-79.2 149.1 112.6-102.3z" class="st3"/>
<path d="M1366 1563.1l-115.4 95.3 82 42.1 33.4-91.3z" class="st1"/>
</g>
<g id="Behind-mockup">
<path id="Path_2453" d="M90.5 680.7l-76.3-23.6L147 786.3 90.5 680.7z" class="st0"/>
<path id="Path_2454" d="M23.2 760.2L147 786.3 14.2 657.1l9 103.1z" class="st2"/>
<path d="M0 723.8l23.2 36.4-9-103.1L0 678z" class="st1"/>
<path id="Path_2448" d="M1334.8 578.2L1147 597.6l165.8 69.4 22-88.8z" class="st1"/>
<path id="Path_2449" d="M1208.3 782.4L1147 597.6l165.8 69.4-104.5 115.4z" class="st2"/>
<path d="M1366 638.8l-31.2-60.6-22 88.8 53.2 62.1z" class="st0"/>
<path d="M1366 729.1l-53.2-62.1-104.5 115.4 157.7 47.7z" class="st3"/>
<g>
<path d="M1205.2 1178v-.1c0-.1 0-.1-.1-.1l-.1-.1-45.4-45.3h-.1l-.1-.1c-.1 0-.1-.1-.2-.1h-.8-.1l-99.9 44.1s-.1 0-.1.1c0 0-.1 0-.1.1-.1 0-.1.1-.1.1l-.1.1c0 .1-.1.1-.1.2v.9c0 .1.1.1.1.2 0 0 0 .1.1.1.1.1.1.1.2.1l.1.1 86.2 44.9h.2c.1 0 .2.1.3.1.1 0 .3 0 .4-.1h.1s.1 0 .1-.1l59-43.7.2-.2s0-.1.1-.1l.1-.1v-.1V1178.6c.2-.5.2-.5.1-.6zm-53-41l-8 6.4-45 35.9-36.1-2.8 89.1-39.5zm-88.3 41.4l35.2 2.8 39.8 36.3-75-39.1zm81.4 42.3l-43.2-39.5 99.1-1.9-55.9 41.4zm-42.8-41.5l56.4-44.9 43.1 43.1-99.5 1.8zM1366 1085.5l-71.2-23.9h-.5c-.1 0-.1 0-.2.1 0 0-.1 0-.1.1-.1 0-.1.1-.1.1s-.1 0-.1.1-.1.1-.1.2v.1l-51.4 119.4c-.1.2-.1.4-.1.6v.1c0 .1.1.2.1.3v.1c.1.2.3.3.5.4h.1l123.2 44.5v-2.1l-118.1-42.7 106.4-7.4 11.7 10.9v-2.7l-10.1-9.4 10.1-22.8v-4.9l-11.4 25.7-19.7-36.6-38.3-71 69.4 23.3v-2.5h-.1zm-55.1 9.6l42.1 78.1-108.4 7.6 49.9-116 16.4 30.3z" class="st0"/>
</g>
<g>
<path id="Path_2441" d="M155.9 982.1L46.5 1167l104.7-81.1 4.7-103.8z" class="st1"/>
<path id="Path_2442" d="M228.1 1140.6l-76.9-54.7 4.6-103.8 72.3 158.5z" class="st2"/>
<path id="Path_2443" d="M228.1 1140.6l-76.9-54.7L46.5 1167l181.6-26.4z" class="st0"/>
<path id="Path_2455" d="M19.9 1183.7l158.6 58.9-106.6-8-52-50.9z" class="st2"/>
<path id="Path_2458" d="M178.5 1242.6L79 1307.5l-7.1-72.9 106.6 8z" class="st3"/>
<path id="Path_2459" d="M187.4 1337.5l-23-10.3-35.1 12.4 58.1-2.1z" class="st2"/>
<path id="Path_2460" d="M171.4 1363.1l15.9-25.6-77.2 43.6 61.3-18z" class="st0"/>
<path id="Path_2461" d="M129.3 1339.6l-19.2 41.5 77.2-43.6-58 2.1z" class="st1"/>
<path d="M0 1253.2l71.9-18.6-52-50.9L0 1213.1z" class="st1"/>
<path d="M0 1275.2l79 32.3-7.1-72.9L0 1253.2z" class="st0"/>
</g>