-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
1098 lines (881 loc) · 76.9 KB
/
about.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>
<meta charset="UTF-8">
<link rel="icon" type="image/png" href="img/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Primary Meta Tags -->
<title>Plebits - About Us</title>
<meta name="title" content="Plebits - About Us">
<meta name="description" content="We make tech events and conferences to teach people. We make partnerships/sponsorships with organizations and create their technical duties for free.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://plebits.com/about">
<meta property="og:title" content="Plebits - About Us">
<meta property="og:description" content="We make tech events and conferences to teach people. We make partnerships/sponsorships with organizations and create their technical duties for free.">
<meta property="og:image" content="https://plebits.com/img/social.jpg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://plebits.com/about">
<meta property="twitter:title" content="Plebits - About Us">
<meta property="twitter:description" content="We make tech events and conferences to teach people. We make partnerships/sponsorships with organizations and create their technical duties for free.">
<meta property="twitter:image" content="https://plebits.com/img/social.jpg">
<link rel="stylesheet" type="text/css" href="css/theme-styles.css">
<link rel="stylesheet" type="text/css" href="css/blocks.css">
<link rel="stylesheet" type="text/css" href="css/widgets.css">
<!--External fonts-->
<link href="https://fonts.googleapis.com/css?family=Nunito:300,400,700,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Baloo+Paaji" rel="stylesheet">
<!-- Styles for Plugins -->
<link rel="stylesheet" type="text/css" href="css/swiper.min.css">
<!--Styles for RTL-->
<!--<link rel="stylesheet" type="text/css" href="css/rtl.css">-->
</head>
<!-- Load Facebook SDK for JavaScript -->
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
xfbml : true,
version : 'v7.0'
});
};
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_US/sdk/xfbml.customerchat.js';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- Your Chat Plugin code -->
<div class="fb-customerchat"
attribution=setup_tool
page_id="2290541821035360"
theme_color="#0084ff">
</div>
<body class="crumina-grid">
<!-- Preloader -->
<div id="hellopreloader" style="display: block; position: fixed;z-index: 99999;top: 0;left: 0;width: 100%;height: 100%;min-width: 100%;background: #66b5ff url(svg/preload.svg) center center no-repeat;background-size: 41px;opacity: 1;"></div>
<!-- ... end Preloader -->
<!-- Header -->
<header class="header header--menu-rounded header--dark" id="site-header">
<div class="header-lines-decoration">
<span class="bg-secondary-color"></span>
<span class="bg-blue"></span>
<span class="bg-blue-light"></span>
<span class="bg-orange-light"></span>
<span class="bg-red"></span>
<span class="bg-green"></span>
<span class="bg-secondary-color"></span>
</div>
<div class="container">
<a href="#" id="top-bar-js" class="top-bar-link"><svg class="plebits-icon plebits-icon-arrow-top"><use xlink:href="#plebits-icon-arrow-top"></use></svg></a>
<div class="header-content-wrapper">
<div class="site-logo">
<a href="index.html" class="full-block"></a>
<img src="img/logo-clear.png" height="40" width="51" alt="plebits">
<div class="logo-text">
<div class="logo-title"><pleb/ts></div>
<div class="logo-sub-title">Tech startup</div>
</div>
</div>
<nav id="primary-menu" class="primary-menu">
<!-- menu-icon-wrapper -->
<a href='javascript:void(0)' id="menu-icon-trigger" class="menu-icon-trigger showhide">
<span class="mob-menu--title">Menu</span>
<span id="menu-icon-wrapper" class="menu-icon-wrapper">
<svg width="1000px" height="1000px">
<path id="pathD" d="M 300 400 L 700 400 C 900 400 900 750 600 850 A 400 400 0 0 1 200 200 L 800 800"></path>
<path id="pathE" d="M 300 500 L 700 500"></path>
<path id="pathF" d="M 700 600 L 300 600 C 100 600 100 200 400 150 A 400 380 0 1 1 200 800 L 800 200"></path>
</svg>
</span>
</a>
<ul class="primary-menu-menu">
<li class="uk-parent uk-active">
<a href="index.html">Home</a>
</li>
<li class="">
<a href="index.html#services">Services</a>
</li>
<li class="">
<a href="index.html#clients">Clients</a>
</li>
<li class="">
<a href="about.html">About</a>
</li>
<li class="">
<a href="staff.html">Staff</a>
</li>
<li class="">
<a href="contact.html">Contact US</a>
</li>
<li class="">
<a href="javascript:alert('Soon')">Internships</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<div class="header-spacer"></div>
<!-- ... End Header -->
<div class="content-wrapper">
<!-- Block IMG-bottom -->
<section class="background-contain bg-15 bg-blue-lighteen pt120">
<div class="container">
<div class="row">
<div class="crumina-module crumina-module-img-bottom">
<div class="col-lg-7 col-md-12 col-sm-12 col-xs-12">
<div class="crumina-module-img-content medium-padding100">
<div class="crumina-module crumina-heading">
<h6 class="heading-sup-title">Company</h6>
<h2 class="heading-title">Welcome to <span class="c-primary">plebits!</span> We create high quality technologies that will help your business.</h2>
<div class="h6 heading-text">Any profission, Any task, Plebits will be there.</div>
</div>
<a href="inde.html#services" class="btn btn--green btn--with-shadow ">
Our Services
</a>
<a href="index.html" class="btn btn--red btn--with-shadow">
Our previous work
</a>
</div>
</div>
<div class="col-lg-4 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
<img class="img-bottom" src="img/man.png" alt="man" height="400">
</div>
</div>
</div>
</div>
</section>
<!-- ... end Block IMG-bottom -->
<!-- Info Boxes -->
<section class="medium-padding100">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<div class="crumina-module crumina-info-box info-box--numbers">
<h5 class="order-number">01.</h5>
<h3 class="h5 info-box-title">Who We Are</h3>
<p class="info-box-text">We are an online tech startup that creates digital projects for businesses.
</p>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<div class="crumina-module crumina-info-box info-box--numbers">
<h5 class="order-number">02.</h5>
<h3 class="h5 info-box-title">What We Do</h3>
<p class="info-box-text">We make tech events and conferences to teach people. We make partnerships/sponsorships with organizations and create their technical duties for free.
</p>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<div class="crumina-module crumina-info-box info-box--numbers">
<h5 class="order-number">03.</h5>
<h3 class="h5 info-box-title">How We Do It</h3>
<p class="info-box-text">We hire interns, beside to the team members. Each of them takes part in doing those projects. And also, they get a precentage of the earnings.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- ... end Info Boxes -->
<!-- Info Boxes -->
<section class="crumina-module crumina-module-slider bg-blue-lighteen medium-padding100">
<div class="container">
<div class="row">
<div class="col-lg-4 col-lg-offset-4 col-md-4 col-md-offset-4 col-sm-12 col-sm-offset-0">
<div class="crumina-module crumina-heading align-center">
<h2 class="heading-title">Short Story About Our Startup</h2>
</div>
</div>
<div class="col-lg-12 col-sm-12 col-md-12">
<div class="swiper-container pagination-bottom" data-show-items="4">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="crumina-module crumina-info-box info-box--time-line">
<div class="info-box-image bg-primary-color">
<img class="plebits-icon" src="svg/flag.svg" alt="flag">
<svg class="plebits-icon plebits-icon-dot-arrow time-line-arrow"><use xlink:href="#plebits-icon-dot-arrow"></use></svg>
</div>
<div class="info-box-content">
<h6 class="timeline-year c-primary">April 2019</h6>
<a href="#" class="h6 info-box-title">The idea was generated</a>
<p class="info-box-text">Ahmed Saad and Mohamed Ezzat, Founders and CEOs of plebits got the idea of creating a tech startup, so they can earn from what they love.
</p>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="crumina-module crumina-info-box info-box--time-line">
<div class="info-box-image bg-orange">
<img class="plebits-icon" src="svg/settings.svg" alt="settings">
<svg class="plebits-icon plebits-icon-dot-arrow time-line-arrow"><use xlink:href="#plebits-icon-dot-arrow"></use></svg>
</div>
<div class="info-box-content">
<h6 class="timeline-year c-orange">May 2019</h6>
<a href="#" class="h6 info-box-title">Making plans</a>
<p class="info-box-text">The two founders continued to make plans about what to be done in the next months.
</p>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="crumina-module crumina-info-box info-box--time-line">
<div class="info-box-image bg-red">
<img class="plebits-icon" src="svg/rocket-launch.svg" alt="rocket">
<svg class="plebits-icon plebits-icon-dot-arrow time-line-arrow"><use xlink:href="#plebits-icon-dot-arrow"></use></svg>
</div>
<div class="info-box-content">
<h6 class="timeline-year c-red">Jun. 2019</h6>
<a href="#" class="h6 info-box-title">Plebits was born</a>
<p class="info-box-text">We kicked off our startup.
</p>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="crumina-module crumina-info-box info-box--time-line">
<div class="info-box-image bg-green">
<img class="plebits-icon" src="svg/team.svg" alt="team">
<svg class="plebits-icon plebits-icon-dot-arrow time-line-arrow"><use xlink:href="#plebits-icon-dot-arrow"></use></svg>
</div>
<div class="info-box-content">
<h6 class="timeline-year c-green">Oct. 2019</h6>
<a href="#" class="h6 info-box-title">Hiring Interns</a>
<p class="info-box-text">The first generation of interns have joined plebits. They were invited to be a part of our startup.
</p>
</div>
</div>
</div>
</div>
<!--Prev next buttons-->
<div class="btn-slider-wrap navigation-center-bottom">
<div class="btn-prev">
<svg class="plebits-icon icon-hover plebits-icon-arrow-left-1"><use xlink:href="#plebits-icon-arrow-left-1"></use></svg>
<svg class="plebits-icon plebits-icon-arrow-left1"><use xlink:href="#plebits-icon-arrow-left1"></use></svg>
</div>
<div class="btn-next">
<svg class="plebits-icon icon-hover plebits-icon-arrow-right-1"><use xlink:href="#plebits-icon-arrow-right-1"></use></svg>
<svg class="plebits-icon plebits-icon-arrow-right1"><use xlink:href="#plebits-icon-arrow-right1"></use></svg>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ... end Info Boxes -->
<!-- Case Item -->
<section class="crumina-module crumina-module-slider medium-padding100">
<div class="container">
<div class="row">
<div class="crumina-module crumina-module-img-bottom">
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12">
<div class="crumina-module crumina-heading">
<h6 class="heading-sup-title">Our Works</h6>
<h2 class="heading-title">Let Everyone Know Why We are the Best</h2>
<div class="heading-text">We, at Plebits, ensure that everything is made in the best possible way.
</div>
</div>
</div>
<div class="col-lg-3 col-lg-offset-3 col-md-12 col-sm-12 col-sm-offset-0">
<a href="javascript:alert('Not yet published')" class="btn btn-border btn--with-shadow c-primary mb30">
Full portfolio?
</a>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="swiper-container pagination-bottom" data-show-items="2">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="crumina-module crumina-case-item" data-mh="case-item">
<a href="img/case1.jpg" class="case-item__thumb js-zoom-image">
<img src="img/case1.jpg" alt="case">
</a>
<div class="square-colored bg-product-blue"></div>
<div class="case-item-content">
<h5 class="title">TEDx Zagaigs' fifth conference website.</h5>
<a href="javascript:alert('Not yet ready')" class="more-arrow white">
<span>View Case</span>
<div class="btn-next">
<svg class="plebits-icon icon-hover plebits-icon-arrow-right-1"><use xlink:href="#plebits-icon-arrow-right-1"></use></svg>
<svg class="plebits-icon plebits-icon-arrow-right1"><use xlink:href="#plebits-icon-arrow-right1"></use></svg>
</div>
</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="crumina-module crumina-case-item" data-mh="case-item">
<a href="img/case2.jpg" class="case-item__thumb js-zoom-image">
<img src="img/case2.jpg" alt="case">
</a>
<div class="square-colored bg-product-violet"></div>
<div class="case-item-content">
<h5 class="title">Sehhetna - Health Application</h5>
<a href="javascript:alert('Not yet ready')" class="more-arrow white">
<span>View Case</span>
<div class="btn-next">
<svg class="plebits-icon icon-hover plebits-icon-arrow-right-1"><use xlink:href="#plebits-icon-arrow-right-1"></use></svg>
<svg class="plebits-icon plebits-icon-arrow-right1"><use xlink:href="#plebits-icon-arrow-right1"></use></svg>
</div>
</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="crumina-module crumina-case-item" data-mh="case-item">
<a href="img/case1.jpg" class="case-item__thumb js-zoom-image">
<img src="img/case1.jpg" alt="case">
</a>
<div class="square-colored bg-product-blue"></div>
<div class="case-item-content">
<h5 class="title">A responsive website for booking Tickets and applying as Speaker/Volunteer </h5>
<a href="#" class="more-arrow white">
<span>View Case</span>
<div class="btn-next">
<svg class="plebits-icon icon-hover plebits-icon-arrow-right-1"><use xlink:href="#plebits-icon-arrow-right-1"></use></svg>
<svg class="plebits-icon plebits-icon-arrow-right1"><use xlink:href="#plebits-icon-arrow-right1"></use></svg>
</div>
</a>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="crumina-module crumina-case-item" data-mh="case-item">
<a href="img/case2.jpg" class="case-item__thumb js-zoom-image">
<img src="img/case2.jpg" alt="case">
</a>
<div class="square-colored bg-product-violet"></div>
<div class="case-item-content">
<h5 class="title">A health profile and know where is the nearest hospital to you.</h5>
<a href="#" class="more-arrow white">
<span>View Case</span>
<div class="btn-next">
<svg class="plebits-icon icon-hover plebits-icon-arrow-right-1"><use xlink:href="#plebits-icon-arrow-right-1"></use></svg>
<svg class="plebits-icon plebits-icon-arrow-right1"><use xlink:href="#plebits-icon-arrow-right1"></use></svg>
</div>
</a>
</div>
</div>
</div>
</div>
<!-- If we need pagination -->
<div class="swiper-pagination bottom-left"></div>
</div>
</div>
</div>
</div>
</section>
<!-- ... end Case Items -->
<!-- Testimonial Slider
<section class="crumina-module crumina-module-slider background-contain bg-16 bg-blue-lighteen pt100">
<div class="container">
<div class="row">
<div class="crumina-module crumina-module-img-bottom">
<div class="col-lg-3 col-md-12 col-sm-12 col-xs-12">
<img class="img-bottom" src="img/man2.png" alt="man">
</div>
<div class="col-lg-8 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
<div class="row">
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-12">
<div class="crumina-module-img-content">
<div class="crumina-module crumina-heading">
<h2 class="heading-title">What Our Customers Say about plebits app</h2>
</div>
</div>
</div>
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="swiper-container top-navigation" data-show-items="2">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="crumina-module crumina-testimonial-item testimonial-item-arrow">
<div class="author-info-wrap">
<div class="testimonial-img-author">
<img src="img/author2.png" alt="author">
</div>
<div class="author-info">
<a href="#" class="h6 author-name">Chris Miller</a>
<div class="author-company">Student, 23 years old</div>
</div>
</div>
<h6 class="testimonial-text">
Qest etiam processus dynamicus, qui sequitur mutationem.
</h6>
<ul class="rait-stars">
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star-half-empty"><use xlink:href="#plebits-icon-star-half-empty"></use></svg>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="crumina-module crumina-testimonial-item testimonial-item-arrow">
<div class="author-info-wrap">
<div class="testimonial-img-author">
<img src="img/author3.png" alt="author">
</div>
<div class="author-info">
<a href="#" class="h6 author-name">Susan Meyer</a>
<div class="author-company">Student, 20 years old</div>
</div>
</div>
<h6 class="testimonial-text">
Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius
per seacula quarta decima decima.
</h6>
<ul class="rait-stars">
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="col-lg-12 col-md-4 col-sm-12">
<div class="crumina-module crumina-testimonial-item testimonial-item-arrow">
<div class="author-info-wrap">
<div class="testimonial-img-author">
<img src="img/author4.png" alt="author">
</div>
<div class="author-info">
<a href="#" class="h6 author-name">Doe Simpson</a>
<div class="author-company">Student, 23 years old</div>
</div>
</div>
<h6 class="testimonial-text">
Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium.
</h6>
<ul class="rait-stars">
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star"><use xlink:href="#plebits-icon-star"></use></svg>
</a>
</li>
<li>
<a href="#">
<svg class="plebits-icon plebits-icon-star-half-empty"><use xlink:href="#plebits-icon-star-half-empty"></use></svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--Prev next buttons
<div class="btn-slider-wrap navigation-top-right">
<div class="btn-prev">
<svg class="plebits-icon icon-hover plebits-icon-arrow-left-1"><use xlink:href="#plebits-icon-arrow-left-1"></use></svg>
<svg class="plebits-icon plebits-icon-arrow-left1"><use xlink:href="#plebits-icon-arrow-left1"></use></svg>
</div>
<div class="btn-next">
<svg class="plebits-icon icon-hover plebits-icon-arrow-right-1"><use xlink:href="#plebits-icon-arrow-right-1"></use></svg>
<svg class="plebits-icon plebits-icon-arrow-right1"><use xlink:href="#plebits-icon-arrow-right1"></use></svg>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ... end Testimonial Slider -->
</div>
<!-- Footer -->
<footer class="footer" id="site-footer">
<div class="header-lines-decoration">
<span class="bg-secondary-color"></span>
<span class="bg-blue"></span>
<span class="bg-blue-light"></span>
<span class="bg-orange-light"></span>
<span class="bg-red"></span>
<span class="bg-green"></span>
<span class="bg-secondary-color"></span>
</div>
<div class="container">
<div class="row">
<div class="col-lg-5 col-md-5 col-sm-12 col-xs-12">
<div class="widget w-info">
<div class="site-logo">
<a href="index.html" class="full-block"></a>
<div class="logo-text">
<div class="logo-title"><pleb/ts></div>
<div class="logo-sub-title">tech startup</div>
</div>
</div>
<p>We are a business startup for technical services. Tell now, Plebits is an online platform. We can be hired for many high-quality services.
</p>
<a href="about" class="learn-more">Learn more about plebits</a>
</div>
</div>
<div class="col-lg-2 col-lg-offset-1 col-md-3 col-sm-12 col-sm-offset-0 col-xs-12">
<div class="widget w-list">
<h5 class="widget-title">Useful Links</h5>
<ul class="list list--primary">
<li>
<a href="index.html">Home</a>
<svg class="plebits-icon plebits-icon-arrow-right"><use xlink:href="#plebits-icon-arrow-right"></use></svg>
</li>
<li>
<a href="index.html#services">Services</a>
<svg class="plebits-icon plebits-icon-arrow-right"><use xlink:href="#plebits-icon-arrow-right"></use></svg>
</li>
<li>
<a href="indes.html#clients">Clients</a>
<svg class="plebits-icon plebits-icon-arrow-right"><use xlink:href="#plebits-icon-arrow-right"></use></svg>
</li>
<li>
<a href="about.html">About</a>
<svg class="plebits-icon plebits-icon-arrow-right"><use xlink:href="#plebits-icon-arrow-right"></use></svg>
</li>
<li>
<a href="staff.html">Staff</a>
<svg class="plebits-icon plebits-icon-arrow-right"><use xlink:href="#plebits-icon-arrow-right"></use></svg>
</li>
<li>
<a href="contact.html">Contact Us</a>
<svg class="plebits-icon plebits-icon-arrow-right"><use xlink:href="#plebits-icon-arrow-right"></use></svg>
</li>
<li>
<a href="javascript:alert('Soon')">Internships</a>
<svg class="plebits-icon plebits-icon-arrow-right"><use xlink:href="#plebits-icon-arrow-right"></use></svg>
</li>
</ul>
</div>
</div>
<div class="col-lg-3 col-lg-offset-1 col-md-4 col-sm-12 col-sm-offset-0 col-xs-12">
<div class="widget w-contacts">
<h5 class="widget-title">Contact with us</h5>
<div class="contact-item display-flex">
<svg class="plebits-icon plebits-icon-telephone-keypad-with-ten-keys"><use xlink:href="#plebits-icon-telephone-keypad-with-ten-keys"></use></svg>
<span class="info">+2 011 1691 3242</span>
</div>
<div class="contact-item display-flex">
<svg class="plebits-icon plebits-icon-message-closed-envelope-1"><use xlink:href="#plebits-icon-message-closed-envelope-1"></use></svg>
<span class="info">[email protected]</span>
</div>
<a href="#" class="btn btn--green full-width btn--with-shadow js-message-popup cd-nav-trigger">
Send a Message
</a>
</div>
<div class="widget w-follow">
<ul>
<li>Follow Us:</li>
<li>
<a href="https://www.facebook.com/plebits"><svg class="plebits-icon" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M15.117 0H.883C.395 0 0 .395 0 .883v14.234c0 .488.395.883.883.883h7.663V9.804H6.46V7.39h2.086V5.607c0-2.066 1.262-3.19 3.106-3.19.883 0 1.642.064 1.863.094v2.16h-1.28c-1 0-1.195.48-1.195 1.18v1.54h2.39l-.31 2.42h-2.08V16h4.077c.488 0 .883-.395.883-.883V.883C16 .395 15.605 0 15.117 0" fill-rule="nonzero"></path></svg></a>
</li>
<!-- <li>
<a href="#"><svg class="plebits-icon" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M16 3.038c-.59.26-1.22.437-1.885.517.677-.407 1.198-1.05 1.443-1.816-.634.37-1.337.64-2.085.79-.598-.64-1.45-1.04-2.396-1.04-1.812 0-3.282 1.47-3.282 3.28 0 .26.03.51.085.75-2.728-.13-5.147-1.44-6.766-3.42C.83 2.58.67 3.14.67 3.75c0 1.14.58 2.143 1.46 2.732-.538-.017-1.045-.165-1.487-.41v.04c0 1.59 1.13 2.918 2.633 3.22-.276.074-.566.114-.865.114-.21 0-.41-.02-.61-.058.42 1.304 1.63 2.253 3.07 2.28-1.12.88-2.54 1.404-4.07 1.404-.26 0-.52-.015-.78-.045 1.46.93 3.18 1.474 5.04 1.474 6.04 0 9.34-5 9.34-9.33 0-.14 0-.28-.01-.42.64-.46 1.2-1.04 1.64-1.7z" fill-rule="nonzero"></path></svg></a>
</li> -->
<!-- <li>
<a href="#"><svg class="plebits-icon" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill-rule="evenodd" clip-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="1.414"><path d="M8.16 6.857V9.6h4.537c-.183 1.177-1.37 3.45-4.537 3.45-2.73 0-4.96-2.26-4.96-5.05s2.23-5.05 4.96-5.05c1.554 0 2.594.66 3.19 1.233l2.17-2.092C12.126.79 10.32 0 8.16 0c-4.423 0-8 3.577-8 8s3.577 8 8 8c4.617 0 7.68-3.246 7.68-7.817 0-.526-.057-.926-.126-1.326H8.16z"></path></svg></a>
</li> -->
</ul>
</div>
</div>
</div>
</div>
<div class="sub-footer">
<a class="back-to-top" href="#">
<svg class="plebits-icon plebits-icon-arrow-top"><use xlink:href="#plebits-icon-arrow-top"></use></svg>
</a>
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<span>
Made with 💙 by Plebits web developers.</br>
Copyright © 2019 <a href="index.html" class="sub-footer__link">plebits</a>
</span>
</div>
</div>
</div>
</div>
</footer>
<!-- End Footer -->
<!-- Send Message Popup -->
<div class="window-popup message-popup" style="display: none">
<a href="#" class="popup-close js-popup-close cd-nav-trigger">
<svg class="plebits-icon plebits-icon-cancel-1"><use xlink:href="#plebits-icon-cancel-1"></use></svg>
</a>
<div class="send-message-popup">
<h5>Send a Message</h5>
<p>Sed diam nonummy nibh euismod tincidunt ut laoreet dolore magnais.</p>
<form class="contact-form" method="post" action="send_mail.php">
<div class="with-icon">
<input name="name" placeholder="Your Name" type="text" required="required">
<svg class="plebits-icon plebits-icon-user"><use xlink:href="#plebits-icon-user"></use></svg>
</div>
<div class="with-icon">
<input name="email" placeholder="Email Adress" type="text" required="required">
<svg class="plebits-icon plebits-icon-message-closed-envelope-1"><use xlink:href="#plebits-icon-message-closed-envelope-1"></use></svg>
</div>
<div class="with-icon">
<input class="with-icon" name="phone" placeholder="Phone Number" type="tel" required="required">
<svg class="plebits-icon plebits-icon-telephone-keypad-with-ten-keys"><use xlink:href="#plebits-icon-telephone-keypad-with-ten-keys"></use></svg>
</div>
<div class="with-icon">
<input class="with-icon" name="subject" placeholder="Subject" type="text" required="required">
<svg class="plebits-icon plebits-icon-icon-1"><use xlink:href="#plebits-icon-icon-1"></use></svg>
</div>
<div class="with-icon">
<textarea name="message" required="" placeholder="Your Message" style="height: 180px;"></textarea>
<svg class="plebits-icon plebits-icon-edit"><use xlink:href="#plebits-icon-edit"></use></svg>
</div>
<button class="btn btn--green btn--with-shadow full-width">
Send a Message
</button>
</form>
</div>
</div>
<!-- Send Message Popup -->
<!-- Used SVG-icons -->
<svg xmlns="http://www.w3.org/2000/svg" style="display: block; width: 1px; height: 1px; visibility: hidden; opacity: 0;">
<symbol id="plebits-icon-calendar-1" viewBox="0 0 512 512">
<path d="m462 77l-46 0 0-18c0-9-7-17-16-17-9 0-17 8-17 17l0 18-254 0 0-18c0-9-8-17-17-17-9 0-16 8-16 17l0 18-46 0c-28 0-50 23-50 50 0 4 0 323 0 326 0 9 7 17 17 17l478 0c10 0 17-8 17-17 0-3 0-322 0-326 0-27-22-50-50-50z m17 359l-446 0 0-229 446 0z m0-262l-446 0 0-47c0-9 8-16 17-16l46 0 0 5c0 9 7 16 16 16 9 0 17-7 17-16l0-5 254 0 0 5c0 9 8 16 17 16 9 0 16-7 16-16l0-5 46 0c9 0 17 7 17 16z m-355 66c-17 0-30 14-30 30 0 17 13 30 30 30 16 0 30-13 30-30 0-16-14-30-30-30z m132 0c-17 0-30 14-30 30 0 17 13 30 30 30 17 0 30-13 30-30 0-16-13-30-30-30z m132 0c-16 0-30 14-30 30 0 17 14 30 30 30 17 0 30-13 30-30 0-16-13-30-30-30z m-264 103c-17 0-30 14-30 31 0 16 13 30 30 30 16 0 30-14 30-30 0-17-14-31-30-31z m132 0c-17 0-30 14-30 31 0 16 13 30 30 30 17 0 30-14 30-30 0-17-13-31-30-31z m132 0c-16 0-30 14-30 31 0 16 14 30 30 30 17 0 30-14 30-30 0-17-13-31-30-31z"/>
</symbol>
<symbol id="plebits-icon-calendar-2" viewBox="0 0 512 512">
<path d="m462 77l-46 0 0-18c0-9-7-17-16-17-9 0-17 8-17 17l0 18-254 0 0-18c0-9-8-17-17-17-9 0-16 8-16 17l0 18-46 0c-28 0-50 23-50 50 0 4 0 323 0 326 0 9 7 17 17 17l478 0c10 0 17-8 17-17 0-3 0-322 0-326 0-27-22-50-50-50z m17 359l-446 0 0-229 446 0z m0-262l-446 0 0-47c0-9 8-16 17-16l46 0 0 5c0 9 7 16 16 16 9 0 17-7 17-16l0-5 254 0 0 5c0 9 8 16 17 16 9 0 16-7 16-16l0-5 46 0c9 0 17 7 17 16z m-329 66l-53 0c-9 0-17 7-17 17 0 9 8 16 17 16l53 0c10 0 17-7 17-16 0-10-7-17-17-17z m133 0l-54 0c-9 0-16 7-16 17 0 9 7 16 16 16l54 0c9 0 16-7 16-16 0-10-7-17-16-17z m134 0l-53 0c-9 0-17 7-17 17 0 9 8 16 17 16l53 0c9 0 17-7 17-16 0-10-8-17-17-17z m-267 65l-53 0c-9 0-17 8-17 17 0 9 8 17 17 17l53 0c10 0 17-8 17-17 0-9-7-17-17-17z m133 0l-54 0c-9 0-16 8-16 17 0 9 7 17 16 17l54 0c9 0 16-8 16-17 0-9-7-17-16-17z m134 0l-53 0c-9 0-17 8-17 17 0 9 8 17 17 17l53 0c9 0 17-8 17-17 0-9-8-17-17-17z m-267 66l-53 0c-9 0-17 7-17 16 0 10 8 17 17 17l53 0c10 0 17-7 17-17 0-9-7-16-17-16z m133 0l-54 0c-9 0-16 7-16 16 0 10 7 17 16 17l54 0c9 0 16-7 16-17 0-9-7-16-16-16z m134 0l-53 0c-9 0-17 7-17 16 0 10 8 17 17 17l53 0c9 0 17-7 17-17 0-9-8-16-17-16z"/>
</symbol>
<symbol id="plebits-icon-cancel-1" viewBox="0 0 512 512">
<path d="m293 256l211-209c10-10 10-26 0-36-10-10-27-10-37 0l-210 209-212-212c-10-10-27-10-37 0-10 10-10 26 0 36l212 212-212 212c-11 10-11 26 0 36 10 10 26 10 36 0l213-211 211 211c10 10 26 10 36 0 11-10 11-26 0-36z"/>
</symbol>
<symbol id="plebits-icon-checked" viewBox="0 0 512 512">
<path d="m450 240c-1-8-7-13-15-13-7 1-13 7-13 15 1 4 1 9 1 14 0 109-89 198-198 198-109 0-198-89-198-198 0-109 89-198 198-198 43 0 84 14 119 40 6 4 14 3 19-3 4-6 3-15-3-19-39-30-86-45-135-45-124 0-225 101-225 225 0 124 101 225 225 225 124 0 225-101 225-225 0-5 0-11 0-16z m46-178c-20-21-54-21-75 0l-197 197-70-70c-21-21-55-21-76 0-20 21-20 55 0 75l121 121c7 7 16 10 25 10 9 0 18-3 25-10l247-248c21-21 21-54 0-75z m-19 56l-248 247c-3 4-8 4-11 0l-120-120c-10-10-10-27 0-37 5-5 12-7 18-7 7 0 14 2 19 7l71 72c5 5 11 7 18 7 6 0 13-2 17-7l199-199c10-10 27-10 37 0 10 10 10 27 0 37z"/>
</symbol>
<symbol id="plebits-icon-clock-1" viewBox="0 0 512 512">
<path d="m256 0c-141 0-256 115-256 256 0 141 115 256 256 256 141 0 256-115 256-256 0-141-115-256-256-256z m0 458c-111 0-202-91-202-202 0-111 91-202 202-202 111 0 202 91 202 202 0 111-91 202-202 202z m137-210l-100 0c-3-6-8-11-14-14l0-121c0-12-10-23-23-23-13 0-23 11-23 23l0 121c-12 7-21 21-21 37 0 24 20 44 44 44 16 0 30-9 37-21l100 0c13 0 23-10 23-23 0-13-10-23-23-23z"/>
</symbol>
<symbol id="plebits-icon-dot-arrow" viewBox="0 0 512 512">
<path d="m52 26c0 14-12 25-26 25-14 0-25-11-25-25 0-15 11-26 25-26 14 0 26 11 26 26z m76 77c0 14-12 25-26 25-14 0-25-11-25-25 0-14 11-26 25-26 14 0 26 12 26 26z m0-77c0 14-12 25-26 25-14 0-25-11-25-25 0-15 11-26 25-26 14 0 26 11 26 26z m77 77c0 14-12 25-26 25-14 0-25-11-25-25 0-14 11-26 25-26 14 0 26 12 26 26z m0 76c0 14-12 25-26 25-14 0-25-11-25-25 0-14 11-26 25-26 14 0 26 12 26 26z m0-153c0 14-12 25-26 25-14 0-25-11-25-25 0-15 11-26 25-26 14 0 26 11 26 26z m76 77c0 14-12 25-26 25-14 0-25-11-25-25 0-14 11-26 25-26 14 0 26 12 26 26z m0 76c0 14-12 25-26 25-14 0-25-11-25-25 0-14 11-26 25-26 14 0 26 12 26 26z m0-153c0 14-12 25-26 25-14 0-25-11-25-25 0-15 11-26 25-26 14 0 26 11 26 26z m75 77c0 14-11 25-25 25-14 0-26-11-26-25 0-14 12-26 26-26 14 0 25 12 25 26z m0 76c0 14-11 25-25 25-14 0-26-11-26-25 0-14 12-26 26-26 14 0 25 12 25 26z m-75 75c0 14-12 26-26 26-14 0-25-12-25-26 0-14 11-25 25-25 14 0 26 11 26 25z m75 0c0 14-11 26-25 26-14 0-26-12-26-26 0-14 12-25 26-25 14 0 25 11 25 25z m-151 78c0 14-12 25-26 25-14 0-25-11-25-25 0-14 11-26 25-26 14 0 26 12 26 26z m76 0c0 14-12 25-26 25-14 0-25-11-25-25 0-14 11-26 25-26 14 0 26 12 26 26z m75 0c0 14-11 25-25 25-14 0-26-11-26-25 0-14 12-26 26-26 14 0 25 12 25 26z m-228 76c0 14-12 25-26 25-14 0-25-11-25-25 0-15 11-26 25-26 14 0 26 11 26 26z m77 0c0 14-12 25-26 25-14 0-25-11-25-25 0-15 11-26 25-26 14 0 26 11 26 26z m76 0c0 14-12 25-26 25-14 0-25-11-25-25 0-15 11-26 25-26 14 0 26 11 26 26z m75 0c0 14-11 25-25 25-14 0-26-11-26-25 0-15 12-26 26-26 14 0 25 11 25 26z m79-229c0 14-11 25-25 25-14 0-26-11-26-25 0-14 12-26 26-26 14 0 25 12 25 26z m0 75c0 14-11 26-25 26-14 0-26-12-26-26 0-14 12-25 26-25 14 0 25 11 25 25z m0 78c0 14-11 25-25 25-14 0-26-11-26-25 0-14 12-26 26-26 14 0 25 12 25 26z m-383 154c0 15-12 26-26 26-14 0-25-11-25-26 0-14 11-25 25-25 14 0 26 11 26 25z m76 0c0 15-12 26-26 26-14 0-25-11-25-26 0-14 11-25 25-25 14 0 26 11 26 25z m77 0c0 15-12 26-26 26-14 0-25-11-25-26 0-14 11-25 25-25 14 0 26 11 26 25z m76 0c0 15-12 26-26 26-14 0-25-11-25-26 0-14 11-25 25-25 14 0 26 11 26 25z m230-232c0 14-11 26-25 26-14 0-26-12-26-26 0-14 12-25 26-25 14 0 25 11 25 25z"/>
</symbol>
<symbol id="plebits-icon-edit" viewBox="0 0 512 512">
<path d="m482 64l-34-34c-62-56-126-20-146 0l-279 280c-9 6-9 17-9 19l-14 160c2 24 23 23 23 23l165-12c6-1 10-3 13-7l281-283c40-40 40-106 0-146z m-290 378c-11-20-24-38-37-53l210-213 46 46z m99-339l44 43-211 212c-20-16-38-28-53-36z m-237 258c28 16 71 47 99 98l-108 9z m398-179l-11 11-120-121 11-11c12-11 52-34 86 0l34 34c23 25 23 63 0 87z"/>
</symbol>
<symbol id="plebits-icon-expand" viewBox="0 0 512 512">
<path d="m146 270l94 95c7 8 22 9 31 0l94-95c9-9 9-22 0-30l-94-95c-9-9-22-9-31 0l-94 95c-9 8-9 21 0 30z m109-78l65 64-65 64-64-64z m120 125l-58 58c-8 8-8 21 0 30 5 4 17 12 31 0l57-58c9-8 9-21 0-30-8-9-21-9-30 0z m-239-123l58-58c8-8 8-21 0-30-9-9-22-9-31 0l-58 58c-8 8-8 22 0 30 10 9 23 8 31 0z m27 211c13 12 27 4 30 0 9-9 9-22 0-30l-57-58c-9-9-22-9-31 0-8 9-8 22 0 30z m212-211c13 12 26 4 30 0 9-9 9-22 0-30l-57-58c-9-9-22-9-31 0-8 9-8 22 0 30z m115-193l-468 0c-12 0-22 9-22 21l0 468c0 12 10 21 22 21l467 0c12 0 22-9 23-20l0-469c0-12-10-21-22-21z m-22 468l-426 0 0-426 426 0z"/>
</symbol>
<symbol id="plebits-icon-home-icon-silhouette" viewBox="0 0 512 512">
<path d="m504 233l-78-77 0-90c0-16-13-29-29-29-16 0-30 13-30 29l0 31-57-58c-29-29-79-28-107 0l-194 194c-12 12-12 30 0 42 11 11 30 11 41 0l194-194c7-7 18-7 24 0l194 194c6 6 14 8 21 8 8 0 15-2 21-8 11-12 11-30 0-42z m-238-97c-5-5-14-5-20 0l-171 171c-2 3-4 6-4 10l0 125c0 29 24 53 53 53l84 0 0-131 96 0 0 131 84 0c30 0 53-24 53-53l0-125c0-4-1-7-4-10z"/>
</symbol>
<symbol id="plebits-icon-icon252" viewBox="0 0 512 512">
<path d="m386 0l-292 291 108 0-83 221 299-291-108 0z"/>
</symbol>
<symbol id="plebits-icon-icon-1" viewBox="0 0 512 512">
<path d="m510 347c5 9 0 21-10 26l-216 98c-3 1-6 2-8 2-2 0-4 0-6-1l-256-79c-10-3-16-14-13-24 3-11 14-17 25-13l248 76 210-95c10-5 22 0 26 10z m-236 6l-248-76c-11-3-22 2-25 13-3 10 3 21 13 24l256 79c2 1 4 1 6 1 2 0 5-1 8-2l216-98c10-5 15-16 10-26-4-10-16-15-26-10z m-274-135c0-8 4-16 12-19l144-61c28-12 42-27 42-79 0-6 2-12 7-16 5-3 11-5 17-3l255 63c9 2 15 10 15 19l0 3c0 58 0 96-72 126-47 21-135 62-136 62-3 2-5 2-8 2-2 0-4 0-6-1l-256-78c-8-3-14-10-14-18z m77-4l197 61c22-11 90-43 131-60 44-18 47-32 47-78l-216-53c-4 40-19 71-65 90z"/>
</symbol>
<symbol id="plebits-icon-letter" viewBox="0 0 512 512">
<path d="m501 158l-231-154c-8-5-20-5-28 0l-231 154c-7 5-11 13-11 21l0 307c0 15 11 26 26 26l460 0c15 0 26-11 26-26l0-307c0-8-4-16-11-21z m-245-102l185 123-185 123-185-123z m205 405l-410 0 0-233 191 126c4 3 9 4 14 4 5 0 10-1 14-4l191-126z"/>
</symbol>
<symbol id="plebits-icon-link-chain" viewBox="0 0 512 512">
<path d="m431 14c-8-9-19-14-31-14-12 0-24 5-32 14l-135 134c-8 9-13 20-13 32 0 12 5 23 13 32l20 20-21 21-20-20c-9-8-20-13-32-13 0 0 0 0 0 0-12 0-23 5-32 13l-134 135c-9 8-14 20-14 32 0 12 5 23 14 31l66 67c9 8 20 13 32 13 12 0 23-5 32-13l134-135c9-8 14-20 14-32 0-12-5-23-14-31l-20-21 21-21 21 20c8 9 19 14 31 14 12 0 24-5 32-14l135-134c8-9 13-20 13-32 0-12-5-23-13-32z m-179 312c2 2 3 4 3 5 0 2-1 4-3 6l-134 135c-2 2-5 2-6 2-1 0-4 0-6-2l-66-67c-2-2-3-4-3-5 0-2 1-4 3-6l135-135c2-2 4-2 5-2 1 0 4 0 6 2l20 20-36 37c-8 7-8 19 0 26 3 4 8 5 13 5 4 0 9-1 13-5l36-36z m220-208l-135 134c-2 2-4 3-6 3-1 0-3-1-5-3l-20-20 38-38c7-7 7-19 0-26-7-8-19-8-26 0l-39 38-20-20c-2-2-2-5-2-6 0-1 0-3 2-5l135-135c2-2 4-3 6-3 1 0 3 1 5 3l67 66c2 2 2 5 2 6 0 1 0 4-2 6z m-360 394c-12 0-24-5-32-14l-67-66c-8-9-13-20-13-32 0-12 5-24 13-32l135-135c9-9 20-13 32-13 12 0 24 4 32 13l20 20 21-21-20-20c-9-8-13-20-13-32 0-12 4-23 13-32l135-135c8-8 20-13 32-13 12 0 23 5 32 13l66 67c9 8 14 20 14 32 0 12-5 23-14 32l-135 135c-8 8-19 13-32 13-12 0-23-5-32-13l-20-20-20 20 20 20c8 9 13 20 13 32 0 13-5 24-13 32l-135 135c-9 9-20 14-32 14z m68-292c-12 0-23 5-31 13l-135 135c-9 9-13 20-13 32 0 12 4 23 13 31l67 67c8 8 19 13 31 13 12 0 23-5 31-13l135-135c9-9 13-20 13-32 0-11-4-23-13-31l-20-21 21-21 21 20c8 9 20 13 31 13 12 0 23-4 32-13l135-135c8-8 13-19 13-31 0-12-5-23-13-31l-67-67c-8-9-19-13-31-13-12 0-23 4-32 13l-135 135c-8 8-13 19-13 31 0 12 5 23 13 32l21 20-22 22-20-21c-9-8-20-13-32-13z m-68 255c-1 0-4-1-6-3l-67-66c-2-3-2-5-2-6 0-2 0-4 2-6l135-135c2-2 5-3 6-3 1 0 4 1 6 3l21 20-37 37c-7 7-7 19 0 26 3 3 8 5 13 5 4 0 9-2 12-5l37-37 21 21c2 2 2 4 2 5 0 2 0 4-2 6l-135 135c-2 2-5 3-6 3z m68-218c-1 0-3 1-5 3l-135 134c-2 2-2 5-2 6 0 1 0 3 2 5l67 67c2 2 4 2 5 2 1 0 3 0 5-2l135-135c2-2 2-4 2-6 0-1 0-3-2-5l-20-20-36 36c-4 4-8 6-13 6-5 0-10-2-14-6-7-7-7-19 0-26l36-37-20-19c-1-2-4-3-5-3z m151-2c-1 0-3 0-5-2l-21-21 39-39c3-3 5-7 5-12 0-5-2-10-5-13-4-3-8-5-13-5-5 0-9 2-13 5l-39 39-20-21c-2-2-3-5-3-6 0-1 1-4 3-6l135-135c2-2 4-2 6-2 1 0 3 0 6 2l66 67c2 2 3 5 3 6 0 1-1 4-3 6l-135 135c-2 2-4 2-6 2z m-25-23l20 20c2 2 4 2 5 2 2 0 4 0 6-2l135-135c2-2 2-4 2-5 0-1 0-3-2-5l-67-67c-2-2-4-2-5-2-1 0-4 0-6 2l-134 135c-2 2-3 4-3 5 0 1 1 4 3 5l19 20 39-38c3-3 8-5 13-5 5 0 10 2 13 5 8 8 8 20 0 27z"/>
</symbol>
<symbol id="plebits-icon-media-play-symbol" viewBox="0 0 512 512">
<path d="m85 4c4-3 8-4 13-4 5 0 9 1 13 4l316 229c8 5 13 14 13 23 0 9-5 18-13 23l-316 229c-8 5-18 5-26 0-8-4-13-13-13-22l0-459c0-10 5-19 13-23z"/>
</symbol>
<symbol id="plebits-icon-message" viewBox="0 0 512 512">
<path d="m512 198c0-1-1-2-1-3-1-3-2-5-5-7l-73-51 0-55c0-7-6-13-13-13l-85 0-71-50c-5-3-11-3-15 0l-73 50-84 0c-7 0-13 6-13 13l0 54-73 51c-4 3-6 7-6 11 0 0 0 0 0 0l0 284c0 4 2 7 4 9 3 3 6 4 10 4 0 0 0 0 0 0l485 0c7 0 13-6 13-14z m-79-29l42 29-42 29z m-177-123l33 23-66 0z m-150 49l300 0 0 150-101 70-41-32c0 0 0 0 0 0-5-3-11-3-16 0l-41 33-101-70z m-27 73l0 60-43-30z m-53 55l159 110-158 122z m26 246l204-159 204 158z m275-137l158-110 1 233z m18-184l-178 0c-7 0-13 6-13 13 0 7 6 13 13 13l178 0c7 0 13-6 13-13 0-7-6-13-13-13z m0 68l-178 0c-7 0-13 6-13 13 0 7 6 13 13 13l178 0c7 0 13-6 13-13 0-7-6-13-13-13z"/>
</symbol>
<symbol id="plebits-icon-message-closed-envelope-1" viewBox="0 0 512 512">
<path d="m451 62l-390 0c-34 0-61 26-61 58l0 272c0 32 27 58 61 58l390 0c34 0 61-26 61-58l0-272c0-32-27-58-61-58z m0 337l-390 0c-5 0-9-3-9-7l0-236 176 149c4 3 8 5 13 5l30 0c5 0 9-2 13-5l176-149 0 236c0 4-4 7-9 7z m-195-140l-172-146 344 0z"/>
</symbol>
<symbol id="plebits-icon-minus" viewBox="0 0 512 512">
<path d="m452 195l-392 0c-33 0-60 28-60 61 0 33 27 61 60 61l392 0c33 0 60-28 60-61 0-33-27-61-60-61z"/>
</symbol>
<symbol id="plebits-icon-musical-note-2" viewBox="0 0 512 512">
<path d="m181 408c0 47-38 85-85 85-48 0-86-38-86-85 0-48 38-86 86-86 47 0 85 38 85 86z m321-44c0 47-38 86-86 86-47 0-85-39-85-86 0-47 38-85 85-85 48 0 86 38 86 85z m-321-302l321-43 0 71-321 44z m321 67c-6 0-10 4-10 10l0 10c0 6 4 10 10 10 5 0 10-4 10-10l0-10c0-6-5-10-10-10z m0 56c-6 0-10 4-10 10l0 110c-18-22-45-36-76-36-52 0-95 43-95 95 0 53 43 96 95 96 53 0 96-43 96-96l0-169c0-6-5-10-10-10z m-86 254c-41 0-75-33-75-75 0-41 34-75 75-75 42 0 76 34 76 75 0 42-34 75-76 75z m-245-90c-18-23-45-37-75-37-53 0-96 43-96 96 0 52 43 95 96 95 52 0 95-43 95-95l0-265 312-42c5-1 9-5 9-11l0-71c0-3-1-6-3-8-3-1-6-2-9-2l-321 43c-5 1-8 5-8 10z m-75 134c-42 0-76-34-76-75 0-42 34-76 76-76 41 0 75 34 75 76 0 41-34 75-75 75z m396-401l-301 40 0-51 301-40z m-399 269c-30 0-54 24-54 54 0 6 5 10 11 10 5 0 10-4 10-10 0-18 15-33 33-33 5 0 10-5 10-10 0-6-5-11-10-11z"/>
</symbol>
<symbol id="plebits-icon-picture" viewBox="0 0 512 512">
<path d="m459 0l-406 0c-29 0-53 24-53 53l0 406c0 29 24 53 53 53l406 0c29 0 53-24 53-53l0-406c0-29-24-53-53-53z m-9 316l-80-80c-5-4-12-4-16 0l-59 58-100-100c-5-5-12-5-17 0l-116 116 0-248 388 0z m-96-170c0 24-20 44-45 44-24 0-44-20-44-44 0-25 20-45 44-45 25 0 45 20 45 45z"/>
</symbol>
<symbol id="plebits-icon-placeholder-3" viewBox="0 0 512 512">
<path d="m434 479l-58-122c-1-2-3-4-4-5-5-4-13-3-17 2-4 4-5 10-2 14l50 107-50-23c-6-2-14-2-21 0l-76 34c0 0 0 0 0 0 0 0 0 0 0 0l-76-33c-7-3-15-3-21-1l-50 23 50-107c2-3 2-8 0-11-3-7-11-9-17-6-3 1-5 3-6 6l-58 122c-3 8-2 16 4 22 6 6 14 7 22 4l65-29 77 34c3 1 6 2 10 2 4 0 7-1 10-2l77-34 65 29c8 3 16 2 22-4 6-6 7-14 4-22z m-64-432c-32-31-73-48-116-47-43 1-83 18-113 48-30 30-46 70-47 113 0 26 6 51 18 74 0 1 0 1 0 1l111 185c7 12 19 19 33 19 14 0 26-7 33-19l111-185c0 0 0 0 0-1 12-23 18-47 18-73 0-44-17-85-48-115z m7 176l-110 185c-3 6-9 7-11 7-2 0-8-1-11-7l-110-185c-10-19-15-40-15-62 0-74 61-134 134-135 37-1 71 13 98 39 26 26 40 60 40 97 0 21-5 42-15 61z m-121-120c-32 0-58 26-58 59 0 32 26 58 58 58 32 0 59-26 59-58 0-33-27-59-59-59z m0 92c-18 0-33-15-33-33 0-18 15-33 33-33 18 0 33 15 33 33 0 18-15 33-33 33z"/>
</symbol>
<symbol id="plebits-icon-placeholder-4" viewBox="0 0 512 512">
<path d="m383 53c-34-34-79-53-127-53-48 0-93 19-127 53-62 62-70 180-17 252l144 207 143-207c54-72 46-190-16-252z m-125 190c-36 0-66-29-66-65 0-36 30-66 66-66 36 0 65 30 65 66 0 36-29 65-65 65z"/>
</symbol>
<symbol id="plebits-icon-play-button-2" viewBox="0 0 512 512">
<path d="m478 128c-71-122-228-164-350-94-122 71-164 228-94 350 71 123 228 164 350 94 123-71 164-228 94-350z m-120 305c-97 57-223 23-279-75-57-97-23-223 75-279 98-57 223-23 279 75 57 98 23 223-75 279z m-10-187l-134-79c-12-7-22-1-22 13l1 155c0 14 10 20 22 13l133-77c12-7 12-18 0-25z"/>
</symbol>
<symbol id="plebits-icon-star" viewBox="0 0 512 512">
<path d="m512 201c0-7-6-12-17-14l-155-23-69-140c-4-8-9-12-15-12-6 0-11 4-15 12l-69 140-155 23c-11 2-17 7-17 14 0 4 3 9 8 15l112 109-27 154c0 3 0 5 0 6 0 4 1 8 3 11 2 3 5 4 10 4 3 0 7-1 12-3l138-73 138 73c5 2 9 3 13 3 4 0 7-1 9-4 2-3 3-7 3-11 0-3 0-5 0-6l-27-154 112-109c5-5 8-10 8-15z"/>
</symbol>
<symbol id="plebits-icon-star-half-empty" viewBox="0 0 512 512">
<path d="m511 198c-1-6-7-10-16-11l-155-23-69-140c-4-8-9-12-15-12-6 0-11 4-15 12l-69 140-155 23c-9 1-15 5-16 11-2 5 0 11 7 18l112 109-27 154c-1 6 0 12 2 16 2 3 6 5 11 5 3 0 7-1 12-3l138-73 138 73c5 2 9 3 13 3 4 0 8-2 10-5 2-4 3-10 2-16l-27-154 112-109c7-7 9-13 7-18z m-146 98l-15 15 4 20 18 110-98-52-18-10 0-296 49 99 9 18 21 4 109 16z"/>
</symbol>
<symbol id="plebits-icon-stopwatch" viewBox="0 0 512 512">
<path d="m278 261l-111-80c-3-3-8-2-11 1-3 3-3 7-1 11l80 110c5 7 13 12 22 13 1 0 2 0 3 0 8 0 16-3 21-9 7-6 10-15 9-24-1-9-5-17-12-22z m-9 34c-3 3-6 4-10 4-4-1-8-3-10-6l-49-67 68 49c3 2 5 5 5 9 0 4-1 8-4 11z m210-73c0 0 0 0 0 0 0 0 0 0 0 0-6-20-13-38-23-55 0 0 0 0 0-1-1 0-1 0-1 0-8-15-19-29-30-41l18-18 12 12 36-37-36-36-36 36 12 13-18 18c-13-12-27-22-41-31-1 0-1 0-1 0 0 0 0 0 0 0-17-10-36-18-55-23 0 0 0 0 0 0 0 0 0 0 0 0-11-3-23-5-34-6l0-10 12 0c12 0 22-10 22-22 0-11-10-21-22-21l-76 0c-12 0-22 10-22 21 0 12 10 22 22 22l12 0 0 10c-11 1-23 3-34 6 0 0 0 0 0 0 0 0 0 0 0 0-19 5-38 13-55 23 0 0 0 0 0 0 0 0 0 0-1 0-14 9-28 19-41 31l-18-18 12-13-36-36-36 36 36 37 12-12 18 18c-11 12-22 26-30 41 0 0 0 0-1 0 0 1 0 1 0 1-10 17-17 35-22 55-1 0-1 0-1 0 0 0 0 0 0 0-5 19-7 39-7 60 0 20 2 40 7 59 0 0 0 0 0 0 0 0 0 0 1 0 5 20 12 38 22 55 0 0 0 1 0 1 1 0 1 0 1 0 10 17 22 33 36 47 0 0 0 0 0 1 0 0 0 0 1 0 14 14 29 26 46 36 1 0 1 0 1 0 0 0 0 0 1 0 17 10 35 18 54 23 0 0 0 0 0 0 0 0 0 0 0 0 19 5 39 8 60 8 21 0 41-3 60-8 0 0 0 0 0 0 0 0 0 0 0 0 19-5 37-13 54-23 1 0 1 0 1 0 0 0 0 0 1 0 17-10 32-22 46-36 1 0 1 0 1 0 0-1 0-1 0-1 14-14 26-30 36-47 0 0 0 0 1 0 0 0 0-1 0-1 10-17 17-35 23-55 0 0 0 0 0 0 0 0 0 0 0 0 5-19 7-39 7-59 0-21-2-41-7-60z m-24-152l12 12-12 13-12-13z m-410 12l12-12 12 12-12 13z m398 259l17 4c-4 12-9 24-15 36l-15-9c-4-2-9-1-11 3-3 5-1 10 3 12l14 9c-7 10-15 21-23 30l-12-12c-4-3-9-3-12 0-4 4-4 9 0 12l12 12c-10 9-20 17-31 24l-8-15c-3-4-8-5-12-3-4 3-6 8-3 12l8 14c-11 6-23 11-36 15l-4-16c-1-5-6-7-10-6-5 1-8 6-6 10l4 17c-13 2-25 4-38 5l0-17c0-5-4-9-9-9-5 0-9 4-9 9l0 17c-13-1-25-3-38-5l4-17c2-4-1-9-6-10-4-1-9 1-10 6l-4 16c-13-4-25-9-36-15l8-14c3-4 1-9-3-12-4-2-9-1-12 3l-8 15c-11-7-21-15-31-24l12-12c4-3 4-8 0-12-3-3-8-3-12 0l-12 12c-8-9-16-20-23-30l14-9c4-2 6-7 3-12-2-4-7-5-11-3l-15 9c-6-12-11-24-15-36l17-4c4-2 7-6 6-11-2-4-6-7-11-6l-16 5c-3-13-5-26-5-39l17 0c4 0 8-4 8-8 0-5-4-9-8-9l-17 0c0-13 2-26 5-38l16 4c1 0 2 0 2 0 4 0 8-2 9-6 1-5-2-9-6-10l-17-5c4-12 9-24 15-36l15 9c1 1 3 1 4 1 3 0 6-2 7-4 3-4 1-10-3-12l-14-8c7-11 15-22 23-31l12 12c2 2 4 2 6 2 2 0 5 0 6-2 4-3 4-9 0-12l-12-12c10-9 20-17 31-24l8 15c2 3 5 4 8 4 1 0 3 0 4-1 4-2 6-8 3-12l-8-14c11-6 23-11 36-15l4 16c1 4 4 7 8 7 1 0 2-1 2-1 5-1 8-6 6-10l-4-16c10-3 20-4 31-5 2 0 5 0 7-1 0 0 0 0 0 0l0 17c0 5 4 9 9 9 5 0 9-4 9-9l0-17c0 0 0 0 0 0 2 1 5 1 7 1 11 1 21 2 31 5l-4 16c-2 4 1 9 6 10 0 0 1 1 2 1 4 0 7-3 8-7l4-16c13 4 25 9 36 15l-8 14c-3 4-1 10 3 12 1 1 3 1 4 1 3 0 6-1 8-4l8-15c11 7 21 15 31 24l-12 12c-4 3-4 9 0 12 1 2 4 2 6 2 2 0 4 0 6-2l12-12c8 9 16 20 23 31l-14 8c-4 2-6 8-3 12 1 2 4 4 7 4 1 0 3 0 4-1l15-9c6 12 11 24 15 36l-17 5c-4 1-7 5-6 10 1 4 5 6 9 6 0 0 1 0 2 0l16-4c3 12 5 25 5 38l-17 0c-4 0-8 4-8 9 0 4 4 8 8 8l17 0c0 13-2 26-5 39l-16-5c-5-1-9 2-11 6-1 5 2 9 6 11z m-196-290l0-25-29 0c-3 0-5-2-5-5 0-2 2-4 5-4l76 0c3 0 5 2 5 4 0 3-2 5-5 5l-29 0 0 25c-3 0-6 0-9 0-3 0-6 0-9 0z"/>
</symbol>
<symbol id="plebits-icon-telephone-keypad-with-ten-keys" viewBox="0 0 512 512">
<path d="m256 419c-26 0-47 21-47 46 0 26 21 47 47 47 26 0 47-21 47-47 0-25-21-46-47-46z m-140-419c-25 0-46 21-46 47 0 25 21 46 46 46 26 0 47-21 47-46 0-26-21-47-47-47z m0 140c-25 0-46 21-46 46 0 26 21 47 46 47 26 0 47-21 47-47 0-25-21-46-47-46z m0 139c-25 0-46 21-46 47 0 25 21 46 46 46 26 0 47-21 47-46 0-26-21-47-47-47z m280-186c25 0 46-21 46-46 0-26-21-47-46-47-26 0-47 21-47 47 0 25 21 46 47 46z m-140 186c-26 0-47 21-47 47 0 25 21 46 47 46 26 0 47-21 47-46 0-26-21-47-47-47z m140 0c-26 0-47 21-47 47 0 25 21 46 47 46 25 0 46-21 46-46 0-26-21-47-46-47z m0-139c-26 0-47 21-47 46 0 26 21 47 47 47 25 0 46-21 46-47 0-25-21-46-46-46z m-140 0c-26 0-47 21-47 46 0 26 21 47 47 47 26 0 47-21 47-47 0-25-21-46-47-46z m0-140c-26 0-47 21-47 47 0 25 21 46 47 46 26 0 47-21 47-46 0-26-21-47-47-47z"/>
</symbol>
<symbol id="plebits-icon-upward-arrow" viewBox="0 0 512 512">
<path d="m308 0l-151 198 79 0c13 137-39 267-182 314 184 1 289-151 324-314l80 0z"/>
</symbol>
<symbol id="plebits-icon-user" viewBox="0 0 512 512">
<path d="m325 193c0 37-30 68-68 68-37 0-68-31-68-68 0-38 31-69 68-69 38 0 68 31 68 69z m-69-193c-141 0-256 115-256 256 0 141 115 256 256 256 141 0 256-115 256-256 0-141-115-256-256-256z m117 423c-8-69-36-139-116-139-80 0-108 71-116 140-54-36-89-98-89-168 0-113 91-204 204-204 113 0 204 91 204 204 0 69-34 130-87 167z"/>
</symbol>
<symbol id="plebits-icon-users" viewBox="0 0 512 512">
<path d="m103 206c0-46 37-83 83-83 45 0 82 37 82 83 0 45-37 82-82 82-46 0-83-37-83-82z m118 88l-71 0c-58 0-105 47-105 106l0 86 0 1 6 2c55 17 104 23 144 23 77 0 122-22 125-24l6-2 0 0 0-86c0-59-47-106-105-106z m105-129c46 0 83-37 83-82 0-46-37-83-83-83-45 0-82 37-82 83 0 45 37 82 82 82z m35 6l-70 0c-1 0-3 0-5 0 7 13 10 28 10 44 0 29-12 55-31 74 45 13 80 52 88 99 67-2 106-21 108-23l6-3 0 0 0-85c0-59-47-106-106-106z"/>
</symbol>
<symbol id="plebits-icon-worlwide" viewBox="0 0 512 512">
<path d="m437 75c-48-47-110-74-178-75-1 0-2 0-3 0-1 0-2 0-3 0-68 1-130 28-178 75-48 48-75 113-75 181 0 68 27 133 75 181 48 47 110 74 178 75 1 0 2 0 3 0 1 0 2 0 3 0 68-1 130-28 178-75 48-48 75-113 75-181 0-68-27-133-75-181z m-340 22c27-28 60-47 96-57-9 9-16 20-24 31-9 16-17 32-24 49l-69 0c6-8 13-16 21-23z m-41 54l79 0c-8 28-13 59-14 90l-90 0c2-32 11-63 25-90z m0 210c-14-27-23-58-25-90l90 0c1 31 6 62 14 90z m41 54c-8-7-15-15-21-23l69 0c7 17 15 33 24 49 8 11 15 22 24 31-36-10-69-29-96-57z m144 60c-13-8-30-25-46-50-6-11-12-22-17-33l63 0z m0-114l-74 0c-9-28-15-58-16-90l90 0z m0-120l-90 0c1-32 7-62 16-90l74 0z m0-121l-63 0c5-11 11-22 17-33 16-25 33-42 46-50l0 83z m215 31c14 27 23 58 25 90l-90 0c-1-31-6-62-14-90z m-41-54c8 7 15 15 21 23l-69 0c-7-17-15-33-24-49-8-11-15-22-24-31 36 10 69 29 96 57z m-144-60c13 8 30 25 46 50 6 11 12 22 17 33l-63 0 0-83z m0 114l74 0c9 28 15 58 16 90l-90 0z m90 120c-1 32-7 62-16 90l-74 0 0-90z m-90 204l0-83 63 0c-5 11-11 22-17 33-16 25-33 42-46 50z m144-60c-27 28-60 47-96 57 9-9 16-20 24-31 9-16 17-32 24-49l69 0c-6 8-13 16-21 23z m41-54l-79 0c8-28 13-59 14-90l90 0c-2 32-11 63-25 90z"/>
</symbol>
<symbol id="plebits-icon-world-map" viewBox="0 0 512 512">
<path d="m172 295c0-1-9-9-12-12-2-3-6-4-8-5-3-1-17-6-21-3-3 2-8 4-10 0-2-4-3-5-5-5-3-1-2-4-2-7 0-3-2-5-3-4-2 2-9 7-9 5-1-3-6-13 1-15 6-2 12-1 14 1 1 2 3 7 5 6 2-1 1-4 1-7 1-3 6-8 8-12 2-4 3-7 6-8 2-1 4-3 6-4 3-2 7-4 9-5 1-1 8-4 10-4 2 1 4 0 2-3-2-4-4-14-8-18-4-4-4-6-6-10-1-4-3-8-4-5-2 3-4 7-6 3-1-4-1-3-3-5-2-2-3-2-6-3-3-1-5 0-5 3 0 2-2 7-1 10 2 3 3 7 1 8-2 1 0 8-2 8-2 0-3 0-3-2 0-3 1-7-3-7-4 0-7-2-10-4-3-2-5-1-4-6 0-5-1-6 2-9 4-3 5-4 7-3 2 1 4 1 6-1 1-1 4 0 4-2 0-2-3-2-3-5 0-3 2-1 2-6 1-5-3-12-7-11-4 1-11 6-12 4-1-3-4-1-9 0-5 2-25-1-27-3 0 0-3-3-5-1-2 1-10 0-12 0-2 0-4 3-7 2-3-1-12-3-15-5-2-1-5-1-7-2-1-1-7-1-8 0-1 2-5 4-7 6-2 2-4 2-2 6 2 4-6 7-4 11 2 5 0 17 7 19 8 2 14 4 18 0 4-3 11-3 13 0 2 4 3 10 10 13 6 4 12 13 12 18-1 4 0 18 7 26 7 8 14 23 14 20 1-4 1-7 2-5 2 3 6 10 12 12 6 1 9 2 12 4 2 2 4 4 7 5 2 1 9 4 10 7 1 2 1 5 0 9-2 3-3 7-1 10 1 3 5 13 9 15 3 2 6 6 5 10-1 5-4 26-4 31 1 4-4 20 0 26 3 6 10 8 12 7 3 0 1-1 0-4-2-2-1-6 0-9 2-3 2-4 1-7-1-3-1-5 1-7 2-3 10-9 12-12 3-2 18-21 20-23 2-1 7-5 8-11 2-6 7-17 3-20-3-3-17-5-18-5z m37-164c1-2 4-8 5-10l-58 0c0 3 3 14 2 19 0 5 2 4 3 6 1 2 1 5 0 8-1 2-1 8 2 14 3 7 6 15 9 16 3 0 2 4 4 3 2-2 3-5 4-10 2-5 2-9 6-11 5-3 17-11 19-14 3-3 6-4 5-9-1-5-2-9-1-12z m289 23c-2-2-15-13-21-11-6 1-16-3-17-4-2-1-16-5-23-6-4 0-19-3-25-6-6-3-12-16-24-14-1 0-16 2-20 6-3 3-5 7-7 8-2 0-8 0-8 3 0 3 2 12 0 10-3-2-5-6-6-3-1 3-3 5-4 4-1-1-7 0-8 2-1 2-8 6-11 7-3 1-4 2-6 3-2 1-14 7-17 4-2-2-3 0-4 0 0 0-5-1-8-4-2-4-3-3-6-6-3-3-4-7-7-5-3 1-17 15-22 21-5 6-14 13-10 17 5 5 8 4 8 7 1 2 1 5 2 6 1 1 5 4 7 0 3-5 3-8 6-7 2 0 3 2 1 6-1 3-2 8-6 8-5 0-10-3-11-2-2 1-2 2-4 3-2 2-7 8-11 9-3 1-7 0-5 3 3 3 6 9 3 9-4 0-9-1-10 3 0 3-1 5-1 7 1 3 4 7 6 6 3-2 9-4 11-7 1-4 3-7 7-7 3 0 12 5 12 7-1 1-3 5-1 4 3-1 4-3 6-3 1-1 3 1 3 2 1 1 5 3 5 0 1-3 2-1 4 0 2 1 9 2 10 3 1 1 3 3 0 6-2 3-5 4-10 2-4-2-9 2-13 0-5-3-3-6-9-8-5-3-18 0-23 2-4 1-4 1-5 3-2 2-13 15-13 22 0 7 4 26 17 24 13-2 21 0 20 4-2 3-1 4 2 9 2 4 8 34 8 39 1 5 0 11 6 10 6-1 12-3 15-8 3-6 3-12 6-16 4-3 8-3 8-7 0-5-1-16 1-19 3-2 13-14 14-19 1-4 3-5-2-5-4 0-11-1-13-5-2-4-7-11-7-13 0-2 3-1 4 2 2 4 7 15 13 13 6-3 14-5 14-9 1-4-2-8-5-8-3 0-6-2-6-4 0-2 0-1 4 0 3 2 4 4 10 4 5 1 11 6 14 8 3 3 8 18 10 20 1 2 3 2 4-2 1-3 7-13 10-15 3-3 3-7 5-4 2 2 10 8 10 11 1 4 0 11 2 9 1-2 3-7 4-5 2 2 2 5 5 3 4-3 10-4 6-9-3-5-1-9 1-9 2 0 16-3 17-10 0-8-5-12-3-16 3-4 6-7 7-5 1 2-2 10 1 9 4-1 8-1 8-4 0-2-1-8 0-9 2-2 13-12 14-16 1-4 4-8 2-11-2-3-6-2-3-6 3-4 7-7 11-8 11-1 8 13 8 16 0 3 0 11 2 7 2-4 4-8 7-12 3-3 5-5 5-8 1-3 1-4 4-5 3-2 17-7 18-11 2-4-1-7 2-7 3 0 6 4 8 2 2-2 6-5 5-7 0-2-5-7-8-8z m-59 65c-1 2-2 3-4 8-1 5-1 4-3 7-1 4-4 4-7 6-3 2-3 6-3 6-3 4 10-4 14-7 4-2 3-5 3-9 1-4 2-5 4-7 2-1 0-5-1-7-1-3-2 0-3 3z m-38 88c1-1 0-3 2-3 2 1 4 2 6 1 3-2 5-1 4-4 0-2 0-5 0-7-1-2-4-2-6 0-3 2-6 5-6 4 0-1 1-4 1-6-1-2 0-4-4-2-3 1-6 1-7 3-1 2-3 6-5 3-2-2-9-7-9-7 0 0-7-6-5-2 3 4 7 11 8 13 2 3 4 6 7 4 2-1 2-1 5 0 3 2 7 4 9 3z m45-5c-4-2-2-3-6-4-5-1-8 0-9-1-1-1-7-3-6 0 1 3 6 4 7 4 1 1-2 3 0 4 3 2 5 4 8 3 3 0 4 1 7 2 2 0 5-1 4-2-1-1-2-3-2-4 0-1 1-1-3-2z m-2 17c-1-4-4-11-5-8-1 4-6 6-8 6-1 0 0-2 0-3 0-2-1-3-6-2-4 1-5 5-6 5-1-1-4-2-6 1-2 2-3 6-6 7-2 0-9 1-9 4 0 4 2 8 2 11-1 2-4 8 0 10 3 1 5 1 8-1 3-1 16-5 17-4 2 2 5 5 6 5 2 2 3 5 6 6 3 1 6 1 7 1 1 0 6-2 7-4 1-3 3-9 4-13 1-3 2-6-1-9-3-3-9-8-10-12z"/>
</symbol>
<symbol id="plebits-icon-menu-1" viewBox="0 0 512 512">
<path d="m23 186l466 0c13 0 23-10 23-23 0-13-10-23-23-23l-466 0c-13 0-23 10-23 23 0 13 10 23 23 23z m466 47l-466 0c-13 0-23 10-23 23 0 13 10 23 23 23l466 0c13 0 23-10 23-23 0-13-10-23-23-23z m0 93l-466 0c-13 0-23 10-23 23 0 13 10 23 23 23l466 0c13 0 23-10 23-23 0-13-10-23-23-23z"/>
</symbol>
<symbol id="plebits-icon-google-play" viewBox="0 0 512 512">
<path d="m24 24c-2 4-2 9-2 14l0 436c0 5 0 9 2 14l244-232c0 0-244-232-244-232z m339 142l-285-159c-11-7-22-8-32-6l245 233c0 0 72-68 72-68z m105 58l-76-42-78 74 80 75 74-40c36-21 23-54 0-67z m-423 287c10 2 21 1 33-6l286-157-73-70c0 0-246 233-246 233z"/>
</symbol>
<symbol id="plebits-icon-chat-1" viewBox="0 0 512 512">
<path d="m256 27l0 25c38 26 63 69 63 119 0 49-25 92-63 118l0 43 27 0 0 54 54-54 135 0c9 0 18-8 18-18l0-287c0-10-9-18-18-18l-198 0c-10 0-18 8-18 18m0 0l0 25c38 26 63 69 63 119 0 49-25 92-63 118l0 43 27 0 0 54 54-54 108 0c10 0 18-8 18-18l0-287c0-10-8-18-18-18l-171 0c-10 0-18 8-18 18m-81 0c-79 0-144 65-144 144 0 45 21 85 54 112l0 67 44-44c15 5 30 8 46 8 79 0 144-64 144-143 0-79-65-144-144-144m14 9c-72 0-131 63-131 140 0 44 19 84 49 109l0 65 39-42c14 5 27 7 43 7 71 0 130-63 130-140 0-76-59-139-130-139m94 296l-27 0 0-43c-23 16-51 25-81 25-16 0-31-2-46-8l-44 44 0-67c-10-9-20-20-28-31l-17 0c-9 0-18 8-18 17l0 162c0 10 9 18 18 18l0 54 54-54 198 0c10 0 18-8 18-18l0-72-27 27 0-54z m-216-72c-10 0-18 0-18 9l0 162c0 10 8 18 18 18l0 27 27-27 198 0c10 0 18-8 18-18l0-72-27 27 0-54-27 0 0-43c-23 16-51 25-81 25-16 0-39-2-54-8l-36 44 0-67z m18 99c-1 0-2 0-3-1-4 0-6-4-6-8l0-63c-34-29-54-71-54-116 0-85 69-153 153-153 85 0 153 68 153 153 0 84-68 152-153 152-14 0-29-1-44-6l-39 40c-2 1-4 2-7 2z m90-323c-74 0-135 60-135 135 0 41 19 79 51 105 2 2 3 4 3 7l0 46 29-29c3-3 6-4 9-2 14 5 29 7 43 7 75 0 135-60 135-134 0-75-60-135-135-135z m108 359c-1 0-3 0-4-1-3-1-5-4-5-8l0-45-18 0c-5 0-9-3-9-9l0-43c0-2 2-5 4-7 36-25 59-66 59-111 0-45-23-87-59-112-2-2-4-4-4-7l0-25c0-15 12-27 27-27l198 0c15 0 27 12 27 27l0 287c0 16-12 27-27 27l-132 0-51 52c-2 1-3 2-6 2z m-18-72l18 0c5 0 9 4 9 9l0 33 39-39c1-2 3-3 6-3l135 0c5 0 9-3 9-9l0-287c0-5-4-9-9-9l-198 0c-5 0-9 4-9 9l0 21c40 28 63 74 63 123 0 48-23 94-63 123l0 29z m-225 189c0 0-2 0-3-1-4-1-6-4-6-8l0-47c-10-3-18-13-18-25l0-162c0-15 12-26 27-26l17 0c2 0 5 1 7 3 8 12 17 22 27 30 2 2 3 4 3 7l0 46 29-29c3-3 6-4 9-2 40 14 84 7 120-16 2-2 6-2 8-1 3 2 5 5 5 8l0 34 18 0c5 0 9 4 9 9l0 33 12-12c2-3 6-4 9-2 4 2 6 5 6 8l0 72c0 15-12 27-27 27l-194 0-51 51c-2 2-4 3-7 3z m0-252c-5 0-9 4-9 9l0 162c0 6 4 9 9 9 6 0 9 4 9 9l0 32 39-38c2-2 4-3 6-3l198 0c5 0 9-3 9-9l0-50-12 12c-2 2-6 3-10 1-3-1-5-4-5-8l0-45-18 0c-5 0-9-3-9-9l0-27c-35 19-76 24-116 12l-39 40c-3 2-7 3-10 1-4 0-6-4-6-8l0-63c-9-9-17-17-24-27z m396-170l-63 0c-6 0-9-4-9-9 0-6 3-9 9-9l63 0c5 0 9 3 9 9 0 5-4 9-9 9z m-99 0l-45 0c-5 0-9-4-9-9 0-6 4-9 9-9l45 0c5 0 9 3 9 9 0 5-4 9-9 9z m99 45l-27 0c-6 0-9-4-9-9 0-6 3-9 9-9l27 0c5 0 9 3 9 9 0 5-4 9-9 9z m-63 0l-54 0c-6 0-9-4-9-9 0-6 3-9 9-9l54 0c5 0 9 3 9 9 0 5-4 9-9 9z m63 45l-54 0c-6 0-9-4-9-9 0-6 3-9 9-9l54 0c5 0 9 3 9 9 0 5-4 9-9 9z m-90 0l-27 0c-6 0-9-4-9-9 0-6 3-9 9-9l27 0c5 0 9 3 9 9 0 5-4 9-9 9z m90 45l-27 0c-6 0-9-4-9-9 0-6 3-9 9-9l27 0c5 0 9 3 9 9 0 5-4 9-9 9z m-63 0l-54 0c-6 0-9-4-9-9 0-6 3-9 9-9l54 0c5 0 9 3 9 9 0 5-4 9-9 9z m63 44l-45 0c-6 0-9-3-9-9 0-5 3-8 9-8l45 0c5 0 9 3 9 8 0 6-4 9-9 9z m-81 0l-63 0c-5 0-9-3-9-9 0-5 4-8 9-8l63 0c5 0 9 3 9 8 0 6-4 9-9 9z m-108-134l-45 0c-5 0-9-4-9-9 0-6 4-9 9-9l45 0c5 0 9 3 9 9 0 5-4 9-9 9z m-81 0l-63 0c-5 0-9-4-9-9 0-6 4-9 9-9l63 0c6 0 9 3 9 9 0 5-3 9-9 9z m81 45l-9 0c-5 0-9-4-9-9 0-6 4-9 9-9l9 0c5 0 9 3 9 9 0 5-4 9-9 9z m-45 0l-36 0c-5 0-9-4-9-9 0-6 4-9 9-9l36 0c5 0 9 3 9 9 0 5-4 9-9 9z m-72 0l-27 0c-5 0-9-4-9-9 0-6 4-9 9-9l27 0c6 0 9 3 9 9 0 5-3 9-9 9z m117 45l-27 0c-5 0-9-4-9-9 0-6 4-9 9-9l27 0c5 0 9 3 9 9 0 5-4 9-9 9z m-63 0l-81 0c-5 0-9-4-9-9 0-6 4-9 9-9l81 0c6 0 9 3 9 9 0 5-3 9-9 9z m45 143l-63 0c-5 0-9-3-9-9 0-5 4-9 9-9l63 0c5 0 9 4 9 9 0 6-4 9-9 9z m-99 0l-9 0c-5 0-9-3-9-9 0-5 4-9 9-9l9 0c6 0 9 4 9 9 0 6-3 9-9 9z m99 45l-27 0c-5 0-9-3-9-9 0-5 4-9 9-9l27 0c5 0 9 4 9 9 0 6-4 9-9 9z m-63 0l-45 0c-5 0-9-3-9-9 0-5 4-9 9-9l45 0c6 0 9 4 9 9 0 6-3 9-9 9z"/>
</symbol>
<symbol id="plebits-icon-1496680146-share" viewBox="0 0 512 512">
<path d="m384 314c-19 0-36 8-48 21l-142-70c0-3 1-6 1-10 0-3-1-6-1-9l142-69c12 13 29 21 48 21 37 0 67-30 67-67 0-37-30-66-67-66-37 0-67 29-67 66 0 4 1 7 1 10l-142 69c-12-13-29-21-48-21-37 0-67 30-67 66 0 37 30 67 67 67 19 0 36-8 48-21l142 70c0 3-1 6-1 10 0 37 30 66 67 66 37 0 67-29 67-66 0-37-30-67-67-67z"/>
</symbol>
<symbol id="plebits-icon-1496838047-75" viewBox="0 0 512 512">
<path d="m38 427c0 20 17 37 37 37l121 0c21 0 37-17 37-37l0-149c0-21-16-38-37-38l-60 0c-10 0-18-8-18-18 0-3 1-6 1-6 13-45 47-81 91-97l1 0c13-6 22-19 22-34 0-21-16-38-37-38-5 0-10 1-14 3l-2 1c-83 32-142 113-142 208z m242 0c0 20 16 37 37 37l121 0c20 0 37-17 37-37l0-149c0-21-17-38-37-38l-60 0c-10 0-18-8-18-18 0-4 0-6 0-6 14-45 48-81 92-97l1 0c13-6 22-19 22-34 0-21-17-38-37-38-5 0-10 1-14 3l-2 1c-83 32-142 113-142 208z"/>
</symbol>
<symbol id="plebits-icon-add" viewBox="0 0 512 512">
<path d="m452 195l-135 0 0-135c0-33-28-60-61-60-33 0-61 27-61 60l0 135-135 0c-33 0-60 28-60 61 0 33 27 61 60 61l135 0 0 135c0 33 28 60 61 60 33 0 61-27 61-60l0-135 135 0c33 0 60-28 60-61 0-33-27-61-60-61z"/>
</symbol>
<symbol id="plebits-icon-alarm" viewBox="0 0 512 512">
<path d="m71 226c-5 0-10-4-10-10 0-59 27-115 73-152 5-3 11-3 14 2 4 4 3 11-1 14-42 33-65 83-65 136 0 6-5 10-11 10z m11 62c-4 0-8-2-10-6-2-7-4-14-6-21-1-5 3-11 8-12 6-1 11 2 12 8 2 6 4 12 6 18 2 5-1 11-7 13-1 0-2 0-3 0z m-35 36c-4 0-8-3-9-6-15-32-23-66-23-102 0-71 32-138 86-184 5-4 11-3 15 1 3 4 3 11-2 14-50 42-78 104-78 169 0 33 7 64 20 93 3 5 0 11-5 14-1 0-3 1-4 1z m383-36c-1 0-2 0-3 0-6-2-9-8-7-13 7-19 10-39 10-59 0-53-23-103-65-136-4-3-5-10-1-14 3-5 9-5 14-2 46 37 73 93 73 152 0 23-4 45-11 66-2 4-6 6-10 6z m-16-229c-2 0-5-1-7-3-3-3-6-6-9-9-5-3-5-10-2-14 4-4 10-5 15-1 3 3 7 6 10 9 4 4 4 10 1 14-2 3-5 4-8 4z m51 265c-1 0-3-1-4-1-5-3-8-9-5-14 13-29 20-60 20-93 0-47-15-92-43-130-3-5-2-11 3-15 4-3 10-2 14 2 30 42 47 91 47 143 0 36-8 70-23 102-1 3-5 6-9 6z m-237-249c0-15 12-28 28-28 16 0 28 13 28 28 0 2 0 3 0 4 12 3 24 7 35 13 1-5 2-11 2-17 0-36-29-65-65-65-36 0-65 29-65 65 0 6 0 11 2 17 11-6 23-10 35-13 0-1 0-2 0-4z m166 227l0-86c0-54-30-101-75-124-11-6-23-10-35-13-9-2-18-3-28-3-9 0-19 1-28 3-12 3-24 7-35 13-45 23-75 69-75 123l0 87c0 49-40 149-90 149l456 0c-50 0-90-100-90-149z m-189 149c0 28 23 51 51 51 28 0 51-23 51-51z m279-11c-40 0-79-88-79-138l0-86c0-28-8-55-23-79-13-21-30-38-51-50 0-4 0-8 0-12 0-41-33-75-75-75-42 0-75 34-75 75 0 4 0 8 0 11-45 27-74 75-74 129l0 87c0 50-39 138-79 138-5 0-10 5-10 11 0 5 5 10 10 10l167 0c5 29 31 51 61 51 30 0 56-22 61-51l167 0c5 0 10-5 10-10 0-6-5-11-10-11z m-228-420c30 0 55 25 55 55 0 1 0 1 0 2l0 0c-6-2-11-4-17-6l0 0c-2-19-18-34-38-34-20 0-36 15-38 34l0 0c-6 2-11 4-17 6l0 0c0-1 0-1 0-2 0-30 25-55 55-55z m16 47c-5 0-11-1-16-1-5 0-11 1-16 1 3-6 9-9 16-9 7 0 13 3 16 9z m-16 425c-19 0-35-13-40-31l80 0c-5 18-21 31-40 31z m51-52l-236 0c11-10 21-23 29-40 17-32 28-71 28-98l0-87c0-48 26-92 69-114 11-6 22-9 33-12 9-2 17-2 26-2 0 0 0 0 0 0 9 0 17 1 26 2 11 3 22 6 32 12 43 22 70 66 70 115l0 86c0 27 11 66 28 98 8 17 18 30 29 40z m-150-151c-6 0-10-4-10-10l0-63c0-41 22-78 59-97 5-2 11 0 14 5 2 5 0 11-5 13-29 16-48 46-48 79l0 63c0 6-5 10-10 10z m119-159c-1 0-1-1-2-1-6-1-12-2-18-2-6 0-10-4-10-10 0-5 4-10 10-10 0 0 0 0 0 0 7 0 15 1 22 2 6 1 9 7 8 12-1 5-5 9-10 9z"/>
</symbol>