-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1124 lines (1037 loc) · 96.6 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes"/>
<!-- Page title -->
<title>Anatree</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Roboto+Condensed:100,300,400,500,700,900|Playfair+Display:400,700,400italic,700italic|Raleway:300,500,800|Source+Sans+Pro:100,300,400,600,700,900"
rel="stylesheet" type="text/css"/>
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
<!-- Styles -->
<link rel="stylesheet" href="css/slides.css" name="main-styles">
<!-- Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="js/plugins.js" type="text/javascript" name="plugins"></script>
<script src="js/slides.js" type="text/javascript" name="main-scripts"></script>
<script src="http://maps.googleapis.com/maps/api/js?sensor=false&key=AIzaSyB5cMChyMvm1vyEe7Z7tW2rSmPbmlk29g0"></script>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-85963082-2', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="slides fast whiteSlide animated">
<!-- SVG Library -->
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
<symbol id="logo" viewBox="0 0 1224 216">
<path fill="#2196F3" d="M0 72h72v144H0zm144 0h72v144h-72zM72 0h72v72H72z"/>
<path fill="#212121"
d="M308 71.8h24.8L387.6 216h-28.8l-13.4-35.9H295L281.8 216H253l55-144.2zm32.3 88.6l-19.9-56.6-20.7 56.6h40.6zm91.2-36.8V216h-28V71.8h21.7l75.1 94.6V72h28v144h-22.7l-74.1-92.4zm167.9-51.8h24.8L679 216h-28.8l-13.4-35.9h-50.4L573.2 216h-28.8l55-144.2zm32.3 88.6l-19.9-56.6-20.7 56.6h40.6zm156.7-64h-46.1V216h-27.8V96.4h-46.1V71.8h120v24.6zM806.3 216V71.8h63.8c6.6 0 12.8 1.4 18.4 4.2 5.6 2.8 10.5 6.4 14.5 11 4.1 4.5 7.2 9.7 9.5 15.4 2.3 5.8 3.5 11.5 3.5 17.4 0 9.3-2.3 17.8-7 25.5-4.7 7.6-11 13.2-19 16.5l32.9 54.2h-31.5L862 167.7h-27.6V216h-28.1zm28-72.9h35.1c2.6 0 5-.6 7.2-1.8 2.2-1.2 4.2-2.9 5.8-5 1.6-2.1 2.9-4.6 3.9-7.4.9-2.8 1.4-5.9 1.4-9.1 0-3.4-.5-6.5-1.6-9.3-1.1-2.8-2.5-5.3-4.4-7.4-1.8-2.1-3.9-3.7-6.3-4.9-2.4-1.1-4.8-1.7-7.2-1.7h-33.9v46.6zm207.1 48.3V216H941.3V71.8h98.3v24.6h-70.3v34.7h60.7v22.7h-60.7v37.6h72.1zm122 0V216h-100.1V71.8h98.3v24.6h-70.3v34.7h60.7v22.7h-60.7v37.6h72.1z"/>
</symbol>
<!-- Tutaj sterować fill z CSS dla sliding menu - bez sensu dwa razy svg-->
<symbol id="logoWhite" viewBox="0 0 1224 216">
<path fill="#fff" d="M0 72h72v144H0zm144 0h72v144h-72zM72 0h72v72H72z"/>
<path fill="#fff"
d="M308 71.8h24.8L387.6 216h-28.8l-13.4-35.9H295L281.8 216H253l55-144.2zm32.3 88.6l-19.9-56.6-20.7 56.6h40.6zm91.2-36.8V216h-28V71.8h21.7l75.1 94.6V72h28v144h-22.7l-74.1-92.4zm167.9-51.8h24.8L679 216h-28.8l-13.4-35.9h-50.4L573.2 216h-28.8l55-144.2zm32.3 88.6l-19.9-56.6-20.7 56.6h40.6zm156.7-64h-46.1V216h-27.8V96.4h-46.1V71.8h120v24.6zM806.3 216V71.8h63.8c6.6 0 12.8 1.4 18.4 4.2 5.6 2.8 10.5 6.4 14.5 11 4.1 4.5 7.2 9.7 9.5 15.4 2.3 5.8 3.5 11.5 3.5 17.4 0 9.3-2.3 17.8-7 25.5-4.7 7.6-11 13.2-19 16.5l32.9 54.2h-31.5L862 167.7h-27.6V216h-28.1zm28-72.9h35.1c2.6 0 5-.6 7.2-1.8 2.2-1.2 4.2-2.9 5.8-5 1.6-2.1 2.9-4.6 3.9-7.4.9-2.8 1.4-5.9 1.4-9.1 0-3.4-.5-6.5-1.6-9.3-1.1-2.8-2.5-5.3-4.4-7.4-1.8-2.1-3.9-3.7-6.3-4.9-2.4-1.1-4.8-1.7-7.2-1.7h-33.9v46.6zm207.1 48.3V216H941.3V71.8h98.3v24.6h-70.3v34.7h60.7v22.7h-60.7v37.6h72.1zm122 0V216h-100.1V71.8h98.3v24.6h-70.3v34.7h60.7v22.7h-60.7v37.6h72.1z"/>
</symbol>
<symbol id="logo-icon" viewBox="0 0 216 216">
<path d="M4,12h42c2.2,0,4,1.8,4,4v21c0,2.2-1.8,4-4,4H4c-2.2,0-4-1.8-4-4V16C0,13.8,1.8,12,4,12z"/>
<path opacity="0.6"
d="M45.5,9h-41C3.7,9,3,8.3,3,7.5v0C3,6.7,3.7,6,4.5,6h41C46.3,6,47,6.7,47,7.5v0C47,8.3,46.3,9,45.5,9z"/>
<path opacity="0.4"
d="M7.5,0h35C43.3,0,44,0.7,44,1.5v0C44,2.3,43.3,3,42.5,3h-35C6.7,3,6,2.3,6,1.5v0C6,0.7,6.7,0,7.5,0z"/>
</symbol>
<symbol id="close" viewBox="0 0 30 30">
<path d="M15 0c-8.3 0-15 6.7-15 15s6.7 15 15 15 15-6.7 15-15-6.7-15-15-15zm5.7 19.3c.4.4.4 1 0 1.4-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-4.3-4.3-4.3 4.3c-.2.2-.4.3-.7.3s-.5-.1-.7-.3c-.4-.4-.4-1 0-1.4l4.3-4.3-4.3-4.3c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l4.3 4.3 4.3-4.3c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-4.3 4.3 4.3 4.3z"/>
</symbol>
<symbol id="back" viewBox="0 0 20 20">
<path d="M2.3 10.7l5 5c.4.4 1 .4 1.4 0s.4-1 0-1.4l-3.3-3.3h11.6c.6 0 1-.4 1-1s-.4-1-1-1h-11.6l3.3-3.3c.4-.4.4-1 0-1.4-.2-.2-.4-.3-.7-.3s-.5.1-.7.3l-5 5c-.2.2-.3.5-.3.7 0 .2.1.5.3.7z"/>
</symbol>
<symbol id="menu" viewBox="0 0 22 22">
<path d="M1 5h20c.6 0 1-.4 1-1s-.4-1-1-1h-20c-.6 0-1 .4-1 1s.4 1 1 1zm20 5h-20c-.6 0-1 .4-1 1s.4 1 1 1h20c.6 0 1-.4 1-1s-.4-1-1-1zm0 7h-20c-.6 0-1 .4-1 1s.4 1 1 1h20c.6 0 1-.4 1-1s-.4-1-1-1z"/>
</symbol>
<symbol id="share" viewBox="0 0 22 22">
<path d="M21 10c-.6 0-1 .4-1 1v7h-18v-7c0-.6-.4-1-1-1s-1 .4-1 1v7c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-7c0-.6-.4-1-1-1zM5.5 7.5c.3 0 .5-.1.7-.3l3.8-3.8v9.6c0 .6.4 1 1 1s1-.4 1-1v-9.6l3.8 3.8c.2.2.5.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4l-5.5-5.5c-.1-.1-.2-.2-.3-.2-.2-.1-.5-.1-.8 0l-.3.2-5.5 5.5c-.4.4-.4 1 0 1.4.2.2.4.3.7.3z"/>
</symbol>
<symbol id="facebook" viewBox="0 0 24 24">
<path d="M24 1.3v21.3c0 .7-.6 1.3-1.3 1.3h-6.1v-9.3h3.1l.5-3.6h-3.6v-2.2c0-1.1.3-1.8 1.8-1.8h1.9v-3.2c-.3 0-1.5-.1-2.8-.1-2.8 0-4.7 1.7-4.7 4.8v2.7h-3.1v3.6h3.1v9.2h-11.5c-.7 0-1.3-.6-1.3-1.3v-21.4c0-.7.6-1.3 1.3-1.3h21.3c.8 0 1.4.6 1.4 1.3z"/>
</symbol>
<symbol id="fb-like" viewBox="0 0 20 20">
<path d="M0 8v12h5v-12h-5zm2.5 10.8c-.4 0-.8-.3-.8-.8 0-.4.3-.8.8-.8s.8.3.8.8c0 .4-.4.8-.8.8zm3.5-.8h9.5c1.1 0 1.7-1 1.7-1.7 0-.3-.4-1-.4-1 1.4-.3 1.7-1.2 1.7-1.7-.1-.5-.3-.9-.5-1 1-.4 1.5-1.1 1.4-1.9-.1-.8-1-1.5-1-1.5 1-.6.9-1.5.9-1.5-.3-1.3-1.5-1.7-1.7-1.7h-5.6s.3-.5.3-2.4-1.3-3.6-2.6-3.6c0 0-.7.1-1 .3v3.5l-2.7 4.4v9.8z"/>
</symbol>
<symbol id="twitter" viewBox="0 1 24 23">
<path d="M21.5 7.6v.6c0 6.6-5 14.1-14 14.1-2.8 0-5.4-.8-7.6-2.2l1.2.1c2.3 0 4.4-.8 6.1-2.1-2.2 0-4-1.5-4.6-3.4.3.1.6.1.9.1.5 0 .9-.1 1.3-.2-2.1-.6-3.8-2.6-3.8-5 .7.4 1.4.6 2.2.6-1.3-.9-2.2-2.4-2.2-4.1 0-.9.2-1.8.7-2.5 2.4 3 6.1 5 10.2 5.2-.1-.4-.1-.7-.1-1.1 0-2.7 2.2-5 4.9-5 1.4 0 2.7.6 3.6 1.6 1-.3 2.1-.7 3-1.3-.4 1.2-1.1 2.1-2.2 2.7 1-.1 1.9-.4 2.8-.8-.6 1.1-1.4 2-2.4 2.7z"/>
</symbol>
<symbol id="dribbble" viewBox="0 0 24 24">
<path d="M12 0c-6.7 0-12 5.3-12 12s5.3 12 12 12 12-5.3 12-12-5.3-12-12-12zm7.9 5.7c1.3 1.7 2.1 3.9 2.3 6.1-.4-.1-2.4-.4-4.7-.4-.8 0-1.5 0-2.3.1 0-.1-.1-.3-.3-.5l-.7-1.5c3.7-1.4 5.3-3.4 5.7-3.8zm-7.9-3.8c2.5 0 4.9.9 6.7 2.5-.3.4-1.9 2.3-5.2 3.6-1.6-2.9-3.3-5.3-3.7-5.9.6-.1 1.4-.2 2.2-.2zm-4.4 1c.4.6 2.1 3 3.7 5.8-4.4 1.2-8.2 1.2-9.2 1.2h-.1c.8-3.1 2.9-5.6 5.6-7zm-5.7 9.1v-.3h.3c1.2 0 5.6-.1 10.1-1.5l.8 1.6c-.1 0-.3 0-.4.1-5.1 1.6-7.9 6-8.3 6.7-1.6-1.7-2.5-4.1-2.5-6.6zm10.1 10.1c-2.3 0-4.4-.8-6.1-2.1.3-.5 2.4-4.4 7.9-6.3 1.3 3.6 2 6.7 2.1 7.6-1.2.6-2.6.8-3.9.8zm5.7-1.8c-.1-.8-.7-3.6-2-7.1.7-.1 1.3-.1 2-.1 2.1 0 3.7.4 4.1.5-.3 2.8-1.8 5.2-4.1 6.7z"/>
</symbol>
<symbol id="youtube" viewBox="0 0 24 24">
<path d="M23.6 6.3c-.3-1.2-1.4-2.2-2.6-2.3-3-.3-6-.3-9-.3s-6 0-9 .3c-1.2.1-2.3 1.1-2.6 2.3-.4 1.8-.4 3.8-.4 5.7 0 1.9 0 3.9.4 5.7.3 1.2 1.4 2.2 2.6 2.3 3 .3 6 .3 9 .3s6 0 9-.3c1.3-.1 2.3-1.1 2.6-2.4.4-1.7.4-3.7.4-5.6 0-1.9 0-3.9-.4-5.7zm-14.1 9v-6.6l6.5 3.3-6.5 3.3z"/>
</symbol>
<symbol id="pinterest" viewBox="0 0 24 24">
<path d="M5.9 13.9c1.2-2-.4-2.5-.6-4-1-6.1 7.1-10.2 11.4-6 2.9 2.9 1 12-3.7 11-4.6-.9 2.2-8.1-1.4-9.5-3-1.1-4.6 3.6-3.2 5.9-.8 4-2.5 7.7-1.8 12.7 2.3-1.7 3.1-4.8 3.7-8.1 1.2.7 1.8 1.4 3.3 1.5 5.5.4 8.6-5.4 7.8-10.7-.7-4.7-5.5-7.1-10.6-6.6-4.1.4-8.1 3.7-8.3 8.3-.1 2.8.7 4.9 3.4 5.5z"/>
</symbol>
<symbol id="googlePlus" viewBox="0 0 24 24">
<path d="M7.8 13.5h4.6c-.6 2-2.5 3.4-4.6 3.4-2.7 0-4.9-2.2-4.9-4.9s2.2-4.9 4.9-4.9c1.1 0 2.1.3 3 1l1.8-2.4c-1.4-1.1-3-1.6-4.8-1.6-4.3 0-7.9 3.5-7.9 7.9s3.5 7.9 7.9 7.9 7.9-3.5 7.9-7.9v-1.5h-7.9v3zM21.7 11v-2.2h-2v2.2h-2.2v2h2.2v2.2h2v-2.2h2.2v-2z"/>
</symbol>
<symbol id="stumbleupon" viewBox="0 0 24 24">
<path d="M13.3 9.6l1.6.8 2.5-.8v-1.4c0-3-2.4-5.4-5.4-5.4s-5.4 2.4-5.4 5.4v7.5c0 .7-.6 1.3-1.3 1.3s-1.3-.6-1.3-1.3v-3.2h-4v3.2c0 3 2.4 5.4 5.4 5.4s5.4-2.4 5.4-5.4v-7.5c0-.7.6-1.3 1.3-1.3s1.3.6 1.3 1.3l-.1 1.4zm6.6 2.9v3.2c0 .7-.6 1.3-1.3 1.3s-1.3-.6-1.3-1.3v-3.2l-2.5.8-1.6-.8v3.2c0 3 2.4 5.4 5.4 5.4s5.4-2.4 5.4-5.4v-3.2h-4.1z"/>
</symbol>
<symbol id="linkedin" viewBox="0 0 24 24">
<path d="M22.2 0h-20.4c-1 0-1.8.8-1.8 1.7v20.7c0 1 .8 1.7 1.8 1.7h20.5c1 0 1.8-.8 1.8-1.7v-20.7c-.1-.9-.9-1.7-1.9-1.7zm-14.9 20.2h-3.6v-10.9h3.6v10.9zm-1.8-12.4c-1.2 0-2-.8-2-1.9 0-1.1.8-1.9 2.1-1.9 1.2 0 2 .8 2 1.9-.1 1.1-.9 1.9-2.1 1.9zm14.8 12.4h-3.6v-5.8c0-1.5-.5-2.5-1.8-2.5-1 0-1.6.7-1.9 1.3-.1.2-.1.6-.1.9v6.1h-3.6v-10.9h3.6v1.5c.5-.7 1.3-1.8 3.3-1.8 2.4 0 4.2 1.6 4.2 4.9v6.3z"/>
</symbol>
<symbol id="apple" viewBox="-1 1 24 24">
<path d="M17.6 13.8c0-3 2.5-4.5 2.6-4.6-1.4-2.1-3.6-2.3-4.4-2.4-1.9-.2-3.6 1.1-4.6 1.1-.9 0-2.4-1.1-4-1-2 0-3.9 1.2-5 3-2.1 3.7-.5 9.1 1.5 12.1 1 1.5 2.2 3.1 3.8 3 1.5-.1 2.1-1 3.9-1s2.4 1 4 1 2.7-1.5 3.7-2.9c1.2-1.7 1.6-3.3 1.7-3.4-.1-.1-3.2-1.3-3.2-4.9zm-3.1-9c.8-1 1.4-2.4 1.2-3.8-1.2 0-2.7.8-3.5 1.8-.8.9-1.5 2.3-1.3 3.7 1.4.1 2.8-.7 3.6-1.7z"/>
</symbol>
<symbol id="tumblr" viewBox="0 0 23 23">
<path d="M12.573 4.94v-4.94h-3.188c-.072.183-.11.4-.11.622-.034.107-.072.184-.072.293-.328 1.829-1.28 3.11-2.892 3.807-.476.218-.914.253-1.39.218v3.987h2.342c.039 5.603.039 8.493.039 8.64v.332c.294 2.449 1.573 3.914 3.843 4.463.914.257 1.901.366 2.892.366 1.279-.036 2.525-.256 3.771-.659v-4.685c-.731.22-1.395.402-1.977.583-1.135.333-2.087.113-2.857-.619-.073-.11-.183-.257-.221-.403-.106-.586-.178-1.206-.178-1.795v-6.222h5.083v-3.988h-5.085z"/>
</symbol>
<symbol id="instagram" viewBox="0 0 24 24">
<path d="M12 2.2c3.2 0 3.6 0 4.8.1 1.2.1 1.8.2 2.2.4.6.2 1 .5 1.4.9.4.4.7.8.9 1.4.2.4.4 1.1.4 2.2.1 1.3.1 1.6.1 4.8s0 3.6-.1 4.8c-.1 1.2-.2 1.8-.4 2.2-.2.6-.5 1-.9 1.4-.4.4-.8.7-1.4.9-.4.2-1.1.4-2.2.4-1.3.1-1.6.1-4.8.1s-3.6 0-4.8-.1c-1.2-.1-1.8-.2-2.2-.4-.6-.2-1-.5-1.4-.9-.4-.4-.7-.8-.9-1.4-.2-.4-.4-1.1-.4-2.2-.1-1.3-.1-1.6-.1-4.8s0-3.6.1-4.8c0-1.2.2-1.9.3-2.3.2-.6.5-1 .9-1.4.5-.4.9-.6 1.4-.9.4-.1 1.1-.3 2.3-.4h4.8m0-2.2c-3.3 0-3.7 0-4.9.1-1.3 0-2.2.2-3 .5-.7.3-1.4.7-2.1 1.4-.7.7-1.1 1.4-1.4 2.1-.3.8-.5 1.7-.5 3-.1 1.2-.1 1.6-.1 4.9 0 3.3 0 3.7.1 4.9.1 1.3.3 2.1.6 2.9.2.8.6 1.5 1.3 2.2.7.7 1.3 1.1 2.1 1.4.8.3 1.6.5 2.9.6h5s3.7 0 4.9-.1c1.3-.1 2.1-.3 2.9-.6.8-.3 1.5-.7 2.1-1.4.7-.7 1.1-1.3 1.4-2.1.3-.8.5-1.6.6-2.9.1-1.2.1-1.6.1-4.9s0-3.7-.1-4.9c-.1-1.3-.3-2.1-.6-2.9-.2-.8-.6-1.5-1.3-2.2-.7-.7-1.3-1.1-2.1-1.4-.8-.3-1.6-.5-2.9-.6h-5zM12 5.8c-3.4 0-6.2 2.8-6.2 6.2s2.8 6.2 6.2 6.2 6.2-2.8 6.2-6.2-2.8-6.2-6.2-6.2zm0 10.2c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4-1.8 4-4 4z"/>
<circle class="st0" cx="18.4" cy="5.6" r="1.4"/>
</symbol>
<symbol id="arrow-down" viewBox="0 0 24 24">
<path d="M12 18c-.2 0-.5-.1-.7-.3l-11-10c-.4-.4-.4-1-.1-1.4.4-.4 1-.4 1.4-.1l10.4 9.4 10.3-9.4c.4-.4 1-.3 1.4.1.4.4.3 1-.1 1.4l-11 10c-.1.2-.4.3-.6.3z"/>
</symbol>
<symbol id="arrow-up" viewBox="0 0 24 24">
<path d="M11.9 5.9c.2 0 .5.1.7.3l11 10c.4.4.4 1 .1 1.4-.4.4-1 .4-1.4.1l-10.4-9.4-10.3 9.4c-.4.4-1 .3-1.4-.1-.4-.4-.3-1 .1-1.4l11-10c.1-.2.4-.3.6-.3z"/>
</symbol>
<symbol id="arrow-left" viewBox="0 0 31 72">
<path d="M30 72c-.3 0-.6-.1-.8-.4l-29-34c-.3-.4-.3-.9 0-1.3l29-36c.3-.4 1-.5 1.4-.2.4.3.5 1 .2 1.4l-28.5 35.5 28.5 33.4c.4.4.3 1.1-.1 1.4-.2.1-.5.2-.7.2z"/>
</symbol>
<symbol id="arrow-right" viewBox="0 0 31 72">
<path d="M1 0c.3 0 .6.1.8.4l29 34c.3.4.3.9 0 1.3l-29 36c-.3.4-1 .5-1.4.2-.4-.3-.5-1-.2-1.4l28.5-35.5-28.5-33.4c-.4-.4-.3-1.1.1-1.4.2-.1.5-.2.7-.2z"/>
</symbol>
<symbol id="arrow-top" viewBox="0 0 24 24">
<path d="M20.7 10.3l-8-8c-.4-.4-1-.4-1.4 0l-8 8c-.4.4-.4 1 0 1.4s1 .4 1.4 0l6.3-6.3v15.6c0 .6.4 1 1 1s1-.4 1-1v-15.6l6.3 6.3c.2.2.5.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4z"/>
</symbol>
<symbol id="play" viewBox="0 0 30 30">
<path d="M7 30v-30l22 15z"/>
</symbol>
<symbol id="appstoreButton" viewBox="0 0 135 40">
<path fill="#000"
d="M135 36.2c0 2.1-1.7 3.8-3.8 3.8h-127.4c-2.1 0-3.8-1.7-3.8-3.8v-32.3c0-2.2 1.7-3.9 3.8-3.9h127.3c2.1 0 3.8 1.7 3.8 3.8l.1 32.4z"/>
<path fill="#ffffff"
d="M30.1 19.8c0-3.2 2.6-4.8 2.8-4.9-1.5-2.2-3.9-2.5-4.7-2.5-2-.2-3.9 1.2-4.9 1.2s-2.6-1.2-4.2-1.1c-2.1 0-4.1 1.3-5.2 3.2-2.3 3.9-.6 9.7 1.6 12.9 1.1 1.6 2.4 3.3 4 3.2 1.6-.1 2.2-1 4.2-1 1.9 0 2.5 1 4.2 1s2.8-1.6 3.9-3.1c1.3-1.8 1.8-3.5 1.8-3.6-.1-.2-3.4-1.5-3.5-5.3zM26.9 10.3c.9-1.1 1.5-2.6 1.3-4.1-1.3.1-2.8.9-3.8 1.9-.8.9-1.5 2.5-1.3 3.9 1.5.2 2.9-.6 3.8-1.7zM53.6 31.5h-2.3l-1.2-3.9h-4.3l-1.2 3.9h-2.2l4.3-13.3h2.6l4.3 13.3zm-3.8-5.5l-1.1-3.5c-.2-.4-.4-1.2-.7-2.5-.1.6-.3 1.4-.6 2.5l-1.2 3.5h3.6zM64.7 26.6c0 1.6-.4 2.9-1.3 3.9-.8.8-1.8 1.3-2.9 1.3-1.3 0-2.2-.5-2.7-1.4v5.1h-2.1v-10.4c0-1 0-2.1-.1-3.2h1.9l.1 1.5c.7-1.1 1.8-1.7 3.2-1.7 1.1 0 2.1.4 2.8 1.3.7.9 1.1 2.1 1.1 3.6zm-2.2.1c0-.9-.2-1.7-.6-2.3-.5-.6-1.1-.9-1.9-.9-.5 0-1 .2-1.4.5-.4.3-.7.8-.8 1.4-.1.3-.1.5-.1.7v1.6c0 .7.2 1.3.6 1.8s1 .7 1.7.7c.8 0 1.4-.3 1.9-.9.4-.8.6-1.6.6-2.6zM75.7 26.6c0 1.6-.4 2.9-1.3 3.9-.8.8-1.8 1.3-2.9 1.3-1.3 0-2.2-.5-2.7-1.4v5.1h-2.1v-10.4c0-1 0-2.1-.1-3.2h1.9l.1 1.5c.7-1.1 1.8-1.7 3.2-1.7 1.1 0 2.1.4 2.8 1.3.7.9 1.1 2.1 1.1 3.6zm-2.2.1c0-.9-.2-1.7-.6-2.3-.5-.6-1.1-.9-1.9-.9-.5 0-1 .2-1.4.5-.4.3-.7.8-.8 1.4-.1.3-.1.5-.1.7v1.6c0 .7.2 1.3.6 1.8.4.3 1 .5 1.7.5.8 0 1.4-.3 1.9-.9.4-.6.6-1.4.6-2.4zM88 27.8c0 1.1-.4 2.1-1.2 2.8-.9.8-2.1 1.2-3.6 1.2-1.4 0-2.6-.3-3.4-.8l.5-1.8c.9.6 2 .8 3.1.8.8 0 1.4-.2 1.9-.5.4-.4.7-.8.7-1.5 0-.5-.2-1-.6-1.4-.4-.4-1-.7-1.8-1-2.4-.9-3.6-2.2-3.6-3.9 0-1.1.4-2 1.2-2.7.8-.7 1.9-1 3.3-1 1.2 0 2.2.2 3 .6l-.5 1.8c-.8-.4-1.6-.6-2.5-.6-.8 0-1.3.2-1.8.6-.4.3-.5.7-.5 1.2s.2 1 .6 1.3c.4.3 1 .7 1.9 1 1.1.5 2 1 2.5 1.6.6.6.8 1.4.8 2.3zM95.1 23.5h-2.3v4.7c0 1.2.4 1.8 1.2 1.8.4 0 .7 0 .9-.1l.1 1.6c-.4.2-1 .2-1.7.2-.8 0-1.5-.3-2-.8s-.7-1.4-.7-2.6v-4.8h-1.4v-1.6h1.4v-1.8l2.1-.6v2.4h2.3l.1 1.6zM105.7 26.6c0 1.5-.4 2.7-1.3 3.6-.9 1-2.1 1.5-3.5 1.5s-2.5-.5-3.4-1.4c-.8-.9-1.3-2.1-1.3-3.5 0-1.5.4-2.7 1.3-3.7.9-.9 2-1.4 3.5-1.4 1.4 0 2.5.5 3.4 1.4.9.9 1.3 2.1 1.3 3.5zm-2.2.1c0-.9-.2-1.6-.6-2.3-.4-.8-1.1-1.1-1.9-1.1-.9 0-1.5.4-2 1.1-.4.6-.6 1.4-.6 2.3s.2 1.6.6 2.3c.5.8 1.1 1.1 1.9 1.1.8 0 1.5-.4 1.9-1.2.5-.6.7-1.3.7-2.2zM112.6 23.8c-.2 0-.4-.1-.7-.1-.8 0-1.3.3-1.7.8s-.5 1.1-.5 1.9v5h-2.1v-6.6c0-1.1 0-2.1-.1-3h1.9l.1 1.8h.1c.2-.6.6-1.1 1.1-1.5.5-.3 1-.5 1.5-.5h.5v2.2h-.1zM122.2 26.3c0 .4 0 .7-.1 1h-6.4c0 .9.3 1.7.9 2.2.5.4 1.2.7 2.1.7.9 0 1.8-.2 2.6-.5l.3 1.5c-.9.4-2 .6-3.2.6-1.5 0-2.7-.4-3.5-1.3s-1.3-2.1-1.3-3.5.4-2.7 1.2-3.6c.8-1 1.9-1.5 3.4-1.5 1.4 0 2.4.5 3.1 1.5.6.6.9 1.7.9 2.9zm-2.1-.6c0-.6-.1-1.2-.4-1.6-.4-.6-.9-.9-1.7-.9-.7 0-1.3.3-1.7.9-.4.5-.6 1-.6 1.7l4.4-.1zM49 10c0 1.2-.4 2.1-1.1 2.7-.7.5-1.6.8-2.8.8-.6 0-1.1 0-1.5-.1v-6.4c.6-.1 1.2-.1 1.8-.1 1.1 0 2 .2 2.6.7.7.6 1 1.4 1 2.4zm-1.1 0c0-.8-.2-1.3-.6-1.8-.4-.4-1-.6-1.8-.6-.3 0-.6 0-.8.1v4.9h.7c.8 0 1.4-.2 1.9-.7.4-.4.6-1 .6-1.9zM54.9 11c0 .7-.2 1.3-.6 1.8s-1 .7-1.7.7-1.2-.2-1.7-.7c-.4-.5-.6-1-.6-1.7s.2-1.3.6-1.8 1-.7 1.7-.7 1.2.2 1.7.7c.4.5.6 1 .6 1.7zm-1.1.1c0-.4-.1-.8-.3-1.1-.2-.4-.5-.6-.9-.6s-.7.2-1 .6c-.2.3-.3.7-.3 1.1 0 .4.1.8.3 1.1.2.4.5.6 1 .6.4 0 .7-.2.9-.6.2-.3.3-.7.3-1.1zM62.8 8.7l-1.5 4.7h-1l-.6-2c-.2-.5-.3-1-.4-1.5-.1.5-.2 1-.4 1.5l-.6 2h-1l-1.4-4.7h1.1l.5 2.3.3 1.5c.2-.4.3-.9.5-1.5l.7-2.2h.9l.6 2.2c.2.5.3 1.1.4 1.6.1-.5.2-1 .3-1.6l.6-2.2 1-.1zM68.2 13.4h-1v-2.7c0-.8-.3-1.2-1-1.2-.3 0-.6.1-.8.3-.2.2-.3.5-.3.8v2.8h-1v-4.7h.9v.7c.1-.2.3-.4.5-.6.3-.2.6-.3.9-.3.4 0 .8.1 1.1.4.4.3.5.9.5 1.6v2.9h.2zM71.1 13.4h-1v-6.9h1v6.9zM77.3 11c0 .7-.2 1.3-.6 1.8-.4.5-1 .7-1.7.7s-1.2-.2-1.7-.7c-.4-.5-.6-1-.6-1.7s.2-1.3.6-1.8c.4-.5 1-.7 1.7-.7s1.2.2 1.7.7c.4.5.6 1 .6 1.7zm-1.1.1c0-.4-.1-.8-.3-1.1-.2-.4-.5-.6-.9-.6s-.7.2-1 .6c-.2.3-.3.7-.3 1.1 0 .4.1.8.3 1.1.2.4.5.6 1 .6.4 0 .7-.2.9-.6.2-.3.3-.7.3-1.1zM82.3 13.4h-.9l-.1-.5c-.3.4-.8.7-1.4.7-.4 0-.8-.1-1.1-.4-.2-.3-.4-.6-.4-1 0-.6.2-1 .7-1.3.5-.3 1.2-.5 2-.4v-.1c0-.6-.3-.9-1-.9-.5 0-.9.1-1.2.3l-.1-.8c.4-.3 1-.4 1.6-.4 1.2 0 1.8.6 1.8 1.9v1.7c.1.6.1 1 .1 1.2zm-1.1-1.6v-.7c-1.2 0-1.7.3-1.7.9 0 .2.1.4.2.6.1.1.3.2.5.2s.4-.1.6-.2c.2-.1.3-.3.4-.6v-.2zM88.3 13.4h-.9v-.8c-.3.6-.8.9-1.5.9-.6 0-1-.2-1.4-.7-.4-.4-.6-1-.6-1.7 0-.8.2-1.4.6-1.9.4-.4.9-.7 1.5-.7s1.1.2 1.3.6v-2.7h1v5.6c-.1.6 0 1 0 1.4zm-1.1-2v-1.1c-.1-.3-.2-.5-.4-.6-.2-.2-.4-.3-.7-.3-.4 0-.7.2-.9.5-.2.3-.3.7-.3 1.2s.1.8.3 1.1c.2.3.5.5.9.5.3 0 .6-.1.8-.4.2-.2.3-.5.3-.9zM97.2 11c0 .7-.2 1.3-.6 1.8-.4.5-1 .7-1.7.7s-1.2-.2-1.7-.7c-.4-.5-.6-1-.6-1.7s.2-1.3.6-1.8 1-.7 1.7-.7 1.2.2 1.7.7c.4.5.6 1 .6 1.7zm-1 .1c0-.4-.1-.8-.3-1.1-.2-.4-.5-.6-.9-.6s-.7.2-1 .6c-.2.3-.3.7-.3 1.1 0 .4.1.8.3 1.1.2.4.5.6 1 .6.4 0 .7-.2.9-.6.2-.3.3-.7.3-1.1zM102.9 13.4h-1v-2.7c0-.8-.3-1.2-1-1.2-.3 0-.6.1-.8.3s-.3.5-.3.8v2.8h-1v-4.7h.9v.7c.1-.2.3-.4.5-.6.3-.2.6-.3 1-.3s.8.1 1.1.4c.4.3.5.9.5 1.6v2.9h.1zM109.9 9.5h-1.2v2.3c0 .6.2.9.6.9h.5v.8c-.2.1-.5.1-.8.1-.4 0-.7-.1-1-.4-.2-.3-.3-.7-.3-1.3v-2.4h-.7v-.8h.7v-.9l1-.3v1.2h1.2v.8zM115.5 13.4h-1v-2.7c0-.8-.3-1.3-.9-1.3-.5 0-.8.2-1 .7v3.2h-1v-6.9h1v2.8c.3-.5.8-.8 1.4-.8.4 0 .8.1 1.1.4.4.4.5.9.5 1.6v3h-.1zM121.2 10.9v.5h-3.2c0 .5.2.8.5 1.1.3.2.6.3 1 .3.5 0 .9-.1 1.3-.2l.2.7c-.4.2-1 .3-1.6.3-.7 0-1.3-.2-1.7-.6s-.6-1-.6-1.7.2-1.3.6-1.8c.4-.5 1-.8 1.6-.8.7 0 1.2.3 1.5.8.3.3.4.8.4 1.4zm-1-.3c0-.3-.1-.6-.2-.8-.2-.3-.5-.4-.8-.4s-.6.1-.8.4c-.2.2-.3.5-.3.8h2.1z"/>
</symbol>
<symbol id="googlePlayButton" viewBox="0 0 135 40">
<path d="M130 40h-125c-2.8 0-5-2.2-5-5v-30c0-2.8 2.2-5 5-5h125c2.8 0 5 2.2 5 5v30c0 2.8-2.2 5-5 5z"
fill="#000"/>
<path fill="#FFFFFF"
d="M44.5 13.2c.9 0 1.7-.3 2.3-.9.5-.5.8-1.2.8-2.1v-.6h-3.1v.9h2.2c-.1.4-.2.8-.5 1-.4.4-1 .6-1.6.6-.6 0-1.1-.2-1.6-.6-.4-.4-.7-1-.7-1.7s.2-1.2.7-1.7c.4-.4 1-.6 1.6-.6.7 0 1.2.2 1.6.7l.1.1.7-.7-.1-.1c-.2-.3-.6-.5-1-.7-.4-.2-.8-.3-1.3-.3-.9 0-1.7.3-2.3.9-.6.6-.9 1.4-.9 2.3s.3 1.7.9 2.3c.5.9 1.3 1.2 2.2 1.2zM52.1 12.2h-2.7v-1.7h2.5v-1h-2.5v-1.7h2.7v-.9h-3.7v6.2h3.7zM55.4 13.1v-5.3h1.7v-.9h-4.4v.9h1.7v5.3zM59.8 6.9h1v6.2h-1zM64.2 13.1v-5.3h1.7v-.9h-4.3v.9h1.7v5.3zM71.4 13.2c.9 0 1.7-.3 2.3-.9.6-.6.9-1.4.9-2.3 0-.9-.3-1.7-.9-2.3-.6-.6-1.4-.9-2.3-.9-.9 0-1.7.3-2.3.9-.6.6-.9 1.4-.9 2.3s.3 1.7.9 2.3c.6.6 1.4.9 2.3.9zm-1.5-4.9c.4-.4.9-.6 1.6-.6.6 0 1.1.2 1.6.6.4.4.6 1 .6 1.7s-.2 1.2-.6 1.7c-.4.4-.9.6-1.6.6-.6 0-1.1-.2-1.6-.6-.4-.4-.6-1-.6-1.7s.1-1.2.6-1.7zM76.4 9.3v-.9l2.9 4.7h1v-6.2h-1v3.6l.1.9-2.8-4.5h-1.1v6.2h.9zM123.7 22l-2.1 5.4h-.1l-2.2-5.4h-2l3.3 7.6-1.9 4.2h2l5.1-11.8zM106.9 17.5h1.9v12.5h-1.9zM113.4 21.7c-1.4 0-2.8.6-3.3 1.9l1.7.7c.4-.7 1-.9 1.7-.9 1 0 1.9.6 2 1.6v.1c-.3-.2-1.1-.5-1.9-.5-1.8 0-3.6 1-3.6 2.8 0 1.7 1.5 2.8 3.1 2.8 1.3 0 1.9-.6 2.4-1.2h.1v1h1.8v-4.8c-.2-2.2-1.9-3.5-4-3.5zm-.2 6.9c-.6 0-1.5-.3-1.5-1.1 0-1 1.1-1.3 2-1.3.8 0 1.2.2 1.7.4-.2 1.2-1.2 2-2.2 2zM58.8 21.8c-2.4 0-4.3 1.8-4.3 4.3 0 2.4 1.9 4.3 4.3 4.3s4.3-1.8 4.3-4.3c0-2.6-1.9-4.3-4.3-4.3zm0 6.8c-1.3 0-2.4-1.1-2.4-2.6s1.1-2.6 2.4-2.6c1.3 0 2.4 1 2.4 2.6 0 1.5-1.1 2.6-2.4 2.6zM68.1 21.8c-2.4 0-4.3 1.8-4.3 4.3 0 2.4 1.9 4.3 4.3 4.3s4.3-1.8 4.3-4.3c0-2.6-1.9-4.3-4.3-4.3zm0 6.8c-1.3 0-2.4-1.1-2.4-2.6s1.1-2.6 2.4-2.6 2.4 1 2.4 2.6c0 1.5-1.1 2.6-2.4 2.6zM82.6 17.5h1.9v12.5h-1.9zM93.1 24.5c-.4-1-1.4-2.7-3.6-2.7s-4 1.7-4 4.3c0 2.4 1.8 4.3 4.2 4.3 1.9 0 3.1-1.2 3.5-1.9l-1.4-1c-.5.7-1.1 1.2-2.1 1.2s-1.6-.4-2.1-1.3l5.7-2.4-.2-.5zm-5.8 1.4c0-1.6 1.3-2.5 2.2-2.5.7 0 1.4.4 1.6.9l-3.8 1.6zM47.7 23.1v1.8h4.3c-.1 1-.5 1.8-1 2.3-.6.6-1.6 1.3-3.3 1.3-2.7 0-4.7-2.1-4.7-4.8s2.1-4.8 4.7-4.8c1.4 0 2.5.6 3.3 1.3l1.3-1.3c-1.1-1-2.5-1.8-4.5-1.8-3.6 0-6.7 3-6.7 6.6 0 3.6 3.1 6.6 6.7 6.6 2 0 3.4-.6 4.6-1.9 1.2-1.2 1.6-2.9 1.6-4.2 0-.4 0-.8-.1-1.1h-6.2zM79.6 22.7c-.5-.5-1.3-1-2.3-1-2.1 0-4.1 1.9-4.1 4.3s1.9 4.2 4.1 4.2c1 0 1.8-.5 2.2-1h.1v.6c0 1.6-.9 2.5-2.3 2.5-1.1 0-1.9-.8-2.1-1.5l-1.6.7c.5 1.1 1.7 2.5 3.8 2.5 2.2 0 4-1.3 4-4.4v-7.6h-1.8v.7zm-2.2 5.9c-1.3 0-2.4-1.1-2.4-2.6s1.1-2.6 2.4-2.6c1.3 0 2.3 1.1 2.3 2.6s-1 2.6-2.3 2.6zM101.8 17.5h-4.5v12.5h1.9v-4.7h2.6c2.1 0 4.1-1.5 4.1-3.9s-2-3.9-4.1-3.9zm.1 6h-2.7v-4.3h2.7c1.4 0 2.2 1.2 2.2 2.1-.1 1.1-.9 2.2-2.2 2.2z"/>
<path d="M10.4 7.5c-.3.3-.4.8-.4 1.4v22.1c0 .6.2 1.1.5 1.4l.1.1 12.4-12.4v-.2l-12.6-12.4z" fill="#5BCAE8"/>
<path d="M27 24.3l-4.1-4.1v-.30000000000000004l4.1-4.1.1.1 4.9 2.8c1.4.8 1.4 2.1 0 2.9l-5 2.7z" fill="#F99B1C"/>
<path d="M27.1 24.2l-4.2-4.2-12.5 12.5c.5.5 1.2.5 2.1.1l14.6-8.4" fill="#C31E63"/>
<path d="M27.1 15.8l-14.6-8.3c-.9-.5-1.6-.4-2.1.1l12.5 12.4 4.2-4.2z" fill="#66BE69"/>
</symbol>
<symbol id="login" viewBox="0 0 22 22">
<path d="M13 2c0 .6.4 1 1 1h6v16h-6c-.6 0-1 .4-1 1s.4 1 1 1h6c1.1 0 2-.9 2-2v-16c0-1.1-.9-2-2-2h-6c-.6 0-1 .4-1 1zm-6.5 3.5c0 .3.1.5.3.7l3.8 3.8h-9.6c-.6 0-1 .4-1 1s.4 1 1 1h9.6l-3.8 3.8c-.2.2-.3.5-.3.7s.1.5.3.7c.4.4 1 .4 1.4 0l5.5-5.5c.1-.1.2-.2.2-.3.1-.2.1-.5 0-.8l-.2-.3-5.5-5.5c-.4-.4-1-.4-1.4 0-.2.2-.3.4-.3.7z"/>
</symbol>
<symbol id="chat" viewBox="0 0 22 22">
<path d="M11 22c-.1 0-.3 0-.4-.1-.4-.1-.6-.5-.6-.9v-4h-7.8c-1.2 0-2.2-1-2.2-2.2v-11.6c0-1.2 1-2.2 2.2-2.2h17.7c1.1 0 2.1 1 2.1 2.2v11.7c0 1.2-1 2.2-2.2 2.2h-3.4l-4.7 4.7c-.2.1-.4.2-.7.2zm-8.8-19c-.1 0-.2.1-.2.2v11.7s.1.1.2.1h8.8c.6 0 1 .4 1 1v2.6l3.3-3.3c.2-.2.4-.3.7-.3h3.8c.1 0 .2-.1.2-.2v-11.6c0-.1-.1-.2-.2-.2h-17.6zM5 6h6v2h-6zM5 10h10v2h-10z"/>
</symbol>
<symbol id="mail" viewBox="0 0 22 22">
<path d="M19.8 2h-17.6c-1.2 0-2.2 1-2.2 2.2v13.5c0 1.3 1 2.3 2.2 2.3h17.5c1.2 0 2.2-1 2.2-2.2v-13.6c.1-1.2-.9-2.2-2.1-2.2zm-17.6 2h17.5c.2 0 .3.1.3.2v.3l-9 6.3-9-6.3v-.3c0-.1.1-.2.2-.2zm17.6 14h-17.6c-.1 0-.2-.1-.2-.2v-10.9l8.1 5.7c.3.2.6.3.9.3.3 0 .6-.1.9-.3l8.1-5.7v10.9c0 .1-.1.2-.2.2z"/>
</symbol>
<symbol id="drop-down" viewBox="0 0 16 16">
<polyline stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"
points="1,5 8,12 15,5" fill="none"/>
</symbol>
<symbol id="direction-horizontal" viewBox="-2 6 16 16">
<path d="M13.7 13.3l-5-5c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.3 3.3h-11.6c-.6 0-1 .4-1 1s.4 1 1 1h11.6l-3.3 3.3c-.4.4-.4 1 0 1.4.2.2.4.3.7.3s.5-.1.7-.3l5-5c.2-.2.3-.5.3-.7s-.1-.5-.3-.7z"/>
</symbol>
<symbol id="direction-vertical" viewBox="-2 6 16 16">
<path d="M6.7 21.7l5-5c.4-.4.4-1 0-1.4s-1-.4-1.4 0l-3.3 3.3v-11.6c0-.6-.4-1-1-1s-1 .4-1 1v11.6l-3.3-3.3c-.4-.4-1-.4-1.4 0-.2.2-.3.4-.3.7 0 .3.1.5.3.7l5 5c.2.2.4.3.7.3s.5-.1.7-.3z"/>
</symbol>
<symbol id="right" viewBox="-2 6 16 16">
<path d="M13.7 13.3l-5-5c-.4-.4-1-.4-1.4 0s-.4 1 0 1.4l3.3 3.3h-11.6c-.6 0-1 .4-1 1s.4 1 1 1h11.6l-3.3 3.3c-.4.4-.4 1 0 1.4.2.2.4.3.7.3s.5-.1.7-.3l5-5c.2-.2.3-.5.3-.7s-.1-.5-.3-.7z"/>
</symbol>
</svg>
<!-- Navigation -->
<nav class="side">
<div class="navigation">
<ul></ul>
</div>
</nav>
<!-- Panel top #01 -->
<nav class="panel fixed top forceMobileView">
<div class="sections desktop">
<div class="left"><a href="#">
<svg style="width:107px;height:31px">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo"></use>
</svg>
</a></div>
<div class="center">
<ul class="menu">
<!--<li><a href="#anatree"><svg style="width:107px;height:31px"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo"></use></svg></a></li>-->
<li><a href="#what">WHAT</a></li>
<li><a href="#datastory">DATA STORY</a></li>
<li><a href="#how">HOW</a></li>
<li><a href="#who">WHO</a></li>
<li><a href="#portfolio">PORTFOLIO</a></li>
</ul>
</div>
<div class="right"><a class="button menuButton" href="#contact">CONTACT</a></div>
</div>
<div class="sections compact hidden">
<div class="left"><a href="#">
<svg style="width:107px;height:31px">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo"></use>
</svg>
</a></div>
<div class="right"><span class="button actionButton sidebarTrigger" data-sidebar-id="1"><svg><use
xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#menu"></use></svg></span></div>
</div>
</nav>
<!-- Sidebar -->
<nav class="sidebar anatreeDarkBlue" data-sidebar-id="1">
<div class="close">
<svg>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#close"></use>
</svg>
</div>
<div class="content">
<a href="#" class="logoWhite">
<svg width="120" height="50">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logoWhite"></use>
</svg>
</a>
<ul class="mainMenu uppercase">
<li><a href="#what">WHAT</a></li>
<li><a href="#datastory">DATA STORY</a></li>
<li><a href="#how">HOW</a></li>
<li><a href="#who">WHO</a></li>
<li><a href="#portfolio">PORTFOLIO</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
<!--
<ul class="subMenu">
<li><a href="#what">WHAT</a></li>
<li><a href="#datastory">DATA STORY</a></li>
<li><a href="#how">HOW</a></li>
<li><a href="#who">WHO</a></li>
<li><a href="#portfolio">PORTFOLIO</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
<ul class="social">
<li><a href="#"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#twitter"></use></svg></a></li>
<li><a href="#"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#facebook"></use></svg></a></li>
<li><a href="#"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#googlePlus"></use></svg></a></li>
<li><a href="#"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#pinterest"></use></svg></a></li>
</ul>-->
</div>
</nav>
<!-- ANATREE -->
<section class="slide whiteSlide video" name="what">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12 toCenter">
<h1 class="ae-1 small">Connecting the dots</h1>
</div>
<div class="fix-12-12">
<ul class="grid later equal">
<li class="col-3-12">
<div class="fix-3-12">
<svg width="120" height="120" class="ae-3 fromCenter icon-48"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<g fill="#242D3C">
<path d="M188.92 409.636l-30.94-130.432 29.42-18.578 75.461 86.656-6.856 5.967 5.094 7.524-72.179 48.863zm-10.24-121.994l21.86 92.163 41.851-28.332-58.465-67.141-5.246 3.31z"/>
<path d="M323.08 409.636l-72.18-48.863 5.094-7.524-6.858-5.967 75.453-86.656 29.422 18.578-30.931 130.432zm-53.474-58.163l41.853 28.332 21.855-92.155-5.248-3.318-58.46 67.141z"/>
<path d="M271.816 418.327h-31.627l-19.371-43.633 16.627-7.385 14.569 32.827h7.969l14.567-32.827 16.63 7.378"/>
<path d="M287.414 512l-28.268-93.688h-6.292L224.586 512l-17.415-5.251 32.166-106.629h33.329l32.163 106.629m127.255-16.386l-15.897-151.742-78.743-37.056 7.746-16.458 88.026 41.424 16.963 161.935m-370.263 1.897l-18.095-1.897 16.963-161.935 88.026-41.424 7.746 16.458-78.743 37.056m227.489 93.149h58.214v18.191h-58.214z"/>
</g>
<path fill="#2196f3"
d="M255.987 0c-55.081.015-99.722 44.652-99.722 99.735 0 29.171 12.544 55.434 32.499 73.677.952.796 1.912 1.626 2.893 2.486 15.565 14.221 25.354 34.642 25.354 57.38h77.957c0-22.738 9.746-43.159 25.372-57.38.986-.86 1.915-1.692 2.849-2.486 19.932-18.243 32.55-44.506 32.55-73.677C355.74 44.652 311.096.015 255.987 0z"/>
<path fill="#FFF" d="M255.826 33.137v72.384H224.52m31.306 60.792V93.921h31.268"/>
<path fill="#242D3C"
d="M208.845 224.179h94.305v18.191h-94.305zm0 29.005h94.305v18.189h-94.305zm25.395 29.03h43.502v18.191H234.24z"/>
</svg>
<h3 class="equalElement ae-7">DIGITAL CONSULTANCY</h3>
<div class="ae-8">
<p class="small">We are helping brands to leverage their digital potential and put
their data at the center of their business.</p>
</div>
</div>
</li>
<li class="col-3-12">
<div class="fix-3-12">
<svg width="120" height="120" viewBox="0 0 512 512" class="ae-4 fromCenter icon-48"
xmlns="http://www.w3.org/2000/svg">
<circle cx="416.947" cy="401.54" r="95.053" fill="#ff5252"/>
<path fill="#FFF"
d="M382.633 434.556l-33.001-33.003 33.006-32.999 11.868 11.866-21.127 21.133 21.13 21.132m56.755 11.871l-11.868-11.871 21.13-21.132-21.13-21.133 11.868-11.866 32.998 32.999m-71.607651 45.882844l-16.154866-4.584489 24.746358-87.201452 16.154866 4.584489z"/>
<g fill="#242D3C">
<path d="M204.672 186.63h45.266v16.786h-45.266zm45.261 57.572h48.691v16.786h-48.691zm0 28.775h48.691v16.788h-48.691zm0 86.348h48.691v16.788h-48.691zm0 28.775h48.691v16.788h-48.691zm-45.261-172.698h93.942v16.786h-93.942zm0 86.349h45.266v16.786h-45.266zm0 28.774h93.942v16.786h-93.942zm112.973-86.323h48.691v16.786h-48.691zm0 28.775h93.957v16.788h-93.957zm0-57.575h48.691v16.786h-48.691zm141.598-53.396h-302.2V94.857h302.198v67.149h.002zm-285.414-16.791h268.626v-33.572H173.829v33.572z"/>
<path d="M190.618 120.04h16.791v16.786h-16.791zm33.561 0h16.794v16.786h-16.794zm33.587 0h16.794v16.786h-16.794zm40.848 326.254H157.043V145.215h302.2v144.074h-16.788V162.006H173.829v267.502h124.785m-215.33 58.895c-16.858 0-30.569-13.716-30.569-30.574s13.711-30.572 30.569-30.572 30.572 13.714 30.572 30.572c0 16.858-13.714 30.574-30.572 30.574zm0-44.36c-7.603 0-13.786 6.182-13.786 13.786 0 7.601 6.182 13.786 13.786 13.786 7.601 0 13.786-6.185 13.786-13.786 0-7.603-6.185-13.786-13.786-13.786zm39.071-16.775h16.786v61.148h-16.786zM395.016 76.545c-16.863 0-30.569-13.709-30.569-30.572 0-16.855 13.706-30.566 30.569-30.566 16.855 0 30.566 13.711 30.566 30.566 0 16.863-13.711 30.572-30.566 30.572zm0-44.352c-7.601 0-13.786 6.185-13.786 13.78 0 7.601 6.185 13.786 13.786 13.786 7.598 0 13.783-6.185 13.783-13.786 0-7.595-6.185-13.78-13.783-13.78zm-55.867-16.778h16.786v61.138h-16.786zm-25.267 0h16.788v61.138h-16.788zM109.775 338.733h-8.394v-16.788h8.394c1.989 0 3.858-.778 5.263-2.184 1.411-1.411 2.186-3.279 2.186-5.268v-63.36c0-1.992-.776-3.866-2.186-5.271-1.403-1.405-3.274-2.181-5.263-2.181h-8.394v-16.786h8.394c6.469 0 12.554 2.519 17.132 7.094 4.585 4.582 7.104 10.668 7.104 17.144v63.363c0 6.472-2.519 12.554-7.104 17.132-4.567 4.578-10.652 7.105-17.132 7.105zm-77.148 0h-8.394c-6.472 0-12.559-2.522-17.139-7.104C2.516 327.044 0 320.961 0 314.497v-63.365c0-6.469 2.516-12.557 7.089-17.137 4.593-4.582 10.675-7.099 17.144-7.099h8.394v16.786h-8.394c-1.992 0-3.866.773-5.276 2.184-1.398 1.403-2.171 3.277-2.171 5.268v63.363c0 1.987.773 3.858 2.184 5.271 1.405 1.403 3.274 2.181 5.263 2.181h8.394v16.784z"/>
<path d="M26.811 274.41h16.791v16.788H26.811zm30.216 0h16.791v16.788H57.027zm30.218 0h16.791v16.788H87.245z"/>
</g>
</svg>
<h3 class="equalElement ae-8">SOFTWARE HOUSE</h3>
<div class="ae-9">
<p class="small">We are all developers, everything we do is deeply rooted in
technology.</p>
</div>
</div>
</li>
<li class="col-3-12">
<div class="fix-3-12">
<svg width="120" height="120" class="ae-4 fromCenter icon-48"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<path fill="#ff5252"
d="M256 260.086c-25.139 0-45.594-20.449-45.594-45.594 0-25.134 20.454-45.586 45.594-45.586s45.594 20.449 45.594 45.586c0 25.144-20.455 45.594-45.594 45.594z"/>
<path fill="#2196f3"
d="M61.537 125.358c-12.756 0-23.137-10.378-23.137-23.137s10.378-23.135 23.137-23.135c12.756 0 23.135 10.378 23.135 23.135s-10.378 23.137-23.135 23.137zm388.928 0c-12.762 0-23.14-10.378-23.14-23.137 0-12.749 10.378-23.13 23.14-23.13 12.756 0 23.135 10.378 23.135 23.13 0 12.759-10.378 23.137-23.135 23.137zM256 462.172c-12.756 0-23.137-10.381-23.137-23.137 0-12.749 10.378-23.127 23.137-23.127s23.135 10.378 23.135 23.127c0 12.756-10.379 23.137-23.135 23.137z"/>
<g fill="#242D3C">
<path d="M256 298.486c-46.313 0-83.994-37.678-83.994-83.994 0-46.31 37.678-83.986 83.994-83.986s83.994 37.676 83.994 83.986c0 46.316-37.678 83.994-83.994 83.994zm0-149.694c-36.229 0-65.708 29.471-65.708 65.7 0 36.232 29.478 65.708 65.708 65.708 36.227 0 65.708-29.476 65.708-65.708 0-36.229-29.481-65.7-65.708-65.7zM61.537 163.758C27.607 163.758 0 136.154 0 102.221s27.607-61.535 61.537-61.535 61.535 27.602 61.535 61.535-27.604 61.537-61.535 61.537zm0-104.786c-23.846 0-43.251 19.405-43.251 43.251s19.402 43.251 43.251 43.251 43.251-19.405 43.251-43.251-19.402-43.251-43.251-43.251zm388.928 104.786c-33.933 0-61.54-27.604-61.54-61.537 0-33.928 27.607-61.53 61.54-61.53 33.928.003 61.535 27.602 61.535 61.53 0 33.933-27.607 61.537-61.535 61.537zm0-104.778c-23.849 0-43.254 19.4-43.254 43.244 0 23.846 19.405 43.251 43.254 43.251s43.251-19.405 43.251-43.251c-.002-23.844-19.402-43.244-43.251-43.244zM256 500.572c-33.933 0-61.537-27.604-61.537-61.537 0-33.928 27.604-61.527 61.537-61.527 33.928 0 61.535 27.599 61.535 61.527 0 33.933-27.607 61.537-61.535 61.537zm0-104.781c-23.849 0-43.251 19.4-43.251 43.244 0 23.846 19.4 43.251 43.251 43.251s43.251-19.402 43.251-43.251c0-23.841-19.402-43.244-43.251-43.244zm0-307.563c-21.171 0-38.4-17.226-38.4-38.4s17.229-38.4 38.4-38.4c21.174 0 38.4 17.226 38.4 38.4s-17.226 38.4-38.4 38.4zm0-58.514c-11.092 0-20.114 9.024-20.114 20.114S244.908 69.942 256 69.942s20.114-9.024 20.114-20.114S267.092 29.714 256 29.714zM113.428 335.227c-13.693 0-26.447-7.355-33.285-19.205-5.128-8.876-6.49-19.223-3.835-29.133 2.655-9.912 9.006-18.191 17.884-23.322 5.837-3.366 12.462-5.146 19.164-5.146 13.701 0 26.452 7.36 33.293 19.205 5.128 8.881 6.49 19.226 3.837 29.138-2.657 9.907-9.009 18.186-17.894 23.316-5.828 3.37-12.456 5.147-19.164 5.147zm-.071-58.519c-3.5 0-6.966.932-10.022 2.696-4.649 2.688-7.974 7.025-9.364 12.219-1.393 5.187-.678 10.611 2.007 15.255 3.581 6.208 10.271 10.066 17.449 10.066 3.5 0 6.963-.932 10.022-2.696 4.654-2.688 7.982-7.025 9.372-12.214 1.393-5.189.678-10.611-2.007-15.26-3.585-6.208-10.271-10.066-17.457-10.066zm285.207 58.519c-6.705 0-13.33-1.777-19.162-5.146-8.881-5.13-15.235-13.409-17.887-23.322-2.655-9.91-1.293-20.257 3.835-29.135 6.835-11.843 19.592-19.203 33.285-19.203 6.707 0 13.338 1.779 19.167 5.146 18.337 10.591 24.64 34.122 14.049 52.46-6.837 11.845-19.591 19.2-33.287 19.2zm.071-58.519c-7.178 0-13.862 3.853-17.449 10.066-2.685 4.649-3.4 10.068-2.007 15.255 1.39 5.194 4.715 9.533 9.37 12.219 3.052 1.761 6.518 2.696 10.017 2.696 7.186 0 13.87-3.853 17.452-10.058 5.548-9.608 2.248-21.934-7.357-27.482-3.06-1.764-6.526-2.696-10.026-2.696z"/>
<path d="M246.861 289.331h18.286v97.306h-18.286zm78.539074-104.339254l-9.1415-15.833078 84.264398-48.6515 9.1415 15.833078zm-138.803686-.027998l-84.264398-48.6515 9.143-15.835676 84.264398 48.6515z"/>
</g>
</svg>
<h3 class="equalElement ae-8">SYSTEMS INTEGRATION</h3>
<div class="ae-9"><p class="small">We will integrate your systems without interfering
with continuity of your business process.
</p>
</div>
</div>
</li>
<li class="col-3-12">
<div class="fix-3-12">
<svg width="120" height="120" viewBox="0 0 512 512" class="ae-4 fromCenter icon-48"
xmlns="http://www.w3.org/2000/svg">
<path fill="#2196f3"
d="M119.537 242.959c-29.732 0-53.916-24.174-53.916-53.888 0-29.734 24.182-53.916 53.916-53.916 1.879 0 3.973.138 6.4.425l23.736 2.772 5.583-23.227c11.233-46.728 52.654-79.36 100.736-79.36 48.102 0 89.505 32.625 100.695 79.337l5.568 23.212 23.703-2.724c2.491-.289 4.621-.433 6.513-.433 29.719 0 53.908 24.182 53.908 53.916 0 29.714-24.187 53.888-53.908 53.888H119.537v-.002z"/>
<g fill="#242D3C">
<path d="M378.867 370.335h-69.839l.003-109.322h83.446c39.706 0 72.013-32.274 72.013-71.941 0-39.716-32.307-72.023-72.013-72.023-2.591 0-5.389.179-8.571.548l-7.78.904-1.825-7.619C361.15 55.993 312.5 17.657 255.998 17.657c-56.481 0-105.147 38.339-118.344 93.233l-1.828 7.626-7.785-.924c-3.116-.366-5.896-.543-8.502-.543-39.718 0-72.023 32.307-72.023 72.023 0 39.667 32.305 71.941 72.023 71.941h83.443v109.322h-69.85v-17.654h52.193v-74.012h-65.789c-49.449 0-89.679-40.189-89.679-89.595 0-49.452 40.23-89.677 89.679-89.677.957 0 1.928.015 2.918.056C139.988 40.525 193.861 0 255.997 0c62.164 0 116.019 40.527 133.517 99.456 1.009-.041 1.989-.059 2.962-.059 49.441 0 89.667 40.225 89.667 89.677 0 49.405-40.228 89.595-89.667 89.595h-65.784l-.008 74.012h52.186v17.654h-.003z"/>
<path d="M482.143 417.554H370.04V305.457h112.102v112.097zm-94.449-17.651h76.792v-76.79h-76.792v76.79zM312.054 512H199.951V399.903h112.102V512zm-94.449-17.654h76.79v-76.79h-76.79v76.79zm-75.645-76.792H29.857V305.457H141.96v112.097zm-94.446-17.651h76.792v-76.79H47.514v76.79z"/>
<path d="M247.168 269.85h17.654v138.88h-17.654z"/>
</g>
<path fill="#FFF"
d="M211.866 207.642h17.654v17.654h-17.654zm35.302 0h17.654v17.654h-17.654zm35.302 0h17.654v17.654H282.47z"/>
</svg>
<h3 class="equalElement ae-8">BIG DATA READY</h3>
<div class="ae-9">
<p class="small">We are ready to handle any aspect of your data volume, velocity or
variety while maximizing veracity. On premise or in the cloud.
</p>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="background">
<video poster="assets/img/dots.jpg" autoplay loop muted webkit-playsinline preload="auto">
<source src="assets/img/dots.mp4" type="video/mp4"/>
</video>
</div>
</section>
<!-- DATA STORY -->
<section class="slide whiteSlide" name="datastory">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12 toCenter">
<h1 class="small ae-1">Our data story</h1>
</div>
<div class="fix-12-12">
<div class="fix-12-12">
<!--<img src="assets/img/datastory.jpg" alt="DisK general architecture"/>--></div>
<ul class="grid grid-47 later equal">
<li class="col-4-12 equalElement">
<div class="fix-4-12 ae-3">
<svg width="120" height="120" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"
class="icon-47">
<g fill="#242D3C">
<path d="M256.003 396.109l-121.336-70.042V185.946l121.336-70.034 121.329 70.034.008 140.114-121.337 70.049zm-102.372-80.991l102.374 59.098L358.38 315.11l-.008-118.218-102.367-59.085-102.374 59.085v118.226z"/>
<path d="M256 266.947l-116.593-67.318 9.483-16.423L256 245.051l107.116-61.845 9.482 16.423"/>
<path d="M246.528 256h18.962v129.152h-18.962zm-107.121-56.371l-30.092-17.37H74.57v-18.962h39.826l34.494 19.909"/>
</g>
<path fill="#ff5252" d="M0 134.554h74.573v74.573H0z"/>
<path fill="#242D3C"
d="M372.593 199.629l-9.483-16.423 34.491-19.909h39.829v18.962h-34.745"/>
<path fill="#ff5252" d="M437.427 134.554H512v74.573h-74.573z"/>
<path fill="#242D3C"
d="M437.43 348.71h-39.829l-34.491-19.911 9.483-16.425 30.092 17.374h34.745"/>
<path fill="#2196f3" d="M437.427 302.874H512v74.573h-74.573z"/>
<path fill="#242D3C"
d="M114.396 348.71H74.57v-18.962h34.745l30.092-17.374 9.483 16.425"/>
<path fill="#2196f3" d="M0 302.874h74.573v74.573H0z"/>
<path fill="#242D3C" d="M246.528 74.573h18.962v52.288h-18.962z"/>
<path fill="#2196f3" d="M218.726 0h74.573v74.573h-74.573z"/>
<path fill="#242D3C" d="M246.528 385.152h18.962v52.291h-18.962z"/>
<path fill="#ff5252" d="M218.726 437.427h74.573V512h-74.573z"/>
<path fill="#242D3C"
d="M74.573 55.608h18.964V74.57H74.573zm343.885 0h18.962V74.57h-18.962zM74.573 437.453h18.964v18.962H74.573zm343.885 0h18.962v18.962h-18.962z"/>
</svg>
<h3 class="uppercase">DATA ENVIRONMENT ANALYSIS</h3>
<p class="small">Analysis of exsiting data landscape within the organization.
Identification of data potential and parameters. Definition of goals. Integration
roadmap. Data Access restrictions management.</p>
</div>
</li>
<li class="col-4-12 equalElement">
<div class="fix-4-12 ae-4">
<svg width="120" height="120" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"
class="icon-47">
<path fill="#242D3C"
d="M64 44.114h18.286v49.994H64zm36.582 15.421h18.286v34.57h-18.286zm36.557-56.857h18.286v91.428h-18.286zm36.575 36.58H192v54.851h-18.286zm36.564-23.847h18.286v78.687h-18.286zm36.583 27.771h18.286v50.926h-18.286zm36.557-34.923h18.289v85.85h-18.289zM320 22.922h18.286v71.186H320zm36.582 16.336h18.286v54.851h-18.286zm36.557-29.412h18.286v84.262h-18.286zm36.583 34.268h18.286v49.994h-18.286z"/>
<path fill="#2196f3" d="M9.142 139.822l192 192v9.142h109.716v-9.142l192-192"/>
<g fill="#242D3C">
<path d="M64 139.822h18.286v18.286H64zm36.582 0h18.286v18.286h-18.286zm36.557 0h18.286v18.286h-18.286zm36.575 0H192v18.286h-18.286zm36.564 0h18.286v18.286h-18.286zm36.583 0h18.286v18.286h-18.286zm36.557 0h18.289v18.286h-18.289zm36.582 0h18.286v18.286H320zm36.582 0h18.286v18.286h-18.286zm36.557 0h18.286v18.286h-18.286zm36.583 0h18.286v18.286h-18.286zm-329.14 36.57h18.286v18.286h-18.286zm36.557 0h18.286v18.286h-18.286zm36.575 0H192v18.286h-18.286zm36.564 0h18.286v18.286h-18.286zm36.583 0h18.286v18.286h-18.286zm36.557 0h18.289v18.286h-18.289zm36.582 0h18.286v18.286H320zm36.582 0h18.286v18.286h-18.286zm36.557 0h18.286v18.286h-18.286zm-256 36.574h18.286v18.286h-18.286zm36.575 0H192v18.286h-18.286zm36.564 0h18.286v18.286h-18.286zm36.583 0h18.286v18.286h-18.286zm36.557 0h18.289v18.286h-18.289zm36.582 0h18.286v18.286H320zm36.582 0h18.286v18.286h-18.286zm-182.868 36.557H192v18.286h-18.286zm36.564 0h18.286v18.286h-18.286zm36.583 0h18.286v18.286h-18.286zm36.557 0h18.289v18.286h-18.289zm36.582 0h18.286v18.286H320zm-109.722 36.583h18.286v18.286h-18.286zm36.583 0h18.286v18.286h-18.286zm36.557 0h18.289v18.286h-18.289zm-36.557 36.582h18.286v18.289h-18.286z"/>
<path d="M210.286 423.25H192v-87.642l-192-192V75.822h45.714v18.286H18.286v41.928l192 192M320 423.25h-18.286v-95.214l192-192V94.108h-27.428V75.822H512v67.786l-192 192m-73.139 23.637h18.286v137.139h-18.286z"/>
<path d="M256 509.322L194.678 448l12.93-12.928L256 483.466l48.392-48.394L317.322 448"/>
</g>
</svg>
<h3 class="uppercase">DATA INTEGRATION</h3>
<p class="small">Setting up or implementation of ETL, ELT and streaming data connectors
that integrate all siloed data sources into EDW or Data Lake.</p>
</div>
</li>
<li class="col-4-12 equalElement">
<div class="fix-4-12 ae-5">
<svg width="120" height="120" viewBox="0 0 512.005 512.005"
xmlns="http://www.w3.org/2000/svg" class="icon-47">
<path fill="#ff5252"
d="M123.587 256.003c-63.378 0-114.76-17.393-114.76-38.845v70.607c0 21.453 51.379 38.845 114.76 38.845 63.383 0 114.76-17.393 114.76-38.845v-70.607c-.001 21.452-51.377 38.845-114.76 38.845z"/>
<g fill="#242D3C">
<path d="M123.587 194.225C62.172 194.225 0 177.851 0 146.555 0 115.254 62.172 98.88 123.587 98.88s123.587 16.374 123.587 47.675c-.001 31.296-62.173 47.67-123.587 47.67zm0-77.691c-64.663 0-105.93 17.779-105.93 30.021 0 11.948 42.248 30.013 105.93 30.013s105.93-18.066 105.93-30.013c0-12.242-41.267-30.021-105.93-30.021z"/>
<path d="M123.587 264.829C62.172 264.829 0 248.453 0 217.157v-70.605h17.654v70.605c0 12.237 41.27 30.019 105.93 30.019s105.93-17.779 105.93-30.019v-70.605h17.654v70.605c.005 31.296-62.167 47.672-123.581 47.672z"/>
<path d="M123.587 335.437C62.172 335.437 0 319.06 0 287.764v-70.607h17.654v70.607c0 12.237 41.27 30.019 105.93 30.019s105.93-17.779 105.93-30.019v-70.607h17.654v70.607c.005 31.296-62.167 47.673-123.581 47.673z"/>
<path d="M123.587 406.044C62.172 406.044 0 389.673 0 358.374v-70.61h17.654v70.61c0 12.237 41.27 30.013 105.93 30.013s105.93-17.774 105.93-30.013v-70.61h17.654v70.61c.005 31.299-62.167 47.67-123.581 47.67zM79.462 211.868h17.654v17.654H79.462zm35.298 0h17.654v17.654H114.76zm35.307 0h17.654v17.654h-17.654z"/>
</g>
<path fill="#FFF"
d="M79.462 282.473h17.654v17.654H79.462zm35.298 0h17.654v17.654H114.76zm35.307 0h17.654v17.654h-17.654z"/>
<g fill="#242D3C">
<path d="M79.462 353.078h17.654v17.656H79.462zm35.298 0h17.654v17.656H114.76zm35.307 0h17.654v17.656h-17.654zm114.765-35.251h35.31v17.654h-35.31zm0-141.259h35.31v17.656h-35.31zm35.302 70.628h35.31v17.654h-35.31z"/>
<path d="M335.447 413.169H291.31V98.88h44.137v17.654h-26.483v278.978h26.483"/>
</g>
<path fill="#2196f3" d="M361.933 81.221h141.235v52.964H361.933z"/>
<g fill="#242D3C">
<path d="M388.403 98.88h17.654v17.654h-17.654zm35.328 0h17.654v17.654h-17.654zm35.303 0h44.137v17.654h-44.137z"/>
<path d="M494.346 169.498H370.76c-4.716 0-9.149-1.833-12.483-5.169-3.331-3.323-5.174-7.762-5.174-12.483V63.562c0-4.713 1.836-9.149 5.174-12.483 3.336-3.336 7.767-5.174 12.483-5.174h123.587c4.718 0 9.147 1.838 12.483 5.174 3.338 3.333 5.174 7.77 5.174 12.483v88.287c0 4.721-1.843 9.16-5.179 12.49-3.327 3.326-7.763 5.159-12.479 5.159zM370.757 63.562v88.287l123.587-.003h.013l-.013-88.282H370.757v-.002z"/>
</g>
<path fill="#2196f3" d="M361.933 229.532h141.235v52.964H361.933z"/>
<g fill="#242D3C">
<path d="M388.403 247.171h17.654v17.654h-17.654zm35.328 0h17.654v17.654h-17.654zm35.303 0h44.137v17.654h-44.137z"/>
<path d="M494.346 317.804H370.76c-4.716 0-9.147-1.838-12.483-5.174-3.338-3.336-5.174-7.77-5.174-12.485v-88.284c0-4.718 1.836-9.152 5.174-12.485 3.346-3.338 7.772-5.174 12.483-5.174h123.587c4.71 0 9.137 1.836 12.475 5.166 3.346 3.343 5.179 7.777 5.179 12.493v88.284c0 4.716-1.836 9.149-5.174 12.485-3.334 3.335-7.765 5.174-12.481 5.174zM370.757 211.858v88.287l123.587.003h.008l-.008-88.287-123.587-.003z"/>
</g>
<path fill="#2196f3" d="M361.933 377.807h141.235v52.964H361.933z"/>
<g fill="#242D3C">
<path d="M388.403 395.471h17.654v17.654h-17.654zm35.328 0h17.654v17.654h-17.654zm35.303 0h44.137v17.654h-44.137z"/>
<path d="M494.346 466.099H370.76c-4.71 0-9.139-1.836-12.475-5.164-3.346-3.354-5.179-7.782-5.179-12.493v-88.287c0-4.713 1.836-9.147 5.174-12.483 3.333-3.336 7.767-5.171 12.483-5.171H494.35c4.718 0 9.152 1.836 12.483 5.171 3.338 3.336 5.174 7.77 5.174 12.483v88.287c0 4.71-1.835 9.139-5.166 12.477-3.356 3.347-7.787 5.18-12.495 5.18zm0-105.94l-123.587.003v88.284h123.595l-.008-88.287z"/>
</g>
</svg>
<h3 class="uppercase">DATA WAREHOUSING</h3>
<p class="small">Create a single source of truth - the new (FMO) data architecture for
the organization. Implement the ecosystem as EDW, Data Lake or stream processor.
Deisgn the implementation accordingly to use case requirements.</p>
</div>
</li>
<li class="col-4-12 equalElement">
<div class="fix-4-12 ae-6">
<svg width="120" height="120" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"
class="icon-47">viewBox="0 0 512.008 512.008">
<path fill="#ff5252"
d="M284.979 53.137h19.323v19.32h-19.323zm0 38.64h19.323v19.32h-19.323zm0 38.641h19.323v19.32h-19.323z"/>
<path fill="#242D3C"
d="M323.635 53.137h154.573v19.32H323.635zm0 38.64h154.573v19.32H323.635zm0 38.641h154.573v19.32H323.635z"/>
<path fill="#2196f3"
d="M43.471 362.269h19.32v19.32h-19.32zm0 38.631h19.32v19.323h-19.32zm0 38.656h19.32v19.32h-19.32z"/>
<path fill="#242D3C"
d="M82.125 362.269h154.573v19.32H82.125zm0 38.631h154.573v19.323H82.125zm0 38.656h154.573v19.32H82.125z"/>
<path fill="#2196f3"
d="M140.076 14.493c-83.405 0-89.475 210.232-120.753 241.51h241.508c-31.281-31.277-37.353-241.51-120.755-241.51z"/>
<path fill="#ff5252"
d="M260.831 256.004c31.281 31.281 37.356 241.51 120.755 241.51s89.475-210.23 120.755-241.51h-241.51z"/>
<g fill="#242D3C">
<path d="M9.659 246.353h502.349v19.32H9.659z"/>
<path d="M0 14.493h19.32v483.021H0z"/>
</g>
<path fill="#FFF"
d="M130.414 53.137h19.32v19.32h-19.32zm0 38.64h19.32v19.32h-19.32zm0 38.641h19.32v19.32h-19.32zm241.503 231.851h19.32v19.32h-19.32zm0 38.631h19.32v19.323h-19.32zm0 38.656h19.32v19.32h-19.32z"/>
<path fill="#242D3C"
d="M253.064 261.746c-30.39-41.078-70.515-63.7-112.993-63.7-42.47 0-82.601 22.623-112.986 63.7l-15.532-11.487c34.12-46.129 79.762-71.534 128.517-71.534 48.758 0 94.4 25.403 128.525 71.534l-15.531 11.487zm128.522 71.539h-.005c-48.753 0-94.395-25.403-128.517-71.539l15.532-11.487c30.39 41.078 70.515 63.706 112.986 63.706 42.478 0 82.606-22.623 112.993-63.706l15.532 11.487c-34.121 46.134-79.771 71.539-128.521 71.539z"/>
</svg>
<h3 class="uppercase">DATA SCIENCE AND ANALYTICS</h3>
<p class="small">With seamless access to data avialable in one place we use the open
stack of available Data Science tools to mine knowledge and insights from data.</p>
</div>
</li>
<li class="col-4-12 equalElement">
<div class="fix-4-12 ae-7">
<svg width="120" height="120" viewBox="0 0 512.008 512.008"
xmlns="http://www.w3.org/2000/svg" class="icon-47">
<g fill="#242D3C">
<path d="M315.743 361.896H196.25v-40.494h18.286v22.208h82.921v-22.208h18.286"/>
<path d="M176.522 343.602h158.95v18.289h-158.95zm260.67-73.605H74.808V39.899c0-5.688 2.217-11.036 6.241-15.053 3.95-4.001 9.308-6.228 15.043-6.228H415.9c5.727 0 11.085 2.225 15.086 6.269 3.988 3.96 6.208 9.311 6.208 15.014v230.095h-.002zm-344.1-18.286h325.814V39.899c0-.463-.115-1.349-.865-2.097-.742-.753-1.569-.901-2.143-.901H96.092c-.571 0-1.393.146-2.079.84-.806.806-.922 1.697-.922 2.158v211.812z"/>
<path d="M415.9 310.463H96.087c-5.714 0-11.064-2.217-15.066-6.249-3.994-3.983-6.213-9.334-6.213-15.032v-37.471h362.386v37.471c0 5.709-2.22 11.064-6.257 15.078-3.98 3.988-9.331 6.203-15.037 6.203zM93.092 269.997v19.185c0 .466.115 1.359.87 2.117.765.768 1.656.878 2.122.878h319.813c.474 0 1.372-.11 2.115-.855.778-.781.893-1.672.893-2.14v-19.185H93.092z"/>
</g>
<path fill="#2196f3" d="M110.874 54.673h290.253v179.251H110.874z"/>
<path fill="#FFF"
d="M401.121 127.267v106.657H110.879v-25.313l18.158-13.384 18.155 2.222 31.222-38.367 31.224 18.01 16.917-12.698 16.911-5.056 22.948-27.387 22.945 31.13 22.951-31.13 22.948-4.684 32.931-31.806"/>
<path fill="#ff5252"
d="M401.121 184.078v49.846H110.879v-11.83l18.158-6.257 18.155 1.04 31.222-17.933 31.224 8.417 16.917-5.929 16.911-2.365 22.948-12.8 22.945 14.546 22.951-14.546 22.948-2.189 32.931-14.868"/>
<g fill="#242D3C">
<path d="M143.795 78.445h78.835v18.286h-78.835zm0 32.914h39.419v18.286h-39.419zM512 397.81H0v-54.185h148.308v18.283H18.286v17.616h475.428v-17.616H363.702v-18.283H512"/>
<path d="M473.108 493.382h-18.286v-95.58h-17.63v95.58h-18.284V379.516h54.2M93.092 493.382H74.808v-95.58H57.185v95.58H38.899V379.516h54.193"/>
</g>
</svg>
<h3 class="uppercase">DATA VISUALIZATION</h3>
<p class="small">Visualize your data through dashboards. Apply best user experience to
understand the data better, look for patterns, explore interactively, deep dive into
your datasets.</p>
</div>
</li>
<li class="col-4-12 equalElement">
<div class="fix-4-12 ae-7">
<svg width="120" height="120" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"
class="icon-47">
<path fill="#2196f3"
d="M140.5 183.898l-40.635 40.635-40.635-40.635h-.008c-12.557 0-25.111 4.785-34.696 14.372-9.582 9.587-14.369 22.134-14.369 34.696v75.489h40.635v47.913h98.135V224.532h124.557v-40.635H140.5z"/>
<g fill="#242D3C">
<path d="M99.866 156.319c-30.249 0-54.858-24.607-54.858-54.858s24.607-54.856 54.858-54.856c30.241 0 54.848 24.607 54.848 54.856s-24.607 54.858-54.848 54.858zm0-89.395c-19.046 0-34.54 15.496-34.54 34.54s15.493 34.54 34.54 34.54c19.041 0 34.532-15.496 34.532-34.54s-15.494-34.54-34.532-34.54zM40.635 308.452h20.319v200.064H40.635zm49.067 75.494h20.319V508.5H89.702z"/>
<path d="M159.089 508.511H138.77V214.374h162.309v-20.319H59.223c-10.399 0-20.168 4.047-27.51 11.397-7.35 7.355-11.397 17.124-11.397 27.512v103.084h30.477v20.319H0V232.965c0-15.813 6.159-30.682 17.341-41.876 11.182-11.187 26.056-17.349 41.882-17.349h262.175v60.954H159.089v273.817z"/>
<path d="M492.81 405.752H190.976v-20.316h281.516V146.161h20.318"/>
<path d="M512 156.319H190.976V136h300.705v-18.058H190.976V97.626H512"/>
<path d="M373.54 114.967l-82.755-82.752-82.744 82.752-14.367-14.367 97.111-97.116 97.119 97.116M280.627 395.594h20.319v56.704h-20.319z"/>
<path d="M290.785 508.511c-18.299 0-33.183-14.889-33.183-33.188 0-18.299 14.881-33.185 33.183-33.185 18.296 0 33.183 14.886 33.183 33.185 0 18.299-14.886 33.188-33.183 33.188zm0-46.057c-7.094 0-12.864 5.773-12.864 12.867s5.77 12.869 12.864 12.869c7.094 0 12.864-5.775 12.864-12.869s-5.77-12.867-12.864-12.867z"/>
</g>
<path fill="#ff5252"
d="M190.976 325.322h20.319v35.556h-20.319zm40.141-35.558h20.319v71.109h-20.319zm40.166 31.001h20.319v40.125h-20.319zm40.141-45.824h20.319v85.939h-20.319zm40.141 25.498h20.319v60.442h-20.319zm40.141-45.722h20.319v106.158h-20.319zm40.14 17.28h20.319v88.888h-20.319z"/>
<path fill="#242D3C"
d="M351.078 173.74h20.319v20.319h-20.319zm40.628 0h20.319v20.319h-20.319zm40.652 0h20.319v20.319h-20.319zm-81.28 40.632h101.588v20.319H351.078z"/>
</svg>
<h3 class="uppercase">DATA STORYTELLING</h3>
<p class="small">Knowledge is applicable only when properly interpreted and
communicated. We employ state of the art interface solutions to make your complex
data tell story of your business.</p>
</div>
</li>
<li class="col-4-12 equalElement">
<div class="fix-4-12 ae-8">
<svg width="120" height="120" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"
class="icon-47">
<g fill="#242D3C">
<path d="M357.783 490.038H210.299v-49.285h18.964v30.323h109.556v-30.323h18.964"/>
<path d="M183.117 471.066h201.856v18.962H183.117zM512 373.34H112.169v-78.659c0-2.606-2.199-4.8-4.8-4.8H56.084V83.274c0-6.625 2.58-12.869 7.27-17.59 4.746-4.726 10.995-7.306 17.638-7.306h216.399v182.275c0 6.63 5.407 12.027 12.055 12.027h126.029c6.641 0 12.047-5.396 12.047-12.027V58.378h39.575c6.676 0 12.933 2.596 17.618 7.306 4.69 4.703 7.283 10.957 7.283 17.59V373.34zm-380.867-18.962h361.905V83.274c0-1.577-.622-3.069-1.756-4.209-1.498-1.503-3.259-1.725-4.183-1.725h-20.611v163.31c0 17.091-13.914 30.989-31.012 30.989H309.448c-17.101 0-31.017-13.898-31.017-30.989V77.34H80.993c-1.592 0-3.09.622-4.221 1.748-1.096 1.103-1.72 2.604-1.72 4.186v187.643h32.32c13.105 0 23.764 10.66 23.764 23.764v59.697h-.003z"/>
<path d="M487.099 424.732h-374.93v-70.354H512v45.46c0 6.676-2.601 12.938-7.324 17.633-4.616 4.663-10.878 7.261-17.577 7.261zM131.133 405.77h355.965c.922 0 2.693-.223 4.155-1.695 1.167-1.165 1.782-2.65 1.782-4.237V373.34H131.133v32.43z"/>
</g>
<path fill="#ff5252"
d="M457.009 104.266V240.65c0 11.848-9.667 21.509-21.53 21.509H309.45c-11.83 0-21.537-9.659-21.537-21.509V104.266H101.98v176.133h5.389c7.867 0 14.282 6.431 14.282 14.282v32.763h344.458V104.266h-9.1z"/>
<g fill="#242D3C">
<path d="M56.448 300.058h18.204v18.962H56.448zM45.535 441.933h40.059v18.962H45.535z"/>
<path d="M107.369 490.038H23.77C10.662 490.038 0 479.383 0 466.286V294.682c0-13.105 10.662-23.764 23.77-23.764h83.599c13.105 0 23.764 10.66 23.764 23.764v171.602c0 13.099-10.659 23.754-23.764 23.754zM23.77 289.882c-2.609 0-4.808 2.194-4.808 4.8v171.602c0 2.639 2.156 4.79 4.808 4.79h83.599c2.65 0 4.8-2.15 4.8-4.79V294.682c0-2.606-2.199-4.8-4.8-4.8H23.77zM363.366 58.378h18.204v18.964h-18.204zm-18.227 157.891h54.61v18.964h-54.61z"/>
<path d="M435.476 271.639H309.448c-17.101 0-31.017-13.898-31.017-30.989V52.977c0-17.101 13.919-31.014 31.017-31.014h126.029c17.101 0 31.012 13.916 31.012 31.014V240.65c.002 17.091-13.912 30.989-31.013 30.989zM309.448 40.927c-6.648 0-12.055 5.407-12.055 12.052v187.674c0 6.63 5.407 12.027 12.055 12.027h126.029c6.641 0 12.047-5.396 12.047-12.027V52.979c0-6.643-5.407-12.052-12.047-12.052H309.448z"/>
</g>
</svg>
<h3 class="uppercase">MULTISCREEN</h3>
<p class="small">All interfaces are responsive, mobile first if desired. Seamlessly hand
over your tasks from mobile through desktop to tablet.</p>
</div>
</li>
<li class="col-4-12 equalElement">
<div class="fix-4-12 ae-8">
<svg width="120" height="120" viewBox="0 0 512.002 512.002"
xmlns="http://www.w3.org/2000/svg" class="icon-47">
<g fill="#242D3C">
<path d="M174.711 351.308c-5.578-2.729-11.092-5.786-16.387-9.08l9.492-15.253c4.782 2.975 9.761 5.737 14.797 8.2l-7.902 16.133zm162.918-.161l-7.931-16.12c5.041-2.481 10.007-5.251 14.771-8.228L354 342.025c-5.279 3.305-10.785 6.37-16.371 9.122zm-194.691-19.615c-4.925-3.809-9.713-7.91-14.226-12.191l12.362-13.036c4.078 3.868 8.399 7.567 12.849 11.008l-10.985 14.219zm226.417-.228l-11.013-14.193c4.447-3.451 8.76-7.163 12.826-11.034l12.388 13.01c-4.501 4.289-9.278 8.395-14.201 12.217zm-253.568-25.518c-4.063-4.71-7.931-9.687-11.5-14.787l14.72-10.294c3.22 4.603 6.715 9.098 10.386 13.353l-13.606 11.728zm280.668-.274l-13.635-11.699c3.671-4.28 7.16-8.783 10.365-13.384l14.738 10.271c-3.547 5.092-7.408 10.074-11.468 14.812zM94.339 275.133c-3.036-5.437-5.824-11.087-8.292-16.801l16.492-7.122c2.227 5.153 4.746 10.255 7.483 15.165l-15.683 8.758zm323.508-.331l-15.706-8.722c2.729-4.913 5.238-10.022 7.455-15.186l16.507 7.089c-2.453 5.717-5.233 11.382-8.256 16.819zM79.504 240.767c-1.874-5.944-3.461-12.042-4.716-18.135l17.592-3.628c1.134 5.494 2.565 11 4.257 16.361l-17.133 5.402zm353.111-.366l-17.144-5.361c1.679-5.384 3.103-10.89 4.219-16.374l17.6 3.589c-1.237 6.076-2.811 12.181-4.675 18.146zM71.934 204.113c-.632-6.162-.957-12.449-.973-18.696l17.966-.036c.013 5.647.31 11.333.878 16.899l-17.871 1.833zm368.172-.379l-17.871-1.789c.558-5.588.84-11.277.84-16.906l-.003-.727h17.966l.003.591c-.003 6.361-.316 12.649-.935 18.831zM89.739 168.48l-17.882-1.756c.612-6.211 1.544-12.444 2.775-18.529l17.608 3.561c-1.113 5.491-1.953 11.115-2.501 16.724zm332.419-1.031c-.584-5.578-1.459-11.2-2.609-16.709l17.587-3.663c1.272 6.103 2.245 12.329 2.888 18.509l-17.866 1.863zm-325.73-32.08l-17.155-5.332c1.848-5.949 4.029-11.871 6.474-17.592l16.52 7.055c-2.203 5.161-4.167 10.501-5.839 15.869zm318.828-.988c-1.695-5.343-3.689-10.668-5.932-15.823l16.479-7.158c2.486 5.716 4.698 11.622 6.577 17.551l-17.124 5.43zm-305.564-30.077L93.968 95.61c3.003-5.432 6.331-10.785 9.884-15.916l14.766 10.24c-3.21 4.629-6.213 9.465-8.926 14.37zm292.119-.899c-2.747-4.9-5.778-9.713-9.011-14.316l14.694-10.33c3.581 5.094 6.94 10.427 9.984 15.852l-15.667 8.794zM128.956 76.528l-13.655-11.671c4.05-4.736 8.381-9.318 12.877-13.609l12.406 12.992c-4.061 3.873-7.973 8.013-11.628 12.288zm253.424-.776c-3.676-4.25-7.613-8.358-11.699-12.216l12.329-13.064c4.531 4.273 8.888 8.824 12.956 13.53l-13.586 11.75zM153.391 53.178l-11.046-14.17c4.92-3.835 10.081-7.452 15.345-10.755l9.551 15.214c-4.749 2.986-9.408 6.247-13.85 9.711zm204.418-.625c-4.465-3.436-9.147-6.674-13.919-9.631l9.467-15.27c5.281 3.277 10.463 6.863 15.404 10.662l-10.952 14.239zM182.001 35.202l-7.969-16.097c5.583-2.765 11.369-5.271 17.198-7.45l6.292 16.829c-5.26 1.969-10.482 4.227-15.521 6.718zm147.078-.448c-5.051-2.463-10.286-4.692-15.557-6.625l6.182-16.87c5.847 2.148 11.648 4.618 17.247 7.347l-7.872 16.148zM213.635 23.385l-4.539-17.382c6.013-1.572 12.188-2.857 18.345-3.809l2.752 17.754c-5.557.861-11.128 2.016-16.558 3.437zm83.738-.259c-5.448-1.39-11.026-2.509-16.584-3.333l2.637-17.769c6.162.911 12.344 2.156 18.373 3.692l-4.426 17.41zm-50.358-4.925L246.07.261c6.239-.33 12.544-.343 18.721-.056l-.842 17.943c-5.58-.257-11.289-.244-16.934.053zm8.986 301.575c-74.294 0-134.735-60.442-134.735-134.735S181.707 50.306 256.001 50.306s134.738 60.442 134.738 134.735-60.444 134.735-134.738 134.735zm0-251.507c-64.387 0-116.772 52.383-116.772 116.772s52.385 116.772 116.772 116.772c64.384 0 116.772-52.38 116.772-116.772 0-64.389-52.388-116.772-116.772-116.772z"/>
<path d="M247.015 310.786h17.971v46.71h-17.971z"/>
</g>
<path fill="#2196f3"
d="M227.073 357.506h57.846v154.496h-57.846zm122.345-172.465c0 51.587-41.836 93.417-93.417 93.417-51.587 0-93.417-41.83-93.417-93.417 0-51.589 41.83-93.417 93.417-93.417 51.581 0 93.417 41.828 93.417 93.417z"/>
<path fill="#242D3C"
d="M227.073 377.269h57.846v17.971h-57.846zm0 96.998h57.846v17.971h-57.846z"/>
<path fill="#FFF"
d="M247.015 122.162h17.971v89.83h-17.971zm0 107.804h17.971v17.971h-17.971z"/>
</svg>
<h3 class="uppercase">ENTERPRISE SEARCH</h3>
<p class="small">We allow your data to be explored through enterprise level search
engine. Think of it as of an internal google that interfaces with any type of data
source your company have: ranging from SQL databases, Sharepoint, network and cloud
storage, local disks and others. With advanced semantic indexing, faceting and
filtering you will find resources and data quickly.
</p>
</div>
</li>
<li class="col-4-12 equalElement">
<div class="fix-4-12 ae-8">
<svg width="120" height="120" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"
class="icon-47">
<g fill="#242D3C">
<path d="M477.149 363.53H34.853V72.86h442.294v290.67h.002zM53.283 345.103h405.44V91.292H53.283v253.811zM181.119 64.499H89.105V11.154h92.014v53.345zM107.532 46.07h55.158V29.583h-55.158V46.07z"/>
<path d="M125.902 0h18.427v20.37h-18.427zM302.01 64.499h-92.017V11.154h92.017v53.345zM228.422 46.07h55.16V29.583h-55.16V46.07z"/>
<path d="M246.785 0h18.429v20.37h-18.429zm176.113 64.499h-92.012V11.154h92.012v53.345zM349.313 46.07h55.158V29.583h-55.158V46.07z"/>
<path d="M367.668 0h18.427v20.37h-18.427zM286.24 512h-18.429V363.53h-23.619V512h-18.429V345.103h60.477"/>
<path d="M34.853 380.16h442.291v18.427H34.853z"/>
<path d="M129.417 354.33h18.427v35.041h-18.427zm234.744 0h18.432v35.041h-18.432zM292.788 28.616h47.324v18.429h-47.324z"/>
<path d="M499.263 91.272H12.737V28.616h85.586v18.427H31.167v25.802h449.669V47.043h-67.154V28.616h85.581"/>
<path d="M171.905 28.616h47.319v18.429h-47.319z"/>
</g>
<path fill="#ff5252" d="M73.553 111.562h364.902v213.274H73.553z"/>
<path fill="#FFF" d="M154.651 144.486h202.726v147.43H154.651z"/>
<g fill="#242D3C">
<path d="M298.592 260.178H271.29c-5.092 0-9.216-4.127-9.216-9.219v-65.526c0-5.092 4.122-9.213 9.216-9.213h27.302c6.838 0 13.263 2.662 18.099 7.493 4.841 4.851 7.498 11.274 7.498 18.104v32.758c0 6.838-2.657 13.263-7.493 18.097-4.843 4.844-11.271 7.506-18.104 7.506zM280.5 241.743h18.089c1.915 0 3.717-.745 5.074-2.102 1.347-1.349 2.092-3.149 2.092-5.066v-32.76c0-1.912-.745-3.717-2.102-5.074-1.347-1.344-3.149-2.094-5.066-2.094h-18.089v47.096h.002zm-30.576 18.435h-18.429v-58.363c0-1.917-.745-3.717-2.099-5.069-1.354-1.349-3.154-2.099-5.066-2.099h-10.921c-1.912 0-3.717.748-5.074 2.102-1.349 1.349-2.094 3.149-2.094 5.066v58.36h-18.429v-58.36c0-6.838 2.662-13.263 7.501-18.097 4.838-4.838 11.261-7.501 18.097-7.501h10.921c6.833 0 13.263 2.662 18.097 7.496 4.836 4.838 7.496 11.264 7.496 18.102v58.363z"/>
<path d="M187.803 208.973h62.106v18.429h-62.106zm-82.919 0h18.432v18.429h-18.432zm283.802 0h18.432v18.429h-18.432z"/>
</g>
</svg>
<h3 class="uppercase">DATA ACTIVATION</h3>
<p class="small">Take action upon discovered insights, from email marketing, through
restock triggers to programmatic buying.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--<div class="background" style="background-image:url(assets/img/datastory_blurred.jpg)"></div>-->
</section>
<!-- HOW-->
<section class="slide whiteSlide" name="how">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12 toCenter">
<h1 class="small ae-1">Development cycle</h1>
<div class="ae-2"><p class="hero">Solving business problems is always in our focus. We choose the
right set of technologies for the job. We believe in transparency and Agile adaptation to define
business requirements. You are vital part of development process.
</p></div>
</div>
<div class="fix-12-12">
<ul class="grid later equal left">
<li class="col-3-12 box-46">
<h3 class="uppercase equalElement ae-4 text-46">Ideation</h3>
<div class="ae-5"><p class="small">We help you define WHAT and WHY you need it, define
constraints and budget.</p></div>
</li>
<li class="col-3-12 box-46">
<h3 class="uppercase equalElement ae-5 text-46">Plan and prototype</h3>
<div class="ae-6"><p class="small">We create a plan and develop a prototype so we can
confirm on our assumptions and progress efficiently.</p></div>
</li>
<li class="col-3-12 box-46">
<h3 class="uppercase equalElement ae-6 text-46">Incremental development</h3>
<div class="ae-7"><p class="small">We keep developing in cycles, continously integrating
your feedback.</p></div>
</li>
<li class="col-3-12 box-46">
<h3 class="uppercase equalElement ae-6 text-46">Release and maintenance</h3>
<div class="ae-7"><p class="small">When ready, we release, maintain and support your
product. We continue to gather feedback for further releases.</p></div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--<div class="background" style="background-image:url(assets/img/img-46.jpg)"></div>-->
</section>
<!-- Popup Video -->
<div class="popup autoplay" data-popup-id="46-0">
<div class="close">
<svg>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#close"></use>
</svg>
</div>
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12">
<div class="embedVideo popupContent">
<iframe src="https://player.vimeo.com/video/101231747?color=ff0179&portrait=0" frameborder="0"
webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- WHO -->
<!--<section class="slide whiteSlide" name="who">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12 toCenter">
<h1 class="small ae-1">Our team</h1>
<div class="ae-2"><p></p></div>
</div>
<div class="fix-12-12">
<ul class="grid grid-69 later equal equalMobile">
<li class="col-4-12">
<a href="https://pl.linkedin.com/pub/lech-b%C5%82a%C5%BCejewski/4/304/b32" class="box-69 ae-3 equalElement" style="background-image:url(assets/img/lbsquarew.jpg);">
<div class="table cell-69 equalElement">
<div class="cell">
<div class="category-69">CEO</div>
<div class="title-69">Lech Błażejewski</div>
<div class="title-69"><img src="https://static.licdn.com/scds/common/u/img/webpromo/btn_in_20x15.png" width="20" height="15" alt="View Lech Błażejewski's LinkedIn profile" style="vertical-align:middle;" border="0"></div>
</div>
</div>
</a>
</li>
<li class="col-4-12">
<a href="#" class="box-69 ae-4 equalElement" style="background-image:url(assets/img/klsquarew.jpg);">
<div class="table cell-69 equalElement">
<div class="cell">
<div class="category-69">CTO</div>
<div class="title-69">Krzysztof Luks</div>
</div>
</div>
</a>
</li>
<li class="col-4-12">
<a href="#" class="box-69 ae-5 equalElement" style="background-image:url(assets/img/kszsquarew.jpg);">
<div class="table cell-69 equalElement">
<div class="cell">
<div class="category-69">Agile Leader</div>
<div class="title-69">Kamil Szokaluk</div>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--<div class="background" style="background-image:url(assets/img/img-69.jpg)"></div>-->
<!--</section>-->
<!-- PORTFOLIO-->
<section class="slide whiteSlide" name="portfolio">
<div class="content">
<div class="container">
<div class="wrap">
<!--<div class="fix-10-12 toCenter">
<h1 class="small ae-1">Simple story</h1>
<div class="ae-2"><p class="hero">Any attempt to separate design, to make it a thing-by-itself, works counter to the inherent value of design as the primary, underlying matrix of life.</p></div>
</div>-->
<div class="fix-12-12">
<ul class="grid later equal left">
<li class="col-4-12 box-46">
<a class="button shadow empty shade ae-5 popupTrigger" data-popup-id=""><img
src="assets/img/grid_disk.jpg" alt="Image Thumbnail"/></a>
<h3 class="uppercase equalElement ae-4 text-46">DisK</h3>
<div class="ae-1"><p class="small">Due Dilligence and Transition and Transformation
automation tool.</p></div>
</li>
<li class="col-4-12 box-46">
<div class="fix-4-12 shadow videoThumbnail popupTrigger ae-4" data-popup-id="bim"><img
src="assets/img/grid_bim360.jpg" alt="Video Thumbnail"/></div>
<h3 class="uppercase equalElement ae-5 text-46">BIM VR</h3>
<div class="ae-6"><p class="small">Building information management Virtual Reality software
extension.</p></div>
</li>
<li class="col-4-12 box-46">
<a href="#" class="button shadow empty shade ae-5 popupTrigger" data-popup-id=""><img
src="assets/img/grid_sivote.jpg" alt="Image Thumbnail"/></a>
<h3 class="uppercase equalElement ae-6 text-46">SIVote</h3>
<div class="ae-3"><p class="small">Image processing enabled voting tool.</p></div>
</li>
<li class="col-4-12 box-46">
<a href="#" class="button shadow empty shade ae-5"><img src="assets/img/grid_nativehub.jpg"
alt="Image Thumbnail"/></a>
<h3 class="uppercase equalElement ae-7 text-46">Native Hub</h3>
<div class="ae-4"><p class="small">Native advertisement and social network monitoring
hub.</p></div>
</li>
<li class="col-4-12 box-46">
<a href="#" class="button shadow empty shade ae-5"><img src="assets/img/grid_claimance.jpg"
alt="Image Thumbnail"/></a>
<h3 class="uppercase equalElement ae-6 text-46">Claimance</h3>
<div class="ae-5"><p class="small">Insurance claim process automation tool prototype.</p>
</div>
</li>
<li class="col-4-12 box-46">
<a href="#" class="button shadow empty shade ae-5"><img src="assets/img/grid_bc.jpg"
alt="Image Thumbnail"/></a>
<h3 class="uppercase equalElement ae-6 text-46">Blockchain sandbox</h3>
<div class="ae-6"><p class="small">Full featured blockchain environment that provides space
for exploration and experimentation for financial brands.</p></div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--<div class="background" style="background-image:url(assets/img/img-46.jpg)"></div>-->
</section>
<!-- OPISY -->
<!-- DisK -->
<div class="popup animated" data-popup-id="popup-disk">
<div class="close button closeButton white left opaque">
<svg>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#back"></use>
</svg>
Back
</div>
<div class="content popupContent">
<div class="container">
<div class="wrap spaces">
<div class="fix-10-12 left">
<h1 class="ae-1">DisK</h1>
<div class="ae-2 text-58">
<p>Digtal assets Due Dilligence, Transition and Transformation processes automation tool.</p>
</div>
<h2 class="uppercase small ae-4 text-58">description</h2>
<div class="ae-5">
<div class="fix-12-12"><img src="assets/img/disk_diagram.png" alt="DisK general architecture"/>
</div>
<p>DisK allows for discovery and processing of knowledge, aggregates and analyses the massive
data acquired, scanned or assessed to create the collective information base needed to feed
the data needs of transformation management platforms and to be the foundation for ad-hoc
queries and complex compound analysis.</p>
<p>DisK is the middle piece of end-to-end services for Transition and Transformation (T&T). It
can be used throughout various stages, from an initial due diligence to the final execution
of the transformation.</p>
<p>DisK integrates structured and unstructured data from heterogeneous sources and formats into
analysable aggregates in a Hadoop environment.</p>
<p>DisK processes, aggregates, analyses and enriches:</p>
<ul>
<li>classical inventory data, connected to financial information, contracts, SLAs and
KPIs;
</li>
<li>information with reference to applications and workflows;</li>
<li>information to identify business critical applications and workflows;</li>
<li>communication and contact relations in the IT and application landscape;</li>
<li>qualitative and quantitative experience information from technical and business related
operations of the IT and application landscape;
</li>
<li>information with reference to criticality, software, hardware and application
maintenance, lifecycle and release management.
</li>
</ul>
<p>DisK establishes and maintains a logical syntax of the analysable data aggregates.</p>
<p>DisK Enterprise search uses the logical syntax to allow seamless target searches and complex
compound analysis like GAP and risk analysis, complexity assessments or history based effort
predictions.</p>
</div>
<h2 class="uppercase small ae-6 text-58">Project length</h2>
<div class="ae-7">
<p>30 months</p>
</div>
<h2 class="uppercase small ae-6 text-58">Anatree role</h2>
<div class="ae-7">
<p>Technical consultancy, technical product ownership, big data architecture design, data
integration, development, deployment, maintenance.</p>
</div>
<h2 class="uppercase small ae-6 text-58">Customer value</h2>
<div class="ae-7">
<p>Consolidate 20 Data Centers into 5; save 25% on IT and personnel cost starting in Year 3.
Optimize consulting costs to 50% thanks to DisK compound analysis and enterprise search
tools.</p>
</div>
<h2 class="uppercase small ae-6 text-58">Testimonials</h2>
<div class="ae-7">
<p>Product has been delivered on time and approved without reservations.</p>
</div>
<ul class="grid quote-31">
<li class="col-2-12 toLeft">
<div class="ae-3 fromCenter"><img width="60" class="avatar-31 ae-2 fromCenter"
src="assets/img/ukann.jpg" alt="Paul Rand"/></div>
</li>
<li class="col-8-12 toLeft cell-31">
<h3 class="small uppercase ae-4">Uwe Kannemacher, BD-Expert GmbH</h3>
<div class="ae-5">
<p class="small">Disk expands human intelligence. This is how DisK reduces workload and
minimizes risk in global IT Outsourcing Transition and Transformation projects.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--<div class="background" style="background-image:url(assets/img/background.jpg)"></div>-->
</div>
<!-- SIVote -->
<div class="popup animated" data-popup-id="popup-sivote">
<div class="close button closeButton white left opaque">
<svg>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#back"></use>
</svg>
Back
</div>
<div class="content popupContent">
<div class="container">
<div class="wrap spaces">
<div class="fix-10-12 left">
<h1 class="ae-1">SIVote</h1>
<div class="ae-2 text-58">
<p>Ballots counting automation tool</p>
</div>
<h2 class="uppercase small ae-4 text-58">Description</h2>
<div class="ae-5">
<div class="fix-12-12"><img src="assets/img/sivote.jpg" alt="DisK general architecture"/></div>
<p>With the traditional way of voting that uses pen and paper a large numbers of voting cards
are created. To aid the validation and votes counting processes Anatree have provided an
automated IT tool that makes it simple, fast and reliable.</p>
<p>The solution allows for parrallel scanning the voting cards, performs high-precision image
recognition and calculates the ballots outcome. It also provides an interface for
calculation validation.</p>
</div>
<h2 class="uppercase small ae-6 text-58">Project length</h2>
<div class="ae-7">
<p>2 months</p>
</div>
<h2 class="uppercase small ae-6 text-58">Anatree role</h2>
<div class="ae-7">
<p>Solution architecture. Software development. Application maintenance and support.</p>
</div>
<h2 class="uppercase small ae-6 text-58">Customer value</h2>
<div class="ae-7">
<p>For the</p>
</div>
<h2 class="uppercase small ae-6 text-58">Testimonials</h2>
<div class="ae-7">
<p>Product has been delivered on time and approved without reservations.</p>
</div>
<ul class="grid quote-31">
<li class="col-2-12 toLeft">
<div class="ae-3 fromCenter"><img width="60" class="avatar-31 ae-2 fromCenter"
src="assets/img/jsaw.jpg" alt="Jakub Sawicki"/></div>
</li>
<li class="col-8-12 toLeft cell-31">
<h3 class="small uppercase ae-4">Jakub Sawicki, Prudentissime</h3>
<div class="ae-5">
<p class="small">Thanks to Anatree professional and innovative approach we have set new
standards in our event management offering.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--<div class="background" style="background-image:url(assets/img/background.jpg)"></div>-->
</div>
<!-- Popup Youtube -->
<div class="popup autoplay" data-popup-id="bim">
<div class="close">
<svg>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#close"></use>
</svg>