-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
1482 lines (1469 loc) · 237 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" type="image/png" href="assets/img/favicon.png">
<meta name="theme-color" content="#231f20">
<meta charset="UTF-8">
<meta name="description"
content="Mad Devs is a full stack team for development and administration of IT projects. We specialize in projects requiring the individual technical solutions.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mad Devs</title>
<link rel="stylesheet" href="assets/prod/styles.css?ver=2.06">
</head>
<body id="main_body">
<main>
<section class="header">
<div class="header_logotype">
<div class="logo_header" id="logo_header">
<div class="logo-m">
<svg version="1.1" x="0px" y="0px" viewBox="0 0 653 693.1" style="enable-background:new 0 0 653 693.1; overflow: visible;" xml:space="preserve">
<path class="path" id="han_d_header" fill="#f01716" stroke="red" stroke-width="10" d="M646,658.3c-0.8,0-1.6,0-2.3-0.1h-0.4c-0.5,0-0.9,0-1.3-0.1l-183.3-19.2l27.6-202.3c0-0.2,0-0.8,0-0.8
c0-14.7-12.1-26.6-26.8-26.6c-11.5,0-21.3,7.4-25,17.6l0,0l-31.1,87.8c-2.4-13.1-13-25.2-26.7-25.2c-14.2,0-26,10.7-27.8,24.4
c-1.8-13.7-13.6-24.4-27.8-24.4c-13.7,0-25.2,10-27.6,23c0,0-52.5-129.3-52.9-130.2c0-0.1-0.1-0.2-0.1-0.2
c-4.4-8.7-13.3-14.6-23.7-14.6c-14.7,0-26.6,11.9-26.6,26.6c0,1.7,0.2,3.4,0.5,5.1c0,0.1,0,0.2,0,0.3l0.3,1.2
c0.2,0.5,0.3,1.1,0.5,1.6l46,155.4c-3.8-1-8.1,0.9-12-0.5c-19.5-7.1-37.9,11.3-22.7,32.5l34.7,49.4L53.9,658.1c-0.5,0-0.9,0-1.3,0.1
h-0.4c-0.7,0.2-1.5,0.2-2.3,0.1C33.3,657.8,21,641.1,21,620.6V86.3c0-27.4,27.1-42.7,46.8-32.1L348,182.3L628.1,54.2
c19.7-10.6,45.9,4.6,45.9,32v534.5C674,641.2,662.6,657.8,646,658.3z"/>
</svg>
</div>
<div class="logo-name_header">
<svg version="1.1" id="hand_wrap_header" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 654.1 446.8" style="overflow: visible ;enable-background:new 0 0 654.1 446.8;" xml:space="preserve">
<path class="word_drow_header" id="m" stroke="#fff" stroke-width="5" d="M13.8,230.3h41.5c7.6,0,13.8-6.2,13.8-13.8V152l20.8,42.9c2.3,4.8,7.1,7.8,12.4,7.8h0.6c5.1,0,9.8-2.8,12.2-7.3
l23.1-43.4v64.5c0,7.6,6.2,13.8,13.8,13.8h41.5c7.6,0,13.8-6.2,13.8-13.8v-18.4V82.9V13.8c0-7.6-6.2-13.8-13.8-13.8h-44.8
c-5.1,0-9.8,2.8-12.2,7.4l-35.1,66.3L66.2,7.4C63.8,2.8,59.1,0,54,0H13.8C6.2,0,0,6.2,0,13.8v69.1v115.2v18.4
C0,224.1,6.2,230.3,13.8,230.3z"/>
<path class="word_drow_header" id="d" stroke="#fff" stroke-width="5" d="M526.7,0h-56.8C462.2,0,456,6.2,456,13.8v202.7c0,7.6,6.2,13.8,13.8,13.8h56.8c84.7,0,127.4-46.2,127.4-114.7
C654.1,47.1,611.4,0,526.7,0z M544.7,160.2h-15c-5.1,0-9.2-4.1-9.2-9.2V78.3c0-5.1,4.1-9.2,9.2-9.2h13.8c19.4,0,32.2,16.3,32.2,46.5
C575.8,145.9,564.1,160.2,544.7,160.2z"/>
<path class="word_drow_header" id="a" stroke="#fff" stroke-width="5" d="M368.6,208.1l3.5,12.2c1.7,5.9,7.1,10,13.3,10h38.3c9.3,0,15.9-8.9,13.2-17.8C423.1,166.7,386.6,45.7,376,10.4
c-1.8-5.8-7.1-9.8-13.2-9.8l-62.4,0c-6.1,0-11.5,4-13.2,9.8l-60.8,202.1c-2.7,8.9,4,17.8,13.2,17.8h40.1c6.2,0,11.6-4.1,13.3-10
l3.5-12.2c1.7-5.9,7.1-10,13.3-10h45.5C361.5,198.1,366.9,202.2,368.6,208.1z M313.2,144.7l18.4-64.5l18.4,64.5H313.2z"/>
<path i class="word_drow_header" id="d_2" stroke="#fff" stroke-width="5" d="M69.1,271.8H13.8C6.2,271.8,0,278,0,285.6V433c0,7.6,6.2,13.8,13.8,13.8h59.9c63.4,0,92.1-36.3,92.1-87.5
C165.8,308,132.5,271.8,69.1,271.8z M73.7,391.5h-9.2c-2.5,0-4.6-2.1-4.6-4.6v-55.3c0-2.5,2.1-4.6,4.6-4.6h9.2
c17.9,0,27.6,9.6,27.6,32.2C101.3,381.9,91.6,391.5,73.7,391.5z"/>
<path class="word_drow_header" id="s" stroke="#fff" stroke-width="5" d="M625.7,349.3c-6-4-18.7-8.5-38.2-13.4c-4.3-1.1-7.5-1.9-9.7-2.4c-0.7-0.1-1.7-0.4-3-0.8
c-14.7-3.7-22-8.3-22-13.9c0-3.9,1.4-6.7,4.2-8.6c2.8-1.9,7.1-2.8,12.8-2.8c6.5,0,11.5,1.2,15.1,3.6c3.5,2.4,9.8,6.5,10.6,11.4h35.2
c5.9,0,10.4-5.5,9-11.3c-2.9-11.6-8.7-21.1-18.2-28c-12.4-9.1-29.4-16-50.9-16c-21.9,0-39,7.1-51.5,16.6
c-12.5,9.5-20.4,20.7-20.4,37.3c0,8.3,3.2,17.4,6.4,23.8c3.2,6.4,8,12,14.5,16.6c3.3,2.3,8.7,4.7,16,7.3c7.3,2.6,17.1,5.5,29.5,8.7
c1.6,0.4,3.9,1,6.9,1.7c15.1,3.8,22.6,8.7,22.6,14.8c0,3.8-1.8,6.8-5.4,8.9c-3.6,2.2-8.5,3.2-14.8,3.2c-7.5,0-13.1-1.3-16.9-4
c-3.8-2.7-6.7-9.2-8.1-15.2l-40,0c-5.8,0-10.2,5.4-9,11.1c2.8,13.5,8.7,25.2,18.9,33c13,9.9,29.1,15.8,51.3,15.8
c24.1,0,44.1-5.8,57-15.8c12.9-9.9,18.6-25.6,18.6-44.1c0-8.6-0.9-14.5-4.3-20.8C638.5,359.9,633.1,354.3,625.7,349.3z"/>
<path class="word_drow_header" id="v" stroke="#fff" stroke-width="5" d="M475.9,271.8h-39.2c-6.7,0-12.4,4.8-13.6,11.3l-16.4,90l-16.4-90c-1.2-6.6-6.9-11.3-13.6-11.3h-39.2
c-9.2,0-15.8,8.8-13.3,17.7L367,436.8c1.7,5.9,7.1,10,13.3,10h52.9c6.2,0,11.6-4.1,13.3-10l42.7-147.4
C491.7,280.6,485.1,271.8,475.9,271.8z"/>
<path class="word_drow_header" id="e" stroke="#fff" stroke-width="5" d="M294.8,271.8H193.5c-7.6,0-13.8,6.2-13.8,13.8l0,147.4c0,7.6,6.2,13.8,13.8,13.8h101.3
c7.6,0,13.8-6.2,13.8-13.8v-23c0-5.1-4.1-9.2-9.2-9.2h-59.9c-2.5,0-4.6-2.1-4.6-4.6v-9.2c0-2.5,2.1-4.6,4.6-4.6h46.1
c5.1,0,9.2-4.1,9.2-9.2v-27.6c0-5.1-4.1-9.2-9.2-9.2h-46.1c-2.5,0-4.6-2.1-4.6-4.6v-9.2c0-2.5,2.1-4.6,4.6-4.6h59.9
c5.1,0,9.2-4.1,9.2-9.2l0-23C308.6,278,302.4,271.8,294.8,271.8z"/>
</svg>
</div>
</div>
</div>
<div class="logo" id="logo">
<div class="logo-m">
<svg version="1.1" x="0px" y="0px" viewBox="0 0 653 693.1" style="enable-background:new 0 0 653 693.1; overflow: visible;" xml:space="preserve">
<path class="path" id="han_d" fill="#f01716" stroke="red" stroke-width="3" d="M646,658.3c-0.8,0-1.6,0-2.3-0.1h-0.4c-0.5,0-0.9,0-1.3-0.1l-183.3-19.2l27.6-202.3c0-0.2,0-0.8,0-0.8
c0-14.7-12.1-26.6-26.8-26.6c-11.5,0-21.3,7.4-25,17.6l0,0l-31.1,87.8c-2.4-13.1-13-25.2-26.7-25.2c-14.2,0-26,10.7-27.8,24.4
c-1.8-13.7-13.6-24.4-27.8-24.4c-13.7,0-25.2,10-27.6,23c0,0-52.5-129.3-52.9-130.2c0-0.1-0.1-0.2-0.1-0.2
c-4.4-8.7-13.3-14.6-23.7-14.6c-14.7,0-26.6,11.9-26.6,26.6c0,1.7,0.2,3.4,0.5,5.1c0,0.1,0,0.2,0,0.3l0.3,1.2
c0.2,0.5,0.3,1.1,0.5,1.6l46,155.4c-3.8-1-8.1,0.9-12-0.5c-19.5-7.1-37.9,11.3-22.7,32.5l34.7,49.4L53.9,658.1c-0.5,0-0.9,0-1.3,0.1
h-0.4c-0.7,0.2-1.5,0.2-2.3,0.1C33.3,657.8,21,641.1,21,620.6V86.3c0-27.4,27.1-42.7,46.8-32.1L348,182.3L628.1,54.2
c19.7-10.6,45.9,4.6,45.9,32v534.5C674,641.2,662.6,657.8,646,658.3z"/>
</svg>
</div>
<div class="logo-name">
<svg version="1.1" id="hand_wrap" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 654.1 446.8" style="width: 145px; height: 100px; overflow: visible ;enable-background:new 0 0 654.1 446.8;" xml:space="preserve">
<path class="word_drow" id="m" stroke="#fff" stroke-width="3" d="M13.8,230.3h41.5c7.6,0,13.8-6.2,13.8-13.8V152l20.8,42.9c2.3,4.8,7.1,7.8,12.4,7.8h0.6c5.1,0,9.8-2.8,12.2-7.3
l23.1-43.4v64.5c0,7.6,6.2,13.8,13.8,13.8h41.5c7.6,0,13.8-6.2,13.8-13.8v-18.4V82.9V13.8c0-7.6-6.2-13.8-13.8-13.8h-44.8
c-5.1,0-9.8,2.8-12.2,7.4l-35.1,66.3L66.2,7.4C63.8,2.8,59.1,0,54,0H13.8C6.2,0,0,6.2,0,13.8v69.1v115.2v18.4
C0,224.1,6.2,230.3,13.8,230.3z"/>
<path class="word_drow" id="d" stroke="#fff" stroke-width="3" d="M526.7,0h-56.8C462.2,0,456,6.2,456,13.8v202.7c0,7.6,6.2,13.8,13.8,13.8h56.8c84.7,0,127.4-46.2,127.4-114.7
C654.1,47.1,611.4,0,526.7,0z M544.7,160.2h-15c-5.1,0-9.2-4.1-9.2-9.2V78.3c0-5.1,4.1-9.2,9.2-9.2h13.8c19.4,0,32.2,16.3,32.2,46.5
C575.8,145.9,564.1,160.2,544.7,160.2z"/>
<path class="word_drow" id="a" stroke="#fff" stroke-width="3" d="M368.6,208.1l3.5,12.2c1.7,5.9,7.1,10,13.3,10h38.3c9.3,0,15.9-8.9,13.2-17.8C423.1,166.7,386.6,45.7,376,10.4
c-1.8-5.8-7.1-9.8-13.2-9.8l-62.4,0c-6.1,0-11.5,4-13.2,9.8l-60.8,202.1c-2.7,8.9,4,17.8,13.2,17.8h40.1c6.2,0,11.6-4.1,13.3-10
l3.5-12.2c1.7-5.9,7.1-10,13.3-10h45.5C361.5,198.1,366.9,202.2,368.6,208.1z M313.2,144.7l18.4-64.5l18.4,64.5H313.2z"/>
<path i class="word_drow" id="d_2" stroke="#fff" stroke-width="3" d="M69.1,271.8H13.8C6.2,271.8,0,278,0,285.6V433c0,7.6,6.2,13.8,13.8,13.8h59.9c63.4,0,92.1-36.3,92.1-87.5
C165.8,308,132.5,271.8,69.1,271.8z M73.7,391.5h-9.2c-2.5,0-4.6-2.1-4.6-4.6v-55.3c0-2.5,2.1-4.6,4.6-4.6h9.2
c17.9,0,27.6,9.6,27.6,32.2C101.3,381.9,91.6,391.5,73.7,391.5z"/>
<path class="word_drow" id="s" stroke="#fff" stroke-width="3" d="M625.7,349.3c-6-4-18.7-8.5-38.2-13.4c-4.3-1.1-7.5-1.9-9.7-2.4c-0.7-0.1-1.7-0.4-3-0.8
c-14.7-3.7-22-8.3-22-13.9c0-3.9,1.4-6.7,4.2-8.6c2.8-1.9,7.1-2.8,12.8-2.8c6.5,0,11.5,1.2,15.1,3.6c3.5,2.4,9.8,6.5,10.6,11.4h35.2
c5.9,0,10.4-5.5,9-11.3c-2.9-11.6-8.7-21.1-18.2-28c-12.4-9.1-29.4-16-50.9-16c-21.9,0-39,7.1-51.5,16.6
c-12.5,9.5-20.4,20.7-20.4,37.3c0,8.3,3.2,17.4,6.4,23.8c3.2,6.4,8,12,14.5,16.6c3.3,2.3,8.7,4.7,16,7.3c7.3,2.6,17.1,5.5,29.5,8.7
c1.6,0.4,3.9,1,6.9,1.7c15.1,3.8,22.6,8.7,22.6,14.8c0,3.8-1.8,6.8-5.4,8.9c-3.6,2.2-8.5,3.2-14.8,3.2c-7.5,0-13.1-1.3-16.9-4
c-3.8-2.7-6.7-9.2-8.1-15.2l-40,0c-5.8,0-10.2,5.4-9,11.1c2.8,13.5,8.7,25.2,18.9,33c13,9.9,29.1,15.8,51.3,15.8
c24.1,0,44.1-5.8,57-15.8c12.9-9.9,18.6-25.6,18.6-44.1c0-8.6-0.9-14.5-4.3-20.8C638.5,359.9,633.1,354.3,625.7,349.3z"/>
<path class="word_drow" id="v" stroke="#fff" stroke-width="3" d="M475.9,271.8h-39.2c-6.7,0-12.4,4.8-13.6,11.3l-16.4,90l-16.4-90c-1.2-6.6-6.9-11.3-13.6-11.3h-39.2
c-9.2,0-15.8,8.8-13.3,17.7L367,436.8c1.7,5.9,7.1,10,13.3,10h52.9c6.2,0,11.6-4.1,13.3-10l42.7-147.4
C491.7,280.6,485.1,271.8,475.9,271.8z"/>
<path class="word_drow" id="e" stroke="#fff" stroke-width="3" d="M294.8,271.8H193.5c-7.6,0-13.8,6.2-13.8,13.8l0,147.4c0,7.6,6.2,13.8,13.8,13.8h101.3
c7.6,0,13.8-6.2,13.8-13.8v-23c0-5.1-4.1-9.2-9.2-9.2h-59.9c-2.5,0-4.6-2.1-4.6-4.6v-9.2c0-2.5,2.1-4.6,4.6-4.6h46.1
c5.1,0,9.2-4.1,9.2-9.2v-27.6c0-5.1-4.1-9.2-9.2-9.2h-46.1c-2.5,0-4.6-2.1-4.6-4.6v-9.2c0-2.5,2.1-4.6,4.6-4.6h59.9
c5.1,0,9.2-4.1,9.2-9.2l0-23C308.6,278,302.4,271.8,294.8,271.8z"/>
</svg>
</div>
</div>
<section class="social_links">
<a href="https://github.com/maddevsio" target="_blank" rel="nofollow">
<svg version="1.1" id="github" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 32.6 31.8" style="enable-background:new 0 0 32.6 31.8;" xml:space="preserve">
<path id="git_stroke" fill-opacity="0" d="M16.3,0C7.3,0,0,7.3,0,16.3c0,7.2,4.7,13.3,11.1,15.5c0.8,0.1,1.1-0.4,1.1-0.8c0-0.4,0-1.4,0-2.8
c-4.5,1-5.5-2.2-5.5-2.2c-0.7-1.9-1.8-2.4-1.8-2.4c-1.5-1,0.1-1,0.1-1c1.6,0.1,2.5,1.7,2.5,1.7c1.5,2.5,3.8,1.8,4.7,1.4
c0.1-1.1,0.6-1.8,1-2.2c-3.6-0.4-7.4-1.8-7.4-8.1c0-1.8,0.6-3.2,1.7-4.4C7.4,10.7,6.8,9,7.7,6.8c0,0,1.4-0.4,4.5,1.7
c1.3-0.4,2.7-0.5,4.1-0.5c1.4,0,2.8,0.2,4.1,0.5c3.1-2.1,4.5-1.7,4.5-1.7c0.9,2.2,0.3,3.9,0.2,4.3c1,1.1,1.7,2.6,1.7,4.4
c0,6.3-3.8,7.6-7.4,8c0.6,0.5,1.1,1.5,1.1,3c0,2.2,0,3.9,0,4.5c0,0.4,0.3,0.9,1.1,0.8c6.5-2.2,11.1-8.3,11.1-15.5
C32.6,7.3,25.3,0,16.3,0z"/>
</svg>
</a>
<a href="https://www.instagram.com/maddevsio/" target="_blank" rel="nofollow">
<svg version="1.1" id="instagram" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 31.8 31.8" style="enable-background:new 0 0 31.8 31.8;" xml:space="preserve">
<g id="instagram_stroke" fill-opacity="0">
<path d="M15.9,2.9c4.2,0,4.7,0,6.4,0.1c1.5,0.1,2.4,0.3,3,0.5c0.7,0.3,1.3,0.6,1.8,1.2c0.6,0.6,0.9,1.1,1.2,1.8
c0.2,0.6,0.5,1.4,0.5,3c0.1,1.7,0.1,2.2,0.1,6.4s0,4.7-0.1,6.4c-0.1,1.5-0.3,2.4-0.5,3c-0.3,0.7-0.6,1.3-1.2,1.8
c-0.6,0.6-1.1,0.9-1.8,1.2c-0.6,0.2-1.4,0.5-3,0.5c-1.7,0.1-2.2,0.1-6.4,0.1s-4.7,0-6.4-0.1c-1.5-0.1-2.4-0.3-3-0.5
c-0.7-0.3-1.3-0.6-1.8-1.2c-0.6-0.6-0.9-1.1-1.2-1.8c-0.2-0.6-0.5-1.4-0.5-3c-0.1-1.7-0.1-2.2-0.1-6.4s0-4.7,0.1-6.4
c0.1-1.5,0.3-2.4,0.5-3c0.3-0.7,0.6-1.3,1.2-1.8c0.6-0.6,1.1-0.9,1.8-1.2C7.1,3.3,7.9,3,9.5,3C11.1,2.9,11.6,2.9,15.9,2.9 M15.9,0
C11.6,0,11,0,9.3,0.1C7.6,0.2,6.5,0.4,5.5,0.8c-1,0.4-1.9,0.9-2.8,1.8C1.8,3.5,1.2,4.4,0.8,5.5c-0.4,1-0.7,2.2-0.7,3.9
C0,11,0,11.6,0,15.9c0,4.3,0,4.9,0.1,6.6c0.1,1.7,0.3,2.8,0.7,3.9c0.4,1,0.9,1.9,1.8,2.8c0.9,0.9,1.8,1.4,2.8,1.8
c1,0.4,2.2,0.7,3.9,0.7c1.7,0.1,2.2,0.1,6.6,0.1s4.9,0,6.6-0.1c1.7-0.1,2.8-0.3,3.9-0.7c1-0.4,1.9-0.9,2.8-1.8
c0.9-0.9,1.4-1.8,1.8-2.8c0.4-1,0.7-2.2,0.7-3.9c0.1-1.7,0.1-2.2,0.1-6.6s0-4.9-0.1-6.6c-0.1-1.7-0.3-2.8-0.7-3.9
c-0.4-1-0.9-1.9-1.8-2.8c-0.9-0.9-1.8-1.4-2.8-1.8c-1-0.4-2.2-0.7-3.9-0.7C20.7,0,20.2,0,15.9,0L15.9,0z"/>
<path d="M15.9,7.7c-4.5,0-8.2,3.7-8.2,8.2s3.7,8.2,8.2,8.2s8.2-3.7,8.2-8.2S20.4,7.7,15.9,7.7z M15.9,21.2c-2.9,0-5.3-2.4-5.3-5.3
s2.4-5.3,5.3-5.3s5.3,2.4,5.3,5.3S18.8,21.2,15.9,21.2z"/>
<circle cx="24.4" cy="7.4" r="1.9"/>
</g>
</svg>
</a>
<a href="https://twitter.com/MadDevsIO" target="_blank" rel="nofollow" style="margin-top: -1px">
<svg id="twitter" style="enable-background:new 0 0 31.8 31.8;" version="1.1" viewBox="0 0 56.693 56.693" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path id="twitter_stroke" fill-opacity="0" d="M28.348,5.157c-13.6,0-24.625,11.027-24.625,24.625c0,13.6,11.025,24.623,24.625,24.623c13.6,0,24.623-11.023,24.623-24.623 C52.971,16.184,41.947,5.157,28.348,5.157z M40.752,24.817c0.013,0.266,0.018,0.533,0.018,0.803c0,8.201-6.242,17.656-17.656,17.656 c-3.504,0-6.767-1.027-9.513-2.787c0.486,0.057,0.979,0.086,1.48,0.086c2.908,0,5.584-0.992,7.707-2.656 c-2.715-0.051-5.006-1.846-5.796-4.311c0.378,0.074,0.767,0.111,1.167,0.111c0.566,0,1.114-0.074,1.635-0.217 c-2.84-0.57-4.979-3.08-4.979-6.084c0-0.027,0-0.053,0.001-0.08c0.836,0.465,1.793,0.744,2.811,0.777 c-1.666-1.115-2.761-3.012-2.761-5.166c0-1.137,0.306-2.204,0.84-3.12c3.061,3.754,7.634,6.225,12.792,6.483 c-0.106-0.453-0.161-0.928-0.161-1.414c0-3.426,2.778-6.205,6.206-6.205c1.785,0,3.397,0.754,4.529,1.959 c1.414-0.277,2.742-0.795,3.941-1.506c-0.465,1.45-1.448,2.666-2.73,3.433c1.257-0.15,2.453-0.484,3.565-0.977 C43.018,22.849,41.965,23.942,40.752,24.817z"/>
</svg>
</a>
<a href="https://blog.maddevs.io/" target="_blank" rel="nofollow">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.02 35">
<path fill-opacity="0" id="medium_stroke"
d="M0,0H35V35H0ZM8.36,11.71V22.1a1.2,1.2,0,0,1-.32,1l-2.47,3v.4h7v-.4l-2.47-3a1.24,1.24,0,0,1-.34-1v-9l6.15,13.41h.71l5.28-13.41V23.8c0,.29,0,.34-.19.53l-1.9,1.84v.4h9.23v-.4l-1.83-1.8a.55.55,0,0,1-.21-.53V10.62a.55.55,0,0,1,.21-.53l1.88-1.8V7.9h-6.5L18,19.45,12.69,7.9H5.86v.4l2.2,2.64A.91.91,0,0,1,8.36,11.71Z"/>
</svg>
</a>
<a href="https://t.me/maddevsio" target="_blank"
rel="nofollow">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 533.76 533.76">
<path fill-opacity="0" id="telegram"
d="M533.76,266.88c0,147.39-119.49,266.88-266.88,266.88S0,414.28,0,266.88,119.49,0,266.88,0,533.76,119.49,533.76,266.88Zm-159-119.69-267.67,105s-12.67,4.33-11.67,12.33,11.33,11.67,11.33,11.67l67.33,22.67s20.33,66.67,24.33,79.33,7.21,13,7.21,13c3.72,1.62,7.12-1,7.12-1l43.51-39.67h0l67.83,52c18.33,8,25-8.67,25-8.67l47.67-240.33C396.74,137.52,374.74,147.19,374.74,147.19Z"/>
</svg>
</a>
<a href="https://www.slideshare.net/maddevs/presentations" target="_blank" rel="nofollow">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 97.6 97.6" style="enable-background:new 0 0 97.6 97.6;" xml:space="preserve">
<path fill-opacity="0" id="slideshare" d="M93,46.5c-0.4,0.3-0.8,0.5-1.1,0.8V9.5C91.8,4.2,87.9,0,83,0H14.6C9.8,0,5.8,4.2,5.8,9.5v37.8C5.4,47,5,46.7,4.6,46.5
c-2.9-2-4.8,0.7-3,3.4c3.5,4.3,10.1,9.6,20.2,13.7C11.1,100.1,48,105.9,47.5,87.2c0,0.3,0-10.6,0-18.4c1,0.2,1.8,0.5,2.6,0.6
c0,7.7,0,18.1,0,17.8c-0.6,18.7,36.4,12.9,25.6-23.6c10.1-4.2,16.8-9.5,20.2-13.7C97.8,47.2,95.9,44.4,93,46.5z M56.5,55.8
c-4.5-0.2-6.2,1.7-6.4,4.7c-1.1-0.8-2.2-1.7-3.3-2.7c-0.2-0.2-0.4-0.3-0.5-0.5c-1-1-2.6-1.6-5.2-1.5C35,56,23.9,57.2,11,50.4V13.8
C11,7.1,12.7,5,18.8,5h60.6c5.8,0,7.8,2.5,7.8,8.7v36.3C74,57.2,62.7,56,56.5,55.8z M63.1,29.3c-6.5,0-11.8,4.9-11.8,11
s5.3,11,11.8,11c6.5,0,11.8-4.9,11.8-11S69.6,29.3,63.1,29.3z M35.8,29.3c6.5,0,11.8,4.9,11.8,11s-5.3,11-11.8,11S24,46.4,24,40.3
S29.3,29.3,35.8,29.3z"/>
</svg>
</a>
<a href="https://www.behance.net/maddevs" target="_blank"
rel="nofollow">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 97.75 97.75">
<path fill-opacity="0" id="behance"
d="M39.34,38.73c0-4.61-3.14-4.61-3.14-4.61H23.29V44H35.4C37.49,44,39.34,43.34,39.34,38.73ZM36.2,50.85H23.29V62.7H35.6c1.85-.05,5.27-.63,5.27-5.76C40.88,50.78,36.2,50.85,36.2,50.85Zm33-6.83c-6.85,0-7.8,6.83-7.8,6.83H76S76.09,44,69.24,44ZM48.88,0A48.88,48.88,0,1,0,97.75,48.88,48.88,48.88,0,0,0,48.88,0ZM59.53,28.85H77.82v5.46H59.53ZM50.28,57.49C50.28,71,36.2,70.57,36.2,70.57H13.13V26.24H36.2c7,0,12.55,3.87,12.55,11.81S42,46.48,42,46.48C50.9,46.48,50.28,57.49,50.28,57.49Zm19,7c7.37,0,7.11-4.77,7.11-4.77h7.8c0,12.66-15.17,11.79-15.17,11.79-18.21,0-17-17-17-17s0-17,17-17C87,37.52,84.5,56.76,84.5,56.76h-23C61.53,65,69.33,64.48,69.33,64.48Z"/>
</svg>
</a>
<a href="https://www.youtube.com/playlist?list=PLsmdb5W8ytypyXt1ut3lfBOnOZnDNqYIN" target="_blank"
rel="nofollow">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 461 326.22">
<path id="youtube-stroke" fill-opacity="0"
d="M365.26,0H95.74A95.74,95.74,0,0,0,0,95.74V230.47a95.74,95.74,0,0,0,95.74,95.74H365.26A95.74,95.74,0,0,0,461,230.47V95.74A95.74,95.74,0,0,0,365.26,0ZM300.51,169.66,174.45,229.79a5.06,5.06,0,0,1-7.24-4.57v-124a5.06,5.06,0,0,1,7.35-4.51l126.06,63.88A5.06,5.06,0,0,1,300.51,169.66Z"/>
</svg>
</a>
<a href="https://www.facebook.com/maddevsio" target="_blank" rel="nofollow">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 167.66 166.96">
<path id="facebook" fill-opacity="0"
d="M83.83,0a83.78,83.78,0,0,0-14,166.4V101.32H49.63V77.9H69.85V60.63c0-20,12.24-31,30.11-31a166.89,166.89,0,0,1,18.06.92V51.54h-12.4C95.9,51.54,94,56.16,94,62.94V77.89h23.19l-3,23.42H94V167A83.79,83.79,0,0,0,83.83,0Z"/>
</svg>
</a>
</section>
<div class="section_title" id="first_title">projects</div>
</section>
<section class="projects">
<div class="section_content">
<a target="_blank"
href="https://blog.maddevs.io/%D0%BD%D0%B0%D0%BC%D0%B1%D0%B0-%D1%82%D0%B0%D0%BA%D1%81%D0%B8-%D1%80%D0%B0%D0%B7%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%BA%D0%B0-%D0%B8-%D0%B2%D0%BD%D0%B5%D0%B4%D1%80%D0%B5%D0%BD%D0%B8%D0%B5-f869bd100772#.y6jq27jch"
class="section_wrap animate_project">
<div class="section_icon">
<svg version="1.1" id="namba-taxi" width="140" class="namba-taxi" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 151.7 24.2" style="enable-background:new 0 0 151.7 24.2;" xml:space="preserve">
<g>
<g>
<path class="nt0" d="M18.2,23.7h-2.4L5,8.2C3.9,6.6,2.8,5,2,3.3c0.1,1.8,0.2,3.7,0.2,5.5v14.9H0V0.6h2.4l10.8,15.6
c1.1,1.6,2.1,3.2,3,4.8c-0.1-2-0.2-4.1-0.2-6.1V0.6h2.1V23.7z"/>
<path class="nt0" d="M37.1,23.6c-0.6,0.2-1,0.3-1.6,0.3c-2,0-2.2-1.5-2.2-3C32,23,29.8,24.1,27,24.1c-3.4,0-5.5-1.7-5.5-4.7
c0-3,2.1-4.7,6.2-5.2c2.6-0.3,4.1-0.3,4.9-0.9c0.4-0.3,0.6-0.7,0.6-1.6c0-2.8-1.7-3.6-4.3-3.6c-2.8,0-4.3,1.2-4.5,3.9h-1.9
c0.2-3.6,2.6-5.6,6.7-5.6c3.8,0,6.1,1.7,6.1,4.8v9.1c0,1,0,1.7,1.1,1.7c0.3,0,0.4,0,0.8-0.1V23.6z M28.7,15.8
c-2.1,0.3-5,0.8-5,3.5c0,1.9,1.5,3.2,3.8,3.2c3,0,5.7-1.9,5.7-5.1v-2.7C32.6,15.3,30.9,15.5,28.7,15.8z"/>
<path class="nt0" d="M41.3,9.9c1.3-2.1,2.9-3.4,5.5-3.4c2.4,0,4.2,1.2,4.8,3.2c1.1-2,3-3.2,5.5-3.2c2.8,0,5.4,1.5,5.4,5.2v11.9h-2
V12.3c0-2.6-1.3-4-3.9-4c-3,0-4.6,2-4.6,5.1v10.2h-2V12.5c0-2.5-1-4.1-3.7-4.1c-3.4,0-4.9,2.6-4.9,5.8v9.5h-2V7h1.9V9.9z"/>
<path class="nt0" d="M68.3,10.2c1-2.4,3.2-3.7,5.9-3.7c4.5,0,7.5,3.4,7.5,8.8c0,5.4-2.9,8.8-7.6,8.8c-2.8,0-5-1.3-6-3.7v3.2h-1.8
V0.6h2V10.2z M68.3,15.3c0,4.4,2.2,7.2,5.7,7.2c3.4,0,5.6-2.8,5.6-7.2c0-4.4-2.2-7.1-5.7-7.1C70.5,8.2,68.3,11,68.3,15.3z"/>
<path class="nt0" d="M99.6,23.6c-0.6,0.2-1,0.3-1.6,0.3c-2,0-2.2-1.5-2.2-3c-1.4,2.2-3.5,3.3-6.3,3.3c-3.4,0-5.5-1.7-5.5-4.7
c0-3,2.1-4.7,6.2-5.2c2.6-0.3,4.1-0.3,4.9-0.9c0.4-0.3,0.6-0.7,0.6-1.6c0-2.8-1.7-3.6-4.3-3.6c-2.8,0-4.3,1.2-4.5,3.9h-1.9
c0.2-3.6,2.6-5.6,6.7-5.6c3.8,0,6.1,1.7,6.1,4.8v9.1c0,1,0,1.7,1.1,1.7c0.3,0,0.4,0,0.8-0.1V23.6z M91.1,15.8
c-2.1,0.3-5,0.8-5,3.5c0,1.9,1.5,3.2,3.8,3.2c3,0,5.7-1.9,5.7-5.1v-2.7C95,15.3,93.4,15.5,91.1,15.8z"/>
<path class="nt0" d="M117.4,2.5h-8.1v21.2h-2.2V2.5H99V0.6h18.4V2.5z"/>
<path class="nt0" d="M130.2,23.6c-0.6,0.2-1,0.3-1.6,0.3c-2,0-2.2-1.5-2.2-3c-1.4,2.2-3.5,3.3-6.3,3.3c-3.4,0-5.5-1.7-5.5-4.7
c0-3,2.1-4.7,6.2-5.2c2.6-0.3,4.1-0.3,4.9-0.9c0.4-0.3,0.6-0.7,0.6-1.6c0-2.8-1.7-3.6-4.3-3.6c-2.8,0-4.3,1.2-4.5,3.9h-1.9
c0.2-3.6,2.6-5.6,6.7-5.6c3.8,0,6.1,1.7,6.1,4.8v9.1c0,1,0,1.7,1.1,1.7c0.3,0,0.4,0,0.8-0.1V23.6z M121.8,15.8
c-2.1,0.3-5,0.8-5,3.5c0,1.9,1.5,3.2,3.8,3.2c3,0,5.7-1.9,5.7-5.1v-2.7C125.7,15.3,124,15.5,121.8,15.8z"/>
<path class="nt0" d="M139.5,14.8l6.6,8.9h-2.6l-4.4-6.1c-0.3-0.4-0.5-0.6-0.8-1.3c-0.2,0.4-0.6,0.9-0.8,1.2l-4.4,6.1h-2.4l6.5-8.7
L131,7h2.6l3.6,4.9c0.4,0.5,0.7,1.1,1,1.6c0.7-1,0.5-0.7,1.1-1.6L143,7h2.4L139.5,14.8z"/>
<path class="nt0" d="M150.2,23.7h-2V7h2V23.7z"/>
</g>
<ellipse class="nt1" cx="149.1" cy="2.5" rx="2.5" ry="2.5"/>
</g>
</svg>
</div>
<div class="section_text">Automated management <br> system for the taxi services</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D1%8B"
class="section_wrap animate_project">
<div class="section_icon">
<svg version="1.1" id="besmart" class="besmart" width="140" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 528.5 98" style="enable-background:new 0 0 528.5 98;" xml:space="preserve">
<style type="text/css">
.bs0 {
fill: #4A71B5;
}
</style>
<path id="path-1" class="bs0" d="M515.6,71.3c-0.1,2,0.1,3.9,0.7,5.8c0.7,1.5,2.2,2.3,3.9,2.2c2.3-0.2,4.6-0.8,6.7-1.7l1.6,18.1
c-5.1,1.3-10.4,2-15.7,2.1c-4.3,0.3-8.5-0.5-12.3-2.5c-2.8-1.8-4.8-4.5-5.9-7.7c-1.5-5.4-2.2-11-1.9-16.6v-24h-12.4V27.8h12.4V15.2
h22.6v12.6h12.4v19.2h-12.4v24.2H515.6z M527.2,77.5 M453.1,50.9l-1,1.5c-2.9,7.1-4.1,14.8-3.5,22.4v23h-22.7V29.3H447v11.2
c1.3-3.8,3.5-7.2,6.3-10c2.3-1.6,4.9-2.5,7.7-2.7h11.5V47h-11.1C458.2,47.1,455.2,48.5,453.1,50.9z M395.6,91.9
c-0.3-1.4-0.6-2.9-0.7-4.3c-2.5,2.9-5.5,5.3-8.9,7.1c-4.4,2-9.1,2.9-13.9,2.8c-5.9,0.4-11.7-1.6-16-5.7c-3.6-3.7-5.6-8.8-5.4-13.9
c-0.2-4.6,1.1-9.1,3.9-12.8c3.9-4,8.9-6.7,14.5-7.5c8.5-1.9,14-3.3,16.5-4.1c2.7-0.9,5.4-1.9,8-3.1c0.2-2.4-0.4-4.7-1.7-6.7
c-1.6-1.5-3.9-2.2-6.1-1.9c-2.9-0.2-5.8,0.5-8.3,2c-1.7,1.6-3,3.7-3.5,6.1l-21.5-2.7c0.6-3.6,1.7-7.1,3.5-10.3c1.7-2.7,4-5,6.7-6.7
c2.6-1.6,5.5-2.6,8.5-3.1c3.8-0.8,7.8-1.1,11.7-1.1c5.5-0.1,11,0.4,16.3,1.4c3.9,0.7,7.5,2.6,10.3,5.5c2.1,2.3,3.7,5.1,4.5,8.2
c1.1,3.3,1.6,6.7,1.7,10.1v30.2c-0.1,2.5,0.1,5.1,0.5,7.6l0,0c0.6,2.9,1.3,5.7,2.3,8.5h-21.1C396.4,95.6,395.9,93.8,395.6,91.9z
M393.6,67.7v-3.9c-3.1,1.3-6.3,2.4-9.7,3.5c-3.2,0.7-6.1,2.1-8.7,4.1c-1.2,1.3-1.9,3.1-1.9,4.9c-0.1,1.9,0.5,3.7,1.8,5.1
c1.5,1.4,3.4,2.1,5.5,2c2.5,0,5-0.8,7.1-2.2c2-1.2,3.6-3,4.5-5.1c1.1-2.5,1.5-5.3,1.4-8l0,0L393.6,67.7z M319.8,58.6
c0.1-2.3-0.4-4.7-1.6-6.7c-1.1-2.1-3.2-3.4-5.6-3.5c-2.6-0.1-5.2,1.2-6.7,3.3c-1.9,3.3-2.7,7-2.4,10.8v35.3h-22.6V60
c0.1-2.1-0.1-4.1-0.5-6.1c-0.4-1.6-1.3-3.1-2.5-4.2c-1.1-1-2.6-1.6-4.1-1.5c-2.7-0.1-5.2,1.2-6.7,3.4c-1.9,3.4-2.8,7.3-2.5,11.2
v34.9h-22.6V29.3h21v10c2.4-3.6,5.5-6.6,9.2-8.9c3.4-1.8,7.3-2.8,11.2-2.7c3.9-0.2,7.9,0.8,11.2,2.9c2.9,2.3,5.2,5.3,6.7,8.7
c2.6-3.6,5.9-6.7,9.7-9.2c3.3-1.7,7-2.5,10.7-2.4c5.7-0.2,11.2,2.2,14.8,6.7c4,6,5.9,13.3,5.3,20.5v43h-22.1V58.6z M196.3,32.6
c8.2,1.7,16.1,4.6,23.6,8.3c4.4,2.5,7.9,6.1,10.3,10.5c2.2,4.3,3.3,9.1,3.2,14c0.1,5.9-1.4,11.6-4.3,16.7c-2.8,5-7,9.1-12.1,11.6
c-6.1,2.8-12.8,4.2-19.5,3.9c-13.8,0-23.3-3.1-28.6-9.3c-5.5-6.6-8.7-14.9-9-23.5l0,0l23.9-1.7c0.2,3.6,1.3,7.2,3.1,10.3
c2.4,3.7,6.6,5.9,11.1,5.7c3.1,0.2,6.1-0.9,8.3-3c1.8-1.7,2.8-4.2,2.9-6.7c0-2.5-1-4.9-2.7-6.7c-3.8-2.8-8.3-4.7-12.9-5.5
c-8.7-1.7-16.8-5.7-23.5-11.5c-4.8-4.8-7.4-11.4-7.1-18.2c0-4.8,1.3-9.6,3.7-13.8c2.6-4.4,6.5-7.9,11.2-10.1
c6.3-2.8,13.1-4.1,20-3.7c8.5-0.6,16.9,1.7,23.7,6.7c6,5.6,9.4,13.4,9.6,21.6l-23.7,1.5c-0.3-3.4-1.7-6.7-4-9.3
c-2.3-2-5.3-3.1-8.3-2.9c-2.4-0.2-4.8,0.6-6.7,2.2c-1.5,1.4-2.3,3.3-2.3,5.3c0,1.5,0.7,2.9,1.7,4C190.4,31,193.3,32.2,196.3,32.6
L196.3,32.6z M151,68.5h-45.2c0.1,3.3,1.2,6.6,3,9.4c1.9,2.8,5.1,4.5,8.5,4.4c2.2,0,4.4-0.7,6.3-1.9c1.6-1.1,3-2.6,4-4.3l22.5,2.5
c-2.7,6-7,11.1-12.4,14.7c-6.4,3.3-13.5,4.8-20.7,4.4c-6.4,0.3-12.7-1-18.4-3.8C93.8,91,90,86.8,87.5,81.7
c-3.1-6.1-4.6-12.9-4.4-19.7c-0.4-9.4,2.7-18.7,8.8-25.9c6.3-6.8,15.2-10.4,24.4-9.9c6.9-0.4,13.9,1.1,20,4.4
c4.9,3.1,8.9,7.5,11.2,12.9c2.8,7,4.1,14.5,3.8,22l0,0v2.9L151,68.5z M124.3,45.1c-1.9-2.2-4.6-3.5-7.5-3.3c-3.5,0-6.8,1.9-8.5,4.9
c-1.6,1.9-2.5,4.2-2.5,6.7h22.2c0-3-1.1-5.9-3.2-8.1L124.3,45.1z M75,70.9c0.1,4.6-0.9,9.2-2.9,13.3c-1.8,3.8-4.5,7-8,9.3
c-2.9,1.7-6.2,2.8-9.5,3.1c-3.7,0.7-7.4,1.1-11.2,1.3H0.1V3.3h46.7c6.7-0.5,13.2,2,17.9,6.7c4.2,4.5,6.5,10.6,6.3,16.7
c0.1,5.1-1.4,10.2-4.5,14.3c-2.2,3-5.2,5.3-8.7,6.7c5.2,1.2,9.7,4.2,12.9,8.4c3.1,4.3,4.7,9.5,4.7,14.8L75,70.9z M44.5,24.8
c-2.3-1.8-5.1-2.6-8-2.3H25.4v17.9h10.9c2.9,0.3,5.9-0.5,8.2-2.3c1.7-1.8,2.5-4.2,2.3-6.7c0.3-2.4-0.4-4.7-1.9-6.5L44.5,24.8z
M47.3,60.9c-2.7-1.9-5.9-2.8-9.2-2.5H25.3v19.1h12.7c3.3,0.3,6.6-0.6,9.2-2.7c1.9-1.9,2.8-4.6,2.7-7.3c0.3-2.4-0.5-4.9-2.2-6.7
L47.3,60.9z M0,3.3"/>
</svg>
</div>
<div class="section_text">One of the largest coupon <br> portals in Central Asia</div>
</a>
<a target="_blank"
href="https://blog.maddevs.io/%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82-namba-%D0%BD%D0%B0%D1%87%D0%B0%D0%BB%D0%BE-82a66d9b584e#.7t5t4h5ae"
class="section_wrap animate_project">
<div class="section_icon">
<svg version="1.1" id="namba" width="140" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="-644 -211 1024 288.3" style="enable-background:new -644 -211 1024 288.3;" xml:space="preserve">
<g>
<path class="nb0" d="M-644-146c6.8,0,13.7,0.2,20.5-0.1c4.1-0.2,6.7,1,9,4.5c5.1,7.6,5.3,7.4,13.9,4.5
c15.8-5.4,31.6-10.5,48.4-11.2c8.7-0.4,17.3,0.4,25.7,3c20.8,6.4,30.2,22.2,34.5,42.1c2.5,11.6,3.2,23.4,3.2,35.3
c0,28.8-0.1,57.7,0.1,86.5c0,4.1-1.4,5.1-5.1,4.8c-3.8-0.3-7.8-0.7-11.5,0.1c-12,2.7-17.1-6.3-23.3-13.3c-1.4-1.5-0.8-3.5-0.8-5.3
c-0.3-29.2,0.5-58.3-0.5-87.5c-0.2-5.8-1.1-11.6-2.8-17.2c-3.3-10.8-10.7-16.7-21.7-17.9c-16.4-1.7-31.6,2.7-46.3,9.6
c-2.7,1.3-2.2,3.4-2.2,5.5c-0.2,27.7-0.3,55.3-0.5,83c-0.1,12.8-0.4,25.7-0.4,38.5c0,3.3-0.5,4.7-4.3,4.6c-12-0.3-24-0.2-36-0.3
C-644-33.3-644-89.7-644-146z"/>
<path class="nb1" d="M-157.7-74.8c-0.1-6.2-0.2-11.3-1.3-16.3c-3.5-16.1-14-23-30.1-19.4c-7,1.6-13.6,4.3-20.1,7.3
c-3.4,1.5-4.5,3.5-4.5,7.2c0.1,37.7,0.1,75.3,0.1,113c0,7.2,0.9,6.3-6.4,6.4c-9,0.1-18-0.3-27,0.1c-4.7,0.2-5.4-1.4-5.4-5.6
c0.1-46.7,0.1-93.3,0.1-140c0-3.5-0.8-6.3-2.8-9.2c-10.4-15.2-11-35.7-1.4-50.3c1.4,4.4,2.6,8.6,4.5,12.6
c8.8,18.9,22.9,29.8,44.3,30.1c10.3,0.2,20.6,0.2,30.9-0.8c17.2-1.6,33.3,0.9,45.6,14.7c1.9,2.1,3.3,0.6,4.8-0.1
c13.9-6.6,28.2-11.9,43.5-14.2c8.6-1.3,17.3-1.3,25.8,0.6c15.1,3.5,24.7,13.1,29.9,27.4c3.9,10.7,5.8,21.9,5.9,33.3
c0.4,32.5,0.3,65,0.5,97.5c0,3.5-1.4,4.1-4.4,4c-9.5-0.2-19-0.3-28.5-0.1c-4,0.1-5.3-1-5.3-5.2c0.2-24.8,0.1-49.7,0.1-74.5
c0-8.7-0.2-17.3-1.3-25.9c-3.1-22.7-15.4-31.5-37.9-27.2c-17.9,3.4-32.9,12.3-46.7,23.7C-148.6-82.5-152.7-79-157.7-74.8z"/>
<path class="nb2" d="M-188.2-26.9c0-9,7-16.1,16-16.3c9.1-0.2,16.6,6.6,17.1,15.3c0.2,3.2-0.5,4.9-4.4,3.8
c-7.4-2.1-14.5-0.1-21.4,2.3C-187.1-19.6-188.2-20.3-188.2-26.9z"/>
<path class="nb3" d="M-83.4-23.3c-10.7-12.4-22.4-13.6-35.8-2.9c4.6-9.8,11.7-15,18.6-14.2C-93.1-39.5-85.6-32.2-83.4-23.3z"/>
<path class="nb0" d="M186.1-94.5c-8.6-33.7-31.1-51.6-65.7-53.8c-18.8-1.2-36.2,4.2-53.1,11.5c-5.6,2.4-5.6,2.5-5.5-3.8
c0.1-23.5,0.2-47,0.3-70.5c-13.3,0-26.7,0-40,0c-0.1,1.3-0.2,2.7-0.2,4c0,75.1,0,150.2,0,225.4c0,0.7,0.1,1.3,0,2
c-0.2,2.2,0.7,2.9,2.9,2.9c4.2-0.1,8.4-0.5,12.5,0.1c7.7,1.1,13.2-1.4,16.3-8.5c1.6-3.5,3.7-3.4,7.1-2c21,8.5,42.3,15.2,65.4,12.4
c26.3-3.1,45.7-16,55.9-40.7C192.5-41.3,192.9-67.9,186.1-94.5z M146.2-34c-5,19.1-17.1,29-36.8,29.9c-15.4,0.7-30-2.8-44-9.2
c-2.7-1.2-3.4-2.9-3.4-5.8c0.1-28,0.1-56,0.1-84c0-2.2-0.2-4.2,2.4-5.4c16.3-7.9,33.3-11.5,51.4-8.9c16.1,2.3,25.8,12.1,30.1,27.5
c2.7,9.4,3.4,19,3.2,28.1C149.2-52,148.6-42.9,146.2-34z"/>
<path class="nb0" d="M363-146.1c-7.2-0.8-12.1,1.3-15,8c-1.6,3.6-3.7,3.8-7.4,2.4c-20-7.6-40.2-13.9-62.1-12.4
c-28.9,2-50.8,17.9-60.4,45.3c-8.1,23.1-8.6,46.8-3.6,70.4c9,43,40.3,61.3,80.7,57.7c14.4-1.3,28-5.7,41.4-10.8
c8.7-3.3,8.7-3.4,14.1,4.2c1.5,2,2.3,4.7,5.9,4.5c7.8-0.3,15.6-0.2,23.5-0.3c0-56.3,0-112.7,0-169C374.3-146,368.6-145.5,363-146.1
z M335.4-13.5c-14.4,6.4-29.2,9.9-45.1,8.8c-18.9-1.4-30.8-11.1-35.2-29.7c-4.3-18.1-4.3-36.3,0-54.4c4.6-19.4,17.5-29.5,37.5-30.2
c15-0.5,29,3.1,42.5,9.1c3.1,1.4,3.9,3.2,3.9,6.5c-0.2,14-0.1,28-0.1,42c0.1,0,0.2,0,0.3,0c0,13.8-0.1,27.6,0.1,41.5
C339.3-16.8,338.5-14.9,335.4-13.5z"/>
<path class="nb0" d="M-293.1-61c0-26.7-0.1-53.3,0.1-80c0-4.3-1.2-5.5-5.3-5.1c-4,0.4-8,0.5-12,0c-6.9-0.9-11.9,1.1-14.7,7.7
c-1.8,4.2-4.4,3.9-8.2,2.5c-19.8-7.6-39.9-14-61.7-12.1c-29.4,2.5-50,17-60.1,45c-8.4,23.5-8.8,47.7-3.5,71.9
c9.1,41.2,39.5,60.1,80.4,56.4c16.3-1.5,31.5-6.6,46.5-12.8c2.1-0.9,4.1-1.8,5.3,1c3.8,9.2,11.2,11,20.2,9.8c2.8-0.4,5.7-0.3,8.5,0
c3.9,0.5,4.7-1.1,4.6-4.8C-293.2-8-293.1-34.5-293.1-61z M-336-14.5c-16.9,8-34.5,12.1-53.3,8.8c-15-2.6-24.3-12.1-28.1-26.4
c-5.3-19.7-5.3-39.6,0-59.2c4.8-17.6,17.1-26.8,35.3-27.7c15.7-0.8,30.3,2.9,44.5,9.3c2.7,1.2,3.5,2.9,3.4,5.8
c-0.1,14.2-0.1,28.3-0.1,42.5c0.1,0,0.2,0,0.2,0c0,14,0,28,0,42C-333.9-17.6-333.5-15.6-336-14.5z"/>
<path class="nb1" d="M-79.9-13.8c-1.9-0.7-3.1,0.6-4.2,1.9c-0.6,0.8-1.3,1.5-2,2.3c-15.6,17.4-32.7,32.8-54.6,41.9
c-12.6,5.2-25.5,7.6-39,4.8c-1.7-0.4-3.5-1.4-5.1,0.3c-1.8,1.9-0.5,3.8,0.1,5.6c6.9,19.3,27.9,34.1,48.5,34.3
c14.1,0.1,24.9-6.5,33.7-16.8c9.6-11.2,14.9-24.7,18.8-38.8C-81,11.6-79.2,1.3-78-9.1C-77.8-11-77.6-12.9-79.9-13.8z M-105.4,52
c-9.4,15.4-30.6,22-48.5,15.3c-4.2-1.6-8.2-3.6-12-6.9c10.5-7.1,20.8-13,32.3-16.8c1.1-0.4,2.3-1.2,3.3-0.2
c1.1,1.1-0.3,2.1-0.6,3.1c-0.7,2.2-1.4,4.3-2.6,7.9c4.6-4.7,7.7-8.5,11.7-11.5c4.9-3.7,14.5-1.6,17.6,3.7
C-103,48.9-104.4,50.4-105.4,52z"/>
</g>
</svg>
</div>
<div class="section_text">The largest entertainment <br> and video portal in Central Asia</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/silkroadexplore-387cba95cfbc#.r0pbnw22e"
class="section_wrap animate_project">
<div class="section_icon">
<svg version="1.1" id="silkroadexplore" width="140" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 155 55" style="enable-background:new 0 0 155 55;" xml:space="preserve">
<path class="sl0" d="M0.7,46.3c0.1,0.4,0.5,0.8,0.9,1c0.4,0.3,0.9,0.4,1.5,0.5c0.6,0.1,1.1,0,1.5-0.2c0.5-0.2,0.7-0.5,0.8-1
c0.1-0.6-0.1-1-0.6-1.4c-0.2-0.2-0.8-0.5-1.8-0.9c-0.8-0.4-1.4-0.8-1.8-1.2c-0.5-0.6-0.7-1.3-0.5-2.1c0.3-1.5,1.3-2.7,2.9-3.5
c1.7-0.8,3.4-0.9,5.3-0.3c0,0.4-0.1,0.9-0.3,1.5c-0.2,0.6-0.3,1.1-0.3,1.4c0-0.4-0.2-0.7-0.6-1c-0.4-0.3-0.8-0.4-1.4-0.5
c-0.6-0.1-1.1,0-1.5,0.1c-0.5,0.2-0.8,0.4-1,0.8c0.1,0.6,0.5,1.1,0.9,1.5c0.3,0.3,0.8,0.5,1.5,0.9c0.8,0.3,1.3,0.6,1.5,0.8
c0.5,0.3,0.8,0.8,0.9,1.3c0.2,0.9,0.1,1.8-0.3,2.6c-0.4,0.8-1.1,1.4-2,2c-0.9,0.5-1.9,0.8-3,1c-1.2,0.1-2.2,0-3.3-0.4
c-0.1-0.5,0-1.1,0.2-1.6C0.4,47.1,0.6,46.7,0.7,46.3L0.7,46.3z M12.3,39.2c-0.6-0.2-1.1-0.7-1.5-1.3c0.1-0.9,0.6-1.4,1.5-1.7
c0.9-0.3,1.5,0,1.9,0.8c-0.1,0.5-0.3,0.9-0.7,1.3C12.9,38.8,12.5,39,12.3,39.2L12.3,39.2z M14,40.5c0,0.3,0,1.5,0,3.5
c0,1.4,0.1,2.5,0.2,3.2c0,0.2,0.2,0.3,0.6,0.2c0.5,0,0.8,0,0.9,0c-0.8,0.8-1.5,1.4-2.1,1.7c-0.9,0.6-1.9,0.7-2.9,0.4
c-0.2-0.7-0.3-1.8-0.2-3.2c0-2,0.1-3.1,0-3.5c0,0-0.3,0-0.7,0c-0.1,0-0.2,0-0.3,0c0.3-0.6,0.9-1.1,1.6-1.6
C12.2,40.5,13.1,40.2,14,40.5L14,40.5z M16,38.2c0.3-0.6,0.8-1.1,1.5-1.6c0.9-0.7,1.8-0.9,2.7-0.7c0.2,1.3,0.3,3.1,0.2,5.4
c0,3.1,0,5,0,5.7c0,0.2,0.2,0.3,0.5,0.2c0.5,0,0.7,0,0.8,0c-0.7,0.8-1.3,1.4-1.8,1.7c-0.8,0.6-1.7,0.8-2.7,0.8
C17.1,49,17,48.1,17,46.9c0-1.5,0-2.5,0-3.2c0.1-1.5,0.1-2.5,0.1-3.2c0-1.2-0.4-1.9-1-2.2C16.1,38.2,16.1,38.2,16,38.2
c0,0.1-0.1,0.1-0.1,0.2C15.9,38.3,15.9,38.3,16,38.2C16,38.2,16,38.2,16,38.2L16,38.2z M23.6,36.6c0.9-0.6,1.8-0.8,2.8-0.5V44
c0.3-0.1,0.7-0.4,1.1-0.9c0.2-0.3,0.6-0.7,1.2-1.3c1.1-1.1,2.3-1.5,3.7-1.4c0,0.2,0.2,0.4,0.4,0.9c0.2,0.3,0.3,0.7,0.3,1
c-0.4-0.2-0.9-0.2-1.6-0.2c-0.5,0-1.1,0.1-1.6,0.2c0.4,0.5,0.9,1.4,1.4,2.7c0.6,1,1.4,1.6,2.4,1.7c-0.7,0.9-1.2,1.5-1.5,1.9
c-0.7,0.7-1.3,1-1.9,1c-0.7-0.1-1.4-0.7-2-2c-0.3-0.7-0.6-1.2-0.7-1.6c-0.3-0.6-0.6-1-0.9-1.2c-0.2,0.1-0.3,0.4-0.2,0.8
c0,0.6,0.1,1,0,1.1c0.1,0.3,0.3,0.4,0.5,0.5c0.2,0.1,0.5,0,0.8-0.1c-0.8,0.8-1.4,1.4-1.8,1.7c-0.8,0.6-1.7,0.9-2.7,0.8
C23,48.4,23,46.6,23,44.3c0-3.2,0.1-5.1,0-5.7c-0.1-0.3-0.2-0.4-0.5-0.4c-0.4,0.1-0.6,0.2-0.8,0.2C22.7,37.3,23.4,36.7,23.6,36.6
L23.6,36.6z M43.6,36.8c1.4-0.1,2.6-0.1,3.6,0.2c1.1,0.3,1.7,0.9,1.8,1.7c0.1,0.6-0.2,1.1-0.9,1.7c-0.8,0.7-1.3,1.2-1.5,1.5
c0.4,0.6,1,1.6,1.6,3.2c0.7,1.3,1.4,2,2.2,2c0.3-1.6,1.1-3,2.3-4.4c1.3-1.5,2.8-2.3,4.4-2.5c1.4-0.2,2.5,0.1,3.4,0.8
c0.9,0.6,1.3,1.5,1.3,2.6c0,1-0.4,2-1.4,3c-0.9,1-1.9,1.8-3.2,2.4c-1.3,0.6-2.6,0.8-3.7,0.6c-1.3-0.2-2.2-1-2.8-2.3
c-0.2,0.1-0.8,0.6-1.7,1.5c-0.7,0.6-1.3,0.9-1.9,0.8c-0.8-0.1-1.5-1.1-2.3-2.8c-0.4-1-0.7-1.7-0.9-2c-0.4-0.7-0.7-1.2-1.2-1.4
c-0.2,0.3-0.3,0.8-0.2,1.7c0,1.1,0.1,1.7,0,1.9c0,0.2,0.2,0.3,0.5,0.2c0.5,0,0.7,0,0.8,0c-0.8,0.8-1.4,1.3-1.8,1.7
c-0.8,0.6-1.7,0.8-2.7,0.8c-0.4-1-0.5-2.6-0.5-4.8c0.1-3,0.1-4.8,0.1-5.3c-0.1-0.3-0.2-0.4-0.4-0.3c-0.4,0.1-0.7,0.2-0.9,0.1
c0.2-0.6,0.9-1.2,2.1-1.7C41,37.3,42.2,37,43.6,36.8L43.6,36.8z M55.1,47.5c0.6,0.8,1.3,0.9,2.3,0.5c0.5-0.6,0.8-1.5,0.8-2.7
c0-1.2-0.2-2.2-0.6-2.9c-1-0.6-1.8-0.6-2.4,0c-0.5,0.5-0.8,1.4-0.8,2.5C54.3,45.9,54.6,46.8,55.1,47.5L55.1,47.5z M42.8,42.2
c1.1,0.1,1.9,0,2.4-0.4c0.1-0.3,0.2-0.7,0.2-1.2c0-0.5-0.1-0.9-0.2-1.3c-0.4-0.2-0.7-0.3-1-0.4c-0.4-0.1-0.9-0.1-1.3,0V42.2
L42.8,42.2z M66,44.9c0.8-0.3,1.3-0.6,1.7-0.8c0-0.7-0.1-1.2-0.3-1.5c-0.3-0.4-0.7-0.5-1.4-0.4c-0.3,0.1-0.6,0.3-0.6,0.8
c0,0.2,0,0.6,0,1.3h-3c1.1-1.4,2.3-2.4,3.7-3.1c1.8-0.9,3.5-0.9,4.9,0c0.1,0.7,0.2,1.7,0.2,2.9c0,0.7,0,1.7,0,3.1
c0,0.2,0.2,0.3,0.5,0.2c0.5,0,0.7,0,0.8,0c-1.1,1.1-1.7,1.6-1.8,1.6c-0.8,0.5-1.7,0.7-2.7,0.7c-0.1-0.1-0.2-0.4-0.2-0.7
c0-0.4,0-0.7,0-1c-0.2,0.2-0.6,0.5-1.2,0.8c-0.6,0.3-1.2,0.6-1.8,0.7c-1.6,0.4-2.6,0.1-2.8-1.1c-0.2-0.9,0.5-1.8,2.1-2.6
C64.3,45.6,65,45.3,66,44.9L66,44.9z M65.3,47.6c0.1,0.1,0.4,0.2,0.7,0.2c0.2,0,0.5,0,1,0c0.3-0.2,0.5-0.6,0.6-1.1
c0.2-0.6,0.1-1.1-0.2-1.4c-0.2,0.1-0.5,0.2-1.1,0.4c-0.5,0.1-0.8,0.3-1,0.5c-0.1,0.4-0.1,0.7-0.1,0.7C65.3,46.9,65.3,47.2,65.3,47.6
L65.3,47.6z M79.5,40.5v-1.7c0-0.2-0.2-0.4-0.5-0.5c-0.3-0.2-0.5-0.1-0.6,0.1c0.2-0.6,0.7-1.2,1.6-1.8c1-0.7,1.9-0.9,2.7-0.7
c0.2,1.1,0.3,3,0.2,5.6c-0.1,2.7,0,4.5,0.2,5.6c0.1,0,0.3,0,0.5,0c0.1,0,0.2,0,0.3-0.1c-0.3,0.5-0.7,1.1-1.5,1.6
c-0.9,0.7-1.8,1-2.6,0.7c-0.3,0.1-0.5-0.1-0.5-0.5c0-0.6,0-1,0-1c-0.2,0.4-0.6,0.8-1.3,1.1c-0.6,0.3-1.3,0.5-2.1,0.5
c-1.8,0.1-3-0.5-3.5-1.8c-0.6-1.6,0.1-3.2,2-4.7C75.9,42.1,77.5,41.2,79.5,40.5L79.5,40.5z M76.7,47.4c0.3,0.1,0.7,0.2,1.2,0.2
c0.5,0,0.9-0.1,1.2-0.2c0.3-0.4,0.4-1.2,0.4-2.2c0-1.2,0-2.1,0-2.6c-0.3-0.3-0.8-0.4-1.3-0.4c-0.3,0-0.8,0.2-1.4,0.4
c-0.4,0.7-0.6,1.5-0.6,2.4C76.1,46,76.3,46.8,76.7,47.4z M92.4,37.1c1.3-0.2,3.3-0.3,6.1-0.2c0.2,0.6-0.2,1.1-1.3,1.7
c-1.1,0.6-2.4,0.7-3.6,0.4c-0.2,0.2-0.3,0.6-0.2,1.2c0,0.9,0.1,1.3,0,1.5h3.4c-0.5,0.8-0.9,1.3-1.2,1.6c-0.6,0.5-1.3,0.6-2.2,0.5V47
c0.5,0.2,1.3,0.4,2.2,0.4c0.9,0,1.7,0,2.4-0.2c0.2,1.2-0.6,1.9-2.5,2.3c-1.7,0.3-3.5,0.3-5.5-0.2v-9.4c0-0.2-0.2-0.4-0.4-0.4
c-0.4,0-0.7,0-0.8,0C89.2,38.2,90.4,37.4,92.4,37.1L92.4,37.1z M101.9,45.9c-0.7-1-1.1-1.6-1.3-1.9c-0.6-0.6-1.2-1.1-1.9-1.3
c-0.1,0-0.1,0-0.2,0l0,0c0.1-0.4,0.5-0.8,1.1-1.3c0.4-0.3,1-0.7,1.9-1.3c0.6,0.3,1.2,0.8,1.8,1.4l1.4,1.7c0.3-0.4,0.6-1.1,1.1-2
c0.5-0.7,1.1-1.1,1.9-1.2c0.3,0.1,0.6,0.4,0.8,0.9c0.3,0.5,0.5,0.9,0.7,1c-1.1,0.2-1.8,0.4-2.3,0.6c-0.8,0.3-1.3,0.7-1.6,1.3
c0.3,0.4,0.9,1,1.6,2.1c0.7,0.8,1.4,1.2,2.1,1.1c0.1,0.5-0.3,1-1,1.5c-0.9,0.6-1.5,1-1.8,1.2c-0.7-0.4-1.4-0.9-2-1.6
c-0.4-0.4-1-1.1-1.6-2c0,0.6-0.3,1.2-0.7,1.8c-0.4,0.6-0.8,1-1.3,1.3c-0.5,0.3-1,0.3-1.4,0.1c-0.5-0.3-0.8-0.8-0.9-1.7
C100.1,47.8,101.3,47.2,101.9,45.9L101.9,45.9z M113.7,40.5c0.3,0,0.5,0.1,0.5,0.6c0,0.7,0,1,0,1.1c0.3-0.5,0.8-0.9,1.6-1.2
c0.8-0.3,1.6-0.4,2.4-0.4c0.9,0.1,1.6,0.3,2.2,0.8c0.6,0.6,0.9,1.4,0.9,2.5c-0.1,1.4-0.9,2.7-2.5,3.9c-1.4,1.1-3,1.7-4.5,2v2.5
c0,0.2,0.2,0.3,0.6,0.4c0.3,0.1,0.5,0.1,0.6-0.1c-0.3,0.6-0.9,1.2-1.6,1.7c-1,0.7-1.9,1-2.8,0.7c-0.2-1.4-0.3-3.3-0.2-5.7
c0-3.4,0.1-5.4,0-6c0.1-0.2-0.1-0.4-0.5-0.4c-0.3-0.1-0.5,0-0.6,0.1c0.2-0.5,0.7-1,1.5-1.6C112.1,40.6,112.9,40.3,113.7,40.5
L113.7,40.5z M114.1,47.8c0.8,0.5,1.4,0.6,2,0.4c0.5-0.2,0.9-0.7,1.2-1.3c0.2-0.7,0.3-1.4,0.3-2.1c-0.1-0.8-0.3-1.4-0.6-1.9
c-1.4-0.8-2.2-0.6-2.6,0.8C114,44.5,113.9,45.9,114.1,47.8L114.1,47.8z M121.5,38.2c0.3-0.6,0.8-1.1,1.5-1.6
c0.9-0.7,1.8-0.9,2.7-0.7c0.2,1.3,0.3,3.1,0.2,5.4c0,3.1,0,5,0,5.7c0,0.2,0.2,0.3,0.5,0.2c0.5,0,0.7,0,0.8,0
c-0.7,0.8-1.3,1.4-1.8,1.7c-0.8,0.6-1.7,0.8-2.7,0.8c-0.2-0.7-0.2-1.6-0.2-2.8c0-1.5,0-2.5,0-3.2c0.1-1.5,0.2-2.5,0.1-3.2
c0-1.2-0.4-1.9-1-2.2C121.6,38.2,121.5,38.2,121.5,38.2c0,0.1-0.1,0.1-0.1,0.2C121.4,38.3,121.4,38.3,121.5,38.2
C121.5,38.2,121.5,38.2,121.5,38.2L121.5,38.2z M132,41.1c1.3-0.6,2.6-0.9,3.6-0.7c1.3,0.2,2.2,1,2.8,2.3c0.5-0.3,1.1-0.8,2-1.7
c0.9-0.7,1.8-0.9,2.7-0.6c0.2,0.2,0.2,0.5,0.2,1c0,0.8,0,1.2,0,1.3c0.1-0.1,0.5-0.6,0.9-1.5c0.4-0.6,0.8-1,1.4-1
c0.4,0.1,0.6,0.4,0.7,1c0,0.3,0.1,0.8,0.2,1.5c-0.8,0-1.4,0-1.8,0c-0.7,0-1.1,0.2-1.4,0.4v4c0.1,0.1,0.4,0.2,0.8,0.2
c0.3,0,0.6,0,0.7-0.1c-0.4,0.6-0.9,1.2-1.6,1.6c-1,0.6-2,0.9-3.1,0.8c-0.2-0.4-0.3-1-0.3-1.8c0.1-1,0.1-1.7,0.1-2.2
c0.1-0.9,0-1.5-0.1-1.9c-0.2-0.6-0.5-0.9-1-1c-0.2,0.3-0.3,0.6-0.3,1c0,0.5,0,0.8-0.1,1.1c-0.3,0.9-1.2,1.9-2.7,3
c-1.6,1.3-2.9,1.9-4,2c-1.2,0.1-2.2-0.2-3.1-0.8c-0.8-0.7-1.3-1.6-1.2-2.7c0-0.9,0.5-1.8,1.4-2.8C129.7,42.5,130.7,41.7,132,41.1
L132,41.1z M131.8,47.5c0.6,0.8,1.3,0.9,2.3,0.5c0.5-0.6,0.8-1.5,0.8-2.7c0-1.2-0.2-2.2-0.6-2.9c-1-0.6-1.8-0.6-2.4,0
c-0.5,0.5-0.8,1.4-0.8,2.5C131,45.9,131.3,46.8,131.8,47.5L131.8,47.5z M149,41.7c0.9-0.6,1.9-0.9,2.8-1c1-0.1,1.9,0,2.6,0.5
c0.2,0.1,0.3,0.2,0.4,0.5c0,0.1,0.1,0.3,0.1,0.6c0,0.5-0.3,1.2-1,2c-1,1.1-2.4,1.7-4.1,1.8c0,0.9,0.6,1.4,1.7,1.6
c1.1,0.2,2,0.1,2.8-0.4c-0.3,0.8-0.9,1.4-1.8,1.9c-0.9,0.4-1.8,0.6-2.8,0.5c-1.1-0.1-1.9-0.4-2.6-0.9c-0.8-0.6-1.1-1.5-1.1-2.5
c0-0.8,0.3-1.6,0.9-2.4C147.4,42.9,148.1,42.2,149,41.7L149,41.7z M149.8,45.5c0.6-0.3,1.1-0.7,1.4-1c0.4-0.5,0.6-1.1,0.5-1.9
c-0.4-0.4-0.8-0.6-1.2-0.5c-0.4,0.1-0.6,0.4-0.9,0.8c-0.2,0.4-0.3,0.9-0.3,1.4C149.3,44.8,149.5,45.2,149.8,45.5L149.8,45.5z"/>
<path class="sl1" d="M155,32.1L155,32.1l-1.8-0.2l-0.5-1.6c0.7,0.1,1.2,0,1.5-0.2c0.1-0.1,0.2-0.3,0.2-0.5c0.1-0.7-0.3-2-1-3.9
c-0.6-1.7-0.9-2.6-0.8-2.7c0.3-0.2,0.6-0.4,1.1-0.8c-0.2-0.4-1-3.5-2.5-9.3c0.5-0.4,0.8-1,1-1.9c0.1-0.5,0.1-0.9,0.1-1.3l0-0.5
c-0.3-0.4-0.8-0.7-1.5-0.9c-0.4-0.1-0.7,0-0.9,0.4c-0.1,0.1-0.2,0.5-0.4,1.3c0,0,0,0.2-0.1,0.6c0,0.3-0.1,0.5-0.2,0.7
c-0.2,0.4-0.4,0.7-0.6,1l-0.3,0.3c-0.5,0.4-0.8,0.9-0.9,1.6c0,0.4,0,0.7,0,1l0.1,1.8c-1.5,0.2-2.6,0-3.4-0.8c-0.7-0.6-1-1.5-1.2-2.8
c0.5-0.8,0.9-1.3,1.3-1.5c1-0.1,1.6-0.3,2-0.5c0.1-0.1,0.2-0.2,0.2-0.3c0-0.7-0.6-1.1-1.8-1.3l-1.8,0c0-0.4-0.6-0.4-1.9-0.2l-2,0.5
c-0.4,0.1-0.6,0.5-0.6,1.3c0,0.4,0,0.7,0.1,1c-0.2,1.1-0.6,1.8-1.3,2.2c-0.2,0.1-0.4,0.2-0.6,0.3l-0.3,0c-0.6,0.1-1.6-0.2-2.9-1.1
l-1.7-1.4c-0.4-0.3-1.1-0.8-1.9-1.6l-1.1-1.1c-0.2-0.4-0.9-0.8-2.1-1c0-0.1-0.1-0.2-0.3-0.3c-0.2-0.1-0.4-0.2-0.5-0.4
c-0.2-0.3-0.4-0.7-0.7-0.9c0,0-0.3-0.2-0.7-0.5c-0.6-0.5-1.1-1-1.5-1.5c-0.3-0.4-0.5-0.7-0.5-0.9c0-0.5-0.6-0.9-1.7-1.1
c0.2-0.2,0.4-0.7,0.6-1.2c0.4-0.6,0.4-1.1,0-1.5c-0.4-0.4-1-0.5-1.6-0.1c-0.3,0.2-0.5,0.4-0.7,0.6c-0.2,0.3-0.2,0.6-0.2,0.9
c0,0.4,0.1,0.9,0.3,1.4c-0.6,0.2-1.1,0.6-1.4,1.2l-0.4,0.8c-0.1,0.2,0,0.8,0.2,1.5c0.1,0.4,0.3,0.9,0.5,1.4c0.1,0.4,0.2,1.2,0.3,2.4
c0.1,0.3,0.2,0.6,0.3,0.9l-1.7,1.2c-0.7,0.3-1.6,1-2.8,2l-0.1-0.1l-0.6,0.6c-1.3,1.3-2.3,2.2-3,2.6c-1.3,0.7-2.5,0.7-3.6,0.1
c-0.8-0.5-1.4-1.2-1.8-2.3c-0.2-0.6-0.5-1.6-0.7-3L104,12c0.4-0.2,0.7-0.3,1-0.3c0.5-0.5,0.7-0.9,0.4-1.4l-0.6-0.5l-3,0.1
c-0.1-0.3-0.3-0.4-0.6-0.4l-0.4,0.1c-0.3,0.3-0.8,0.4-1.4,0.5L98.5,10c0.2,0.1,0.3,0.4,0.2,0.9c0,0.3,0,0.5-0.1,0.8
c-0.3,0.5-0.5,1.2-0.7,2c-0.1,0.4-0.2,0.7-0.2,1c-0.1,0.6-0.5,0.9-1.2,1.1l-1,0.1c-0.4-0.2-1.2-0.8-2.2-1.8l-1.5-1.4
c-0.5-0.6-1-1-1.8-1.4l-1-0.4c-0.5,0.1-1,0.1-1.4,0.1c-0.3-0.1-0.5-0.2-0.7-0.3c0-0.1,0-0.3-0.1-0.6c-0.3-0.6-0.4-1-0.5-1.3
c-0.2-0.5-0.1-1,0.1-1.2c0,0.2,0.1,0.4,0.3,0.6C86.9,8.4,87,8.6,87,8.6c0.2,0.5,0.5,0.9,1,1.3c0.5,0.4,1,0.7,1.5,1
c0.8,0.5,1.1,0.4,0.9-0.1c-0.5-0.4-1.1-0.9-1.5-1.5c-1-1.2-1.4-2.3-1.2-3.3c0.1-0.3,0-0.7-0.4-1c-0.3-0.2-0.6-0.5-1-0.7
C86.7,4,87,3.5,87,2.9c0.1-0.7-0.1-1.2-0.6-1.5c-0.3-0.2-0.6-0.3-1-0.2c-0.4,0.1-0.6,0.3-0.9,0.6c-0.2,0.3-0.3,0.7-0.2,1.1
c0,0.3,0.1,0.7,0.3,1.2l-0.7,0c-0.4,0-0.7,0.4-1,1.2c0,0.1-0.2,0.7-0.5,1.9c-0.2,0.5-0.3,1.1-0.3,1.7c-0.1,0.7,0,1.3,0.1,1.8
c0.1,0.3,0.3,0.5,0.7,0.6l0.2,0.2c-0.3,0.2-0.6,0.3-0.8,0.5L82,12c-0.8,0.1-1.7,0.5-2.7,1.2l-1.3,1.1c-0.5,0.3-0.9,0.8-1.4,1.6
l-0.6,1l0.1,1.4c-2.5,1.2-4.9,1.9-7.1,2.1c-2.2,0.2-4.1-0.1-5.7-1c-1.1-0.6-1.9-1.4-2.6-2.4c-0.6-1-0.9-2.1-1-3.3h0
c0.4-0.2,0.7-0.4,0.8-0.6c0.2-0.4,0.2-0.8-0.2-1.2c-0.3-0.1-0.7-0.2-1-0.3c-0.8-0.2-1.3-0.2-1.7,0c-0.5,0-1,0-1.5,0.1
c-1,0.1-1.4,0.3-1.5,0.6l0.5,0.4c-0.1,0.1-0.3,0.3-0.5,0.6c-0.4,0.6-0.7,1.3-1,2.1c0.2,0.2,0.2,0.5,0.1,0.8c-0.2,0.5-1,0.7-2.3,0.7
c-0.5-0.3-1.1-0.6-1.7-1.1c-1.2-0.8-2-1.6-2.3-2.2c-0.2-0.3-0.4-0.6-0.7-0.9c-0.5-0.6-0.9-1-1.3-1.2c-0.2-0.1-1.1,0-2.8,0.2
c-0.1-0.2,0-0.5,0-0.8l0.2-0.4l2.2,0.4c0.6,0.2,0.9,0.1,0.8-0.1c-0.2-0.2-0.4-0.4-0.7-0.5c-1-0.3-1.7-0.6-2-0.9
c-0.3-0.2-0.5-0.6-0.6-1.1c-0.1-0.5-0.6-0.9-1.3-1c0.1-0.1,0.1-0.1,0.1-0.1c0.1,0,0.2-0.2,0.4-0.5c0.2-0.3,0.3-0.7,0.5-1
c0.1-0.2,0-0.3,0-0.5c-0.1-0.2-0.2-0.3-0.4-0.4c-0.4-0.2-0.8-0.3-1.1-0.2C40,4.7,39.8,5,39.8,5.4c0,0.1-0.1,0.3-0.2,0.6
c-0.1,0.4-0.2,0.6-0.2,0.7c-0.2,0.8-0.2,1.3-0.1,1.5c-0.2,0.4-0.4,0.9-0.5,1.6c-0.1,0.3-0.1,0.6-0.1,0.8l0,0.6
c-0.1,0.5-0.1,1-0.1,1.3l-1.7,0.3c-0.1,0-0.1,0.5,0,1.6c0.1,0.5,0.1,1.1,0.2,1.6c-0.3,0-0.6,0.2-1,0.4c-0.7,0.4-1.3,1-1.8,1.9
l-0.4,2.3c-0.6-0.1-1.1-0.4-1.5-0.7c-0.7-0.6-1.1-1.6-1.2-2.9c-0.1-0.8-0.1-1.8,0.1-3c0.8-0.1,1.3-0.3,1.6-0.5
c0.1-0.1,0.2-0.2,0.1-0.3c0-0.7-0.6-1.1-1.6-1.2l-1.6,0c0-0.4-0.6-0.4-1.7-0.2l-1.7,0.5c-0.3,0.1-0.5,0.5-0.5,1.2
c0,0.3,0.1,0.7,0.1,1c-0.2,1-0.5,1.8-1.1,2.2c-0.2,0.1-0.4,0.2-0.5,0.3l-0.2,0c-0.5,0.1-1.4-0.2-2.5-1l-1.5-1.3
c-0.4-0.2-0.9-0.8-1.7-1.5l-1-1c-0.2-0.5-1.1-0.9-2.7-1.1l-2.8-2.6c-0.5-0.4-1-0.7-1.8-0.9c0,0,0.2-0.3,0.4-0.6
c0.4-0.5,0.3-1.1-0.3-1.6C9.9,4.8,9.3,4.8,8.9,5.2C8.5,5.6,8.4,6.3,8.7,7.4C8.5,7.4,8.3,7.6,8.2,7.8L8,8.1C7.9,8.5,7.9,9,8,9.5
c0,0.4,0.1,0.8,0.2,1.1c0.1,0.3,0.2,1.1,0.3,2.3c0,0.4,0,0.8,0.1,1.1L7.5,15c-0.5,0.3-1.2,0.8-1.9,1.5c-0.4,0.3-0.7,0.7-1,1
c-0.2,0.2-0.5,1.2-0.9,2.8c-0.2,0.8-0.3,1.6-0.5,2.4c-0.1,0.6-0.6,1.7-1.2,3.5c-0.3,0.3-0.5,0.7-0.8,1.3C1.2,27.7,1.1,28,1,28.2
c0.1,0.7,0,2.2-0.3,4.4c-0.2,0.5-0.4,1.2-0.8,1.8c0.1,0.5,0.4,0.6,0.9,0.4c0.2-0.1,0.5-0.3,0.7-0.5c0-0.6,0-1.5,0.1-2.7l0.1-1.5
c0.1-0.4,0.5-1.2,1.2-2.5l1-1.8c0.5-0.6,1-1.1,1.5-1.3l0.6-0.2c0.2,0.5,0.3,1.4,0.4,2.8c0.1,0.7,0.1,1.3,0.1,1.8
c-0.1,0.8-0.1,1.3,0,1.8c0.1,0.2,0.1,0.3,0.2,0.4c0.5,0.4,1.1,1,1.7,1.9c0.3,0.5,0.5,0.9,0.7,1.3c1.2,0.1,1.8,0,2.1-0.1
c0.1,0,0.1-0.1,0.1-0.2l-0.1-0.1c-1.1-0.2-2.1-1.1-2.9-2.5c-0.2-0.4-0.5-0.9-0.6-1.4l-0.2-0.6c-0.2-0.5-0.2-1.3,0-2.4L8,25.3
c0.6-0.5,0.9-1.2,0.9-2L8.7,22l1.5-0.2c0.9,0.5,2,0.8,3.2,0.9c0.6,0,1.2,0,1.6-0.1c0.5-0.1,0.9,0,1.2,0.3c0.1,0.1,0.2,0.2,0.2,0.4
c0.1,0.5-0.1,1.3-0.5,2.6c-0.2,0.6-0.4,1.2-0.7,1.7c0.1,1.1,0,2.4,0,3.8C15,32,15,32.7,15,33.3c0,0.3,0.1,0.6,0.1,0.8
c1.1,0.2,1.7,0.1,1.8-0.2c0-0.1,0-0.2-0.1-0.4l-0.1-0.2c-0.8-0.8-1-1.8-0.6-3.1c0-0.1,0.2-0.5,0.6-1.3c0.2-0.5,0.3-0.8,0.2-1
c-0.1-0.5-0.1-1.3,0-2.2c0.1-1,0.3-1.8,0.6-2.4c0.3-0.7,0.6-1.2,0.8-1.4c0.2-0.2,0.6-0.3,1.1-0.2c0.4,0.1,0.7,0.3,0.7,0.7
c0,0.5,0.1,0.7,0.1,0.7c0.1,0.1,0.2,0.4,0.3,1.1c0,0.3,0,0.6,0,0.9c0.4,0.5,0.7,1.3,1,2.4c0.2,0.5,0.3,1,0.3,1.5
c0.4,0.7,1,1.7,1.9,2.9c0.1,0.7,0.3,1.2,0.5,1.5c0.1,0.2,0.3,0.2,0.4,0.2c1.1,0,1.8-0.1,1.8-0.3c0-0.1,0-0.2-0.1-0.3l-0.1-0.1
c-1,0.1-2-0.9-2.9-2.8c-0.3-0.6-0.6-1.3-0.8-2l-0.3-0.9c-0.3-0.9-0.5-2.2-0.8-4l-0.2-2.4c1.8,0.3,3.2,0.2,4.3-0.5
c0.5-0.3,0.9-0.7,1.1-1c1.1-0.4,2-1.1,2.6-2c0.3-0.5,0.5-0.9,0.5-1.3c0.3-0.6,0.6-1.1,1-1.5c-0.2,2.8,0.2,4.8,1.3,5.9
c0.5,0.4,1,0.7,1.7,0.8c-0.2,1.1-0.4,2.2-0.5,3.3l-1.6,2.4l0.5,5.2v0.4c-0.1,0.3-0.3,0.6-0.7,0.9l0,1.2c0.1,0.7,0.4,0.9,1,0.4
c0-0.2,0.1-0.4,0.1-0.7c0.1-0.5,0.4-1,0.7-1.4c0-0.4,0-0.9,0-1.4c-0.1-1-0.2-1.9-0.4-2.5l1.6-2.2l0.1,1.2c0.1,0.9,0.1,1.4,0.2,1.8
l2.8,4.2l0.6,0.4c0.4,0.1,0.7,0,0.8-0.5L38.1,33l-1.6-2.5l-0.3-2.8c0-0.4,0.1-0.8,0.1-1.2c0.2-0.9,0.5-1.5,0.8-1.8l0.4-0.5
c0.3-0.4,0.4-0.9,0.3-1.5l0.2-0.1c0.2-0.1,0.4-0.1,0.6-0.1c0.8,0,1.8,0.2,3,0.8l3.5-0.5l0.2,0c0.1,0.1,0.2,0.2,0.2,0.3
c0.2,0.5-0.1,1.5-0.8,2.9c0,0-0.1,0.1-0.2,0.1c-0.1,0.1-0.3,0.3-0.4,0.5c-0.4,0.7-0.5,1.7-0.5,2.9l-0.3,4.2l1.3,0
c0.8-0.1,1.2-0.4,1-0.8l-1.2,0.1l-0.1-3l0.8-1.3c0.5-0.9,0.7-1.6,0.6-2l1.5-3.2l0.2,1.6c0.2,1.2,0.5,2.1,0.8,2.8
c1.5,3.1,2.3,4.9,2.4,5.3l2.7-0.2c-0.1-0.1-0.2-0.2-0.3-0.4c-0.3-0.3-0.6-0.5-1-0.6c-0.2-0.1-0.5-0.3-0.7-0.5
c-0.5-0.4-0.7-1-0.8-1.5l-0.7-2.6l-1-5.5l0.9-0.8l0.5,0c0.4,0,0.7,0,1.1,0c1.1-0.2,2-0.7,2.6-1.7l1-0.9c0.8-0.7,1.3-1.1,1.6-1.2
c0.1-0.2,0.2-0.4,0.3-0.7c0.3-0.6,0.5-1,0.7-1.5l0.3-0.5c0.3-0.4,0.7-0.6,1.1-0.8c0,1.3,0.4,2.4,1.1,3.4c0.7,1,1.5,1.8,2.7,2.4
c1.7,0.9,3.6,1.2,5.9,1c2.2-0.2,4.6-0.9,7.2-2.1l0.2,1.9c-0.3,0.6-0.3,1.2-0.2,1.8c0,0.3,0.1,0.6,0.2,0.8c0,0.5-0.4,1.6-1,3.3
c-0.4,0.8-0.5,1.5-0.2,2.1c0.1,0.3,0.3,0.6,0.5,0.7c0.3,0.6,1.2,2.2,2.6,4.8c0.8,0.3,1.1,0.2,0.9-0.3L78.5,33
c-0.6-0.6-1-1.7-1.4-3.3l-0.3-2.2c-0.1-0.7,0.2-1.6,0.9-2.7c0.4-0.5,0.8-1,1.1-1.4c0.3-0.1,0.3-0.5,0.2-1.1L79,21.5
c0.1-0.4,0.2-0.6,0.5-0.7c0.1,0,0.2,0,0.4,0l0.2,2.6l-1.2,2.4c-0.5,0.5-0.7,1.1-0.6,1.8c0,0.3,0.1,0.6,0.2,0.9
c0.6,0.7,1.7,2.2,3.1,4.4c0.1,0.4,0.2,0.7,0.2,1.1c0,0.2,0,0.3-0.1,0.4c0.9,0.1,1.6,0.1,2-0.1c0.2-0.1,0.3-0.2,0.3-0.3
c-0.8-0.3-1.5-1.1-2.3-2.5l-0.9-2L80,26.8l1.8-2.3c0.7-0.8,1.4-1.3,2-1.7c0.3-0.2,0.5-0.3,0.7-0.3c0.6,0.3,1.7,0.5,3.2,0.6
c0.8,0,1.5,0,2.1,0c0.2,0,0.4,1,0.5,2.8c0,0.9,0.1,1.9,0,2.8c-0.1,0.3-0.6,0.8-1.6,1.7l-1.5,1.3c-0.4,0.4-0.8,0.8-1.3,1.3l-0.6,0.6
c0.2,0.9,0.5,1.3,0.9,1.1c0.2-0.1,0.3-0.2,0.5-0.5c0-0.3,0.5-0.9,1.6-2c0.5-0.5,1-1,1.5-1.5c0.9-0.6,1.4-1,1.5-1.5
c0-0.1,0-0.2-0.1-0.4l-0.1-0.1c0.2-0.8,0.5-1.3,0.8-1.8c0.3-0.4,0.4-0.4,0.4-0.2l0.5,3.3c0.3,0.3,0.5,0.9,0.6,1.8
c0.1,0.4,0.1,0.8,0.1,1.2c0.1,0.7,0.2,1.2,0.5,1.3c0.1,0,0.2,0,0.4-0.1c1.2,0.2,1.8,0.2,1.8,0.1c0,0-0.1-0.1-0.4-0.2
c-0.6,0.1-1.1-0.7-1.5-2.2L94,29.7c0.1-0.3,0-0.7-0.1-1.1L93.7,28c-0.1-0.4-0.3-1.5-0.5-3.3L93,22.1c0.1-0.4,0.4-0.8,1-1.2
c0.3-0.2,0.5-0.4,0.8-0.5c0.6,0.1,1.1,0.2,1.7,0.1c0.3,0,0.5-0.1,0.6-0.1c0.7-0.1,1.3-0.5,1.9-0.9c0.3-0.2,0.5-0.5,0.7-0.7
c0.1-0.4,0.2-0.7,0.4-1c0.1-0.2,0.2-0.3,0.2-0.4c1.2-0.1,1.9-0.4,2.2-0.9c0.1-0.2,0.1-0.5,0-0.7c0-0.6,0.1-1.2,0.4-2l0.4-0.9
c0.1-0.2,0.2-0.4,0.4-0.6l0.1,0.4c0.2,1.4,0.5,2.5,0.7,3.1c0.4,1.1,1.1,1.9,2,2.4c0.7,0.4,1.4,0.6,2.2,0.5c0.7-0.1,1.5-0.3,2.3-0.9
c0.6-0.4,1.2-1,2-1.7c-0.4,1-0.8,2.5-1.2,4.5c-0.2,0.6-0.7,1.8-1.5,3.7c-0.3,0.3-0.7,0.7-0.9,1.3c-0.1,0.3-0.2,0.6-0.3,0.8
c0.1,0.7-0.1,2.3-0.5,4.6c-0.2,0.6-0.5,1.2-0.9,1.9c0.1,0.5,0.5,0.7,1,0.4c0.3-0.1,0.5-0.3,0.8-0.5c0-0.7,0.1-1.6,0.2-2.8l0.2-1.6
c0.1-0.4,0.6-1.2,1.5-2.6c0.4-0.7,0.8-1.3,1.2-1.8c0.6-0.6,1.2-1.1,1.8-1.4c0.3-0.1,0.5-0.2,0.7-0.2c0.2,0.5,0.3,1.5,0.4,2.9
c0,0.7,0.1,1.3,0.1,1.9c-0.2,0.8-0.2,1.4-0.1,1.8c0.1,0.2,0.2,0.4,0.2,0.4c0.6,0.4,1.3,1,1.9,2c0.3,0.5,0.6,0.9,0.8,1.3
c1.3,0.1,2.1,0.1,2.4-0.1c0.1-0.1,0.1-0.2,0-0.3c-1.3-0.3-2.4-1.2-3.2-2.7c-0.3-0.5-0.5-1-0.7-1.5l-0.2-0.7
c-0.2-0.5-0.1-1.4,0.1-2.5l0.5-1.6c0.7-0.5,1-1.2,1.1-2.1c0-0.3,0-0.6-0.1-0.9l-0.1-0.4l1.7-0.1c1.1,0.6,2.3,0.9,3.7,1
c0.7,0,1.3,0,1.8,0c0.6-0.1,1.1,0,1.4,0.3c0.1,0.1,0.2,0.2,0.2,0.4c0.1,0.5-0.1,1.4-0.7,2.7c-0.3,0.6-0.5,1.2-0.8,1.8
c0,1.2,0,2.5-0.2,4c-0.2,0.7-0.3,1.3-0.3,2c0,0.4,0,0.6,0.1,0.9c1.3,0.2,2,0.2,2.1-0.2c0.1-0.2,0-0.4-0.2-0.6
c-1-0.8-1.2-1.9-0.6-3.2c0-0.1,0.3-0.6,0.7-1.4c0.2-0.5,0.4-0.8,0.3-1c-0.1-0.6-0.1-1.4,0.1-2.3c0.2-1,0.4-1.9,0.8-2.5
c0.4-0.8,0.7-1.2,1-1.4c0.3-0.2,0.7-0.3,1.3-0.2c0.5,0.1,0.7,0.3,0.8,0.8c0,0.1,0,0.2,0,0.4c0,0.1,0,0.2,0.1,0.3
c0.2,0.1,0.2,0.5,0.3,1.1c0,0.4,0,0.7,0,1c0.4,0.5,0.8,1.3,1.1,2.5c0.2,0.6,0.3,1.1,0.4,1.6c0.4,0.8,1.2,1.8,2.1,3.1
c0.1,0.7,0.3,1.2,0.6,1.5c0.2,0.2,0.3,0.2,0.5,0.3c1.3,0,2-0.1,2.1-0.3c0-0.1,0-0.3-0.2-0.4c-1.1,0.1-2.2-0.9-3.2-3
c-0.3-0.6-0.6-1.3-0.9-2.1l-0.3-1c-0.3-1-0.6-2.4-0.8-4.2l-0.2-2.5c2,0.3,3.7,0.2,4.9-0.4c0.6-0.3,1-0.7,1.3-1.1
c1.2-0.4,2.2-1,2.9-1.9c0.4-0.5,0.6-1,0.7-1.5c0.2,1.1,0.6,2,1.2,2.6c0.8,0.7,1.9,1,3.3,0.9l0.4,0l0.3,4.4c0,1.3,0.3,3.2,0.7,5.7
c-0.6,0.2-1.2,0.4-1.7,0.9l-0.6,0.6c-0.1,0-0.2,0-0.3,0.1c-0.2,0.2-0.4,0.5-0.5,1c0,0.2,0.1,0.6,0.4,0.9c0.1,0.2,0.5,0.5,1,1
c0.2,0.2,0.5,0.5,0.9,0.8c0.2,0.2,0.4,0.3,0.4,0.3c0.2-0.1,0.2-0.5-0.2-1.3l-0.6-1.1c0.4-0.7,0.8-0.9,1.1-0.5
c0.2,0.2,0.3,0.4,0.3,0.7c0,0.6,0.3,0.8,1,0.7c0.3,0,0.7-0.2,1.1-0.3c0.2,0.5,0.3,0.9,0.5,1.2c0.1,0.2,0.2,0.2,0.2,0.3
c1.7,0,2.8,0,3.3-0.3C155,32.4,155,32.3,155,32.1z M12.6,11.2c0-0.1-0.1-0.1-0.1-0.2l-0.3-1.2l0.2,0c0.1,0,0.2,0.1,0.3,0.2
c0.1,0.1,0.3,0.2,0.6,0.4c0.4,0.2,0.6,0.3,0.8,0.4C13.6,10.8,13.1,11,12.6,11.2z M122.4,9.1c-0.1-0.4-0.1-0.8,0-1.2l0.1-0.5l0.4,0
c0.3,0.1,0.5,0.2,0.6,0.3c0.2,0.3,0.5,0.5,0.7,0.7C123.7,8.5,123.1,8.7,122.4,9.1z"/>
</svg>
</div>
<div class="section_text">Central Asia travel agency <br> with tours along the Great Silk Road countries
</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D1%8B"
class="section_wrap animate_project">
<div class="section_icon">
<svg id="zentist" xmlns="http://www.w3.org/2000/svg" width="140" viewBox="0 0 489 130.31">
<g id="Layer_2" data-name="Layer 2">
<g id="contact_logo" data-name="contact logo">
<path d="M45.3 130.3c.2.6-37.8-14.8-44.3-75.2S21.6-.3 25.7.4c7.7 1.4 17.5 16.2 26.8 15.8S71.7 10 71.7 10s-8.8 10.2-19.5 10.9-15.3-5.5-25.1 1.2C9.3 34.3 6.2 88.4 45.3 130.3"
class="cls-1"/>
<path d="M48.8 27.1c-.2-1 12.5 4.2 26.3-11.9C89.4-1.5 112.2 2 121.3 13.7c2.8 3.6 7 10.2 4.8 23.5a47.37 47.37 0 0 1-5.2 15.2 15.47 15.47 0 0 0-4-9.5s1.8-2 2.4-6.4a17.83 17.83 0 0 0-10.7-18.3c-18.4-7.5-33.9 18.4-59.8 8.9"
class="cls-1"/>
<path d="M83.5 74.6c3.5-4.4 8.4-9.5 12-13.8l-.5-.6a196.34 196.34 0 0 1-20.1.9H59a15.56 15.56 0 0 1-.6-4.7 28.83 28.83 0 0 1 .9-6.7h51c1.5 4.3 2.3 6.7 2.3 8.7a9.13 9.13 0 0 1-2 5L85.8 94.7c-3.3 4.4-8.1 9.6-11.7 13.8l.5.6c4.9-.4 10.4-.6 14-.6h7.3c6.8 0 12.6-.4 16.3-2a14.2 14.2 0 0 1 1.5 6.4c0 4.3-2.3 6.9-9.9 6.9H58.4c-1.5-4.3-2.1-6.1-2.1-8.1 0-1.6.6-3.4 2.4-5.7zm56 14.9c.6 11.8 4.7 20.3 17.7 20.3 7.6 0 14.8-2.3 21.2-5.4 2.6 2.3 4.4 6.4 5 9.4-7.3 4.8-18 7.9-28.6 7.9-24 0-31.4-17.6-31.4-36.7 0-21.1 10.7-37 31.8-37 19.6 0 30.1 13.5 30.1 30.4a50.08 50.08 0 0 1-1.1 11.2h-44.7zm0-10.7h30.7V77c0-9.9-4.3-18.2-15.2-18.2-9.7 0-14.7 7.6-15.5 20zm125.2 26c0 5 .6 9.5 2.6 12.9a17.64 17.64 0 0 1-9.9 3.1c-6.2 0-8.4-3.3-8.4-9.4v-36c0-9.5-2.1-13.6-9.4-13.6-6.1 0-13.9 3.3-19.2 8.8v49.2a45 45 0 0 1-7.8.6 38.46 38.46 0 0 1-7.9-.6V50l.9-.9h5.9c5.9 0 8.4 3.3 8.7 8.8 6.5-5.5 15.1-9.5 24.2-9.5 14.3 0 20.2 10.2 20.2 23.3v33.1zM325.5 55a16.65 16.65 0 0 1-.8 5.5l-18.7-.3v42.4c0 3.8 1.7 6.2 6.2 6.2h10.5a21.27 21.27 0 0 1 1.2 7.4 10.88 10.88 0 0 1-.3 3.1 146.84 146.84 0 0 1-17 1c-10.4 0-16-4.8-16-14.6V60.4l-11.3.1a19.76 19.76 0 0 1-.6-5.5 26.25 26.25 0 0 1 .6-5.4l11.3.3V37.4c0-6.5 1.8-9.4 8.4-9.4h5.9l1.1 1v21l18.7-.4a15.08 15.08 0 0 1 .8 5.4zm35.6 64.8a45 45 0 0 1-7.8.6 37.33 37.33 0 0 1-7.9-.6V67.9c0-5.1-1.7-7.4-6.7-7.4H337a18.76 18.76 0 0 1-.8-5.2 22.07 22.07 0 0 1 .8-5.4c3.8-.4 7.5-.6 9.6-.6h2.1c7.6 0 12.3 4.8 12.3 12.6v57.9zm-19-95.8a19.84 19.84 0 0 1 8.4-1.7c2.7 0 6.7.7 8.4 1.7a15.34 15.34 0 0 1 1.4 6.4 14.44 14.44 0 0 1-1.4 6.2c-1.5 1.1-5.6 1.8-8.4 1.8-3 0-6.7-.7-8.4-1.8a14.78 14.78 0 0 1-1.4-6.2 16.25 16.25 0 0 1 1.4-6.4zm40.5 80.4c6.4 3.3 14.3 6.2 21.3 6.2 8.4 0 13.5-3.5 13.7-8.8 0-4-3.3-7.5-9.6-9.6l-8.5-3c-10.7-3.7-19.3-9.5-19.3-20.3 0-13 11.6-21 26.8-21a72.68 72.68 0 0 1 25 5.1c0 3.7-1.8 8.5-4.7 10.8-5.2-2.3-12.8-4.7-20.2-4.7-6.7 0-11 3.4-11 8.2 0 4.1 3 6.4 9.4 8.7l9.1 3.3c11.3 4 19.3 10.4 19.3 21.3 0 13.2-12 21.1-29.1 21.1a56.81 56.81 0 0 1-27.4-7.1 16.53 16.53 0 0 1 5.2-10.2zM489 55a16.65 16.65 0 0 1-.8 5.5l-18.7-.3v42.4c0 3.8 1.7 6.2 6.2 6.2h10.5a21.27 21.27 0 0 1 1.2 7.4 10.88 10.88 0 0 1-.3 3.1 146.84 146.84 0 0 1-17 1c-10.4 0-16-4.8-16-14.6V60.4l-11.3.1a19.76 19.76 0 0 1-.6-5.5 26.25 26.25 0 0 1 .6-5.4l11.3.3V37.4c0-6.5 1.8-9.4 8.4-9.4h5.9l1.1 1v21l18.7-.4a17.69 17.69 0 0 1 .8 5.4z"
class="cls-2"/>
</g>
</g>
</svg>
</div>
<div class="section_text">A global marketplace that connects <br> patients with hospitals, clinics, and
doctors
</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D1%8B"
class="section_wrap animate_project">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" id="kaf" width="120" viewBox="0 0 300.92 99.21">
<defs>
<style></style>
<linearGradient id="linear-gradient" x1="150.45" x2="149.96" y1="98.18" y2="4.02"
gradientTransform="matrix(1 0 0 -1 0 102)" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#9beb00"/>
<stop offset="1" stop-color="#6da900"/>
</linearGradient>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1">
<g id="Layer_2-2" data-name="Layer 2">
<path id="Слой_1"
d="M35.17 50.12l18.18 49H37.84L23 60.32V39.18L34.73 1.12h15.8zm35.52 49c.56-3 1.15-6.57 1.76-10s1.24-7 1.9-10h13.58l-2.36-14h-9c1.26-7 2.43-13.89 3.43-20.62.35-2.29.69-4.82 1-7.12L75 1.12h-.13c-3.29 17-6.58 32.74-9.87 49s-6.58 33-9.87 49zm158.78-10.2a.88.88 0 0 0 .06.58c-.13-.09-.09.39-.06.52s0-.12.06-.13v-1h-.06zm-.82-3.92c0 .12-.07.17-.09.28l.18-.18s-.05-.1-.09-.1zm.23 0l-.13.14h.06l.07-.14zm0 0c.08-.09.14-.16.13-.19a.36.36 0 0 0-.13.19zM164 1.12h-24v15h24zm-29 97.31V1.12h-15v98h15zm-23.29.69l-.1-.51a.64.64 0 0 0 .25-.15c0-.09-.07-.06-.08-.2s.1 0 .07-.11-.22 0-.28-.18.06-.22.16-.19c0-.14-.17-.06-.23-.13a1.5 1.5 0 0 1 .18-.53c-.11 0-.06-.15 0-.21s-.08 0-.1 0 0-.12 0-.24.12 0 .13-.09-.06-.32-.13-.34c.12-.07 0-.25.14-.3-.09-.18 0-.23 0-.42s-.15 0-.18-.15.11-.19.12-.21 0-.28.17-.25a.94.94 0 0 1 .05-.44c-.11-.76.18-1 .09-1.61a3.63 3.63 0 0 0-.42-1.1c-.11-.23-.17-.54-.3-.88s-.21-.41-.3-.64c-.23-.58-.21-1.09-.43-1.56-.17 0-.27-.12-.39-.25a5 5 0 0 0-.18-.76 2.75 2.75 0 0 0-.06-.45c0-.12-.14-.16-.17-.27a1.29 1.29 0 0 1 0-.34.58.58 0 0 1-.08-.6c0-.11-.08 0-.08-.14-.12-.92-.07-1.67-.15-2.54.06 0 0-.08.05-.1 0-.23-.19-.31-.2-.48.68.19.61-.77.62-1.45.12 0 .14-.11.2-.17a15.44 15.44 0 0 0-.44-2.45 5.7 5.7 0 0 1-.27-1.75 2.43 2.43 0 0 0 .49.75c.29.81.45-.08.15-.55 0-.18.13-.35 0-.61a2.78 2.78 0 0 1-.81-.28c-.15-.62-.29-1.19-.46-1.71a6.2 6.2 0 0 0-.41-1.14.47.47 0 0 0 0-.27c0-.07-.06.17-.11 0s.07-.08.06-.17a.43.43 0 0 0-.11-.32v.19a6.19 6.19 0 0 1-.39-1.72s0-.14.09-.17.09 0 .14 0-.08-.09-.09-.23h-.21a24.07 24.07 0 0 1-.88-4.19c.48 0 .17-.8.15-1.32 0-.07-.07 0-.09-.14a.84.84 0 0 0-.19-.45c-.07-.13-.11-.32-.19-.45a4.46 4.46 0 0 1-.31-.52 6.29 6.29 0 0 1-.58-2c.05 0 .06-.1.12-.12a2.71 2.71 0 0 0 0-1.42 6.64 6.64 0 0 0-.51-1 5.39 5.39 0 0 1-.55-1.41c.06 0 .08 0 .12-.06a1.63 1.63 0 0 0-.05-.75 3.64 3.64 0 0 1-.46-1.37 9.11 9.11 0 0 1-.4-1.94c0-.13.1-.18 0-.38s-.1-.14-.19-.11c-.22-.41-.49-1.29-.26-1.63a9.06 9.06 0 0 0 .65 1.3c.47.48.21-.94.19-1.3.09.1.24 0 .27-.09.29.34.28-.4.44-.4s0 .15.06.17a4.81 4.81 0 0 0-.15-.76c-.06 0-.06-.08-.11-.07s0 .21-.08.29a.57.57 0 0 1-.21-.14c-.39 0-.6-.93-1-.65-.21-.19-.57-.16-.68-.53a9.39 9.39 0 0 1-.35-2.13c.57.26.1-1 .16-1.35.15.1.18.33.29.49.22.32.53.39.75.72 0 .28 0 .6-.14.71a1.89 1.89 0 0 0 .34 1.4.36.36 0 0 1 .27.13c.13-.08.3-.11.37-.26a3.91 3.91 0 0 0-.16-.89c.05 0 .13-.07.15-.15s.09.27.19.26c.07-.31.27-.47.13-1-.12-.15-.21 0-.31 0-.43 0-.53-1.5-.79-2.13.29 0 0-.71.08-.91.09 0 .1.26.19.27s-.05-.37.11-.36a2.35 2.35 0 0 0-.08-.47c0-.06-.08 0-.09-.07a.86.86 0 0 0-.5-.63.28.28 0 0 0 .17-.07c0-.34.18-.6 0-1.07a3 3 0 0 1-.33-.27c-.19.11-.06.56-.14.8a1.91 1.91 0 0 1-.27-.65c-.23-.85-.37-1.79-.68-2.7-.17.32.08.92.06 1.37 0 .14-.07.22-.07.35a4.36 4.36 0 0 1 .07.81c-.09 0-.18 0-.17-.21 0 0 0 .06-.1 0a2.46 2.46 0 0 1-.49-.75c-.17 0-.36 0-.42-.34a2 2 0 0 1-.57-.34c-.39-1.23-.53-2.44-.78-3.6.12-.06.29-.07.32-.22-.12 0-.25.16-.36.14-.08-.37-.17-.86.11-.76a3.32 3.32 0 0 0 0-.85c-.06 0-.1 0-.12-.06A17.62 17.62 0 0 1 99 31.7a.49.49 0 0 0 .11.16h.24c.08-.35-.18-.68-.26-1h.1a2.56 2.56 0 0 0-.06-.51.7.7 0 0 1-.35-.66c.09.06.12.28.24.25.05-.23-.13-.48-.2-.66s.09 0 .12-.12c-.14-.52-.16-.92.09-1a3.53 3.53 0 0 0-.33-1.77 2 2 0 0 0-.16-.55c0 .18.06.28-.06.32s.06.28 0 .31-.18-.49-.39-.53 0 .3.07.41c-.14-.16-.34-.23-.44-.52a4 4 0 0 0-.1-.47 11.48 11.48 0 0 1-.35-2c.19 0 .36.21.5 0 .12.28.33.36.47.57s.08.32.21.38 0-.18.1-.21c.12.17.29.15.44.24.07-.46-.4-1.47-.23-1.82.17.1.12.39.29.55s0-.12.1 0 .06.18.13.16c0-.2-.09-.37 0-.48s0 0 .1 0a1.37 1.37 0 0 0-.41-1.14c-.14-.43-.21-.79-.36-1.21 0 0 0-.13.1-.15s.15.39.29.4a1.87 1.87 0 0 0-.84-1.65 12.77 12.77 0 0 1-.43-1.22c0 .18 0 .28-.14.31s.1.47 0 .55c-.16-.21-.15-.65-.35-.75 0-.06.08 0 .05-.1s-.06 0-.1 0a1.22 1.22 0 0 1 0 .33s0-.08-.06 0a8.72 8.72 0 0 1 .2 1.61c0-.07 0 0-.07 0-.38-1.59-.71-3.5-1.05-5.26h.18c.05 0 0 .28.11.31.06-.25-.16-.69 0-.72s.15.26.29.31c0-.26-.13-.28-.18-.48a.41.41 0 0 0 0-.36s0 .08.08 0a3.66 3.66 0 0 0-.18-1h-.1a5.41 5.41 0 0 1 .11-1c.13 0 .16-.16.22-.26 0-.59-.4-.44-.53-.68s-.12-.66-.29-1.07c-.2.09-.18.41-.22.66-.16-.12-.24-.5-.37-.75 0-.08.06-.08 0-.19A1.73 1.73 0 0 1 95 8.5c.15 0 0-.21 0-.4a.68.68 0 0 1 .12-.21 3.23 3.23 0 0 0 .1.9.12.12 0 0 1 .11.07c0-.32.07-.59.07-.93.06.17.12.35.23.38a4.47 4.47 0 0 0-.27-1c-.08 0-.09.11-.17.07a1.47 1.47 0 0 1-.13-1h.12s0 .33.11.34a3.31 3.31 0 0 1-.16-1.25c.15.09.24.37.37.53h.12a3.4 3.4 0 0 0-.52-1.45h.13a1.56 1.56 0 0 0-.23-.86c-.11.08-.21.48-.41.24.39.19.18-.51.3-.74a1.06 1.06 0 0 1 0-.45 4.53 4.53 0 0 0-.5-1.46c.07.18 0 .19 0 .25a1.49 1.49 0 0 1-.06.5c-.06.08-.31 0-.4-.22h-.25c0-.13-.06-.16-.08-.29s-.08.29-.05.44a.1.1 0 0 1-.09-.07c0-.07 0 .34-.08.32s0-.07 0-.15c-.09.08-.1-.09-.17-.09 0 .18.06.34 0 .43-.09-.16-.17-.15-.27-.22a.79.79 0 0 1-.06.32c-.14 0-.31-.23-.46-.08-.14-.14-.27-.28-.41-.41l-.16-.8H80.12l16.27 98zM19.17 71.84a17.25 17.25 0 0 0-.17-6.06c-.3-.36-.67-.32-1-.79.41-.11.08-1 0-2 .15 0 .26-.14.32-.41-.25-3.34-1.06-3.63-1.64-2.32-.38-3.48-1.59-11.94-.32-11.45.12-.81-.32-1-.33-2.63.27 0 .28-.78.43-1.12a90.49 90.49 0 0 1-1.25-10.89c.39-.83.57-1.62 1.1-1.62-.18-3 1-2.39 1-5a18.35 18.35 0 0 0-1.88-6c.24-1 .06-1.17-.15-2.67.34-.37.72-.62.61-2.17a9 9 0 0 1-.89-2.44V5a1.33 1.33 0 0 0 .14-.29c-.06 0-.11-.21-.14-.44V1.12h-2.33C11.84.4 11-.28 10 .12a6.63 6.63 0 0 1 0 1H0v98h15V98a.66.66 0 0 1 1 .3c.33-1.3 1.22-.84 1.45-.92a4.23 4.23 0 0 1-.09-.76c.68-.24.93-.12.91 1.14A15.55 15.55 0 0 0 18.5 95c-.18-.43-.48-.18-.61-.87a2.33 2.33 0 0 0 1-2.26 5.32 5.32 0 0 1-1.44-3c.26.19.12-.7.29-.74.06.66-.2.47 0 1.36l1.14-.27c-.26-1.27.16-.74.14-1.39-.57-.21-.7 0-1.11.6a5.6 5.6 0 0 0-.91-2.87c.61.57 1-.55 1.6 0-.15-.89.11-.71 0-1.37-.1-.49-.56-1.28-.41-1.6.13.73.51 0 .38-.76-.44-1-.27.09-.58.47-.32-.73-.91-1-.85-2.51a1.26 1.26 0 0 1-1.71-.51v-.09c.3-.32.33-1.48.73-.85.17-3.59 2-2.74 2.31-6 .14.15.42-.49.47.23.26 1.62-.06 1.68.1 3 .42.27 1 .22.93-1.57-.19-1.13-.59-1.08-.8-2.16zM160 42.12h-20v15h20zm98.65 24.23c-.43-.1-1.12-.2-.56-.34a20.53 20.53 0 0 1 2.82.06c.39-.08 1-.05 1 .08a5.2 5.2 0 0 0-1.27.06 6.33 6.33 0 0 0 1.27 0c-.16.11.59.11.85.06-.06 0-.55 0-.42-.08l1-.06c0-.05-.55 0-.42-.08h.42c.28 0 .85-.09.42-.16A16 16 0 0 1 262 66c.5-.09 1.64 0 2-.08a2 2 0 0 0 .56 0s-.13 0-.14.06h2.26c.08-.07.65-.07.7-.14.31 0 .3.05.28.1a1.13 1.13 0 0 0-.71.1 1.91 1.91 0 0 1 .56.06c.56 0 .4-.14.71-.2a2.38 2.38 0 0 0-.42 0s.24-.05 0-.06c.06 0 .77 0 .7-.06a5.92 5.92 0 0 0-.85 0c.94-.09 1.93-.1 2.4-.22h.6c.84-.08.16-.52.78-.52h.09L261.17 1h-15.7l12.31 65.31h.54c.18.13-.01.07.33.04zM271.19 68c-.65 0-.22.1-.56.12a5.72 5.72 0 0 0-1.41-.14 12.77 12.77 0 0 1-3 .14 4.25 4.25 0 0 1 .71-.06c-.49-.28-1.42-.12-3-.08.17-.13.07-.17-.56-.22a3.56 3.56 0 0 0-.85.12c-.26 0-.47-.06-.56 0-.3 0 .15-.11-.28 0s.2-.09.28-.12a9.87 9.87 0 0 0 1.41 0c.31 0 .06-.07.14-.1l2.68-.06a10 10 0 0 0-1.69 0c-.15-.07.53 0 .42-.1a5.78 5.78 0 0 0-.84 0 8.42 8.42 0 0 1 1.13-.16c.08-.08-.1-.13-.14-.2h.28a23.35 23.35 0 0 1 3.24 0h-1a2.36 2.36 0 0 0 .85.06c.34 0 .19-.15.71-.08a.82.82 0 0 1 .28-.14c.65 0-.23.2.71.22-.09.17-.46.19.14.3-.08 0-.58.07-.28.08-.85 0-1.67.1-3.1.1-.16.17.73 0 .28.16h1.41c.16 0-.17.23-.84.24 0-.06.3-.08.42-.12-.1-.07-.51.12-.56 0-.34 0 .08.09-.42.06a10.22 10.22 0 0 0 3.24-.08 9.34 9.34 0 0 0-1-.06c.3 0 .44-.14-.14-.14 0-.06.76 0 .71-.1a3 3 0 0 0 .7 0c-.27 0-.1.08.14.1 0 .06-.35.06-.71.06-.12.06.22.06.28.1.47-.1.88.1 1.13-.06a2 2 0 0 0-.42 0 4.21 4.21 0 0 1 .71-.09v-.25a4.65 4.65 0 0 1-1 0c.14-.13.39-.29-.14-.46a.85.85 0 0 0 .28 0 6.62 6.62 0 0 0 .76.14l-.06-.34h-.13c-.67 0-1.6.11-2.26.16-.18 0-.48-.05-.42-.12a6.77 6.77 0 0 1-1 0 5.56 5.56 0 0 1 1 0c.08 0-.27 0-.28-.06-.47.11-1.21-.06-1.69 0a1.28 1.28 0 0 0 .42 0 2.65 2.65 0 0 0-.56.08 7.47 7.47 0 0 1-1-.1.92.92 0 0 0 .42.12c-.1.05-.66 0-.84.08.17.13-.11.12-.56.24a2.79 2.79 0 0 0-.56 0c-.59-.1.7-.1.85-.16-.43-.07-1-.13-1.55-.18-.15 0 0 .06-.28.1-.86 0-1.77.05-2.68 0 .34 0 1.39 0 1.27-.1a11.4 11.4 0 0 0-1.41 0c0-.08.55-.09 1-.06a7.94 7.94 0 0 0-2-.08c.26.15-.68.27-1.58.26a2.56 2.56 0 0 1 .86.09c-.07.07-.8.05-.42.14a2.33 2.33 0 0 1-.41-.07l6 32h13l-5-31a2.1 2.1 0 0 1-.67-.18zm15.36-1.42c.41 0 .68.06.7.14a24.1 24.1 0 0 0-2.82 0c-.21 0-.63 0-.56.08a9.6 9.6 0 0 0 1.41 0c.23.11-.68.05-.28.14a13.69 13.69 0 0 1-1.55 0c-.16 0 0 0 0 .06.36 0 .55 0 1.55.06v.22c-1 0-1.49.09-1.13.2-.33 0-.73-.05-.63 0a22.2 22.2 0 0 1-2.29-.18c-.23 0 .13.08 0 .14a3.51 3.51 0 0 0-.85 0c-.06-.08-.16-.33.42-.34a2.11 2.11 0 0 0-.43 0 2 2 0 0 1 .7-.08s0 .08.14.1A11.09 11.09 0 0 0 283 67a11.14 11.14 0 0 0-1.13 0c-.17-.06-.16-.17.56-.16-.43-.09-1.92 0-2.4-.1a6.14 6.14 0 0 1 1.13-.08 5.89 5.89 0 0 0-1.83.12h-1.13c-.41 0-.43.06-.42.12a1.54 1.54 0 0 0 .56 0 3 3 0 0 1 .84-.08 7.79 7.79 0 0 1-1.55.14 1.47 1.47 0 0 0 .71.2c0 .07-.48.07-.56.12a2.33 2.33 0 0 0 1.08.16c-.33 0-.89.08-.89.06v-.1a3.9 3.9 0 0 1-1 .06l5 31.7h.15l6.09-31.83H288a9.24 9.24 0 0 0-1.41 0s0 .1-.14.12c-.47 0-.14-.13-.56-.14.71 0 1.24-.12.65-.22a1.25 1.25 0 0 0 .5 0v.12h.54c.32 0 0-.15.14-.2h.65v-.14h-.68c.57-.11-.25-.05-.42-.14a3.36 3.36 0 0 0 1-.06h-.85c0-.09-.4 0-.56 0 0 0 .22-.08.14-.14a5 5 0 0 0 1.27 0 4.26 4.26 0 0 0-1 0c-.13-.06-.13-.06 0-.12a2.07 2.07 0 0 1 .56 0c0-.12-.65 0-.7-.14.68 0 .17-.05.42-.12a4.78 4.78 0 0 1 1 0h-.83c-1.35 0-.91.19-1.17.42zM271 65.69a1.59 1.59 0 0 0-.36-.05c.16.03.36.09.36.05zm13.8-64.57l-6.8 40.5-2.54 17.26 1.1 6.8c.31 0 .52-.05.34-.1a14.73 14.73 0 0 0 2.4 0s0 .08-.14.1a7.31 7.31 0 0 0 1 0 .77.77 0 0 0-.28-.06 11.24 11.24 0 0 0 1.41-.06c.13.08.3.12.14.2a6.65 6.65 0 0 0-1.13 0 7.46 7.46 0 0 0-1.55 0s.13 0 .14-.06a7.16 7.16 0 0 0-1.13.06 9.51 9.51 0 0 0 2.68.18c.27 0 .11-.08.56-.06-.1.11.7.13.14.28a2.43 2.43 0 0 0-.7 0c.39 0 .54.07.56.14a3.78 3.78 0 0 0-.85 0c-.12.08.3.08.56.1a6.55 6.55 0 0 1 1.41-.16 1.19 1.19 0 0 0 .28-.06c-.54 0-.32-.28-1-.26a5.08 5.08 0 0 1 1.27-.12h-.85a16.43 16.43 0 0 1 5.07-.08 1.7 1.7 0 0 1-.56.06 9.53 9.53 0 0 0 1 .1c-.14 0 .52-.05.56-.08a1.68 1.68 0 0 0-.42 0c.08 0 .7 0 .42-.12a2 2 0 0 1 .6.09l12.4-64.65zm-55.2 87.5c0 .15-.12 0-.11-.14v.45c0 .14 0 .18.09.09s.04-.23.02-.4zm-.27-.72a8 8 0 0 0-.12 1.07h.06c.05-.07 0-.27.09-.34 0 .15.08 0 .11-.11 0-.52-.08-.87-.13-.62zM196 15.12h47v-14h-47zm32.92 74.14c-.14-.09 0-.64 0-.93-.15-.07-.06-.52-.09-.76-.18 0-.12.59-.25.72a.57.57 0 0 1 0-.22c-.19.79-.26-2.07-.34-1.39-.17.13-.14-.4-.22-.55s-.09.36-.21.38v-.4c0-.21.41-.46.78-.8-.11-.73.23-1.32.06-1.94 0-.12.13-.14.14-.34 0 .14.1 0 .2.06a1.53 1.53 0 0 0 .09-.7c0 .08-.09.32-.15.21s.08-.28-.05-.27c.1-.14 0-.37.14-.47a1.7 1.7 0 0 1 .08-.92c.11.1-.07.25 0 .31a7.27 7.27 0 0 0 .17-1.22s-.11.18-.12.08v.44H229a1.85 1.85 0 0 1 .06-.61c0 .11 0 .17.11.06s-.07-.21-.11-.14c.07-.51 0-.9.11-1.4a.19.19 0 0 0-.08.12.52.52 0 0 1 0-.44c.08 0 .06.22.13.1v-.17c-.07 0-.07.07-.14 0a6.77 6.77 0 0 1 .13-1.4l.07.05c.07.05 0 .19 0 .27a1.49 1.49 0 0 1 .23-.73c-.1.1-.12-.06-.18-.15a3.91 3.91 0 0 0 0-1.19c-.08-.05 0 .19-.08.21a7.4 7.4 0 0 0 0-.79c-.16 0-.18.29-.34.28 0 .32-.17.34-.14.74.09 0 .07 0 .18.11s0 .23.08.23c-.16.92 0 1.53-.15 2.15-.09-.15 0-.64-.09-.76 0 .32-.31 1 0 1.19 0-.24.12-.17.11-.34.12.25 0 .67.06 1 0 .11-.1.1-.15.16-.12.74-.17 1.41-.24 2 0 0 0-.31-.1-.19a6 6 0 0 0 .12-1.58h-.14a.51.51 0 0 1 0 .22c-.07-.11 0-.45-.08-.54 0-1.07.15-2.29.15-3.56 0-.14-.05-.12-.06-.23.17-1.21.25-2.9.41-4-.12 0-.15-.11-.25-.11-.11.24-.14.65-.26.86-.09-.22 0-.8.16-.78a.85.85 0 0 1 .07-.35c.07 0 0 .13.11.1s.14-.24.09-.39c0 .09-.06.26-.15.25-.06-.26.13-.4.13-.69.05 0 .08.11.1.19s.06-.16.14-.12c0-.28-.07-.39 0-.58s0 .15-.08.13-.06-.43-.13-.59.27-.11.28 0a4.68 4.68 0 0 0 .19-1.66.36.36 0 0 0-.12.39c0 .18-.1.2-.12.38-.09-.05 0-.22 0-.35-.07.12-.06-.07-.11-.1a2.84 2.84 0 0 1 0-.39c-.14.28-.18-.2-.16-.41a.62.62 0 0 0 .06-.57c-.14.34 0 .81-.31.9a2.1 2.1 0 0 0-.08-.58c-.07 0-.08.14-.13.21-.18-.28.07-1.24 0-1.72-.09 0-.1.45-.16.69-.08 0-.12-.08-.1-.23 0 0-.05.12-.1.12s0-.38 0-.49a6.15 6.15 0 0 1 .06-1.23c-.1 0-.18.46-.13.69-.2.27-.13.85-.28 1.21 0 0 0-.14-.09-.05a10.38 10.38 0 0 0 .18-1.08c-.06 0-.05.08-.1.08v-.62c0-.08.08 0 .08-.12a.39.39 0 0 1 0 .14c.15-.12.06-.48.14-.74-.11.12-.08.36-.15.51a1.41 1.41 0 0 1 0-.66c0-.11-.08 0-.09 0v-.35c0-.13 0 .11.09 0a.89.89 0 0 1 .08-.48h.16c.1 0 0 .44.12.37 0-.28.08-.31.08-.57.09.21-.07.34-.07.7v1a.29.29 0 0 0 .2.06 3.54 3.54 0 0 0 .2-1.39 4.06 4.06 0 0 1 .16-.69c0-.24.08-.69.11-1 .09-1 .13-2.11.24-3.15.1-.07.13-.3.19-.47.07 0 .09-.07.16 0a8.6 8.6 0 0 0 0-1.11c0-.14.05-.15 0-.3.11 0 0 .35.12.36a2.54 2.54 0 0 1 0-.66c0-.13-.09.09-.08.21-.08-.28.08-.75 0-1.1-.08 0-.12.07-.19.07s-.09.24 0 .35-.05 0-.09 0a2.06 2.06 0 0 0-.12-.37.7.7 0 0 0-.08-.58 1.13 1.13 0 0 0-.08.65.1.1 0 0 1-.1.08 5.92 5.92 0 0 0-.05-.62c0 .2-.11 0-.15.21a12.57 12.57 0 0 1 .09-1.93c-.07-.06 0 .14-.1.08 0-1 .05-2.37 0-3.31l-.2-2.49c0 .08-.08 0-.1.08 0 .42-.13.44-.14.87-.07 0-.09-.09-.18-.06a4.54 4.54 0 0 1 .06-1c-.15.06-.11-.26-.2-.06v-.4c0-.08-.16 0-.26.06a3 3 0 0 1 0-.93 2.13 2.13 0 0 0 .44-.79s0 .1.06.09c.15-.26.06-.49.05-.83 0 0-.12.1-.09 0-.08.1 0 .25-.07.43s.07 0 .12 0 0 .08 0 .09h-.14c-.07 0-.05.13 0 .22h-.14c0 .27-.22.26 0 .35 0 .25-.12.2-.14.38a4.81 4.81 0 0 1 0-1.19 9.94 9.94 0 0 1 .22-2.14c.39.14.18-.57.28-.85-.24-.32 0-.92 0-1.33 0 .11-.05-.09 0-.18s0 .18-.12.12a.51.51 0 0 0 0 .18 14.8 14.8 0 0 1 0-3.09c-.06 0-.09.36-.1.48a7.88 7.88 0 0 1-.08 1.32c0 .09-.06.09-.12.08 0-.57.05-1.47.06-2.11-.13.45 0 1.11-.17 1.62 0 .06 0 0 .07 0 0 .29-.55-.73-.59-.46V20.12H212v79h15.09l.19-.5c0-1 .06-.32.12-1.54 0-.09.1.22.14 0s-.07-.12-.13-.15a7.91 7.91 0 0 0 .09-1.14c0-.1.08 0 .12 0s0-.23-.1-.19a5.9 5.9 0 0 0 0-1.19c0-.1.05-.24.15-.21-.22-.36-.06-1.1-.13-1.69.07-.05.11-.14.19-.16s-.05 0-.09-.05c.09-.27 1.47-.53 1.48-.79a13.61 13.61 0 0 0-1.52.17c-.09-.06 1.41-.2 1.43-.36-.09 0-.07.09-.16 0 0 .17-1.46.21-1.52.3-.13-.07 1.28-.22 1.23-.42.06 0 .26.11.31-.15a.34.34 0 0 0 .23 0 8.69 8.69 0 0 1 0-1.37v-.76c-.03.08-.12.17-.2.34zm-.36-4v.13a.69.69 0 0 1 0-.1z"
class="cls-1" data-name="Слой 1"/>
</g>
</g>
</g>
</svg>
</div>
<div class="section_text">The closed platform of online <br> TV channels for any device</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D1%8B"
class="section_wrap animate_project">
<div class="section_icon">
<svg id="scento" xmlns="http://www.w3.org/2000/svg" width="231" viewBox="0 0 231 22">
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1">
<path class="scento-1"
d="M223.92,21.32v-.45s2.35.11,2-2.19a4.49,4.49,0,0,0-.17-.74l-1.35-3.5-.4-1h-7.22l-.4,1-1.29,3.39a3,3,0,0,0-.08,1.65c.46,1.51,2.58,1.4,2.58,1.4v.45h-5.73v-.45s1.23-.06,2.24-2l2.66-7,3.3-8.59L220.51,2l.37-.91,1-.45h0v0s6.74,17.53,6.79,17.65a6.36,6.36,0,0,0,.69,1.31,3.9,3.9,0,0,0,1,1,1.35,1.35,0,0,0,.43.17l.17,0v.45Zm-.52-9.45L220.4,4l0,.09-3,7.8-.4,1h6.82Zm-23,9.05s1.92.09,2.35-1.48a2.12,2.12,0,0,0,.09-.57V3a3.1,3.1,0,0,0-.06-.51c-.4-1.65-2.38-1.56-2.38-1.56V.51h7.45v.4s-2-.08-2.38,1.56a3.33,3.33,0,0,0-.06.51V18.9c.12,2.13,2.47,2,2.47,2v.4h-7.48Zm-6.73-18V15.66H193L183.15.51h3.07L193,11V2.93c-.12-2.11-2.67-2-2.67-2V.51h5.7v.4S193.75.8,193.63,2.93Zm-1,18.39H192L179.57,2.19V18.84a1.55,1.55,0,0,0,.06.51C180,21,182,20.92,182,20.92v.4h-5.47v-.4s2,.09,2.41-1.59a3.08,3.08,0,0,0,.06-.51v-16c0-2-2.46-1.88-2.46-1.88V.51h5l11.12,17.11Zm-27.45-.45s2.35.11,2-2.19a2.82,2.82,0,0,0-.2-.74l-1.35-3.5-.37-1H158l-.37,1-1.29,3.39a3,3,0,0,0-.09,1.65c.43,1.51,2.58,1.4,2.58,1.4v.45h-5.73v-.45s1.23-.06,2.24-2l2.66-7,3.29-8.59-.66-1.74a2.1,2.1,0,0,0-.77-1l3.47.74c3.15,8.2,6.1,15.91,6.08,15.88.52,1.25,1,2.76,2.24,3.5a1.37,1.37,0,0,0,.43.17l.14,0v.45h-7Zm-.52-9-3-7.88,0,.09-3,7.8-.37,1H165ZM146.76,1.77a1.8,1.8,0,0,0-.31.71,1.58,1.58,0,0,0-.06.51V20.12a1.58,1.58,0,0,0,.06.51,1.88,1.88,0,0,0,.31.68l-3-1.85V2.16l-7.14,19.16h-.54L128.62,2.05V18.79c0,.11,0,.37,0,.37.29,1.85,2.44,1.77,2.44,1.77v.4h-5.47v-.4s2,.09,2.41-1.59a3,3,0,0,0,0-.51v-16C127.9.83,125.61,1,125.61,1V.51h5.19l6.65,17.08,6.36-17v0h5v.4A2.69,2.69,0,0,0,146.76,1.77ZM112.12,22c-5.16,0-9.34-4.9-9.34-10.9S107,.2,112.12.2s9.34,4.87,9.34,10.9S117.28,22,112.12,22Zm0-21.35c-3.67,0-6.65,4.61-6.65,10.3s3,10.3,6.65,10.3,6.68-4.61,6.68-10.3S115.82.66,112.12.66ZM94,1.08H91.72v19a2.18,2.18,0,0,0,.37,1.2l-3-1.85V1.08H86.9c-3.47,0-4,3-4,5.61h-.69V.51H98.63V6.69h-.69C97.94,4.07,97.42,1.08,94,1.08ZM75.19,2.93V21.32h-.66L62.09,2.19V18.84a3.2,3.2,0,0,0,.06.51c.4,1.65,2.41,1.57,2.41,1.57v.4H59.08v-.4s2,.09,2.41-1.59a2.55,2.55,0,0,0,0-.48v-16c0-2-2.44-1.85-2.44-1.85V.51h5L74.61,16.74V3c-.12-2.13-2.67-2-2.67-2V.51h5.7v.4S75.3.83,75.19,2.93Zm-36,18S41.63,21,41.63,19V2.93c0-2.11-2.46-2-2.46-2V.51H53.78V5.75H53.1c0-2.62-.55-4.67-4-4.67H46.65c-1.46,0-2.44.63-2.44,1.76v7.71h2C48.65,10.47,49,8.62,49,6.75h.52v8.14H49c0-1.88-.29-3.67-2.61-3.76H44.21V19c0,1.88,2.38,1.74,2.44,1.74h3.18c3.44,0,4-2.62,4-5.24h.69v5.84H39.17Zm-6.76-1.11a8.35,8.35,0,0,1-5.27,2h-.09c-7,0-9.43-5.81-9.43-10.47,0-11,9-11.21,9-11.21h.55A8.12,8.12,0,0,1,32.29,2a1.06,1.06,0,0,0,.23.14c1.35.46,1.32-1.65,1.32-1.65h.63l-.09,3.7,0,3H33.7V7.14c0-.4-.09-.8-.14-1.2a8.13,8.13,0,0,0-.66-2c-.12-.23-.26-.46-.4-.68a5.36,5.36,0,0,0-2.35-1.94,6.93,6.93,0,0,0-3-.68,5.46,5.46,0,0,0-1.81.23c-1,.31-4,1.79-4.64,8.48a15.4,15.4,0,0,0,.72,6.35c0,.11.09.2.11.31a13.54,13.54,0,0,0,.94,2,7.2,7.2,0,0,0,1.43,1.76,5.52,5.52,0,0,0,2,1.14,5.44,5.44,0,0,0,2.87,0,10.79,10.79,0,0,0,1.46-.51,6.35,6.35,0,0,0,1.35-.8c2-1.68,2.15-5.44,2.15-5.44h.77v3.36l.06,3.7H34S33.87,18.67,32.41,19.81ZM13,13.66A7.82,7.82,0,0,1,13,14.8l-2.52-1.57C9.51,11.56,7.14,10.13,5,9A5.12,5.12,0,0,1,2.27,4.84a5,5,0,0,1,.4-2.5A4.17,4.17,0,0,1,4.56.51,6.15,6.15,0,0,1,6.45,0a5,5,0,0,1,.66,0h.06a4.24,4.24,0,0,1,1.2.17A5,5,0,0,1,10,.91c.37.23.94.63,1.29.17a1.76,1.76,0,0,0,.29-.63l.06-.34h.49l-.06,5.21h-.54a8.43,8.43,0,0,0-.37-1.68,5.89,5.89,0,0,0-.89-1.74,5.87,5.87,0,0,0-.72-.74A3.52,3.52,0,0,0,8.43.68a3.45,3.45,0,0,0-3,.28,4,4,0,0,0-.92.91S2.27,5,7.85,7.69C11.23,9.34,13,11.59,13,13.66ZM.11,7.86V7L2.84,8.65a8.64,8.64,0,0,0,2.89,2.08c3.35,1.62,5.16,3.87,5.16,5.95A6.38,6.38,0,0,1,10.77,18,4.38,4.38,0,0,1,9,20.61a5.38,5.38,0,0,1-2.35.88,6,6,0,0,1-1.75.08,5.82,5.82,0,0,1-1.72-.4,6.84,6.84,0,0,1-.8-.37,4.43,4.43,0,0,0-.77-.48.61.61,0,0,0-.72,0A1.54,1.54,0,0,0,.54,21a1.64,1.64,0,0,0-.06.37H0l0-6.09H.6v.14a8.29,8.29,0,0,0,.49,2.48A6.41,6.41,0,0,0,2,19.61a4.54,4.54,0,0,0,.75.74,2.73,2.73,0,0,0,1,.54l.72.17a4.32,4.32,0,0,0,1.6,0,3.35,3.35,0,0,0,2.52-3c.37-2.42-3-4.44-5.73-6A5.12,5.12,0,0,1,.11,7.86Z"/>
</g>
</g>
</svg>
</div>
<div class="section_text">The online fragrance <br> exchange site for new and used perfumes</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D1%8B"
class="section_wrap animate_project">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" id="openfreecabs" width="176" height="26" x="0px" y="0px">
<path fill-rule="evenodd"
d="M171.255 8.894c-.457-.41-1.063-.613-1.82-.613-.702 0-1.276.163-1.72.488-.444.326-.665.76-.665 1.306 0 .492.206.874.62 1.147.412.273 1.247.548 2.504.825 1.257.276 2.243.606 2.96.988.716.383 1.248.842 1.595 1.378.346.537.52 1.188.52 1.952 0 1.284-.532 2.323-1.595 3.118-1.064.796-2.457 1.193-4.18 1.193-1.17 0-2.21-.21-3.124-.633-.913-.42-1.625-1-2.135-1.74-.51-.738-.765-1.533-.765-2.386h3.112c.044.756.33 1.338.857 1.747.526.41 1.225.614 2.095.614.844 0 1.485-.16 1.925-.48.44-.322.66-.742.66-1.26 0-.572-.236-1.007-.706-1.306-.47-.298-1.25-.562-2.34-.79-1.09-.23-2-.52-2.73-.87-1.6-.774-2.4-1.895-2.4-3.362 0-1.23.52-2.26 1.557-3.085 1.038-.825 2.356-1.24 3.956-1.24 1.705 0 3.082.423 4.133 1.267 1.05.844 1.574 1.938 1.574 3.283h-3.203c0-.615-.228-1.128-.685-1.536zm-15.412 11.78c-1.67 0-2.97-.603-3.903-1.807l-.158 1.543h-2.9V.16h3.203v7.356c.923-1.09 2.167-1.635 3.73-1.635 1.74 0 3.108.647 4.1 1.94.994 1.29 1.49 3.097 1.49 5.418v.184c0 2.215-.493 3.977-1.482 5.287-.99 1.31-2.35 1.963-4.08 1.963zm2.36-7.53c0-1.545-.273-2.706-.818-3.48-.545-.772-1.336-1.16-2.373-1.16-1.39 0-2.364.607-2.927 1.82v5.88c.572 1.24 1.556 1.86 2.953 1.86 1.002 0 1.776-.375 2.32-1.122.546-.747.827-1.876.844-3.388v-.41zm-15.684 5.934c-1.02 1.064-2.268 1.595-3.745 1.595-1.433 0-2.602-.408-3.507-1.226-.905-.817-1.358-1.828-1.358-3.032 0-1.52.565-2.687 1.694-3.5 1.13-.813 2.745-1.22 4.845-1.22h1.964v-.936c0-.74-.207-1.33-.62-1.774-.413-.444-1.04-.666-1.885-.666-.73 0-1.328.183-1.794.547-.466.365-.7.83-.7 1.39h-3.203c0-.78.26-1.513.778-2.194.52-.68 1.225-1.215 2.117-1.602.892-.385 1.888-.58 2.986-.58 1.67 0 3.002.42 3.995 1.26.993.84 1.503 2.02 1.53 3.54v6.434c0 1.283.18 2.307.54 3.07v.226h-3.27c-.14-.273-.263-.717-.37-1.332zm-.106-5.366h-1.727c-1.187 0-2.08.207-2.677.62-.597.413-.896.998-.896 1.753 0 .616.204 1.106.613 1.47.41.365.956.547 1.64.547.634 0 1.23-.153 1.788-.46.558-.308.977-.722 1.26-1.24v-2.69zm-21.172 2.636c.742 1.09 1.83 1.636 3.263 1.636 1.31 0 2.294-.295 2.953-.883.66-.588 1.076-1.568 1.252-2.94h3.322c-.193 2.05-.95 3.646-2.267 4.793-1.32 1.147-3.072 1.72-5.26 1.72-1.53 0-2.877-.362-4.04-1.087-1.166-.725-2.064-1.756-2.697-3.092s-.963-2.887-.99-4.654v-1.793c0-1.81.322-3.405.963-4.785.643-1.38 1.564-2.444 2.763-3.19 1.2-.748 2.586-1.12 4.16-1.12 2.118 0 3.823.572 5.115 1.72 1.292 1.146 2.043 2.77 2.254 4.87h-3.322c-.158-1.38-.56-2.375-1.206-2.986-.646-.61-1.593-.916-2.84-.916-1.45 0-2.565.53-3.343 1.59-.777 1.06-1.175 2.615-1.192 4.665v1.702c0 2.076.37 3.66 1.114 4.75zm-14.827.74c.69.685 1.558 1.028 2.604 1.028 1.467 0 2.662-.594 3.585-1.78l1.727 1.648c-.57.852-1.334 1.514-2.287 1.984-.954.47-2.024.705-3.21.705-2.03 0-3.677-.64-4.938-1.918-1.26-1.28-1.892-2.98-1.892-5.11v-.394c0-1.423.275-2.695.824-3.816.548-1.12 1.32-1.993 2.313-2.617.993-.624 2.1-.936 3.322-.936 1.943 0 3.443.62 4.502 1.86 1.06 1.24 1.59 2.993 1.59 5.26v1.292h-9.322c.097 1.178.49 2.11 1.18 2.795zm4.977-5.142v-.238c-.07-1.072-.356-1.883-.857-2.432-.5-.55-1.195-.824-2.083-.824-.88 0-1.59.308-2.13.923-.54.615-.885 1.472-1.034 2.57h6.104zm-19.5 5.14c.69.687 1.558 1.03 2.604 1.03 1.468 0 2.663-.594 3.586-1.78l1.727 1.648c-.573.852-1.335 1.514-2.29 1.984-.952.47-2.022.705-3.21.705-2.03 0-3.675-.64-4.936-1.918-1.26-1.28-1.892-2.98-1.892-5.11v-.394c0-1.423.275-2.695.824-3.816.55-1.12 1.32-1.993 2.314-2.617.993-.624 2.1-.936 3.322-.936 1.942 0 3.443.62 4.502 1.86 1.06 1.24 1.59 2.993 1.59 5.26v1.292H90.71c.097 1.178.49 2.11 1.18 2.795zm4.977-5.14v-.238c-.072-1.072-.357-1.883-.858-2.432-.5-.55-1.195-.824-2.083-.824-.88 0-1.59.308-2.13.923-.54.615-.886 1.472-1.035 2.57h6.104zM85.2 8.966c-1.468 0-2.457.563-2.966 1.688v9.756h-3.204V6.145h3.06l.078 1.595c.773-1.24 1.846-1.86 3.217-1.86.457 0 .835.063 1.133.186l-.013 3.006c-.422-.07-.857-.106-1.305-.106zm-17.04.646h7.724v2.69H68.16v8.108h-3.335V1.214H77.02v2.69h-8.86v5.708zM57.85 11.168c0-.905-.195-1.576-.586-2.01-.392-.436-1.03-.653-1.92-.653-1.29 0-2.253.584-2.886 1.753V20.41h-3.203V6.145h3.02l.09 1.648c1.056-1.274 2.44-1.912 4.154-1.912 2.97 0 4.48 1.702 4.534 5.103v9.427H57.85v-9.242zm-19.21 5.92c.69.685 1.558 1.028 2.604 1.028 1.468 0 2.663-.594 3.586-1.78l1.727 1.648c-.57.852-1.334 1.514-2.287 1.984-.954.47-2.024.705-3.21.705-2.03 0-3.677-.64-4.938-1.918-1.26-1.28-1.892-2.98-1.892-5.11v-.394c0-1.423.275-2.695.824-3.816.55-1.12 1.32-1.993 2.314-2.617.993-.624 2.1-.936 3.322-.936 1.943 0 3.443.62 4.503 1.86 1.06 1.24 1.588 2.993 1.588 5.26v1.292h-9.32c.097 1.178.49 2.11 1.18 2.795zm4.977-5.142v-.238c-.07-1.072-.356-1.883-.857-2.432-.5-.55-1.195-.824-2.083-.824-.88 0-1.588.308-2.13.923-.54.615-.884 1.472-1.034 2.57h6.104zm-17.1 8.727c-1.564 0-2.817-.514-3.757-1.542v6.764h-3.204V6.144h2.953l.13 1.45c.942-1.14 2.22-1.713 3.838-1.713 1.74 0 3.104.65 4.093 1.946.99 1.296 1.484 3.096 1.484 5.4v.196c0 2.206-.5 3.967-1.503 5.28-1 1.314-2.345 1.97-4.033 1.97zm1.497-10.916c-.567-.835-1.378-1.252-2.433-1.252-1.31 0-2.25.54-2.82 1.62v6.33c.58 1.107 1.53 1.66 2.848 1.66 1.02 0 1.817-.41 2.392-1.232.576-.822.864-2.068.864-3.738 0-1.423-.284-2.553-.85-3.388zm-15.26 9.776c-1.207.76-2.598 1.14-4.17 1.14-1.557 0-2.943-.38-4.16-1.14-1.218-.76-2.158-1.844-2.822-3.25-.664-1.406-1-3.028-1.008-4.865v-1.08c0-1.873.33-3.525.995-4.958.662-1.432 1.598-2.53 2.807-3.29C5.605 1.33 6.992.95 8.557.95c1.564 0 2.95.376 4.16 1.128 1.207.75 2.14 1.832 2.8 3.243.66 1.412.993 3.053 1.002 4.925v1.068c0 1.88-.326 3.53-.976 4.95-.65 1.42-1.58 2.51-2.79 3.27zm.43-9.222c0-2.126-.402-3.756-1.206-4.89-.805-1.134-1.945-1.7-3.422-1.7-1.44 0-2.568.564-3.38 1.693-.814 1.13-1.23 2.727-1.247 4.793v1.107c0 2.11.41 3.74 1.232 4.89.82 1.153 1.962 1.728 3.42 1.728 1.477 0 2.613-.56 3.41-1.686.794-1.125 1.192-2.77 1.192-4.93V10.31z"/>
</svg>
</div>
<div class="section_text">Web/mobile app system that shows <br> nearest taxis by your location</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/namba-food-startup-e6564e66806d"
class="section_wrap animate_project">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" id="nambafood" width="172px" height="39"
viewBox="0 0 191.72 58.89">
<path class="nf-1"
d="M47,29.34,44.14,55.72h-.89c-.74,1.5-3.64,2.8-14.46,2.8-3.57,0-8-.34-13.47-.88a62.15,62.15,0,0,0,7.43,1c-4.53-.33-8.67-1.05-11.26-2.2C10.21,54.12,9.37,49.39,8.82,44l.09.18c-.23-2.3-.5-5.25-.68-8.09h0l0-.45c-.05-.91-.1-1.8-.13-2.64-.13-2.9-.2-5.68-.24-8.13a7,7,0,0,0,1-.07,28.26,28.26,0,0,0,7.18,2,41.09,41.09,0,0,1,6,.08,36.72,36.72,0,0,0,7.37,1.16c3.31.13,6.83-.77,9.27-.83s6.18-.46,6.91-.41S47,29.34,47,29.34Zm0,0h0ZM44.23,3.86a13.48,13.48,0,0,0-3.88-.44,65.51,65.51,0,0,1-6.68.63,4.86,4.86,0,0,1-2.46-.73A37,37,0,0,0,24,.45,42.75,42.75,0,0,0,18,0h-.31C3,0,0,9.43,0,15.25c0,4,1.38,6.8,7.81,8.81h0C18.43,27.76,22,25.22,22,25.22h0v0a10.65,10.65,0,0,0,6.46,2c3.61,0,7.05-1.61,7-5.32a15.91,15.91,0,0,0,7,1.89c6.35,0,9.52-5.58,9.52-10.53A10.28,10.28,0,0,0,44.23,3.86Z"/>
<path class="nf-2"
d="M34.11,33.92a13.48,13.48,0,0,0-5.53,1.63,4.53,4.53,0,0,0-3.81-1.63,4.9,4.9,0,0,0-.87.09,12.65,12.65,0,0,1-4.31-.21c-1.57-.32-3-2.84-3.06-4a4.6,4.6,0,0,0,.37,5.31V49.7H20.6v-12a7.64,7.64,0,0,1,3.12-1c1.75,0,2.25,1.76,2.2,3.55a17.1,17.1,0,0,1,3.52-2.62,7.57,7.57,0,0,1,3.2-.83c2.45,0,2.71,2.36,2.71,5.29v7.6H39v-8c0-4.33-.63-7.76-4.85-7.76ZM33.06,45.31c-.19-1-2.05-3.33-3.67-.16A2.16,2.16,0,0,1,33.06,45.31Zm.45,1.11c-.68,6.44-3.2,8-4.65,8.38a3.59,3.59,0,0,1-.86.11,5.19,5.19,0,0,1-4.75-3.58.29.29,0,0,1,.38-.35,3.9,3.9,0,0,0,1.23.17c1.5,0,4.55-.64,8.15-4.94a.29.29,0,0,1,.33-.08.3.3,0,0,1,.17.3Zm-3.9,4.95a5.81,5.81,0,0,0-1.36,1.34,1.88,1.88,0,0,1,.53-1.22,12.26,12.26,0,0,0-3.67,1.81,3.88,3.88,0,0,0,6-1.21,1.52,1.52,0,0,0-1.48-.72Zm-3.54-6.14a1.5,1.5,0,0,0,.07-.35,1.57,1.57,0,1,0-3.15,0,1.55,1.55,0,0,0,.18.71,3.79,3.79,0,0,1,2.9-.35Z"/>
<path class="nf-3"
d="M56,15.81l-.08-.93a11.53,11.53,0,0,0-4-7.21,17.91,17.91,0,0,0-7.68-3.81c5.71,2,7.81,6.62,7.81,9.37,0,5-3.17,10.53-9.52,10.53a15.91,15.91,0,0,1-7-1.89c0,3.71-3.42,5.32-7,5.32A11.47,11.47,0,0,1,23,25.86,3.86,3.86,0,0,1,22,25a8.75,8.75,0,0,1-4,1.09,33.2,33.2,0,0,1-7.83-1.37q-1.25-.3-2.31-.64h0v.79a86.94,86.94,0,0,0,18.94,4s1.75.1,2.55.1a18.34,18.34,0,0,0,5.29-.66,26.15,26.15,0,0,1,7.65-1.22,19.15,19.15,0,0,1,3.38.29c.29.05,1.19,12.08-2.15,27.65-.06.31-1.33,3.36-14.7,3.36-3.57,0-8-.22-13.47-.76a62.16,62.16,0,0,0,7.43,1c2,.14,4,.21,6,.21a74.73,74.73,0,0,0,8.67-.47A22.87,22.87,0,0,0,45,56.48c1.71-8.69,2.48-21.56,2.83-30.42h-.49a21.31,21.31,0,0,1-2.85-.2,40.1,40.1,0,0,1-5.84-1.24h0a41.72,41.72,0,0,0,5.84,1.24,22.18,22.18,0,0,0,2.81.2h.59A11.81,11.81,0,0,0,51,25.55C54.72,24.33,56.29,21.45,56,15.81ZM67.49,43.44v-.28l0-.76,0-1.14,0-1.48c0-.54,0-1.12,0-1.76s0-1.29,0-2V34c0-1.47,0-3,0-4.44s0-2.7-.06-3.64,0-1.48,0-1.62a1.05,1.05,0,0,1,.87-1.09,2.51,2.51,0,0,1,.46,0,1,1,0,0,1,1,.61s.25.47.7,1.36,1,2.06,1.74,3.52,1.33,2.77,1.87,3.93,1,2.22,1.5,3.53c0-.53,0-1.34,0-2.4s0-1.83,0-2.32c0-.76,0-1.53,0-2.31s0-1.44,0-2l0-1.52,0-1.06,0-.4a.84.84,0,0,1,.4-.74,1.49,1.49,0,0,1,.81-.21h.13a1.53,1.53,0,0,1,.92.31.84.84,0,0,1,.3.78l0,.12v.86c0,.2,0,.43,0,.7l0,.85,0,1c0,.37,0,.73,0,1.11v1.22q0,.66,0,1.31,0,2.2,0,5c0,1.88.05,3.46.08,4.77s0,2,0,2.12a3.22,3.22,0,0,1,0,.44,1,1,0,0,1-.12.35.59.59,0,0,1-.31.27,1.73,1.73,0,0,1-.55.1h-.13a1.9,1.9,0,0,1-.91-.16,1.13,1.13,0,0,1-.51-.66s-.16-.42-.47-1.23l-1-2.51C74,39,73.58,38,73.09,36.76s-.95-2.24-1.35-3.13q-.8-1.83-1.6-3.43c0,.77,0,2,0,3.77,0,.55,0,1.1,0,1.66v1.58q0,.75,0,1.47c0,.49,0,.93,0,1.34l0,1.16,0,1,0,.72v.64a1.08,1.08,0,0,1-.06.3,1.07,1.07,0,0,1-.17.27.72.72,0,0,1-.39.22,2.63,2.63,0,0,1-.68.07,2.24,2.24,0,0,1-.69-.09.76.76,0,0,1-.39-.24,1,1,0,0,1-.15-.28,1.27,1.27,0,0,1,0-.31Zm13.32-.21c0-.07.08-.44.25-1.11l.79-3.23L83,34.09l.72-3c.26-1,.51-2,.76-2.81s.47-1.58.69-2.27.38-1.22.5-1.59l.19-.58A1.18,1.18,0,0,1,87,23.12h.14a1.1,1.1,0,0,1,1.18.82q.38,1.24,1.17,4.5t1.38,6L91.72,39l.61,3.19c.13.66.19,1,.19,1l0,.26a1,1,0,0,1-.21.61,1.15,1.15,0,0,1-.81.38H91.3a1.36,1.36,0,0,1-.76-.21,1,1,0,0,1-.52-.76q-.23-1.49-1.4-7.23l-3.68.16-.86,3.75-.58,2.52c-.12.51-.18.78-.18.8a1,1,0,0,1-.56.8,1.41,1.41,0,0,1-.6.13,2.13,2.13,0,0,1-.43,0c-.64-.12-1-.43-1-.94l0-.26Zm4.74-9.39,2.58-.11q-.63-2.85-1.14-4.88Q86.22,31.23,85.54,33.84Zm9,9.53q0-1.71,0-3.69c0-1.32.06-2.58.09-3.78l.11-3.58c0-1.19.08-2.27.12-3.24l.11-2.58c0-.75.06-1.33.08-1.76l0-.64a1,1,0,0,1,.31-.7,1.14,1.14,0,0,1,.69-.29h.15a1.39,1.39,0,0,1,1.38.66l.1.23.27.59.4.89c.15.34.32.75.52,1.24s.39,1,.6,1.54.43,1.17.68,1.88.49,1.43.72,2.18c.22-.72.46-1.43.7-2.13s.47-1.32.68-1.86.41-1.06.6-1.54.37-.9.53-1.25l.41-.9.29-.59.11-.23a1.14,1.14,0,0,1,.51-.54,2.17,2.17,0,0,1,.91-.15,1.11,1.11,0,0,1,.81.26,1.14,1.14,0,0,1,.27.72l0,.66q0,.64.06,1.76c0,.74.05,1.59.08,2.56s.06,2,.09,3.22.06,2.37.08,3.58,0,2.47.06,3.79,0,2.56,0,3.71a.89.89,0,0,1-.34.77,1.46,1.46,0,0,1-.87.25,1.79,1.79,0,0,1-1-.25.84.84,0,0,1-.39-.77q0-5.92-.25-13.24c-.08.18-.21.53-.4,1l-.46,1.21q-.17.43-.42,1.14c-.17.47-.33.94-.47,1.41s-.28,1-.42,1.46a1.13,1.13,0,0,1-1.24,1,1.22,1.22,0,0,1-1.27-1c-.17-.61-.35-1.23-.56-1.86s-.38-1.14-.53-1.54-.34-.9-.57-1.51-.4-1-.49-1.33q-.36,8.73-.4,13.24a1,1,0,0,1-.29.7,1.73,1.73,0,0,1-2,0,.88.88,0,0,1-.28-.69ZM110.29,43s0-.5.06-1.42.06-2.21.09-3.85,0-3.21,0-4.73q0-.81,0-1.61l0-1.49c0-.46,0-.9,0-1.34l0-1.18,0-1,0-.82,0-.59v-.38l0-.15v-.11a1.33,1.33,0,0,1,1.29-1.24h1l1.57,0a9.46,9.46,0,0,1,1.53.13,6.61,6.61,0,0,1,1.43.39,4.44,4.44,0,0,1,2,1.64,5.75,5.75,0,0,1,.75,2.93,5.78,5.78,0,0,1,0,.65,11.45,11.45,0,0,1-.16,2.13,4.56,4.56,0,0,1-1.08,2.16,3.18,3.18,0,0,1,.86.61,5.9,5.9,0,0,1,1.5,4.4c0,2.29-.5,3.91-1.5,4.88a4.92,4.92,0,0,1-3,1.32,19.36,19.36,0,0,1-2,.1c-.63,0-1.12,0-1.45,0h-1.48a1.45,1.45,0,0,1-.95-.4,1.41,1.41,0,0,1-.37-1ZM113,25.69q.13,2.64.13,6.3,3.11,0,3.75-.69a4.45,4.45,0,0,0,.51-2.66v-.37a3.37,3.37,0,0,0-.35-1.56,1.71,1.71,0,0,0-.81-.69,6.73,6.73,0,0,0-2.58-.34l-.65,0Zm0,16.12,1.56,0,.65,0a6.7,6.7,0,0,0,1.57-.16,2,2,0,0,0,1-.5,4.42,4.42,0,0,0,.75-3,3.53,3.53,0,0,0-.72-2.51q-1-1-4.34-1h-.32q0,4.09-.13,7.18Zm9.5,1.42c0-.07.08-.44.25-1.11l.79-3.23,1.17-4.8.72-3c.26-1,.51-2,.76-2.81s.48-1.58.69-2.27.38-1.22.5-1.59l.19-.58a1.17,1.17,0,0,1,1.1-.76h.14a1.09,1.09,0,0,1,1.18.82q.38,1.24,1.17,4.5t1.38,6l.87,4.53L134,42.2c.13.66.19,1,.19,1l0,.26a.94.94,0,0,1-.21.61,1.15,1.15,0,0,1-.81.38H133a1.37,1.37,0,0,1-.77-.21,1,1,0,0,1-.51-.76q-.23-1.49-1.4-7.23l-3.68.16-.86,3.75-.58,2.52c-.12.51-.18.78-.18.8a1,1,0,0,1-.56.8,1.41,1.41,0,0,1-.61.13,2.15,2.15,0,0,1-.43,0c-.64-.12-1-.43-1-.94l0-.26Zm4.74-9.39,2.58-.11q-.63-2.85-1.15-4.88Q127.87,31.23,127.2,33.84Zm15.74-9.38a1.27,1.27,0,0,1,.37-.94,1.15,1.15,0,0,1,.91-.4h1.31l1.23,0,1.09,0,.95,0,.72,0H150l.18,0h0a.72.72,0,0,1,.65.32,1.75,1.75,0,0,1,.27.93v.14a1.65,1.65,0,0,1-.18.8.76.76,0,0,1-.7.37l-.13,0h-.37l-.56,0h-.73l-.86,0-1,0h-1.07q.13,2.58.13,6.06l3.33-.08a.92.92,0,0,1,.78.35,1.5,1.5,0,0,1,.27.93,1.71,1.71,0,0,1-.25,1,.84.84,0,0,1-.74.37l-3.4.07c0,.49,0,1,0,1.52l0,1.48,0,1.39,0,1.29,0,1.13,0,.95v1.18l0,.18a.92.92,0,0,1-.28.66,1.39,1.39,0,0,1-1,.29,1.23,1.23,0,0,1-1-.34,1,1,0,0,1-.25-.72l0-.19v-.55l0-.83,0-1.09,0-1.28c0-.45,0-.94,0-1.46l0-1.57V34.7c0-.57,0-1.13,0-1.66s0-1.07,0-1.6V29.94l0-1.34,0-1.19,0-1,0-.83,0-.6v-.52Zm9.86,8.69a18,18,0,0,1,1-6.67,6.22,6.22,0,0,1,1.76-2.54,4.47,4.47,0,0,1,3-1.08q3.35,0,4.77,3.5a18,18,0,0,1,1,6.8,26.52,26.52,0,0,1-.75,7.34q-1.3,4.13-5,4.13a4.7,4.7,0,0,1-3.27-1.14,6.08,6.08,0,0,1-1.74-2.8,26.28,26.28,0,0,1-.78-7.52Zm2.58,0a23.13,23.13,0,0,0,.71,6.93,2.56,2.56,0,0,0,2.5,2,2.39,2.39,0,0,0,1.48-.48,3.72,3.72,0,0,0,1.09-1.87,24.3,24.3,0,0,0,.62-6.55,16.35,16.35,0,0,0-.78-5.82,2.58,2.58,0,0,0-2.41-1.91q-1.58,0-2.39,2a15.24,15.24,0,0,0-.82,5.68Zm11.26,0a17.91,17.91,0,0,1,1-6.67,6.21,6.21,0,0,1,1.75-2.54,4.47,4.47,0,0,1,3-1.08q3.35,0,4.77,3.5a18,18,0,0,1,1,6.8,26.62,26.62,0,0,1-.75,7.34q-1.31,4.13-5,4.13a4.7,4.7,0,0,1-3.27-1.14,6.11,6.11,0,0,1-1.74-2.8,26.32,26.32,0,0,1-.78-7.52Zm2.59,0a23.19,23.19,0,0,0,.71,6.93,2.55,2.55,0,0,0,2.49,2,2.38,2.38,0,0,0,1.47-.48A3.73,3.73,0,0,0,175,39.7a24.43,24.43,0,0,0,.62-6.55,16.33,16.33,0,0,0-.78-5.82,2.58,2.58,0,0,0-2.41-1.91q-1.58,0-2.39,2a15.24,15.24,0,0,0-.81,5.68Zm11.91-8.74a1.25,1.25,0,0,1,.37-.92,2,2,0,0,1,1.44-.43,11.41,11.41,0,0,1,3.33.43,6.7,6.7,0,0,1,2.84,1.64q2.44,2.42,2.58,7.88c0,.53,0,1,0,1.51a22.18,22.18,0,0,1-.3,3.93,7,7,0,0,1-1.76,3.8,6.13,6.13,0,0,1-3,1.71,13.11,13.11,0,0,1-2.28.37l-1.42.08-.35,0a1.54,1.54,0,0,1-1-.4,1.38,1.38,0,0,1-.37-.94V43q.11-3.61.11-7c0-.92,0-1.82,0-2.71l0-2,0-1.85,0-1.62,0-1.4,0-1.06v-1Zm2.61,1.29c0,.31,0,.93,0,1.85l.07,2.85q0,1.48,0,2.83V35q0,2.82-.06,6.79a6,6,0,0,0,4-1.29,5,5,0,0,0,1.1-2.58,19.14,19.14,0,0,0,.22-3.45q0-.65,0-1.35Q189,28.64,187.3,27a5.4,5.4,0,0,0-3.56-1.29Z"/>
</svg>
</div>
<div class="section_text">
The #1 delivery service of food, medicament's and everything else in Kyrgyzstan
</div>
</a>
<a target="_blank"
href="https://blog.maddevs.io/id-match-%D0%B8%D1%81%D1%82%D0%BE%D1%80%D0%B8%D1%8F-%D1%81%D0%BE%D0%B7%D0%B4%D0%B0%D0%BD%D0%B8%D1%8F-6c31e56482e6"
class="section_wrap animate_project">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" id="idmatch" width="115px" height="46px"
viewBox="0 0 94.51 26">
<path class="cls-1"
d="M0 26h9.36l5-26h-9.36zm23-26h-6v26h6v-.08a13.06 13.06 0 0 0 13-12.92 13.06 13.06 0 0 0-13-13zm17 8.54v-.74h3v.74l-1 .16v6.72l1 .16v.74h-3v-.74l1-.16v-6.71zm7.46-.74a3.51 3.51 0 0 1 3.7 3.69v1.17a3.5 3.5 0 0 1-3.7 3.68h-3.62v-.74l1-.16v-6.73l-1-.16v-.75h3.57zm-1.46.91v6.72h1.46a2.35 2.35 0 0 0 1.87-.78 2.92 2.92 0 0 0 .68-2v-1.18a2.9 2.9 0 0 0-.68-2 2.35 2.35 0 0 0-1.87-.78zm14.54.79l-2.84 6.83h-.77l-2.76-6.83.09 3.5v2.47l1 .16v.74h-3.11v-.74l1-.16v-6.76l-1-.16v-.75h2.43l2.72 6.93 2.75-6.93h2.44v.74l-1 .16v6.72l1 .16v.74h-3.07v-.74l1-.16v-2.42zm2.73 6.09l.63-.09 3-7.71h1l2.93 7.71.63.09v.74h-2.53v-.74l.64-.11-.57-1.57h-3.4l-.6 1.57.64.11v.74h-2.42zm2.73-2.65h2.71l-1.37-3.66zm12-5.14v1.88h-1l-.09-1h-1.91v6.72l1 .16v.74h-3.13v-.74l1-.16v-6.69h-1.9l-.08 1h-1v-1.91zm7 2.62h-.81l-.19-1.21a2.23 2.23 0 0 0-.69-.45 2.47 2.47 0 0 0-1-.18 2.39 2.39 0 0 0-2 1 4 4 0 0 0-.75 2.42v.13a4.08 4.08 0 0 0 .7 2.45 2.26 2.26 0 0 0 1.94 1 2.93 2.93 0 0 0 1.05-.18 2 2 0 0 0 .73-.45l.22-1.21h.8v1.52a3.2 3.2 0 0 1-1.11.85 3.75 3.75 0 0 1-1.71.37 3.45 3.45 0 0 1-2.73-1.23 4.56 4.56 0 0 1-1.07-3.09v-.16a4.61 4.61 0 0 1 1-3.1 3.44 3.44 0 0 1 2.75-1.23 3.7 3.7 0 0 1 1.71.38 3.29 3.29 0 0 1 1.16.85zm1.13-1.87v-.75h3.06v.74l-1 .16v2.95h4.21v-2.94l-1-.16v-.75h3.06v.74l-1 .16v6.72l1 .16v.74h-3.02v-.74l1-.16v-2.86h-4.18v2.87l1 .16v.74h-3.11v-.74l1-.16v-6.72z"
/>
</svg>
</div>
<div class="section_text">
A tool using Machine learning and Computer vision to identify if person on 2 photos is the same
</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D1%8B"
class="section_wrap animate_project">
<div class="section_icon">
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="diesel" width="42px" height="42px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 92 92" style="enable-background:new 0 0 92 92;" xml:space="preserve">
<path class="ds_0" d="M74.1,0C85,0,92,7,92,17.9v56.2C92,85,85,92,74.1,92H17.9C7,92,0,85,0,74.1V17.9C0,7,7,0,17.9,0
C17.9,0,74.1,0,74.1,0z"/>
<path class="ds_1" d="M73.8,51.6C69.6,58.2,63.6,63.3,55.7,67c-7.3,3.3-15.1,5-23.5,5H19.9l3.3-9.3l4.3-12.1l3.3-9.3l2.6-7.3h13.4
L36.6,62.7c11.2,0,18-1.8,23.8-12.1c2-3.9,3-7.1,3-9.7c0-4.2-1.2-7.3-3.6-9.1c-2.1-1.6-5.4-2.4-9.8-2.4l-26,0L13.5,20h42.2
c6.2,0,11.4,1.3,15.5,3.9c4.9,3.1,7.3,7.5,7.3,13.3C78.5,41.8,76.9,46.5,73.8,51.6L73.8,51.6z"/>
</svg>
</div>
<div class="section_text">
Android and iOS mobile apps for the most popular Diesel Forum in Kyrgyzstan
</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/online-tv"
class="section_wrap animate_project">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" id="yourcast" width="140" viewBox="0 0 254.2 52.3">
<path d="M208 16.5V3.1c0-2.4 2.6-3.9 4.6-2.7L243 17.9l-5.3 11.6h-.2l-5.7-12.7c-.1-.2-.3-.4-.6-.4H208zm19.9 5.1h-7.3v18.6c0 .3-.3.7-.7.7h-4.2c-.3 0-.7-.3-.7-.7V21.6h-7v27.7c0 2.4 2.6 3.9 4.6 2.7l23.1-13.3-7.8-17.1zm24.7 1.9l-4.9-2.8-7 15.1 12-6.9c2-1.2 2-4.2-.1-5.4zM96.8 23.2c0-3.6-3-6.6-6.7-6.6H81c-.3 0-.6.3-.6.6v20.3c0 .3.2.6.6.6h3.6c.3 0 .6-.3.6-.6v-7.8h2.1l4.1 8.1c.1.1.2.3.5.3H96c.5 0 .7-.5.5-.9l-4.2-7.8c2.6-1.2 4.5-3.4 4.5-6.2zm-7.1 2.5h-4.5v-4.8h4.5c1.3 0 2.3 1 2.3 2.3 0 1.3-1 2.5-2.3 2.5zm105.5-8.6v3.4c0 .3-.3.6-.6.6h-4.5V38c0 .3-.3.6-.6.6h-3.8c-.3 0-.6-.3-.6-.6V21.2h-4.5c-.3 0-.6-.3-.6-.6v-3.4c0-.3.3-.6.6-.6h14c.4-.1.6.2.6.5zm-84.8 10.7c0 3.5 2.6 6.4 6.2 6.4 1.5 0 3.1-.5 4.2-1.5.2-.2.6-.2.8 0l2.5 2.6c.2.2.2.6 0 .8-2.1 2.1-4.8 3.1-7.6 3.1-6.3 0-11.4-5-11.4-11.3 0-6.3 5.1-11.4 11.4-11.4 3.1 0 5.5 1 7.6 2.9.3.3.3.6 0 .9l-2.5 2.5c-.2.2-.6.2-.8 0-1.2-1-2.7-1.6-4.2-1.6-3.6.1-6.2 3.1-6.2 6.6zM18.5 17.4l-6.9 10.2v9.8c0 .3-.3.6-.6.6H7.4c-.3 0-.6-.3-.6-.6v-9.7L.1 17.4c-.2-.4 0-.9.5-.9h4c.2 0 .4.2.5.3l4.3 6.3 4.3-6.3c.1-.1.2-.3.5-.3h4c.3 0 .6.5.3.9zm122.6-.5c-.1-.2-.3-.3-.5-.3h-.3c-.2 0-.4.2-.5.3L130 38.1c-.2.4.1.8.5.8h3.5c.6 0 1-.4 1.1-.8l1.1-2.5h8.6l1.1 2.5c.3.6.5.8 1.1.8h3.5c.5 0 .7-.4.5-.8l-9.9-21.2zm-3 14.4l2.4-5.2 2.4 5.2h-4.8zM35.8 16.5c-6.1 0-11 4.9-11 11.1 0 6.1 4.9 11 11 11s11-4.9 11-11-4.9-11.1-11-11.1zm0 17.2c-3.3 0-6.1-2.8-6.1-6.1 0-3.4 2.8-6.2 6.1-6.2 3.4 0 6.1 2.8 6.1 6.2 0 3.3-2.8 6.1-6.1 6.1zm35-16.6v12.6c0 4.7-3.9 8.5-8.8 8.5-4.8 0-8.7-3.9-8.7-8.5V17.1c0-.3.3-.6.6-.6h3.8c.3 0 .6.3.6.6v12.4c0 2.1 1.6 3.9 3.8 3.9 2.2 0 3.8-1.7 3.8-3.9V17.1c0-.3.2-.6.6-.6h3.8c.3 0 .5.3.5.6zm101.3 15.6c0 3.2-2.8 6.5-7.4 6.5-4.1 0-6.4-1.7-7.1-2.4-.3-.3-.4-.4-.2-.9l1.5-2.6c.3-.4.9-.3 1.1-.2.1.1 2.4 1.7 4.5 1.7 1.3 0 2.2-.8 2.2-1.9 0-1.3-1.1-2.3-3.2-3.2-2.7-1.1-6.1-3.2-6.1-7 0-3.1 2.4-6.3 7.3-6.3 3.3 0 5.8 1.7 6.7 2.4.4.2.3.8.2 1l-1.6 2.4c-.2.3-.8.6-1.1.4-.3-.2-2.6-1.9-4.5-1.9-1.1 0-2 .8-2 1.6 0 1.2.9 2 3.4 3.1 2.4 1.1 6.3 3 6.3 7.3z"/>
</svg>
</div>
<div class="section_text">The platform of online TV channels <br> with a full web-based channel
management system
</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D1%8B"
class="section_wrap animate_project">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" id="veeqoo" width="120" viewBox="0 0 137.39 50.96">
<path class="vq-1"
d="M126.52,41.48A21.58,21.58,0,1,0,90,22a23.73,23.73,0,1,1,26.78,25.3A21.48,21.48,0,0,0,126.52,41.48Z"/>
<path class="vq-2"
d="M99,40.45a17.74,17.74,0,1,0,7.8-33.18A19.51,19.51,0,1,1,92.4,34,17.64,17.64,0,0,0,99,40.45Z"/>
<path class="vq-3"
d="M119.13,19.37A11.8,11.8,0,0,0,114.69,15a12,12,0,0,0-6.07-1.64,11.43,11.43,0,0,0-7.91,3.15,11.83,11.83,0,0,0-3.92,9,11.88,11.88,0,0,0,3.47,8.6,11.36,11.36,0,0,0,8.38,3.54,12,12,0,0,0,6.1-1.61,11.72,11.72,0,0,0,4.37-4.46,12.32,12.32,0,0,0,1.6-6.12A12.14,12.14,0,0,0,119.13,19.37ZM108.69,31.69A5.3,5.3,0,0,1,104.62,30,6.37,6.37,0,0,1,103,25.45,6.25,6.25,0,0,1,104.64,21a5.31,5.31,0,0,1,4.07-1.72,5.43,5.43,0,0,1,4.11,1.7,6.29,6.29,0,0,1,1.61,4.47A6.33,6.33,0,0,1,112.8,30,5.36,5.36,0,0,1,108.69,31.69ZM0,14H7.39L12.8,25.1,18,14h6.6L12.53,37.43h-.26Zm34.62,17.8a8.44,8.44,0,0,0,5.87-2.2l4,4c-2,2.2-5,3.8-9.7,3.8-7.85,0-12.86-5.07-12.86-12a11.84,11.84,0,0,1,11.67-12h.53C42,13.43,46.5,19.77,46,27.7H28.76C29.41,30.23,31.33,31.83,34.62,31.83ZM39,23a4.69,4.69,0,0,0-5-4,5,5,0,0,0-5.28,4Zm20.43,8.8a8.44,8.44,0,0,0,5.87-2.2l4,4c-2,2.2-5,3.8-9.7,3.8-7.85,0-12.86-5.07-12.86-12a11.84,11.84,0,0,1,11.67-12h.53c7.91,0,12.4,6.33,11.87,14.27H53.57C54.22,30.23,56.14,31.83,59.43,31.83ZM63.85,23a4.69,4.69,0,0,0-5-4,5,5,0,0,0-5.28,4Zm25.28,11.2c-1.25,2-3.56,3.2-7,3.2-5.87,0-10.62-5.07-10.62-12s4.75-12,10.62-12c3.43,0,5.74,1.2,7,3.2V14h6.59V51H89.13Zm.13-8.8c0-3.73-2-6.13-5.41-6.13s-5.54,2.4-5.54,6.13,2.18,6.13,5.54,6.13S89.26,29.17,89.26,25.43Z"/>
</svg>
</div>
<div class="section_text">Multichannel inventory management software for online e-commerce retailers
</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D1%8B"
class="section_wrap animate_project">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" width="97" id="eatigo" viewBox="0 0 97 34.4">
<path class="eg-1"
d="M43.63,6h5.29v5.09h3.81v4.12H48.93V21.9c0,1.63.52,1.94,2.28,1.94h1.52V28H49.34c-4.22,0-5.71-.8-5.71-4.84ZM26.29,16.33c.45-4.57,4.78-5.68,8.38-5.68,5.12,0,7.75,1.94,7.65,6.85l-.07,3.7A65.72,65.72,0,0,0,42.52,28h-4.6l-.1-1.73c-1.21,1.56-3.08,2.15-5.47,2.15-4.29,0-6.65-2.6-6.65-5.71a4.25,4.25,0,0,1,1.63-3.57c1.7-1.32,4.5-1.66,7.2-1.94l2.7-.28v-.42c0-1.63-1-2.25-2.94-2.25-1.7,0-2.94.62-3,2.15Zm11.07,4-2.77.28c-2.84.28-3.46.9-3.46,2s.76,1.9,2.49,1.9,3.74-.93,3.74-3.25v-.9Zm16.44-9.27h5.3V28h-5.3ZM72.57,25.33a5.91,5.91,0,0,1-4.81,2.25c-4.47,0-7.61-2.8-7.61-8.48S63.5,10.72,68,10.72a5.6,5.6,0,0,1,4.54,2.08V11.07h5.29V26c0,2.77-.76,4.84-2.25,6.26S71.87,34.4,69,34.4c-5.09,0-7.65-2.77-8.31-6l4.81-.1c.55,1.49,1.7,2,3.46,2a4.16,4.16,0,0,0,2.63-.73,3.07,3.07,0,0,0,1-2.53Zm.24-6.23c0-2.84-1.56-4.12-3.63-4.12s-3.63,1.28-3.63,4.15c0,2.56,1.52,4.19,3.63,4.19S72.81,21.69,72.81,19.1Zm15.13-8.41c4.78,0,9.07,2.8,9.07,8.9s-4.29,8.86-9.07,8.86-9-2.77-9-8.86S83.12,10.69,87.93,10.69Zm0,13.5c2.11,0,3.67-1.66,3.67-4.6S90,14.94,87.93,14.94,84.3,16.6,84.3,19.58,85.79,24.18,87.93,24.18ZM15.78,21.12h9.15A11.93,11.93,0,0,0,25,19.47c0-6.09-4.29-8.9-9.07-8.9s-9,2.8-9,8.9A8.69,8.69,0,0,0,9.3,25.85L5.75,28.33H16c3.93,0,7.52-1.87,8.68-5.93H19.41a3.68,3.68,0,0,1-3.46,1.82c-1.87,0-3.64-1-3.67-3.08h3.5ZM16,14.34c1.87,0,3.64,1,3.67,3.08H12.28C12.31,15.28,14.18,14.34,16,14.34Z"/>
<path class="eg-2"
d="M59.1,5.86v4.26l-5.3-4.26ZM17.5,2.8a4.92,4.92,0,0,0-8.69-.39l0,.06a3.28,3.28,0,0,1,.45.87,3.18,3.18,0,0,0-.55-.69l-.05-.05a3.43,3.43,0,0,0-1.44-.78,3.59,3.59,0,0,0-.92-.12A3.28,3.28,0,0,0,3,4.88a3,3,0,0,0,.35,1.39,3.21,3.21,0,0,0,.9,1.07,3.54,3.54,0,0,0,.38.25,3.74,3.74,0,0,1-.69-.33A3.59,3.59,0,0,1,3,6.43L2.9,6.37A4.09,4.09,0,0,0,.69,8,3.81,3.81,0,0,0,1,12.7l.17.18,0,0a4.07,4.07,0,0,0,1.2.79,4.54,4.54,0,0,0,3,.13A4.13,4.13,0,0,0,6.5,13.3a4,4,0,0,1-.9.92l.74,1.54a8.84,8.84,0,0,1,2.54-3.91A10.64,10.64,0,0,1,16,9.41h.27c-.09-.16-.52-1-.61-1.19l.16-.12C17.56,6.74,18.52,4.92,17.5,2.8Z"/>
</svg>
</div>
<div class="section_text"> The leading online reservations platform for restaurants in Hong Kong,
Singapore, Thailand, Malaysia, India & the Philippines
</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D1%8B"
class="section_wrap animate_project">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" id="iotsploit" width="140" viewBox="0 0 167 42.92">
<path class="iot-1"
d="M83.37,31.66a7.23,7.23,0,0,0,4.71,1.82c1.46,0,2.3-.62,2.3-1.65,0-2.59-8.21-1.94-8.21-7.37,0-3.25,2.85-5,6.33-5a8.49,8.49,0,0,1,5.58,1.88l-1.52,2.88a7,7,0,0,0-4.19-1.43c-1.43,0-2.3.55-2.3,1.59,0,2.62,8.21,1.88,8.21,7.3,0,2.92-2.46,5.1-6.26,5.1a9.46,9.46,0,0,1-6.49-2.43ZM37.31,13.38H41.5v23H37.31ZM55,19.49c5.07,0,9.12,3.61,9.12,8.66S60.06,36.81,55,36.81s-9-3.56-9-8.66S50,19.49,55,19.49Zm0,13.83a4.93,4.93,0,0,0,5-4.86h0v-.3a4.93,4.93,0,1,0-9.84,0A4.9,4.9,0,0,0,54.8,33.3H55ZM70.83,17H63.27V13.4H82.55V17H75V36.43H70.85Zm27.42,2.87H102v1.24a11.29,11.29,0,0,1,0,1.18h0a6.07,6.07,0,0,1,5.25-2.79c4.48,0,7.33,3.54,7.33,8.66s-3.22,8.66-7.56,8.66a6,6,0,0,1-4.78-2.33h0a9.6,9.6,0,0,1,.1,1.43v7H98.23Zm8.11,13.47c2.27,0,4.16-1.85,4.16-5.13s-1.73-5.2-4.13-5.2c-2.17,0-4.19,1.56-4.19,5.23,0,2.57,1.42,5.1,4.12,5.1Zm12.23-20h4.09V30.65c0,1.81.62,2.27,1.69,2.27a4.4,4.4,0,0,0,.62,0v3.61a10.64,10.64,0,0,1-1.3.1c-2.27,0-5.1-.58-5.1-5.32Zm17.58,6.11c5.07,0,9.12,3.61,9.12,8.66s-4.06,8.66-9.08,8.66-9.08-3.57-9.08-8.66S131.17,19.49,136.17,19.49Zm0,13.83a4.93,4.93,0,0,0,4.94-4.91v-.25a4.93,4.93,0,1,0-9.84,0,4.9,4.9,0,0,0,4.64,5.14h.26Zm13-13.45h4.16V36.43h-4.13Zm9.69,3.51h-2.14V20.1H159V15.36h4V20.1h3.77v3.28H163v6.46A2.94,2.94,0,0,0,166.25,33a3.31,3.31,0,0,0,.75-.06v3.61a10.58,10.58,0,0,1-1.26.1c-2.3,0-6.88-.68-6.88-6.23Z"/>
<path class="iot-2"
d="M151.23,13.15a1.93,1.93,0,1,1-1.93,1.93A1.93,1.93,0,0,1,151.23,13.15ZM39.4,6.73a1.93,1.93,0,0,0-1.87,1.45H33.3L30.89,5.76H0v1H30.47l2.42,2.42h4.63a1.93,1.93,0,1,0,1.87-2.42ZM31,11.55a1.92,1.92,0,0,0-1.16.4L28,10.1H0v1H27.57l1.64,1.64A1.93,1.93,0,1,0,31,11.58Zm4-7.69a1.93,1.93,0,1,0-1.83-2.42H0v1H33.15A1.93,1.93,0,0,0,35,3.86Z"/>
</svg>
</div>
<div class="section_text">Vulnerability scanner and firmware analyzer that helps to keep the IoT
perimeter safe
</div>
</a>
<a target="_blank" rel="nofollow" href="https://neureal.net/#/"
class="section_wrap animate_project">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" width="140" viewBox="0 0 538 134.02" id="neureal">
<path class="neureal-1"
d="M206,31.23a6.35,6.35,0,0,0-6.35,6.35V76.09a2,2,0,0,1-3.62,1.24L162.84,34.47a8.38,8.38,0,0,0-6.61-3.24h-3.1A4.76,4.76,0,0,0,148.37,36V98.32a6.35,6.35,0,1,0,12.69,0V58.51a2.09,2.09,0,0,1,3.73-1.28l35,45.16a5.88,5.88,0,0,0,4.65,2.28h2.05a5.87,5.87,0,0,0,5.87-5.88V37.58A6.34,6.34,0,0,0,206,31.23m58.11,41.85H243.07a3,3,0,0,1-2.87-3.88c2.06-6.46,7-10.69,13.5-10.69,7,0,11.54,4.47,13.32,10.71a3,3,0,0,1-2.89,3.86m-4.82-24.46c-17-3.17-32.57,10.39-32.57,27.7v.86c0,17.09,12.37,28.74,28.43,28.74,8,0,14.09-2.49,18.91-6.57a4.75,4.75,0,0,0,0-7.14,5.74,5.74,0,0,0-7.17-.33,18.89,18.89,0,0,1-11.53,3.66c-6.88,0-12.51-3.57-14.94-10.08a3,3,0,0,1,2.81-4h33.56A3.54,3.54,0,0,0,280.34,78v0c0-14.2-7-26.73-21-29.3m76.58.66a6.34,6.34,0,0,0-6.34,6.34V80.54c0,8.6-5.14,13.74-12.49,13.74-7.55,0-11.85-4.93-11.85-13.53V55.62a6.35,6.35,0,0,0-12.7,0v28.9c0,12.91,7.24,21.3,19.73,21.3,8.07,0,13.1-4,16.64-8.8a.37.37,0,0,1,.67.22v2.52a4.9,4.9,0,0,0,4.9,4.91h2.88a4.91,4.91,0,0,0,4.91-4.91V55.62a6.34,6.34,0,0,0-6.35-6.34m50.59-.87c-7,1-11.85,5.5-14.9,11.78a.37.37,0,0,1-.7-.16V55.26a6,6,0,0,0-6-6h-.73a6,6,0,0,0-6,6V98.32a6.35,6.35,0,1,0,12.69,0V83.58c0-12.59,5.7-19.71,14.34-21.48,2.67-.55,5-2.68,5.24-5.41l0-4.8a3.52,3.52,0,0,0-4-3.48M497.19,84.63c0,6.92-6.29,11.65-14.69,11.65-6,0-10.69-2.94-10.69-8.19v-.2c0-5.35,4.71-8.61,12.69-8.61a37.34,37.34,0,0,1,11,1.62,2.43,2.43,0,0,1,1.69,2.34Zm-12.06-36.2A46.58,46.58,0,0,0,469,51.05a5.46,5.46,0,0,0,3.44,10.35,35.63,35.63,0,0,1,10.89-1.64c8.08,0,12.79,3.54,13.52,10,0,.63-.09,2.43-2,2.26a46.69,46.69,0,0,0-13.15-1.67c-12.91,0-22.46,5.89-22.46,18.16v.2c0,11.13,9.23,17.11,19.72,17.11,7.93,0,13.52-3.09,17.29-7.23a.38.38,0,0,1,.66.25v0a5.78,5.78,0,0,0,5.78,5.78h1a5.79,5.79,0,0,0,5.77-5.78V71.83c0-14.79-8-23.4-24.33-23.4m46.72-20.35h-.4a6.14,6.14,0,0,0-6.14,6.15V98.52a6.15,6.15,0,0,0,6.14,6.15h.4A6.15,6.15,0,0,0,538,98.52V34.23a6.15,6.15,0,0,0-6.15-6.15m-98.14,45H412.65a3,3,0,0,1-2.89-3.88c2.08-6.46,7-10.69,13.52-10.69,7,0,11.54,4.47,13.32,10.71a3,3,0,0,1-2.89,3.86m-4.82-24.46c-17-3.17-32.57,10.39-32.57,27.7v.86c0,17.09,12.38,28.74,28.42,28.74,7.94,0,14.11-2.49,18.91-6.57a4.74,4.74,0,0,0,0-7.14,5.74,5.74,0,0,0-7.17-.33A18.89,18.89,0,0,1,425,95.54c-6.9,0-12.51-3.57-14.94-10.08a3,3,0,0,1,2.82-4h33.55A3.54,3.54,0,0,0,449.92,78v0c0-14.2-7.06-26.73-21-29.3M99.05,43.85h0a5.52,5.52,0,0,0-7.8,0L79.19,56.32a5.52,5.52,0,0,1-7.81,0L52.51,37.44a5.49,5.49,0,0,0-3.9-1.62H34.07a5.52,5.52,0,0,0,0,11H44a5.52,5.52,0,0,1,3.91,1.62L63.58,64.13a5.53,5.53,0,0,1,0,7.81l-9.43,9a5.53,5.53,0,0,1-3.9,1.61H43a5.52,5.52,0,0,0,0,11H54.82A5.55,5.55,0,0,0,58.73,92L71.38,79.74a5.53,5.53,0,0,1,7.81,0L96,96.57a5.52,5.52,0,0,0,7.81-7.81L87,71.94a5.52,5.52,0,0,1,0-7.81l12-12.47a5.52,5.52,0,0,0,0-7.81M67,126.67A59.86,59.86,0,0,1,8,75.4a57.33,57.33,0,0,1-.59-8.15V67a59.48,59.48,0,0,1,.72-9.31,57,57,0,0,1,1.58-7.13A59.65,59.65,0,1,1,67,126.67M67,0A67.22,67.22,0,0,0,2.59,48.54a65.74,65.74,0,0,0-1.78,8A67.85,67.85,0,0,0,0,67v.26A67,67,0,1,0,67,0"/>
</svg>
</div>
<div class="section_text">
AI + blockchain. A limitless ability to forecast the future.
</div>
</a>
</div>
</section>
<section class="using">
<div class="section_title">using</div>
<div class="section_content">
<a target="_blank" href="https://blog.maddevs.io/tagged/golang" class="section_wrap animate_using">
<div class="section_icon">
<svg id="gopher" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 401.98 559.472" width="42">
<path class="l-h" fill-rule="evenodd" clip-rule="evenodd" stroke-width="3"
stroke-linecap="round"
d="M10.634 300.493c.764 15.75 16.5 8.463 23.626 3.54 6.765-4.676 8.743-.79 9.337-10.016.39-6.064 1.088-12.128.744-18.216-10.23-.926-21.356 1.51-29.743 7.603-4.32 3.14-12.42 13.158-3.963 17.09"/>
<path class="l-f" fill-rule="evenodd" clip-rule="evenodd" stroke-width="3"
stroke-linecap="round" d="M10.634 300.493c2.29-.852 4.717-1.457 6.27-3.528"/>
<path class="g-e" fill-rule="evenodd" clip-rule="evenodd" stroke-width="3"
stroke-linecap="round"
d="M46.997 112.853C-13.3 95.897 31.537 19.19 79.957 50.74l-32.96 62.113zM314.895 44.984c47.727-33.523 90.856 42.11 35.388 61.14l-35.388-61.14z"/>
<path class="l-h" fill-rule="evenodd" clip-rule="evenodd" stroke-width="3"
stroke-linecap="round"
d="M325.16 494.343c12.124 7.5 34.283 30.182 16.097 41.18-17.474 16-27.254-17.56-42.59-22.21 6.604-8.97 14.976-17.15 26.494-18.97z"/>
<path class="g-f" clip-rule="evenodd" stroke-width="3" stroke-linecap="round"
d="M341.257 535.522c-2.696-5.36-3.6-11.618-8.102-15.94"/>
<path class="l-h" fill-rule="evenodd" clip-rule="evenodd" stroke-width="3"
stroke-linecap="round"
d="M108.58 519.975c-14.23 2.202-22.24 15.04-34.1 21.558-11.18 6.665-15.455-2.134-16.462-3.92-1.752-.8-1.605.744-4.31-1.98-10.36-16.353 10.798-28.307 21.816-36.43 15.346-3.103 24.963 10.2 33.055 20.772z"/>
<path class="g-f" clip-rule="evenodd" stroke-width="3" stroke-linecap="round"
d="M58.02 537.612c.54-6.233 5.483-10.407 7.837-15.677"/>
<path class="g-a" fill-rule="evenodd" clip-rule="evenodd"
d="M49.513 91.667c-7.955-4.208-13.79-9.923-8.925-19.124 4.505-8.518 12.874-7.593 20.83-3.385l-11.905 22.51zM337.716 83.667c7.955-4.208 13.79-9.923 8.925-19.124-4.504-8.518-12.873-7.593-20.83-3.385l11.906 22.51z"/>
<path class="l-h" fill-rule="evenodd" clip-rule="evenodd" stroke-width="3"
stroke-linecap="round"
d="M392.475 298.493c-.764 15.75-16.5 8.463-23.626 3.54-6.766-4.676-8.744-.79-9.338-10.016-.39-6.064-1.088-12.128-.744-18.216 10.23-.926 21.357 1.51 29.744 7.603 4.32 3.14 12.42 13.158 3.963 17.09"/>
<path class="l-f" fill-rule="evenodd" clip-rule="evenodd" stroke-width="3"
stroke-linecap="round" d="M392.475 298.493c-2.29-.852-4.717-1.457-6.27-3.528"/>
<path class="g-e" fill-rule="evenodd" clip-rule="evenodd" stroke-width="3"
stroke-linecap="round"
d="M195.512 13.124c60.365 0 116.953 8.633 146.452 66.63 26.478 65.005 17.062 135.103 21.1 203.805 3.468 58.99 11.157 127.144-16.21 181.81-28.79 57.515-100.73 71.983-160 69.864-46.555-1.666-102.794-16.854-129.07-59.39-30.825-49.9-16.23-124.097-13.992-179.62 2.652-65.772-17.815-131.743 3.792-196.102C70 33.36 130.45 18.272 195.512 13.124"/>
<path class="g-w" fill-rule="evenodd" clip-rule="evenodd" stroke-width="2.908"
stroke-linecap="round"
d="M206.17 94.16c10.837 63.003 113.82 46.345 99.03-17.197-13.265-56.98-102.633-41.208-99.03 17.197"/>
<path class="g-w" fill-rule="evenodd" clip-rule="evenodd" stroke-width="2.821"
stroke-linecap="round"
d="M83.103 104.35c14.047 54.85 101.864 40.807 98.554-14.213-3.966-65.895-111.984-53.18-98.554 14.213"/>
<path class="g-w" fill-rule="evenodd" clip-rule="evenodd" stroke-width="3"
stroke-linecap="round"
d="M218.594 169.762c.046 8.19 1.86 17.387.312 26.1-2.09 3.953-6.193 4.37-9.73 5.968-4.89-.767-9-3.978-10.962-8.552-1.255-9.946.468-19.576.785-29.526l19.594 6.01z"/>
<g fill-rule="evenodd" clip-rule="evenodd">
<ellipse fill="#000" cx="107.324" cy="95.404" rx="14.829" ry="16.062"/>
<ellipse fill="#000" class="g-w" cx="114.069" cy="99.029" rx="3.496" ry="4.082"/>
</g>
<g fill-rule="evenodd" clip-rule="evenodd">
<ellipse cx="231.571" cy="91.404" rx="14.582" ry="16.062"/>
<ellipse class="g-w" fill="#000" cx="238.204" cy="95.029" rx="3.438" ry="4.082"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" class="g-w" stroke-width="3"
stroke-linecap="round"
d="M176.217 168.87c-6.47 15.68 3.608 47.035 21.163 23.908-1.255-9.946.468-19.576.785-29.526l-21.948 5.618z"/>
<g fill-rule="evenodd" clip-rule="evenodd">
<path class="g-b" stroke-width="3" stroke-linecap="round"
d="M178.43 138.673c-12.058 1.028-21.915 15.366-15.645 26.71 8.303 15.023 26.836-1.33 38.38.202 13.284.272 24.17 14.047 34.84 2.49 11.866-12.854-5.11-25.373-18.378-30.97l-39.196 1.568z"/>
<path class="g-a"
d="M176.913 138.045c-.893-20.89 38.938-23.503 43.642-6.016 4.692 17.445-41.68 21.497-43.642 6.015-1.565-12.363 0 0 0 0z"/>
</g>
</svg>
</div>
<div class="section_text">Go</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/technology " class="section_wrap animate_using">
<div class="section_icon">
<svg version="1.1" id="react" width="60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 226 201" style="enable-background:new 0 0 226 201;" xml:space="preserve">
<g>
<defs>
<rect id="SVGID_1_" width="226" height="201"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
</clipPath>
<path class="react0" d="M185.8,65.2c-2.3-0.8-4.8-1.6-7.3-2.3c0.4-1.7,0.8-3.3,1.1-5c5.5-26.7,1.9-48.3-10.4-55.3
c-11.8-6.8-31.1,0.3-50.5,17.2c-1.9,1.6-3.8,3.4-5.6,5.2c-1.3-1.2-2.5-2.4-3.7-3.5C88.9,3.4,68.5-4.3,56.2,2.9
C44.4,9.7,40.9,29.9,45.9,55.2c0.5,2.4,1,4.9,1.7,7.5c-2.9,0.8-5.7,1.7-8.4,2.6C15.3,73.7,0,86.8,0,100.3c0,14,16.4,28,41.3,36.6
c2,0.7,4,1.3,6.1,1.9c-0.7,2.7-1.3,5.4-1.8,8.1c-4.7,24.9-1,44.7,10.7,51.4c12.1,7,32.5-0.2,52.3-17.5c1.6-1.4,3.1-2.8,4.7-4.3
c2,2,4.1,3.8,6.1,5.6c19.2,16.5,38.2,23.2,49.9,16.4c12.1-7,16.1-28.2,10.9-54.1c-0.4-2-0.8-4-1.4-6c1.4-0.4,2.8-0.9,4.2-1.3
c25.9-8.6,42.8-22.5,42.8-36.6C226,86.7,210.2,73.6,185.8,65.2 M125,27.1c16.7-14.5,32.3-20.2,39.4-16.2c7.6,4.4,10.5,22,5.8,45
c-0.3,1.5-0.6,3-1,4.5c-9.4-2.2-19.6-3.8-30.2-4.8c-6.2-8.8-12.6-16.9-19.1-23.8C121.6,30.2,123.3,28.6,125,27.1 M71.8,100.6
c2.9-6.1,6.1-12.2,9.6-18.2v0c3.5-6.1,7.2-11.9,11-17.4c6.7-0.5,13.6-0.8,20.6-0.8c7,0,13.9,0.3,20.6,0.8
c3.7,5.5,7.4,11.3,10.9,17.4c3.5,6.1,6.8,12.2,9.7,18.1c-2.9,6-6.2,12.2-9.7,18.3c-3.5,6.1-7.2,12-10.8,17.5
c-6.7,0.5-13.6,0.7-20.7,0.7c-7,0-13.9-0.2-20.5-0.6c-3.8-5.6-7.5-11.5-11-17.5h0C78,112.7,74.8,106.6,71.8,100.6 M66.7,111.9
c2,3.9,4.2,7.8,6.4,11.7c2.3,4,4.7,7.8,7.1,11.6c-7.4-0.8-14.4-1.9-20.8-3.3C61.4,125.4,63.8,118.7,66.7,111.9 M66.7,89.2
c-2.8-6.7-5.2-13.2-7.2-19.6C66,68.2,72.8,67,80,66.1c-2.4,3.7-4.7,7.5-6.9,11.4v0C70.9,81.4,68.7,85.3,66.7,89.2 M152.9,123.5
c2.3-4,4.5-8,6.6-12c3,6.9,5.6,13.5,7.6,19.9c-6.6,1.5-13.6,2.7-21.1,3.6C148.3,131.3,150.6,127.5,152.9,123.5 M159.3,89.2
c-2-3.9-4.2-7.8-6.5-11.8c-2.2-3.9-4.5-7.6-6.9-11.3c7.2,0.9,14.1,2.1,20.6,3.6C164.6,76,162.2,82.5,159.3,89.2 M113.1,38.7
c4.5,4.8,8.9,10.2,13.3,16.1c-4.4-0.2-8.9-0.3-13.4-0.3c-4.5,0-8.9,0.1-13.3,0.3C104.1,49,108.6,43.6,113.1,38.7 M61,11.2
c7.6-4.4,24.3,1.9,41.9,17.5c1.1,1,2.3,2,3.4,3.1c-6.6,7-13.1,15.1-19.2,23.8c-10.6,1-20.8,2.6-30.2,4.7c-0.6-2.4-1.1-4.7-1.6-7
C51.1,31.7,53.9,15.3,61,11.2 M50,129.5c-1.9-0.6-3.8-1.1-5.6-1.7c-11-3.8-20.1-8.7-26.4-14c-5.6-4.8-8.4-9.6-8.4-13.4
c0-8.2,12.3-18.7,32.7-25.9c2.5-0.9,5.1-1.7,7.8-2.4c2.8,9.2,6.5,18.8,11,28.5C56.6,110.4,52.9,120.2,50,129.5 M102.3,173.5
c-8.8,7.7-17.6,13.1-25.3,15.8c-7,2.5-12.5,2.5-15.8,0.6c-7.1-4.1-10.1-20-6-41.3c0.5-2.4,1-4.9,1.6-7.5c9.3,2,19.5,3.5,30.4,4.4
c6.3,8.8,12.8,16.9,19.4,24C105.2,170.9,103.8,172.3,102.3,173.5 M113.4,162.6c-4.6-4.9-9.1-10.4-13.6-16.3
c4.3,0.2,8.7,0.3,13.2,0.3c4.6,0,9.2-0.1,13.6-0.3C122.2,152.3,117.8,157.7,113.4,162.6 M172,176c-1.3,7.3-4.1,12.1-7.4,14
c-7.1,4.1-22.3-1.2-38.8-15.4c-1.9-1.6-3.8-3.3-5.7-5.2c6.4-7,12.7-15.1,18.9-24c10.9-1,21.2-2.6,30.6-4.7c0.5,1.9,0.9,3.7,1.2,5.5
C173.1,157.6,173.5,168,172,176 M180.2,127.8c-1.2,0.4-2.5,0.8-3.8,1.2c-2.9-9.1-6.7-18.7-11.4-28.6c4.5-9.7,8.2-19.2,11-28.2
c2.3,0.7,4.6,1.4,6.7,2.1c20.9,7.2,33.7,17.8,33.7,26C216.3,109.1,202.5,120.4,180.2,127.8 M92.8,100.3c0-11.1,9-20.2,20.2-20.2
s20.2,9,20.2,20.2c0,11.1-9,20.2-20.2,20.2S92.8,111.5,92.8,100.3"/>
</g>
</svg>
</div>
<div class="section_text">React</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/technology "
class="section_wrap animate_using django">
<div class="section_icon">
<svg version="1.1" id="django" width="115" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 436.5 152.5" style="enable-background:new 0 0 436.5 152.5;" xml:space="preserve">
<g>
<g>
<path class="dj" d="M51.5,0h23.9v110.5c-12.2,2.3-21.2,3.3-31,3.3C15.2,113.8,0,100.6,0,75.3C0,51,16.1,35.2,41.1,35.2
c3.9,0,6.8,0.3,10.4,1.2L51.5,0L51.5,0z M51.5,55.6c-2.8-0.9-5.1-1.2-8.1-1.2c-12.1,0-19.1,7.4-19.1,20.5
c0,12.7,6.7,19.7,18.9,19.7c2.6,0,4.8-0.2,8.2-0.6L51.5,55.6z"/>
<path class="dj" d="M113.3,36.9v55.3c0,19.1-1.4,28.2-5.6,36.1c-3.9,7.6-9,12.4-19.5,17.7L66,135.5c10.5-5,15.7-9.3,18.9-16
c3.4-6.8,4.5-14.7,4.5-35.5V36.9H113.3z M89.4,0.1h23.9v24.5H89.4V0.1z"/>
<path class="dj" d="M127.7,42.3c10.5-5,20.6-7.1,31.6-7.1c12.2,0,20.3,3.3,23.9,9.6c2,3.6,2.6,8.2,2.6,18.1v48.5
c-10.7,1.6-24.2,2.6-34.1,2.6c-20,0-29-7-29-22.5c0-16.7,11.9-24.5,41.2-27v-5.3c0-4.3-2.2-5.9-8.2-5.9c-8.8,0-18.8,2.5-28.1,7.3
L127.7,42.3L127.7,42.3z M165.1,80.3c-15.8,1.6-20.9,4-20.9,10.2c0,4.6,2.9,6.8,9.5,6.8c3.6,0,6.8-0.3,11.5-1.1L165.1,80.3
L165.1,80.3z"/>
<path class="dj" d="M197.5,40.6c14.1-3.7,25.7-5.4,37.5-5.4c12.2,0,21.1,2.8,26.4,8.2c5,5.1,6.5,10.7,6.5,22.6v46.8H244V66.9
c0-9.1-3.1-12.6-11.6-12.6c-3.3,0-6.2,0.3-11,1.7v56.7h-23.9L197.5,40.6L197.5,40.6z"/>
<path class="dj" d="M277.1,125.8c8.4,4.3,16.7,6.4,25.6,6.4c15.7,0,22.3-6.4,22.3-21.5c0-0.2,0-0.3,0-0.5
c-4.6,2.3-9.3,3.3-15.5,3.3c-20.9,0-34.3-13.8-34.3-35.7c0-27.1,19.7-42.5,54.6-42.5c10.2,0,19.7,1.1,31.2,3.4l-8.2,17.2
c-6.4-1.2-0.5-0.2-5.3-0.6v2.5l0.3,10.1l0.2,13c0.2,3.3,0.2,6.5,0.3,9.8c0,2.9,0,4.3,0,6.5c0,20.5-1.7,30.1-6.8,38
c-7.4,11.6-20.3,17.4-38.6,17.4c-9.3,0-17.4-1.4-25.7-4.7L277.1,125.8L277.1,125.8z M324.6,54.5c-0.3,0-0.6,0-0.8,0h-1.7
c-4.6-0.2-10.1,1.1-13.8,3.4c-5.7,3.3-8.7,9.1-8.7,17.5c0,11.9,5.9,18.8,16.4,18.8c3.3,0,5.9-0.6,9-1.6V91v-6.5
c0-2.8-0.2-5.9-0.2-9.1l-0.2-11l-0.2-7.9L324.6,54.5L324.6,54.5z"/>
<path class="dj" d="M398.1,34.9c23.9,0,38.4,15,38.4,39.4c0,25-15.2,40.6-39.4,40.6c-23.9,0-38.6-15-38.6-39.2
C358.5,50.5,373.7,34.9,398.1,34.9z M397.6,95.6c9.1,0,14.6-7.6,14.6-20.8c0-13-5.3-20.8-14.4-20.8c-9.5,0-14.9,7.6-14.9,20.8
C382.9,88,388.3,95.6,397.6,95.6z"/>
</g>
</g>
</svg>
</div>
<div class="section_text">Django</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/technology " class="section_wrap animate_using">
<div class="section_icon">
<svg version="1.1" id="swift" width="50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1255 1255" style="enable-background:new 0 0 1255 1255;" xml:space="preserve">
<path class="sw" d="M977,0H278C124.5,0,0,124.5,0,278v699c0,153.5,124.5,278,278,278h699c153.5,0,278-124.5,278-278V278
C1255,124.5,1130.5,0,977,0z M1060.4,1027c0,0-48.7-81.2-130-81.2c-78.5,0-124.6,81.2-283,81.2c-352,0-518.5-293.8-518.5-293.8
c317,208.9,533.4,60.9,533.4,60.9c-143-83.1-446.8-479.3-446.8-479.3C480.3,540,594.6,599.1,594.6,599.1
c-68.4-56.3-260-331.7-260-331.7c153.3,155.1,457.6,371,457.6,371c86.8-238.7-82.6-452.2-82.6-452.2
C1124,467.8,989.9,777.8,989.9,777.8S1107.7,910.5,1060.4,1027z"/>
</svg>
</div>
<div class="section_text">Swift</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/technology " class="section_wrap animate_using">
<div class="section_icon">
<svg version="1.1" id="android" width="42" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 278.8 337.1" style="enable-background:new 0 0 278.8 337.1;" xml:space="preserve">
<path class="an" d="M187.2,35.6l14.4-25.9c1.7-3.1,0.6-7.1-2.5-8.8c-3.1-1.7-7.1-0.6-8.8,2.5l-14.7,26.6c-11.1-4.4-23.2-6.9-36-6.9
s-25,2.4-36,6.9L88.6,3.4c-1.7-3.1-5.7-4.3-8.8-2.5c-3.1,1.7-4.3,5.7-2.5,8.8l14.4,25.9C65.7,50.4,48.4,76.8,48.4,107h182
C230.4,76.8,213.1,50.4,187.2,35.6z M97.4,73.7c-4.2,0-7.6-3.4-7.6-7.6s3.4-7.6,7.6-7.6s7.6,3.4,7.6,7.6S101.6,73.7,97.4,73.7z
M181.4,73.7c-4.2,0-7.6-3.4-7.6-7.6s3.4-7.6,7.6-7.6s7.6,3.4,7.6,7.6S185.6,73.7,181.4,73.7z M40.8,131.1v85
c0,11.2-9.2,20.4-20.4,20.4S0,227.3,0,216.1v-85c0-11.2,9.2-20.4,20.4-20.4S40.8,119.8,40.8,131.1z M278.8,131.1v85
c0,11.2-9.2,20.4-20.4,20.4s-20.4-9.2-20.4-20.4v-85c0-11.2,9.2-20.4,20.4-20.4S278.8,119.8,278.8,131.1z M48.4,114.2h182v131.9
c0,12.2-9.9,22-22,22h-11v45c0,13.3-10.7,24-24,24s-24-10.7-24-24v-45h-20v45c0,13.3-10.7,24-24,24s-24-10.7-24-24v-45h-11
c-12.2,0-22-9.8-22-22V114.2z"/>
</svg>
</div>
<div class="section_text">Android</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/technology " class="section_wrap animate_using">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" id="php" width="100" viewBox="0 0 116.3 57.43">
<defs>
<style>
.cls-1 {
fill: #6a83b5;
fill-rule: evenodd;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1">
<path d="M24.08 19.22q5.63 0 7.51 2.08t.89 7.14q-1 5.27-3.95 7.52t-8.9 2.25h-6l3.69-19zM0 57.43h9.88l2.34-12.06h8.47a30.29 30.29 0 0 0 9.22-1.18 17.45 17.45 0 0 0 6.58-3.95 19.71 19.71 0 0 0 6.21-11.11q1.57-8.07-2.36-12.57t-12.51-4.5h-19L0 57.43zM49.08 0h9.8l-2.34 12.06h8.73q8.24 0 11.37 2.88t1.88 9.32l-4.1 21.11h-10l3.9-20.07q.67-3.43-.49-4.67T63 19.38h-7.88l-5.05 26h-9.81L49.08 0zM97.24 19.22q5.63 0 7.51 2.08t.89 7.14q-1 5.27-3.95 7.52t-8.9 2.25h-6l3.69-19zM73.16 57.43H83l2.34-12.06h8.47a30.29 30.29 0 0 0 9.22-1.18 17.44 17.44 0 0 0 6.58-3.95 19.71 19.71 0 0 0 6.21-11.11q1.57-8.07-2.36-12.57T101 12.06H82l-8.84 45.37z"
class="cls-1"/>
</g>
</g>
</svg>
</div>
<div class="section_text">PHP</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/technology " class="section_wrap animate_using">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" width="100" id="docker" viewBox="0 0 476.24 270.41">
<defs>
<style>
.cls-1 {
fill: #394d54;
}
.cls-1, .cls-6, .cls-7, .cls-8 {
fill-rule: evenodd;
}
.cls-2 {
fill: #00aada;
}
.cls-3 {
fill: #24b8eb;
}
.cls-4 {
fill: #008bb8;
}
.cls-5 {
fill: #039bc6;
}
.cls-6 {
fill: #00acd3;
}
.cls-7 {
fill: #20c2ef;
}
.cls-10, .cls-8 {
fill: #d4edf1;
}
.cls-9 {
fill: #bfdbe0;
}
</style>
</defs>
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1">
<path id="outline"
d="M275.39 85.39h42.7V129h21.59a93.61 93.61 0 0 0 29.66-5 75.94 75.94 0 0 0 14.42-6.51c-6-7.87-9.1-17.8-10-27.6-1.23-13.32 1.46-30.66 10.47-41.09l4.49-5.19 5.35 4.3c13.46 10.82 24.79 25.93 26.79 43.17 16.21-4.77 35.25-3.64 49.54 4.61l5.86 3.38-3.09 6c-12.09 23.59-37.35 30.89-62.06 29.6-37 92.07-117.44 135.66-215 135.66-50.41 0-96.66-18.85-123-63.57l-.43-.73-3.84-7.81C59.91 178.61 56.95 157 59 135.49l.6-6.46h36.47V85.39h42.69V42.7h85.39V0h51.23z"
fill="#394d54" class="cls-1"/>
<g id="body_colors" data-name="body colors">
<path d="M413.71 101.54c2.86-22.25-13.79-39.72-24.11-48-11.9 13.76-13.75 49.81 4.92 65-10.42 9.25-32.37 17.64-54.85 17.64H66c-2.19 23.46 1.93 45.07 11.34 63.57l3.11 5.69a105.46 105.46 0 0 0 6.45 9.68q16.87 1.08 31.11.76c18.65-.41 33.86-2.61 45.39-6.61a3.29 3.29 0 1 1 2.15 6.21c-1.53.53-3.13 1-4.78 1.5a142.86 142.86 0 0 1-31.38 5.11c.74 0-.78.11-.78.11-.43 0-1 .09-1.39.11-4.94.28-10.28.34-15.74.34-6 0-11.84-.11-18.41-.45l-.17.11c22.8 25.63 58.45 41 103.13 41 94.57 0 174.79-41.92 210.3-136 25.2 2.59 49.42-3.84 60.44-25.35-17.5-10.18-40.06-6.96-53.06-.42z"
class="cls-2"/>
<path d="M413.71 101.54c2.86-22.25-13.79-39.72-24.11-48-11.9 13.76-13.75 49.81 4.92 65-10.42 9.25-32.37 17.64-54.85 17.64H82.25c-1.12 35.94 12.22 63.21 35.81 79.7 18.65-.41 33.86-2.61 45.39-6.61a3.29 3.29 0 1 1 2.15 6.21c-1.53.53-3.13 1-4.78 1.5a150.21 150.21 0 0 1-32.22 5.34l-.31-.29c32.18 16.51 78.85 16.45 132.36-4.1 60-23 115.82-67 154.77-117.18q-.88.37-1.71.79z"
class="cls-3"/>
<path d="M66.55 164.66a109.42 109.42 0 0 0 10.83 35.06l3.11 5.69a105.26 105.26 0 0 0 6.51 9.68q16.88 1.08 31.11.76c18.65-.41 33.86-2.61 45.39-6.61a3.29 3.29 0 1 1 2.15 6.21c-1.53.53-3.13 1-4.78 1.5a150.15 150.15 0 0 1-32.16 5.22c-.43 0-1.18 0-1.62.06-4.94.28-10.22.45-15.68.45-6 0-12.07-.11-18.64-.45 22.8 25.63 58.67 41 103.35 41 81 0 151.4-30.73 192.28-98.63z"
class="cls-4"/>
<path d="M84.71 164.66c4.84 22.07 16.47 39.39 33.36 51.19 18.65-.41 33.86-2.61 45.39-6.61a3.29 3.29 0 1 1 2.15 6.21c-1.53.53-3.13 1-4.78 1.5a152.41 152.41 0 0 1-32.38 5.22c32.18 16.51 78.71 16.27 132.21-4.28 32.34-12.42 63.51-30.89 91.46-53.23z"
class="cls-5"/>
</g>
<g id="Containers">
<path d="M134.18 95.59h2.92v30.84h-2.92zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.49 0h2.92v30.84h-2.92zm-3.08-3.08h37v37h-37zM176.88 52.89h2.92v30.84h-2.92zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.6 0h3v30.84h-3zm-5.49 0h2.92v30.84H149zm-3.09-3.08h37v37h-37z"
class="cls-6"/>
<path d="M176.88 95.59h2.92v30.84h-2.92zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.6 0h3v30.84h-3zm-5.49 0h2.92v30.84H149zm-3.09-3.08h37v37h-37z"
class="cls-7"/>
<path d="M219.57 95.59h2.92v30.84h-2.92zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.49 0h2.92v30.84h-2.92zm-3.08-3.08h37v37h-37z"
class="cls-6"/>
<path d="M219.57 52.89h2.92v30.84h-2.92zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.49 0h2.92v30.84h-2.92zm-3.08-3.08h37v37h-37zM262.27 95.59h2.92v30.84h-2.92zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.49 0h2.92v30.84h-2.92zm-3.08-3.08h37v37h-37z"
class="cls-7"/>
<path d="M262.27 52.89h2.92v30.84h-2.92zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.49 0h2.92v30.84h-2.92zm-3.08-3.08h37v37h-37z"
class="cls-6"/>
<path d="M262.27 10.2h2.92V41h-2.92zm-5.61 0h3V41h-3zm-5.61 0h3V41h-3zm-5.61 0h3V41h-3zm-5.61 0h3V41h-3zm-5.49 0h2.92V41h-2.92zm-3.08-3.08h37v37h-37z"
class="cls-7"/>
<path d="M305 95.59h2.92v30.84H305zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.61 0h3v30.84h-3zm-5.49 0H280v30.84h-3zM274 92.51h37v37h-37z"
class="cls-6"/>
</g>
<path d="M180.56 189.5a10.21 10.21 0 1 1-10.21 10.21 10.21 10.21 0 0 1 10.21-10.21"
class="cls-8"/>
<path d="M180.56 192.4a7.31 7.31 0 0 1 2.65.49 3 3 0 1 0 4.11 4 7.31 7.31 0 1 1-6.75-4.51M0 168.35h474.88c-10.34-2.62-32.71-6.17-29-19.72-18.8 21.76-64.14 15.26-75.59 4.54-12.74 18.48-86.93 11.46-92.1-2.94-16 18.75-65.48 18.75-81.45 0-5.18 14.4-79.36 21.42-92.1 2.94-11.47 10.73-56.81 17.22-75.64-4.54 3.69 13.55-18.69 17.09-29 19.72"
class="cls-1" fill="#394d54"/>
<path d="M207.7 263.07c-25.28-12-39.16-28.3-46.88-46.11-9.39 2.68-20.68 4.39-33.8 5.13q-7.41.42-15.59.42-9.43 0-19.87-.55c23.18 23.17 51.71 41 104.52 41.34q5.85-.01 11.62-.23z"
class="cls-9"/>
<path d="M170.21 233.39a88.55 88.55 0 0 1-9.38-16.39c-9.39 2.68-20.68 4.4-33.8 5.13 8.97 4.87 21.89 9.38 43.18 11.26z"
class="cls-10"/>
</g>
</g>
</svg>
</div>
<div class="section_text">Docker</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/technology " class="section_wrap animate_using">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" id="js" width="80" viewBox="0 0 630 630">
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1">
<path d="M0 0h630v630H0z" class="cls-1"/>
<path d="M423.2 492.19c12.69 20.72 29.2 36 58.4 36 24.53 0 40.2-12.26 40.2-29.2 0-20.3-16.1-27.49-43.1-39.3l-14.8-6.35c-42.72-18.2-71.1-41-71.1-89.2 0-44.4 33.83-78.2 86.7-78.2 37.64 0 64.7 13.1 84.2 47.4l-46.1 29.6c-10.15-18.2-21.1-25.37-38.1-25.37-17.34 0-28.33 11-28.33 25.37 0 17.76 11 25 36.4 36l14.8 6.34c50.3 21.57 78.7 43.56 78.7 93 0 53.3-41.87 82.5-98.1 82.5-55 0-90.5-26.2-107.88-60.54zm-209.13 5.13c9.3 16.5 17.76 30.45 38.1 30.45 19.45 0 31.72-7.61 31.72-37.2v-201.3h59.2v202.1c0 61.3-35.94 89.2-88.4 89.2-47.4 0-74.85-24.53-88.81-54.08z"
class="cls-2"/>
</g>
</g>
</svg>
</div>
<div class="section_text">JavaScript</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/technology " class="section_wrap animate_using">
<div class="section_icon">
<svg xmlns="http://www.w3.org/2000/svg" id="debian" width="88" viewBox="0 0 87.13 108.45">
<g id="Layer_2" data-name="Layer 2">
<g id="Layer_1-2" data-name="Layer 1">
<path d="M52.07 57.3c-1.8 0 .34.93 2.69 1.29.65-.51 1.24-1 1.76-1.52a13.41 13.41 0 0 1-4.45.23M61.71 54.89a11.41 11.41 0 0 0 2.13-4.77 11.63 11.63 0 0 1-1.5 3.31c-3.36 2.12-.32-1.26 0-2.54-3.61 4.55-.5 2.73-.63 4M65.27 45.63c.22-3.24-.64-2.21-.92-1 .33.17.6 2.28.92 1M45.25 1.4c1 .17 2.07.3 1.92.53 1-.23 1.29-.44-1.92-.53M47.17 1.93l-.68.14.63-.07v-.08"
class="cls-1"/>
<path d="M77.07 46.86c.11 2.91-.85 4.32-1.71 6.81l-1.55.78C72.54 56.91 73.93 56 73 58c-2 1.76-6 5.52-7.31 5.86-.94 0 .64-1.11.85-1.54-2.66 1.82-2.13 2.74-6.19 3.85l-.12-.26c-10 4.71-23.93-4.63-23.75-17.37-.11.81-.3.61-.53.93a16 16 0 0 1 9-15.83 15.2 15.2 0 0 1 16.89 2.2 15.06 15.06 0 0 0-12.28-5.94c-5.32.08-10.29 3.46-12 7.13-2.72 1.72-3 6.61-4.23 7.51-1.6 11.74 3 16.81 10.79 22.77 1.22.83.35 1 .51 1.58a21.12 21.12 0 0 1-6.9-5.28 18.54 18.54 0 0 0 3.59 4.14c-2.44-.83-5.69-5.91-6.65-6.11C38.92 69.16 51.77 74.83 58.5 72a28.07 28.07 0 0 1-10.57-1.23c-1.47-.76-3.47-2.32-3.11-2.61C54 71.6 63.49 70.77 71.43 64.4c2-1.57 4.23-4.25 4.87-4.29-1 1.44.16.69-.57 2 2-3.25-.87-1.32 2.08-5.61L78.9 58c-.41-2.7 3.35-6 3-10.23.86-1.3 1 1.4 0 4.4 1.27-3.33.33-3.86.66-6.61a25 25 0 0 1 1.05 2.88c-.83-3.22.85-5.42 1.26-7.28-.41-.18-1.28 1.42-1.47-2.38 0-1.65.46-.87.63-1.27-.32-.19-1.17-1.45-1.69-3.88.38-.57 1 1.48 1.51 1.56a37.71 37.71 0 0 1-.92-4.88c-1.49-3.11-.53.42-1.74-1.34-1.59-4.95 1.32-1.15 1.51-3.4 2.4 3.48 3.78 8.88 4.4 11.12a45.55 45.55 0 0 0-2.2-7.92c.73.31-1.18-5.61.95-1.69-2.25-8.37-9.69-16.18-16.54-19.84.84.76 1.89 1.76 1.51 1.88-3.41-2-2.81-2.19-3.29-3-2.78-1.13-3 .09-4.79 0C57.5 3.31 56.5 3.6 51.68 1.86l.22 1c-3.47-1.15-4 .44-7.78 0-.23-.18 1.2-.64 2.38-.82-3.35.44-3.19-.66-6.47.12A27.86 27.86 0 0 1 42.55.77c-2.73.17-6.55 1.59-5.35.3-4.46 2-12.37 4.78-16.81 8.94l-.14-.93c-2 2.44-8.87 7.3-9.42 10.46l-.54.13a58.64 58.64 0 0 0-2.59 5.67c-1.38 2.36-2 .91-1.83 1.28a86.25 86.25 0 0 0-5.25 14c.83 1.24 0 7.49.34 12.5-1.37 24.7 17.34 48.69 37.78 54.23 3 1.07 7.45 1 11.24 1.14-4.47-1.28-5.05-.68-9.41-2.2-3.14-1.48-3.83-3.17-6.06-5.1l.88 1.56c-4.37-1.54-2.54-1.91-6.09-3l.94-1.23c-1.41-.11-3.75-2.39-4.39-3.65l-1.55.06c-1.86-2.29-2.85-3.95-2.78-5.23l-.5.89c-.57-1-6.84-8.61-3.59-6.83a7.34 7.34 0 0 1-2.28-2.48l.66-.76c-1.57-2-2.88-4.6-2.78-5.46a3.54 3.54 0 0 0 2 1.53c-4-9.82-4.18-.54-7.18-10l.63-.05a21 21 0 0 1-1.17-2.31l.28-2.75c-2.85-3.29-.8-14-.39-19.88.28-2.39 2.38-4.93 4-8.92l-1-.17c1.85-3.23 10.59-13 14.63-12.49 2-2.46-.39 0-.77-.63 4.3-4.45 5.66-3.15 8.56-3.95 3.13-1.86-2.69.73-1.2-.71 5.41-1.38 3.84-3.14 10.9-3.85.74.42-1.73.65-2.35 1.2 4.51-2.21 14.28-1.7 20.62 1.23 7.36 3.44 15.63 13.6 16 23.17l.37.1c-.19 3.8.58 8.2-.75 12.24l.91-1.91"
class="cls-1"/>
<path d="M32.45 59.76L32.2 61c1.18 1.6 2.12 3.34 3.63 4.6-1.09-2.12-1.89-3-3.37-5.86M35.25 59.65a10 10 0 0 1-1.41-2.35 16.36 16.36 0 0 0 2 4l-.55-1.63M84.65 48.92l-.26.66a32 32 0 0 1-3.13 10 31.4 31.4 0 0 0 3.39-10.66M45.61.54c1.22-.45 3-.24 4.28-.54-1.68.14-3.35.22-5 .44l.73.1M3 23.22c.28 2.59-2 3.6.49 1.89 1.31-3-.51-.82-.49-1.89M.08 35.22A28.14 28.14 0 0 0 1 31.45c-1.56 2-.72 2.41-.88 3.77"
class="cls-1"/>
</g>
</g>
</svg>
</div>
<div class="section_text">Debian</div>
</a>
<a target="_blank" href="https://blog.maddevs.io/tagged/technology " class="section_wrap animate_using">
<div class="section_icon">
<!--<svg id="opencv" xmlns="http://www.w3.org/2000/svg" width="90" viewBox="0 0 593.62 553.65">-->
<!--<g id="Layer_2" data-name="Layer 2">-->
<!--<g id="Layer_1-2" data-name="Layer 1">-->
<!--<path id="cv_element"-->
<!--d="M225.65 260A139.3 139.3 0 1 1 365 260l-42-72.68a55.42 55.42 0 1 0-55.42 0z"-->
<!--data-name="cv element" class="cls-1"/>-->