-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoptal.html
1445 lines (1411 loc) · 116 KB
/
toptal.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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Toptal - Hire Freelance Talent from the Top 3%</title>
<link rel="stylesheet" href="style.css"/>
</head>
<style> a {text-decoration: none;} </style>
<style> li .a {text-decoration: none;} </style>
<body>
<div class="back-homebar">
<div class="home-bar">
<nav id="nav-home">
<div class="back-nav">
<div class="toptal-logo">
<a title="Toptal"></a>
<img width="111" height="32" src="toptal-logo.png">
</div>
<a href="#top3">Top 3%</a>
<a href="#Why">Why</a>
<a href="#Clients">Clients</a>
<a href="#Enterprise">Enterprise</a>
<a href="#Community">Community</a>
<a href="#Blog">Blog</a>
<a href="#About Us">About Us</a>
</div>
<ul class="ul">
<li>
<a href="#Apply as a Freelancer">Apply as a Freelancer</a>
</li>
<li>
<a class="htt" href="#Hire Top Talent">Hire Top Talent</a>
</li>
<li>
<a href="#Log In">log In</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<div class="top-home">
<section class="top-top">
<div class="h1-back">
<div class="top-bw">
<div class="h1pb">
<h1 class="h1">Hire the <a href="#">Top 3%</a> of Freelance Talent<sup>®</sup></h1>
<p class="h1p">Toptal is an exclusive network of the top freelance software developers, designers, finance experts, product managers, and project managers in the world. Top companies hire Toptal freelancers for their most important projects.</p>
<div class="b-back">
<a class="button">Hire Top Talent</a>
</div>
</div>
<div class="img-b">
<div class="img-f">
<img class="vladimir-img" src="vladimir.webp"></img>
<div class="vladimir-location-img">
<img width="180" height="100" src="vladimir-location-img.webp">
<p class="below-Vlad-loc">Vladimir Mitrovic</p>
<p class="below-Vlad-loc2">C# Developer</p>
<p class="below-Vlad-loc3">Previously at <strong> Apple</strong></p>
</div>
</div>
</div>
</div>
</div>
<div class="brands-logo-back">
<div class="brands-logo-front">
<p class="brands-startups-p">TRUSTED BY LEADING BRANDS AND STARTUPS</p>
<div class="brands-logo">
<span title="airbnb" class="airbnb">
<svg width="94" height="30" class="airbnbSVG">
<defs></defs>
<path d="M25.3 23.7a4.4 4.4 0 01-2.7 3.4c-.7.3-1.5.4-2.2.3-.7 0-1.5-.3-2.2-.8-1-.5-2.1-1.4-3.4-2.8 2-2.4 3.1-4.5 3.6-6.5.2-.9.2-1.7.1-2.5-.1-.7-.4-1.4-.8-2a5 5 0 00-4.1-2 5 5 0 00-4.1 2c-.4.6-.7 1.3-.8 2a6 6 0 00.1 2.5 17 17 0 003.6 6.5A13.1 13.1 0 019 26.7c-.7.4-1.5.7-2.2.7a4.7 4.7 0 01-2.2-.3 4.4 4.4 0 01-2.7-3.4c0-.7 0-1.4.3-2.3 0-.3.2-.5.4-.9l.6-1.5c2-4.4 4.2-8.8 6.5-13.2v-.1l.8-1.4.8-1.3A3 3 0 0116 3l.8 1.3.7 1.4.1.1C19.8 10.2 22 14.6 24 19l.7 1.5.4 1c.2.7.3 1.4.2 2.2zm-11.7-1.4c-1.6-2-2.6-3.9-3-5.4V15c0-.5.2-.9.4-1.2.6-.8 1.5-1.3 2.6-1.3 1 0 2 .4 2.6 1.3.2.3.4.7.4 1.2v1.8c-.4 1.5-1.4 3.4-3 5.4zm13.2-1.5l-.4-1-.7-1.6c-2-4.4-4.2-8.8-6.5-13.2l-.1-.2-.7-1.4-1-1.6A4.7 4.7 0 0013.5 0 5 5 0 0010 1.8c-.5.5-.8 1-1 1.6L8 4.7V5a344 344 0 00-6.5 13.3l-.7 1.5a19.3 19.3 0 00-.5 1C0 21.9 0 23 .1 24A6.2 6.2 0 007 29.2c1-.1 2-.4 3-1 1.1-.7 2.3-1.6 3.6-3 1.3 1.4 2.4 2.3 3.6 3a7.7 7.7 0 003.7 1A6.2 6.2 0 0027 24c.2-1 0-2-.3-3.1zM56 10.5l1.3.1v2.6s-2.4-.8-3.8 1v7.6h-2.8v-11H53c.3 0 .4.2.4.4v.5c.6-.7 1.7-1.2 2.6-1.2zm7.6 9c-1 0-2-.6-2.4-1.3v-4c.5-.5 1.4-1.1 2.4-1.1 1.9 0 3.3 1.2 3.3 3.2s-1.4 3.1-3.3 3.1zm.5-9c-2 0-2.9 1.2-2.9 1.2V5.5h-2.8v16.3h2.4c.2 0 .4-.2.4-.4v-.5s1 1.2 2.8 1.2c3.2 0 5.7-2.5 5.7-5.8 0-3.4-2.4-5.8-5.6-5.8zM81 15.3v6.5h-2.8v-6.2c0-1.8-.6-2.6-2.2-2.6-.9 0-1.7.5-2.3 1.1v7.7H71v-11h2.2c.3 0 .4.2.4.4v.5a4 4 0 013-1.2c1.3 0 2.3.3 3.1 1 1 .9 1.4 2 1.4 3.8zm6.6 4.1c-1 0-2-.5-2.3-1.2v-4c.4-.5 1.3-1.1 2.3-1.1 1.9 0 3.3 1.2 3.3 3.2s-1.4 3.1-3.3 3.1zm.5-9c-2 0-2.8 1.3-2.8 1.3V5.5h-2.9v16.3h2.4c.2 0 .4-.2.4-.4v-.5s1 1.2 2.9 1.2c3.2 0 5.6-2.5 5.6-5.8 0-3.4-2.4-5.8-5.6-5.8zM46 21.9h2.8v-11h-2.8v11zm-4.5-3.6a3 3 0 01-2.4 1.2c-1.9 0-3.3-1.1-3.3-3.1s1.4-3.2 3.3-3.2c1 0 2 .6 2.4 1.2v4zm0-7v.5s-1-1.2-2.9-1.2a5.6 5.6 0 00-5.7 5.8c0 3.3 2.5 5.8 5.7 5.8 2 0 2.9-1.2 2.9-1.2v.5c0 .2.1.4.4.4h2.3v-11H42c-.3 0-.4.2-.4.4zm7.8-3.8a1.9 1.9 0 01-1.9 1.9 1.9 1.9 0 01-1.9-2c0-1 .8-1.9 1.9-1.9 1 0 2 1 2 2z" fill="currentColor" fill-rule="evenodd">
</path>
</svg>
</span>
<span title="Bridgestone" class="bridgestone">
<svg width="122" viewBox="0 0 122 16" height="16" class="bridgestoneSVG" >
<defs></defs>
<g fill="currentColor" fill-rule="evenodd" transform="translate(.043887 .675071)">
<path d="m53.7192862 8.56210417-1.1540368 4.24628643c-.2426152.0230977-.5470374.0591302-1.0202754.0591302-2.2647164 0-2.0128762-.6827689-1.0571752-4.3839489.9935233-3.84623379 1.5710029-4.54840474 2.9851822-4.54840474 1.3597523 0 1.3708221.91836569 1.0248879 2.07971949h3.4519627c.5599523-2.16841477.1854208-4.08922188-3.850479-4.08922188-4.4953005 0-5.7157566.94885469-7.1640681 6.55790713-1.3486824 5.2237823-.9058865 6.609646 3.9528756 6.609646 2.303461 0 3.268387-.1699992 4.6714964-.4249982l1.6254298-6.10611553z"></path><path d="m61.9534442 12.7511082c-.4501757 0-.6069993-.1367385-.5221301-.5016826l.7831952-3.07199794h4.6179919l.5212076-2.01596975h-4.6198368l.5239751-2.04830658c.1383737-.5349434.5184401-.99043061 1.2619682-.99043061h3.6982679l.5212077-2.01689367h-5.3744348c-2.2287392 0-2.898468.39912875-3.7646874 3.7575385l-1.5968326 6.14307195c-.4898429 2.0612413.1217689 2.9583571 1.8034707 2.9583571h4.6373642c.9132665 0 1.5008935-.4859762 1.7840983-1.2315709l.380989-.9821155z"></path><path d="m114.779913 12.7511082c-.449253 0-.606999-.1367385-.52213-.5016826l.783195-3.07199794h4.618915l.521207-2.01596975h-4.618914l.523975-2.04830658c.138374-.5349434.51844-.99043061 1.261968-.99043061h3.697346l.521207-2.01689367h-5.373512c-2.229662 0-2.900313.39912875-3.767455 3.7575385l-1.594065 6.14307195c-.489843 2.0612413.121769 2.9583571 1.802548 2.9583571h4.638287c.913267 0 1.499971-.4859762 1.783176-1.2315709l.380989-.9821155z"></path><path d="m38.7168088 12.7677386h-.9483212l2.2324292-8.64224615c.2868948-.00092391.3948263-.01293473 1.1051447-.01293473 2.0045737 0 2.0018063.66429068 1.0451827 4.36731854-.9658485 3.74829944-1.5285682 4.28786234-3.4344354 4.28786234zm2.9630423-10.66191155h-4.6235268l-3.2204174 12.47277345c-.054427.2134231.0701093.3861941.2785924.3861941h4.117079c5.1724092 0 6.0432411-.9904306 7.4620328-6.48491834 1.2324485-4.77383857.4732381-6.37404921-4.01376-6.37404921z"></path><path d="m106.35111 2.0808815c-2.663233 0-3.901216.05728237-4.62814.02494555l-3.2213396 12.47277345c-.0553495.2134231.0682644.3861941.2767474.3861941h3.0894232l2.797917-10.83930215c.285972-.00092391.719543-.02494555 1.158649-.02494555 1.499971 0 1.697384.53401949 1.301635 2.06678476l-2.172467 8.41126884c-.055349.2134231.069187.3861941.27767.3861941h3.089424l2.272096-8.79746294c.78504-3.04705237-.550727-4.08645016-4.241615-4.08645016"></path><path d="m79.596092 2.10582705-.5332001 2.08895858h3.431668c.0341322 0 .0350547.04342373.00369.06744537-.5479599.41206348-.8828243 1.00151752-1.0414928 1.61684101l-2.250879 8.69952849c-.0553495.2134231.0701094.3861941.2776699.3861941h3.3163565l2.785924-10.77000897h1.6992292c.953856 0 1.5341031-.40005266 1.8569751-1.23434262l.324717-.85461596z"></path><path d="m31.5029261 14.9647946 3.22134-12.47277353c.0553494-.21342301-.0691869-.38619402-.2776699-.38619402h-3.2656195l-3.22134 12.47277345c-.0544269.2134231.0691869.3861941.2776699.3861941z"></path><path d="m91.9196544 12.9830094c-1.4824437 0-1.7019966-.5414107-.6678838-4.55025251.861607-3.33531202 1.6826243-4.49758973 3.0045544-4.49758973 1.4815212 0 1.6457247.79825751.6891011 4.49758973-.9455537 3.66514761-1.8800374 4.55025251-3.0257717 4.55025251zm2.8541883-11.05457291c-3.8883012 0-5.5746154.69293186-7.1022612 6.60779823-1.3219301 5.12400008-.2619875 6.60687428 3.6899656 6.60687428 4.0229849 0 5.6124376-.8287465 7.1031836-6.60687428 1.0802374-4.18253671.8606845-6.60779823-3.690888-6.60779823z"></path><path d="m2.24795689 8.63139736 2.01103121-7.06420934c.19464569-.72619259.99721319-1.38863545 1.80716063-1.38863545h6.15025007c.103319 0 .1356062.13396682.056272.18847747-3.19827767 2.1924364-7.05429166 5.4445966-9.85036304 8.35583432-.07287682.07668446-.20294811.01570646-.17435087-.091467"></path><path d="m7.10671901 12.8730643 1.9907364-6.97181847c.02951973-.10624955-.08394671-.18293401-.16881592-.10994519-2.92891014 2.52227197-6.46205215 6.20774556-8.6723415 8.99425556-.05627198.071141-.02767474.1792384.06918685.1792384h8.61514704c3.63277102 0 5.62074002-1.1271692 6.34120582-3.8203644.587627-2.19428419-.5599523-3.6900931-2.3929427-4.07536321-.0322872-.00739127-.0618069-.06929319 0-.0803801 1.550708-.26516192 3.1134084-.8897245 3.6715157-3.15422582.6033094-2.45113097-1.2675032-3.79449487-3.4196756-3.6559085l-3.2923717 11.54516873c-.17804084.6245626-.84500211 1.149343-1.4778312 1.149343z"></path><path d="m25.8268367 9.80845761c-.1153115-.38342229-.2398478-.66336677-.4215786-.89157232-.0239848-.0295651-.0295197-.06836928.0129149-.08222792 1.4759862-.45548721 2.4418347-1.38955936 2.8514208-2.97221573.5396575-2.0908064-.7776602-3.75661459-4.1032416-3.75661459h-4.9427089l-3.2213399 12.47277345c-.0553495.2134231.0682644.3861941.2776699.3861941h3.0885012l2.7988388-10.83930215c.2988873-.00092391.5848596-.01293473 1.2961004-.01293473 1.1909364 0 1.6309648.73635559 1.3745122 1.72863401-.3385543 1.30917927-1.3505274 2.04368704-2.5543786 2.04368704h-.4547883l1.285953 6.22252813c.1522111.6070083.4575557.8573877 1.1531142.8573877h2.7582493z"></path><path d="m67.864769 10.6085629c-1.3080927 3.132052.3975938 4.5511765 3.8707739 4.5511765 3.1706029 0 4.9297939-.7548338 5.6843919-3.6753106.2573751-.9978219.0922491-2.07509994-.5202851-2.74031453-1.186324-1.29162498-3.4658002-1.53276527-4.2674452-2.28113168-.4077412-.38065057-.4040512-.91282224-.2850498-1.37108118.2167854-.84168123.7813502-1.29994017 1.6955391-1.29994017 1.4326292 0 1.4695288.88325715 1.1171371 1.93097012h3.0746638c.7232332-2.18781686-.2241654-3.90444005-3.8458666-3.90444005-3.046989 0-4.6917912 1.19923407-5.2821857 3.49237657-.1623584.63010604-.103319 1.6565691.2730575 2.29960987.8366997 1.43575482 3.0534465 1.61499319 4.28036 2.46868525.5332.3704876.5498049.8721702.4068187 1.4228201-.2758249 1.0708107-.8127149 1.5817324-1.8818824 1.5817324-1.0276554 0-1.6448022-.5986931-1.0562526-2.4751526z"></path></g>
</svg>
</span>
<span title="Duolingo" class="duolingo">
<svg width="87" height="22" class="duolingosvg">
<defs></defs>
<path d="M71.2 9.6c0 1-.3 1.8-1 2.4a3 3 0 01-2.1 1 3 3 0 01-2.2-1c-.6-.6-.9-1.4-.9-2.4s.3-1.7.9-2.4a3 3 0 012.2-1c.9 0 1.6.4 2.2 1 .5.7.9 1.4.9 2.4zm2.8-.4a6.1 6.1 0 00-3-4.7c-.9-.6-1.9-.8-3-.8-1.6 0-3 .5-4.1 1.7a5.8 5.8 0 00-1.7 4.3c0 1.7.6 3.2 1.9 4.4 1.1 1 2.4 1.5 3.9 1.5 1 0 2-.3 3-.8l.2-.1V16c0 1-.4 1.8-1 2.4a3 3 0 01-2.1 1 3 3 0 01-2.2-1l-1.9 2c1.2 1.1 2.5 1.6 4 1.6a6 6 0 005.2-3c.6-1 .8-2 .8-3V9.6v-.4zm10.1.5c0 1-.3 1.8-.9 2.4a3 3 0 01-2.2 1c-1 0-1.7-.4-2.2-1-.6-.6-1-1.4-1-2.4s.4-1.8 1-2.4a3.1 3.1 0 014.5 0c.5.6.8 1.4.8 2.4zm2-3a5.8 5.8 0 00-5.3-3c-1.5 0-3 .6-4 1.8A5.8 5.8 0 0075 9.7c0 1.8.6 3.3 2 4.5 1.1 1 2.4 1.5 4 1.5 1 0 2-.2 3-.8.9-.5 1.6-1.3 2.1-2.2.6-1 .9-2 .9-3s-.3-2-.8-3zM47.8.2c-.8 0-1.5.7-1.5 1.6a1.5 1.5 0 103 0c0-1-.6-1.6-1.5-1.6zm13 6.3c-.5-.9-1-1.6-1.8-2.1s-1.7-.7-2.9-.7a5 5 0 00-3 .8c-.7.6-1.3 1.3-1.6 2.4-.2.5-.3 1.5-.4 2.8v5.7h3V9.7c0-1 0-1.7.2-2 .1-.5.4-.8.7-1 .3-.3.7-.4 1.2-.4s.9.1 1.2.4c.3.2.6.5.8 1l.1 2v5.7h3V9.7c-.1-1.5-.3-2.6-.6-3.2zm-19.3 6c-.3-.3-.6-.6-.7-1l-.2-2V0h-2.8v9.4c0 1.5.1 2.6.4 3.2.4 1 1 1.6 1.7 2.1.8.5 1.7.8 2.9.8h2.2v-2.7h-2.3a2 2 0 01-1.2-.4zm5 2.9h2.9v-11h-3v11zM32.6 12a3 3 0 01-2.2 1c-1 0-1.7-.4-2.2-1-.6-.6-1-1.4-1-2.4s.4-1.8 1-2.4a3 3 0 012.2-1c.9 0 1.6.4 2.2 1s.9 1.4.9 2.4-.3 1.8-.9 2.4zm3-5.4a6 6 0 00-9.2-1.5 5.7 5.7 0 00-2 4.5c0 1.6.6 3 1.8 4.2a5.8 5.8 0 004.2 1.8 6 6 0 006.1-6c-.1-1-.4-2-1-3zM8.2 12a3 3 0 01-2.3 1c-.8 0-1.6-.4-2.2-1-.6-.6-.8-1.4-.8-2.4s.2-1.8.8-2.4a3 3 0 012.2-1c1 0 1.7.4 2.3 1s.9 1.4.9 2.4-.3 1.8-.9 2.4zM12 0H9v4.5L9 4.4a6 6 0 00-3-.8C4.4 3.6 3 4 2 5a5.8 5.8 0 00-2 4.5c0 1.6.6 3 1.8 4.2a5.8 5.8 0 004.1 1.8 6 6 0 006-5.6V0zm8.5 9.5l-.1 2c-.2.5-.4.8-.8 1-.3.3-.7.4-1.2.4s-1-.1-1.2-.4a2 2 0 01-.8-1l-.2-2V3.8h-2.9v5.8c0 1.3.2 2.2.3 2.8.4 1 1 1.8 1.7 2.4.8.5 1.8.8 3 .8s2.1-.2 2.9-.7 1.3-1.2 1.7-2c.3-.7.4-1.8.4-3.3V3.8h-2.8v5.7z" fill="currentColor" fill-rule="evenodd">
</path>
</svg>
</span>
<span title="USC" class="USC">
<svg width="63" height="21" class="USCsvg">
<defs></defs>
<g fill="currentColor">
<path d="M21 4.6c0-.8-.1-1.2-.8-1.2h-1c-.2 0-.2 0-.2-.2v-.6l.2-.1h7l.2.1v.6c0 .1 0 .2-.2.2h-1c-.7 0-1.1.4-1.1 1l-.1 3v6.5c.1 1 .3 2.1.9 2.9.8 1 2 1.4 3.2 1.4a5 5 0 003.1-1.1c1-.9 1.4-2.3 1.4-4V9c0-1.9-.2-4-.3-4.5 0-.6-.4-1-1-1h-.8c-.1 0-.2 0-.2-.2v-.6l.2-.1h5.3l.2.1v.6l-.1.2H35c-.8 0-1 .6-1 1v3.8l-.1 5.3c-.2 2-.7 3.4-2 4.5-1 1-2.5 1.5-4.3 1.5-1.1 0-2.5-.2-3.4-.6a4.8 4.8 0 01-2.7-3.1c-.4-1-.5-2.6-.5-5.7V4.6zm15.7 9.3l.1.2c0 .7.3 1.6 1 2.7.6 1.1 1.8 1.7 3 1.7 1.3 0 3-.8 3-2.8 0-2.1-1-2.8-3.4-3.8-.8-.3-2.3-1-3.4-2-.8-.7-1.2-1.9-1.2-3.3a4 4 0 011.6-3.3c1-.8 2-1.1 3.4-1.1 1.5 0 2.4.3 3 .5.2.1.3 0 .4 0l.3-.3.3-.2c.2 0 .2.2.2.4l.4 3.9-.1.2H44.7C44.4 6 44 5 43.2 4a3 3 0 00-2.4-1A2.5 2.5 0 0038 5.6c0 .8.1 1.5.7 2.1.6.7 2 1.2 2.9 1.5 1.3.4 2.4.9 3.3 1.8.8.8 1.2 1.8 1.2 3.4 0 2.8-1.9 5.2-5 5.2-1.9 0-3-.4-4-1.1l-.5-.3c-.2 0-.3.2-.4.4-.1.2-.2.3-.4.3s-.3-.2-.3-.4L36 14l.2-.1h.5zm25.6 1.4v.2c-1.4 2-3.7 4-7 4-3 0-4.7-.9-6.1-2.2a9 9 0 01-2.6-6.4c0-2.3.8-4.5 2.4-6.2a8.1 8.1 0 016.1-2.5c2.2 0 4 .6 4.8 1.1.3.2.4.2.4 0l.2-.6c0-.2.1-.2.4-.2.3 0 .3 0 .3.4a131 131 0 00.5 5.1l-.5.2-.2-.3c-.3-.8-.9-2-1.8-3-1-1-2.3-1.7-4.1-1.7-3.8 0-5.3 3.3-5.3 6.7 0 1.5.4 4.2 2.1 6.1a5 5 0 004 1.8c2.7 0 4.7-1.2 5.7-2.7.1-.1.2-.2.3-.1l.4.3zM15.7 5v-.4a16.4 16.4 0 00-.2-1.4v-.3a12.8 12.8 0 00-.1-.5v-.2h-.2l-.6.2-1 .1a8.7 8.7 0 01-2-.1h-.4l-.7-.3-.4-.1-1.5-.8-.4-.3A5.2 5.2 0 018 .7h-.2l-.2.2-.5.3-1.4.8-.5.1a9 9 0 01-.6.2l-.4.1a7.9 7.9 0 01-2.1.1l-1-.1-.6-.1H.4l-.1.5v.4A15.9 15.9 0 000 4.5V5a19.8 19.8 0 000 .7v.5l.1 2.2c0 .1.3 2.2 1.3 4.7a16 16 0 006.2 7.7H8a16 16 0 006.2-7.7 20.2 20.2 0 001.5-7v-.4a17.7 17.7 0 000-.7M14 8h-1l-.3.1-.6.2v.1l-1.1.1c-.5 0-1.2 0-2-.3L8.4 8h-.8c-.3 0-.6 0-.8.2-.8.3-1.5.3-2 .3-.3 0-.9-.1-1.3-.3v.2-.2H3L2.8 8l-1-.2c-.5 0-1 .1-1.3.4a12.6 12.6 0 010-.3c.3-.3.8-.4 1.2-.4.4 0 .8 0 1 .2l.6.1v-.1.1l1.5.3c.4 0 1.2 0 2-.4l.8-.2h.7l.7.2c.8.3 1.5.4 2 .4.3 0 .6 0 1.1-.2l.7-.2h.2l1-.2a2.8 2.8 0 011.3.3v.3C14.9 8 14.5 8 14 8M.3 6.2l4.6.3a3.2 3.2 0 00-.2.8l-1.3-.2-.6-.2-1-.1c-.5 0-1 0-1.5.3V6m7.6.7a2.8 2.8 0 00-.3 0l-.9.2a5.9 5.9 0 01-1.7.3 3 3 0 012.9-2.5 3 3 0 012.9 2.5A5.9 5.9 0 019 7l-.8-.2a2.7 2.7 0 00-.4 0m6.1.5c-.3 0-.8 0-1 .2h-.3l-.6.2V8v-.2L11 8c-.5 0-1.2 0-2-.3l-.7-.2a2.7 2.7 0 00-.4 0h-.4l-.8.2c-.8.3-1.5.3-2 .3-.3 0-.9-.1-1.3-.3l-.6-.1-1-.2a3 3 0 00-1.4.4 14.9 14.9 0 010-.3A3 3 0 011.8 7c.3 0 .7 0 1 .2l.5.1v-.1.1l1.5.3c.4 0 1.2 0 2-.3l.8-.3h.7l.7.3 2 .3 1.2-.2.6-.2h.2l1-.2c.5 0 1 .1 1.4.3a19.5 19.5 0 010 .4 3 3 0 00-1.4-.4m0-.6L13 7h-.3l-.6.2a5 5 0 01-1 .2 3.2 3.2 0 00-.3-.8l4.7-.3V7L14 6.7m1.5-1l-4.7.7a3.5 3.5 0 00-.2-.3l4.8-1v.6m-.1-2.4l.1 1.3L10.6 6a3.3 3.3 0 00-.3-.4l5-2.3zM14 2.7l1-.1v.2l-5 2.7a2.3 2.3 0 000-.1l4-2.7zm-2.6 0a9 9 0 001.6 0h.2L9.9 5.4a3.3 3.3 0 00-.4-.3l2-2.3zm-1.1-.3l.6.2-1.7 2.3a2.9 2.9 0 00-.3-.2l1.4-2.3zm-1.8-.9l1.4.7-1.2 2.5a3.2 3.2 0 00-.6-.2l.4-3zM7.9 1l.3.2L8 4.5h-.1-.1l-.2-3.3a5.6 5.6 0 00.3-.2m-.7.5l.4 3a3.2 3.2 0 00-.7.2L5.8 2.2l1.4-.7m-1.8.9l1.3 2.3a3 3 0 00-.2.2L4.7 2.6l.7-.2m-2.6.4l1.4-.1 2 2.3a3.2 3.2 0 00-.4.3L2.5 2.8h.3M.6 2.6l1 .1 4.1 2.7a2.7 2.7 0 00-.1.1l-5-2.7v-.2m-.1.7l5 2.3a3.3 3.3 0 00-.3.4L.3 4.6l.2-1.3M.3 5.1l4.8 1a3.5 3.5 0 00-.1.3L.3 5.7a17.8 17.8 0 010-.6M14 13c-1 2.3-2.8 5.4-6.1 7.4-3.3-2-5.1-5.1-6.1-7.5C.9 11 .6 9 .5 8.5l1.2-.3 1 .1H3a38.5 38.5 0 001.9.5c.4 0 1.2 0 2-.4l.8-.2h.7l.7.2c.8.3 1.5.4 2 .4.3 0 .6 0 1.1-.2l.6-.2h.3l1-.2c.4 0 .9.1 1.2.3 0 .5-.4 2.4-1.2 4.5"></path><path d="M11.9 11c.2 0 .4-.3.3-.6 0 0-.3-.5-.1-.8v-.2H12s-.2 0-.4.3c-.2-.3-.5-.5-.6-.5l-.3-.2.2.3s.2.2.1.4a.6.6 0 010 .1l-.6-.3h-.2v.1c.2.2.1.4 0 .6l-.1.4.2.5a.4.4 0 00-.1.3.4.4 0 00.2.3l.2.4.1 2.5-.2.3c0 .2 0 .3.3.4v1a.3.3 0 00.6 0v-1c.2 0 .4-.2.4-.4l-.3-.3V12h.2l.1-.4h.1a.4.4 0 00.1-.3.4.4 0 00-.1-.3m-.2-1.2l.2-.2.1.8c.1.3-.2.4-.3.5h-.2l.2-.8V10m-.5-.2v-.2c.2.2.4.4.4.7 0 .4-.3.7-.4.8-.1-.1-.2-.4 0-.6V10l.1-.1-.3.3c-.2.3 0 .6 0 .7h-.2c-.3-.5 0-.8 0-.9a5.4 5.4 0 01.1 0l.3-.4m-1 1l.2-.5v-.5l.4.2v.1s-.5.4-.2 1a.5.5 0 00-.1 0s-.2-.1-.2-.4m.8 5.9l-.1-.2v-1h.3v1a.1.1 0 01-.2.2m.5-1.6a.2.2 0 01-.2.2h-.6a.2.2 0 01-.2-.2.2.2 0 01.2-.2h.6a.2.2 0 01.2.2m-.3-.3H11l-.1-2.5h.6v2.5zm.3-2.7h-.8c-.1 0-.2 0-.2-.2h1v.2m.2-.4a.2.2 0 01-.2 0h-1a.2.2 0 01-.2-.1.2.2 0 01.2-.3h1c.1 0 .2.1.2.3a.2.2 0 010 .1m-6.4-.4c.2-.1.4-.4.3-.7 0 0-.3-.5-.2-.8v-.1l-.4.2c-.2-.3-.6-.5-.6-.5L4.2 9l.2.3.1.4a.6.6 0 010 .1l-.6-.3h-.2v.1c.2.2 0 .4 0 .6l-.1.4c0 .3.1.4.2.5a.4.4 0 00-.1.3c0 .1 0 .2.2.3 0 .2 0 .3.2.4l.1 2.5-.3.3c0 .2.2.3.3.4v1c0 .2.2.3.4.3.1 0 .3-.1.3-.3v-1l.2-.1a.3.3 0 00.1-.3c0-.1 0-.3-.2-.3v-2.5h.2l.1-.4.2-.3-.1-.3M5 9.9l.2-.2.2.8c0 .3-.2.4-.3.5a.4.4 0 00-.1 0h-.2c.2-.2.3-.5.3-.8V10m-.5-.2v-.2c.1.2.3.4.3.7 0 .4-.2.7-.3.8-.1-.1-.3-.4-.1-.6l.2-.3V10l-.3.3c-.2.3 0 .6 0 .7h-.2a.6.6 0 010-.8l.1-.1.3-.4m-1 1l.2-.5v-.5c.2 0 .3.2.4.3 0 0-.5.5-.2 1H4s-.3-.1-.3-.4m.9 5.9a.1.1 0 01-.2-.2v-1h.4v1a.1.1 0 01-.2.2m.5-1.6a.2.2 0 010 .2.2.2 0 01-.2 0h-.6v.1a.2.2 0 01-.2-.3l.2-.1h.6a.2.2 0 01.2.1m-.3-.3h-.4L4.3 12h.6l-.1 2.5zm.3-2.7h-.8c-.1 0-.2 0-.3-.2h1.1v.2m0-.3h-1a.2.2 0 01-.3-.2.2.2 0 01.1-.2.2.2 0 01.2 0h1a.2.2 0 01.2.2.2.2 0 01-.2.2m3.8-.3c.2-.1.4-.4.3-.9 0 0-.2-.4 0-1v-.1H9s-.3 0-.5.3c-.3-.5-.8-.8-.9-.8l-.2-.2.1.3s.2.3.1.5a1 1 0 010 .2l-.8-.4h-.2v.1c.2.3.1.6 0 .8l-.2.6c0 .3.2.5.3.7l-.2.4c0 .2.1.3.3.4 0 .2.2.4.3.5l.2 3.6c-.2 0-.4.2-.4.5 0 .2.2.4.4.4v1.5a.4.4 0 00.5.4.4.4 0 00.2-.1.4.4 0 00.2-.3v-1.5c.3 0 .5-.2.5-.4 0-.3-.2-.5-.4-.5l.1-3.6c.2-.1.3-.3.3-.5a.5.5 0 00.2 0 .5.5 0 00.1-.4.5.5 0 00-.2-.5m0-1.8l.1 1c.2.5-.2.7-.3.8a.5.5 0 00-.1 0h-.3c.1-.3.4-.7.4-1.1v-.4l.2-.3m-1 0V9c.2.2.6.6.6 1 0 .6-.3 1-.5 1.1l-.1-.4.1-.6s-.2.2-.2.5l.1.5h-.2c-.1 0-.3-.4 0-.8l.2-.4v-.2.1l-.4.4c-.3.4 0 .8 0 1a.9.9 0 010-1.3l.4-.5m-1.2 1.2l.1-.5c.1-.2.3-.5.2-.8l.5.4-.1.1s-.7.6-.2 1.3H7s-.3 0-.3-.5m1.4 8a.2.2 0 010 .2.2.2 0 01-.2 0 .2.2 0 01-.2 0v-.2l-.1-1.5h.6L8 18.7zm.5-2a.3.3 0 01-.3.3h-.8a.3.3 0 01-.3-.2c0-.2.1-.3.3-.3h.8a.3.3 0 01.3.3m-.4-.5h-.7l-.1-3.6h1l-.2 3.6zm.1-3.7h-.9l-.3-.3h1.5c0 .1-.1.3-.3.3m.5-.6a.3.3 0 01-.2.1H7.1a.3.3 0 01-.3-.3.3.3 0 01.3-.4h1.5c.2 0 .3.2.3.4a.3.3 0 010 .2">
</path>
</g>
</svg>
</span>
<span title="Shopify" class="shopify">
<svg height="40" width="122" viewBox="0 40 490 40" class="shopifysvg">
<defs></defs>
<g fill="currentColor" fill-rule="evenodd" transform="translate(10 -10)">
<path d="M96.1774878,24.2834286 C96.1044046,23.6251429 95.519739,23.3325714 95.0812398,23.3325714 C94.6427406,23.3325714 85.0688417,22.6011429 85.0688417,22.6011429 C85.0688417,22.6011429 78.4182708,15.9451429 77.6143557,15.2868571 C76.8835237,14.5554286 75.4949429,14.7748571 74.9102773,14.9211429 C74.8371941,14.9211429 73.4486133,15.36 71.1830343,16.0914286 C68.9174552,9.58171429 65.0440456,3.65714286 58.1011419,3.65714286 L57.4433932,3.65714286 C55.54323,1.17028571 53.0584013,0 51.0120718,0 C34.9337683,0 27.1869495,20.1142857 24.7752039,30.3542857 C18.4900489,32.3291429 14.0319739,33.6457143 13.5203915,33.8651429 C10.012398,34.9622857 9.93931484,35.0354286 9.50081566,38.3268571 C9.13539967,40.8137143 6.7369978e-14,111.542857 6.7369978e-14,111.542857 L71.1099511,124.854857 L109.697879,116.516571 C109.770962,116.370286 96.2505709,24.9417143 96.1774878,24.2834286 Z M67.2365416,17.1154286 C65.4825448,17.6274286 63.3631321,18.2857143 61.2437195,19.0171429 L61.2437195,17.7005714 C61.2437195,13.7508571 60.732137,10.5325714 59.7820555,7.97257143 C63.4362153,8.41142857 65.7017945,12.4342857 67.2365416,17.1154286 L67.2365416,17.1154286 Z M55.3239804,8.77714286 C56.274062,11.264 56.9318107,14.7748571 56.9318107,19.6022857 L56.9318107,20.3337143 C52.9853182,21.5771429 48.8195758,22.8205714 44.5076672,24.2102857 C46.9194127,14.9942857 51.5236542,10.4594286 55.3239804,8.77714286 L55.3239804,8.77714286 Z M50.6466558,4.24228571 C51.3774878,4.24228571 52.1083198,4.53485714 52.6929854,4.97371429 C47.5040783,7.38742857 42.0228385,13.4582857 39.7572594,25.7462857 C36.3223492,26.8434286 33.0336052,27.7942857 29.8910277,28.8182857 C32.5220229,19.456 39.0995106,4.24228571 50.6466558,4.24228571 Z M58.1011419,44.544 L53.4238172,58.6605714 C53.4238172,58.6605714 49.1849919,56.3931429 44.1422513,56.3931429 C36.6146818,56.3931429 36.2492659,61.1474286 36.2492659,62.3177143 C36.2492659,68.7542857 53.0584013,71.2411429 53.0584013,86.3817143 C53.0584013,98.304 45.530832,105.984 35.3722675,105.984 C23.0942904,105.984 16.9553018,98.3771429 16.9553018,98.3771429 L20.2440456,87.552 C20.2440456,87.552 26.675367,93.1108571 32.0835237,93.1108571 C35.6646003,93.1108571 37.1262643,90.3314286 37.1262643,88.2834286 C37.1262643,79.872 23.3866232,79.5062857 23.3866232,65.6091429 C23.3866232,53.9794286 31.7181076,42.7154286 48.6003263,42.7154286 C54.8854812,42.6422857 58.1011419,44.544 58.1011419,44.544 Z"></path><path d="M95.0812398,23.1862857 C94.6427406,23.1862857 85.0688417,22.4548571 85.0688417,22.4548571 C85.0688417,22.4548571 78.4182708,15.7988571 77.6143557,15.1405714 C77.3220229,14.848 76.9566068,14.7017143 76.664274,14.7017143 L71.3292007,124.854857 L109.917129,116.516571 C109.917129,116.516571 96.3967373,24.9417143 96.3236542,24.2834286 C96.0313214,23.6251429 95.519739,23.3325714 95.0812398,23.1862857 Z"></path>><path d="M154.717128,71.0948571 C150.843719,69.0468571 148.870473,67.2182857 148.870473,64.8045714 C148.870473,61.7325714 151.647635,59.7577143 155.959544,59.7577143 C161.002284,59.7577143 165.460359,61.8057143 165.460359,61.8057143 L168.968352,51.0537143 C168.968352,51.0537143 165.752692,48.5668571 156.251876,48.5668571 C143.023817,48.5668571 133.815334,56.1737143 133.815334,66.8525714 C133.815334,72.9234286 138.127243,77.5314286 143.827732,80.8228571 C148.505057,83.3828571 150.112888,85.2845714 150.112888,88.064 C150.112888,90.9165714 147.774225,93.2571429 143.462317,93.2571429 C137.104078,93.2571429 131.038172,89.9657143 131.038172,89.9657143 L127.31093,100.717714 C127.31093,100.717714 132.865253,104.448 142.219902,104.448 C155.813377,104.448 165.679609,97.7188571 165.679609,85.6502857 C165.533442,79.0674286 160.636868,74.5325714 154.717128,71.0948571 Z M208.944862,48.4205714 C202.221208,48.4205714 196.959217,51.6388571 192.939641,56.4662857 L192.793474,56.3931429 L198.64013,25.9657143 L183.511909,25.9657143 L168.749102,103.497143 L183.877325,103.497143 L188.920065,77.0194286 C190.893312,66.9988571 196.082219,60.7817143 200.905709,60.7817143 C204.34062,60.7817143 205.656117,63.1222857 205.656117,66.4137143 C205.656117,68.4617143 205.509951,71.0948571 204.998369,73.1428571 L199.29788,103.497143 L214.426101,103.497143 L220.345841,72.192 C221.003589,68.9005714 221.442088,64.9508571 221.442088,62.2445714 C221.369005,53.5405714 216.91093,48.4205714 208.944862,48.4205714 L208.944862,48.4205714 Z M255.645024,48.4205714 C237.374225,48.4205714 225.315497,64.8777143 225.315497,83.2365714 C225.315497,94.9394286 232.550734,104.448 246.144209,104.448 C264.049592,104.448 276.10832,88.4297143 276.10832,69.632 C276.181403,58.7337143 269.896248,48.4205714 255.645024,48.4205714 Z M248.190539,92.8914286 C243.001631,92.8914286 240.882219,88.5028571 240.882219,82.944 C240.882219,74.24 245.340294,60.1234286 253.598695,60.1234286 C258.933768,60.1234286 260.760849,64.8045714 260.760849,69.2662857 C260.760849,78.5554286 256.156607,92.8914286 248.190539,92.8914286 L248.190539,92.8914286 Z M314.915497,48.4205714 C304.683849,48.4205714 298.910277,57.4902857 298.910277,57.4902857 L298.764111,57.4902857 L299.641109,49.3714286 L286.193801,49.3714286 C285.536052,54.8571429 284.293638,63.2685714 283.124307,69.4857143 L272.673409,125.001143 L287.801631,125.001143 L292.040456,102.546286 L292.405873,102.546286 C292.405873,102.546286 295.54845,104.521143 301.24894,104.521143 C319.08124,104.521143 330.701468,86.2354286 330.701468,67.8034286 C330.628385,57.5634286 326.024143,48.4205714 314.915497,48.4205714 Z M300.445024,93.0377143 C296.498532,93.0377143 294.15987,90.7702857 294.15987,90.7702857 L296.644698,76.6537143 C298.398695,67.1451429 303.368352,60.928 308.630343,60.928 C313.307667,60.928 314.696248,65.2434286 314.696248,69.2662857 C314.769331,79.0674286 308.922675,93.0377143 300.445024,93.0377143 L300.445024,93.0377143 Z M352.261011,26.6971429 C347.437521,26.6971429 343.564111,30.5737143 343.564111,35.4742857 C343.564111,39.936 346.414356,43.0811429 350.726264,43.0811429 L350.87243,43.0811429 C355.622839,43.0811429 359.642414,39.8628571 359.715497,34.304 C359.788581,29.8422857 356.792169,26.6971429 352.261011,26.6971429 Z M331.066885,103.424 L346.195106,103.424 L356.426753,49.5908571 L341.225448,49.5908571 L331.066885,103.424 Z M395.014682,49.5177143 L384.490701,49.5177143 L385.002284,47.0308571 C385.879282,41.8377143 388.948776,37.3028571 394.064601,37.3028571 C396.768679,37.3028571 398.888091,38.1074286 398.888091,38.1074286 L401.811419,26.1851429 C401.811419,26.1851429 399.253508,24.8685714 393.553018,24.8685714 C388.217945,24.8685714 382.809788,26.4045714 378.717128,29.9154286 C373.528222,34.304 371.116476,40.6674286 369.947145,47.104 L369.508646,49.5908571 L362.419576,49.5908571 L360.153997,61.0742857 L367.243067,61.0742857 L359.203915,103.497143 L374.332137,103.497143 L382.371289,61.0742857 L392.822185,61.0742857 L395.014682,49.5177143 L395.014682,49.5177143 Z M431.483198,49.5908571 C431.483198,49.5908571 421.982382,73.5085714 417.81664,86.6011429 L417.670473,86.6011429 C417.37814,82.3588571 413.94323,49.5908571 413.94323,49.5908571 L398.011093,49.5908571 L407.146492,98.8891429 C407.292659,99.9862857 407.219576,100.644571 406.781076,101.376 C405.02708,104.813714 402.030669,108.105143 398.522675,110.518857 C395.67243,112.566857 392.45677,113.956571 389.898859,114.834286 L394.137683,127.707429 C397.207177,127.049143 403.6385,124.489143 408.973573,119.442286 C415.843393,113.005714 422.274714,102.985143 428.852203,89.3805714 L447.342251,49.5177143 L431.483198,49.5177143 L431.483198,49.5908571 L431.483198,49.5908571 Z">
</path>
</g>
</svg>
</span>
<span title="ClevelandCavaliers" class="clevelandcavaliers">
<svg width="51" height="27" class="clevelandcavalierssvg">
<defs></defs>
<g fill="currentColor">
<path d="M27.8.3H27l-.9.2H26a1 1 0 00-.3.1l-.2.1h-.2l-.4.2-.4.1-.3.1a13.7 13.7 0 00-2.4 1.2 2.7 2.7 0 00-.3.2l-.3.2a3.6 3.6 0 00-.3.2l-.2.2a15 15 0 00-4 5.4l-.1.2-.1.2a8.4 8.4 0 01-.1.3v.2h.5l.3-.2c.1 0 .6 0 1.2-.3 0 0 .2 0 .3-.2l.3-.2.2-.1a3.9 3.9 0 01.3-.2l.1-.2h.1l.2-.1.2-.2.3-.1.3-.2.2-.2h.2L21 8v.2l-.2.4v.1H21.4l.1-.4.1-.3.2-.5v-.2V7l.2-.2.6-.3.3-.1 1-.4v.4a12.6 12.6 0 00-.1 2.2V9h.3l.2.1c.3.2.3.2.3-.7a16.5 16.5 0 01.2-2.6l.3-.1a9.6 9.6 0 00.5 0l1-.2c.3 0 .3 0 .3.3v.2l.2.4a2 2 0 00.2.7l.2.5.2.3V8l.2.2.2.4.1.1.1.2h.3l.7-.2a7.3 7.3 0 01-.7-1.1 4.3 4.3 0 00-.2-.4l-.1-.2V7l-.2-.3v-.3H28V6l-.2-.3v-.3c0-.3 0-.3.8-.2a16 16 0 015.2 1l.2.1 1.4.7H36.4l.4-.2h-.1l-.1-.1-.2-.1a14.8 14.8 0 01-1.5-.8h-.2l-.3-.2a10.4 10.4 0 01-.4-.2l-.4-.1-.4-.2H33l-.4-.1a18.3 18.3 0 00-4-.7c-.7 0-.7 0-.7-.3a21.9 21.9 0 010-.3l.3-.4.1-.3.1-.1.6-.8.4-.2.5-.4.6-.2a3.8 3.8 0 011.5.2 5.9 5.9 0 011 .3l.4.2 1 .4a6.4 6.4 0 011.3.8h.2l.2.3.3.2.6.5a59.4 59.4 0 012.4 2h.2c.2 0 .2-.3 0-.5l-.1-.2-.7-.8A21.6 21.6 0 0036 2.3a22.8 22.8 0 01-.4-.2 6.9 6.9 0 00-.4-.3h-.3l-.3-.2-.5-.3H34a.8.8 0 00-.2-.2h-.3c-.4-.2-.5-.3-.8-.3h-.1L32 .5a19.5 19.5 0 01-.5 0l-1-.2-.5-.1h-2.3zm1.1 1l-.2.2-.2.2a4.2 4.2 0 00-1 1.2l-.2.3-.2.4V4l-.1.3v.1a10.3 10.3 0 01-1.9.3v-.2-.2-.4l.3-.8.1-.3a4.1 4.1 0 00.2-.4v-.3a2.1 2.1 0 00.2-.3l.4-.3a9.4 9.4 0 011.5-.2h1.1zm-3.8.6V2l-.2.4-.2.4v.4l-.2.4a3.4 3.4 0 00-.2.8v.3c0 .1-.2.3-.6.3l-.2.1-.3.1-.4.2c-.5.2-.5.2-.6.1v-.3V5a6.6 6.6 0 00-.6-1.3l.1-.2.3-.2.2-.1a4.9 4.9 0 01.7-.5h.3l.2-.2a9 9 0 011-.4c.6-.3.7-.3.7-.2zm-4 2.4l.1.3.2.8c0 .6 0 .7-.2.8 0 0-.2 0-.3.2l-.5.2a1 1 0 00-.2.2H20l-.4.3a34.8 34.8 0 01-.5.3l-.7.5-.6.5v-.2a12.3 12.3 0 01.9-1.7 4.4 4.4 0 01.2-.3l.1-.2.2-.1.2-.3A39.4 39.4 0 0121 4.3z"></path><path d="M44.9 5.5a3.6 3.6 0 01-.3.1 3 3 0 00-.7.2h-.4L43 6h-.3-.1l-.3.2h-.6l-.1.1-.5.1-.4.1-.4.2a3 3 0 00-.4 0l-.5.2a11.7 11.7 0 00-1.4.3l-.4.1-.4.1-.5.1h-.1l-.2.1-.5.2h-.5l-.4.2h-.4l-.3.1-.2.1H34a3 3 0 00-.7.2h-.1l-.5.2a4.2 4.2 0 01-.7.1l-.6.2-.7.2-.7.1h-.2l-.7.3a1 1 0 00-.2 0h-.2l-.2.1h-.2l-1 .3H27l-.3.1-.7.2h-.3l-.4-.2-.3-.1-.4-.2a46.6 46.6 0 01-.6-.1l-.8-.2h-.8a10.3 10.3 0 00-2.5 0 11.7 11.7 0 00-3 .5h-.3l-.2.1-.4.2a15.3 15.3 0 00-2.2.9h-.3v.1a7.5 7.5 0 00-1.3.6l-.3.2.5.2.5.1.3.1.2-.1.3-.1.3-.2.4-.1.2-.1.2-.1.2-.1.3-.1h.2v-.1l.3-.1.4-.1.4-.2.7-.2h.3l.4-.2.8-.1a58.6 58.6 0 002.5-.3h1.2l.4.1a7 7 0 011.5.5l.8.4c.5.2.7.4.7.5l-.4.3-.4.2-.9.5-.2.2h-.2l-.2.2-.3.2h-.1l-.3.2-.3.2-.3.2-.2.1-.5.3c-.3.2-.5.3-.4.1v-.1l.2-.3v-.3c.2-.1.3-.5.3-1l-.1-.5c-.2-.3-.4-.4-.7-.4a4 4 0 00-1.9.2l-.3.1-.1.1s-.3 0-.5.2l-.2.1-.3.1-.2.1-.2.2-.3.1c-.3.1-.4.2-.3.3h.2l.6.2a21.8 21.8 0 011.1.3 5.7 5.7 0 01.4 0l.7.3c.6 0 .7.1.6.3l-.2.1a1 1 0 01-.4 0l-.4-.2a7.3 7.3 0 01-.4 0 19.6 19.6 0 00-.3-.1l-.2-.1h-.2l-.6-.2-.5-.1-.4-.1-.2-.1a8.5 8.5 0 01-1.3-.3h-.3a7.4 7.4 0 00-1.2-.4h-.3a8.3 8.3 0 01-1.3-.4h-.3a6 6 0 00-.7-.2l-.3-.1h-.2L10 12a15.9 15.9 0 01-1.8-.4l-.7-.2-.5-.1-.4-.2h-.2l-1-.3h-.5a3 3 0 01-.5-.2h-.5l-1-.2-1.4-.1H0v.2l.2.1.2.1.2.2.2.1.4.3a10 10 0 002.5 1l.8.2.3.1.4.1.7.2h.3v.1h.2l.4.1.5.2h.2l.7.2h.3a9 9 0 00.9.3h.3l.4.2.4.1.6.2h.4l.8.3h.3l.4.2h.5l.2.1h.1l.4.2.5.1.5.1.3.1.3.1c.3 0 .5.1.5.2-.1.2-.7.3-.7.2h-.2l-.3-.1-.8-.3h-.4l-.6.3-.4.5a9.3 9.3 0 00-.6.6c0 .2-.2.3-.2.3l-.3.3-.3.5-.2.2a15.4 15.4 0 01-.8 1.2 11 11 0 00-.7 1.5l-.3.8v.9c0 .2.1.3.3.5l.3.3a8.5 8.5 0 01.3.2l.3.1H12.5l1-.2a3.2 3.2 0 01.4 0l.5-.2a41.2 41.2 0 002.4-1l-.6.6-.6.6-.6.5a45 45 0 01-2 1.3 7.3 7.3 0 01-2.9.8h-.7L9 26a2 2 0 01-.5-.2c-.3-.1-.6-.3-.7-.5l-.2-.1a2.6 2.6 0 01-.7-1.2v-1.2-1l.1-.4.1-.4.1-.3.1-.3v-.1l.1-.1.1-.2.1-.3.2-.2.3-.6a11.5 11.5 0 011.2-1.8l.3-.4v-.1l.3-.2.6-.7c.3-.3.3-.4.2-.4l-.6.2-1.2.2a5.9 5.9 0 01-.4.1H8l.6-.4a5.2 5.2 0 00.7-.6h.2l.2-.3c.2 0 .2-.1-.2-.2-.7-.2-.6-.2-.8 0l-.3.1-.2.2-.2.1-.3.3-.6.6A8 8 0 005.7 17l1.3-.1a10.6 10.6 0 00.5 0l.4-.1v.3l-.1.1-.2.3v.2l-.3.3v.1s0 .2-.2.3l-.1.3v.1l-.2.4a14.5 14.5 0 01-.5 1l-.1.6a3.7 3.7 0 00-.3.8v.3l-.1.4a7.2 7.2 0 000 2l.1.2v.2c0 .3.8 1.3 1.2 1.5l.1.1.1.1h.2l.1.2h.1l.3.1.3.1c0 .1.5.2 1.5.2a5.6 5.6 0 002-.3l1-.3h.2l.1-.1.3-.1.2-.1.2-.2h.3l.3-.3.4-.3h.2l.3-.3.3-.2 1.7-1.6.2-.3.1-.2h.1l.1-.2.3-.3.3-.1.2-.1h.2l.8-.2.3-.1.4-.2a90.7 90.7 0 015.5-1.3 30.2 30.2 0 00.5-.2h.3l.7-.2v.3a3 3 0 00-.5.6l-.2.3v.1l-.2.2-.1.3-.1.4v.2c-.2.1-.3.5-.3.6l.2-.1a4.8 4.8 0 01.8-.6 3 3 0 01.7-.5 17 17 0 013-1.3h.3l.3-.2a9 9 0 00.4 0l.8-.3a31 31 0 002.3-.2l1.1-.1.7-.1c1.3 0 1.5-.1 1.6-.2.2-.1.2-.2.3-.4l.8-.7v-.2h.2-.2-.7l-.7.2a14.2 14.2 0 00-1.7.2h-.7l-.8.2-.7.1-.7.1a16.2 16.2 0 00-4.6 1.3h-.3a5.7 5.7 0 011-.8 7 7 0 011.3-.5l.3-.1.4-.1.4-.2a15 15 0 001-.2l.5-.2h.4l.5-.1 1-.3.7-.1h.4a7 7 0 00.8-.2 10.2 10.2 0 011.5-.2 6.9 6.9 0 011.3-.3l.8-.1.4-.1h.4c.3-.2.6-.2.7-.2l.2-.1.4-.1a6.3 6.3 0 001.3-.5h.3l.2-.2h.2l.3-.2.1-.1.8-.6.3-.4.1-.6-.1-.6-.1-.3-.3-.3c-.7-.6-1-1-1-1.5l.1-.8.1-.2a3 3 0 011-1 4.1 4.1 0 012.8-.4v.4l-.2.4a5 5 0 01-.3.6l-.2-.2c-.3-.2-.8-.4-1.2-.3-.4 0-.8.3-.8.6 0 .2.1.3.4.6a7 7 0 011 1.2l.2.2.3 1.2a2.8 2.8 0 01-.4 1.4v.1l-.1.2-.2.1-.7.7a5.7 5.7 0 01-1.3.7 7.8 7.8 0 00-.4.2h-.3c-.2.1-.1.2.5.3.5.2.7.2 1.1.2h.6l.2-.2.6-.4a4.7 4.7 0 001.3-1.8v-.2c.1-.2.2-.6.2-1.5 0-.8 0-1.2-.2-1.6v-.5l.2-.3.3-.7v-.3l.2-.3V9l.2-.4a10.3 10.3 0 01.4-1.1l.1-.3.2-.5c.2-.2.1-.3-.1-.2a1 1 0 00-.3 0l-.3.2h-.5a28 28 0 01-.7.2 14 14 0 00-1.6.4l-.4.1-.4.1H46l-.3.1-.5.2a2 2 0 00-.4 0c-.1.2-.2.2-.3 0v-.1a10.2 10.2 0 01.3-1.2v-.2L45 6l.1-.4c0-.1 0-.1-.2 0zM43.8 7l-.1.4-.2.3V7.9l-.2.3c0 .3-.5.6-1.1.7h-.4c-.2.1-.2 0 .1-.6l.2-.4v-.3c.1 0 .2-.1.2-.3l.1-.2.7-.2h.7zm-2 .4l-.2.3V8l-.2.3-.2.4c-.1.5-.2.6-.4.6s-.3 0-.2-.1v-.2-.5-.2c0-.1 0-.2-.1 0l-.2.6-.3.6h-.2c-.2.1-.3 0-.1-.2a10.7 10.7 0 00.6-1.5l.1-.1a1.3 1.3 0 00.2 0c.1-.1.1-.1.2 0l.1.3c0 .2.1.1.2 0l.1-.3c0-.2.1-.2.2-.2h.1c0-.2.2-.2.2 0zm-2.2.6v.4l-.2.2v.2l-.1.2-.3.7s-.3.2-.4.1h-.1v-.2l.2-.4h-.2l-.3.2v.1l-.2.3c0 .2 0 .3-.3.3-.2 0-.2 0 0-.4v-.3l.1-.1.1-.3.4-.7.2-.1.7-.3.4.1zm-2.6.6l-.1.2-.1.3-.1.3a6.1 6.1 0 00-.3.8h.7l-.2.2h-.6l-.4.2c-.2 0-.2 0 0-.3V10a11.3 11.3 0 01.7-1.4h.4zm-1 .3l-.2.1-.3.1-.3.3v.2h.4c0 .2 0 .2-.2.3-.3 0-.4 0-.5.4-.2.3-.2.4 0 .3.4 0 .5 0 .4.1l-.3.1-.3.1h-.4l-.2.1v-.1l.2-.4.5-1.1c0-.2.1-.3.3-.4l.4-.1h.5zm-1.6.4l-.2.3a17 17 0 00-1.3 1.7l-.1-.7a24.7 24.7 0 000-1c.2-.1.3 0 .3.5v.4l.4-.6h.1l.1-.2.1-.2c.2-.2.2-.2.5-.2zm9.8.2c.2 0-.2 1.2-.6 1.8-.2.4-.3.4-.6.7l-.7.6.1.5.7.7c.4.2 1.1.3 1.5.2.1-.1.2-.1.2 0 0 0-.5.6-.8.7l-.2.1c-.4.3-1.3.2-1.7 0l-.6-.7a2.6 2.6 0 00-.2-.2l-.2-.3-.1-.3-.2.4-.1.4-.2.4v.1l-.2.4-.1.5c0 .2-.2.2-.6.3l-.5.2c-.3 0-.4 0-.2-.2l.1-.4a7.5 7.5 0 01.3-1l.1-.2.1-.2.1-.4.2-.4v-.3l.1-.2v-.1c.1 0 .2-.1.2-.3l.1-.3v-.2l.1-.2a7 7 0 00.3-.6v-.4l.2-.3h.4a21 21 0 011.3-.4 78.5 78.5 0 011.6-.4h.1zm-11.9.3l-.3.2-.3.1-.1.3v.2h.5l-.3.2c-.3 0-.3 0-.5.4-.2.3-.2.4 0 .4l.2-.1h.2c0 .1-.1.2-.6.3h-.5l.3-.7v-.2l.1-.3.2-.3c0-.3.1-.4.5-.4l.4-.1h.2zm-2.3.6l-.1.4-.2.5a4.7 4.7 0 01-.2.4v.3h.3l.4-.1-.3.2-.5.1h-.6l.2-.3v-.2l.2-.3.1-.4.2-.4c0-.1.2-.3.4-.3h.1zm-1 .2l-.3.3H28c-.2.1-.2.2-.2.3v.1l-.2.4-.2.4v.2c-.1.2-.1.2 0 .2l.4-.3h.3c.1-.1.2-.1.2 0l-.4.3c-.3.2-1 .3-1.1.2v-.3-.2l.1-.1.1-.3.1-.3.2-.3.2-.2a4 4 0 011-.4h.3zm11 0v.1l-.2.3a7 7 0 01-.2.5v.3s-.2.1-.2.3l-.2-.2a1 1 0 00-.9-.4c-.3 0-.5 0-.6.2l-.2.6a12.4 12.4 0 01-.4 1h1.3l-.4.3-.3.2-.2.1a4 4 0 00-.8.5l-.1.2a18.5 18.5 0 01-.6 1.3h.2a3 3 0 00.9-.3l.7-.4.4-.4c.3-.3.4-.2.2.1l-.2.4v.3l-.2.4c-.1.2-.3.3-.7.4a9.5 9.5 0 00-1 .2h-.2l-.4.2h-.3l-.3.1-.3.1c-.4.1-.3.2-.3 0a6.8 6.8 0 01.5-1.3l.4-1.2.1-.3.2-.4v-.2l.1-.2a12.1 12.1 0 00.6-1.4l.1-.4c0-.2.1-.3.3-.3h.2l.9-.2a7 7 0 00.4-.1l.5-.2.5-.1c.4-.1.6-.2.7 0zm-34.6.7h.3l.3.1.5.2h.3l.7.2.7.2.4.1.4.1.3.1 1 .3h.2l.4.1.4.1a4.8 4.8 0 011 .3l1.4.3.5.2h.4l.2.1h.1l.5.2.6.1.4.1.7.2h.1l.5.2a31 31 0 001.7.5H19c-.6.2-1.1.2-1.4 0h-.2-.2l-.5-.1-.3-.1-.3-.1-.5-.1a6.3 6.3 0 00-1-.3h-.1-.2L14 14a17.3 17.3 0 00-1-.3 68.2 68.2 0 01-.8-.2 16.9 16.9 0 00-.8-.2l-1.8-.5a10.3 10.3 0 00-.4 0l-.3-.1-.2-.1h-.1-.2l-.4-.2a4.2 4.2 0 00-.5-.2h-.2l-.2-.1-.4-.1a1 1 0 01-.2-.1l-.3-.1a1 1 0 01-.2-.1l-.3-.2-.5-.3c0-.1.1 0 .2 0zm30.4.3v.2l-.1.2a6.3 6.3 0 01-.1.3 7.6 7.6 0 00-.2.4v.2l-.1.1-.2.4-.1.4-.1.4-.2.3-.1.3a9 9 0 00-.5 1.3l-.2.4-.2.5c0 .2-.2.3-.5.4a9.8 9.8 0 00-.4 0c-.2.2-.5.2-.5.2v-.2a31.2 31.2 0 001.4-3.5 9.7 9.7 0 01.5-1.4l.2-.4c0-.2.1-.2.3-.2l.6-.2h.5zm-4.3 1.2l-.2.6-.1.2-.1.4-.2.3a17.8 17.8 0 01-.7 2l-.1.3-.1.3-.1.3v.1l-.1.2c-.1 0-.1 0 0 0 0 .1 0 .1.4 0a66 66 0 011.1-.5l1-1s.1-.1.1 0v.2l-.2.3v.1l-.2.3a8.1 8.1 0 01-.3.9l-.5.2h-.4l-.5.2a12.4 12.4 0 00-.6.1 7.9 7.9 0 01-1 .3l-.8.1.1-.3a4.6 4.6 0 01.1-.2v-.2l.2-.4.1-.2v-.2a3.6 3.6 0 00.4-.8v-.2a6.8 6.8 0 01.4-.8l.1-.3.2-.5.1-.4a5.8 5.8 0 01.3-.7l.1-.2c0-.2.1-.2.3-.3l.5-.2h.7zm-2.3.7l-.1.4-.1.2s0 .2-.2.3l-.1.4a12.8 12.8 0 01-.6 1.5l-.2.4a3.6 3.6 0 01-.1.4l-.1.3-.2.3v.2l-.2.4-.2.4c0 .3-.1.3-.5.4l-.7.2h-.3l.1-.5.1-.2.2-.5.2-.6h-.1l-.7.2c-.2 0-.2.1-.3.2l-.1.3a41 41 0 00-1 1.6l-.5.1-.4.1h-.3l.3-.5v-.2l.1-.1V19l.2-.2.1-.3a9.3 9.3 0 01.5-1l.4-.7.1-.3.2-.3.4-.5a6.4 6.4 0 013.3-2.3l.8-.1v.1zm-4.5 1a4.8 4.8 0 01-.5 1.4 14.3 14.3 0 01-3 4.3c-.3.3-.5.5-.8.5l-.4.1-.4.1-.5.2-1 .2c-.2 0-.2 0 .1-.6l.2-.4a10.3 10.3 0 01.5-1.3v-.2l.2-.3.1-.4a14.9 14.9 0 00.5-1.3 9 9 0 00.4-1l.1-.2a5.8 5.8 0 011.1-.3c.1 0 .2.1.1.3v.1l-.1.2a6.7 6.7 0 00-.4.8v.2a4.6 4.6 0 01-.3.9l-.1.3-.1.3-.1.3-.1.2-.3.8c-.1.1-.1.2 0 .2a8.7 8.7 0 001.1-1.2 11 11 0 001.2-1.8l.4-.5.3-.5v-.2l-.2-.2a1 1 0 00-.2-.1l-.2-.2.1-.1.4-.1.4-.1.4-.1.5-.1.4-.1c.1-.1.2-.1.2 0zM19.1 16v.2l-.2.3-.2.4-.1.4-.1.3-.2.3v.3l-.2.2-.1.4-.1.3-.2.3v.3l-.2.3-.2.4-.1.4-.1.2-.1.4c-.2.3-.2.3-.8.4H16c-.2.2-.5.2-.5.2v-.2-.2h.1l.1-.4.1-.2v-.1l.2-.4c.2-.5.2-.5 0-.4h-.3l-.6.3-.1.2a9.1 9.1 0 01-.6 1.1l-.1.3-.1.2s-.1.2-.7.3l-.6.2v-.3a26.4 26.4 0 001.1-2.4l.2-.3.4-.7v-.2h.2l.1-.3a6.6 6.6 0 011.7-1.6 6.3 6.3 0 012.1-.9h.5z"></path><path d="M43 7.1c-.2 0-.2.1-.2.2v.1l-.2.3-.3.6v.4c.2 0 .4-.3.5-.5l.2-.4v-.2l.1-.2c.2-.1.1-.3 0-.3H43zm-4.3 1l-.3.8h.1l.3-.1.3-.6h-.4zm3.8 2.3a7.5 7.5 0 01-.4.1c-.2 0-.2.2-.3.5a3.1 3.1 0 01-.2.4v.3l-.2.3v.2h.1a3.3 3.3 0 001.2-1.2l.2-.7h-.4zM27 15a5 5 0 00-1 1v.2l-.2.2c0 .2-.2.3-.2.3 0 .1.2.1.4 0l.4-.1h.2l.2-.4.2-.4v-.2l.4-.7-.4.1zm-10 2.4l-.3.2-.6.8a9.7 9.7 0 01-.3.4l-.2.2v.2l-.1.2.7-.2.4-.3a5.4 5.4 0 01.3-.6V18l.2-.3v-.1-.3zm25.5-.4h-.1l-.7.2-.3.1-.3.1-.4.2a2.5 2.5 0 00-.8.5
6 6 0 00-1.4 1.6h.2l.2.1v.6h-.5-.3l-.7-.2H37a6.3 6.3 0 01-.4-.2H36a16 16 0 01-1.9.2H34c-.3 0-.2 0 .4.2h.2l.7.2.6.2h.1l1 .3h.3l.3.1.3.1V22.1c0 .7.2 1.2.4 1.8 0 .3.3.7.4 1l.8.7s.2 0 .3.2l.3.2h.3l.5.2h.4v-.7c0-1 0-1.1.2-1.1l.3.2.5.3.2.1a2 2 0 00.5.3l.4.2h.4c.3.2 1.4.2 1.7.1a6 6 0 001.2-.5 6 6 0 01.4-.2l.9-.7.2-.2.2.3.1.2c0 .2 0 .2.3.2l.9-.5.3-.4v-.2l.2-.1.1-.3.2-.5v-.2l.2-.2v-.5h-1.2l-.5.2h-.3-.2a7.4 7.4 0 01-1.2-.4c-.1 0-.4 0-.6-.2h-.3l-.5-.2h-.3l-.4-.1-.8-.3-.5-.1h-.1l-.9-.3c0-.2.6-.7.9-.8l.2-.2h.3l.2-.2h.2l.2-.1.1-.1h.2l.2-.2.3-.1h.1l.8-.5.7-.7h-.4l-.5-.1H46l-1.6-.3a13 13 0 00-1.9 0zm1.8.6l.5.1a34.2 34.2 0 011.2.3 10.6 10.6 0 01-1.7.8 6.4 6.4 0 00-1.2.6l-.6.4-.7.9a9 9 0 01-.3.5v.3c-.2.1-.2.3-.3.5l-.1.3-.1.5-.2.6v2.3l-1-.4-.2-.3a3 3 0 01-.7-.8l-.1-.3a4.5 4.5 0 00-.3-.6v-.1-.2s.2 0 .3.3l.1.3v.1l.7.9.7.4V24a4.4 4.4 0 01.2-1.5c0-.4.3-1 .5-1.4a3.8 3.8 0 01.5-.9l.4-.5.2-.3c0-.1-1 .7-1.2 1a7.6 7.6 0 01-.3.4v.2a5.8 5.8 0 00-.8 1.7v.3c0 .3-.2.2-.4-.2a3.6 3.6 0 01-.3-1.2v-.3c.1 0 .2 0 .3-.2l.3-.7c0-.2 0-.3.3-.6.4-.5 1.1-1.2 1.4-1.3a2 2 0 00.2-.1c.3-.3.7-.4 1.3-.6l.2-.1h-.2-.4l-.5.2h-.3l-.4.3h-.2l-.1.2-.2.1-.7.6c-.5.5-.6.6-.7.5 0-.1.1-.4.5-.8a4.5 4.5 0 012.1-1.3h2.3zM42.8 21h.5l.5.2a105.4 105.4 0 004.5 1.2c.3 0 .3.1.3.3 0 .3 0 .3-.4.3a2 2 0 01-.4-.1 5 5 0 00-.6-.1l-.4-.2a28.7 28.7 0 00-3.5-.8l-.1-.1h-.4a4 4 0 00-.5-.2c-.3 0-.3-.1-.1-.4.1-.3.1-.3.6-.1zm7.2 1.3l-.2.1-.5.6-.3.4-.2.2c-.1.1-.2.1-.2 0v-.1l.1-.2.2-.2.1-.6h.3l.3-.2h.3zm-7.8.4h.1l.2.1.3.2h.2a6.5 6.5 0 002.1.6h2.4l-.3.4-.2.1c-.6.4-1.6.7-2.4.6-.7-.1-1-.2-1.3-.4l-.8-.6c-.4-.4-.5-.5-.5-1v-.1h.2zm-.6.6l.1.2.2.3a2.5 2.5 0 00.6.5l.1.1.3.2.4.2.4.1.4.1h.4l.7.1.6.1-1 .1h-1.1l-.6-.3a4.3 4.3 0 01-.9-.4l-.5-.5-.2-.3v-.3-.1c0-.1 0-.1.1 0z"></path><path d="M42.6 23.1l.2.3c.2.3.6.5 1 .6a4 4 0 001.7.3l.4-.1.4-.2-.6-.1H45a5.2 5.2 0 01-.2 0 12.9 12.9 0 00-.4-.2 10.1 10.1 0 01-1.8-.6zM28.4 22l-.5.3.4.7.3.3a16.5 16.5 0 002.6 2.4s-.2.2-.5.2h-.3l-1.6.1h-1.5l-.3-.1h-.3a45.8 45.8 0 00-.5-.1l-.5-.2h-.4l-.4-.2h-.2l-.3-.2h-.2l-.2-.2h-.2l-.1-.1-.3-.1-.2-.2H23l-.3-.2-.3-.2s-.2 0-.3-.2c-.2 0-.5-.3-.8-.6l-.3-.2c-.2 0-.3-.1-.7-.6l-.3-.3h-.2a3 3 0 01-.7.2H19a11 11 0 003.3 2.8h.1l.2.1.2.1.7.4.5.2h.3l.3.2h.2l.5.2.7.2.8.1.8.1a16.3 16.3 0 004.8-.4l.3-.1.3-.1h.2l.1-.1.2-.1.4-.2.7-.3.3-.1.5-.3.2-.1.2-.2.4-.2.4-.3.2-.2h.2l.3-.3.1-.2v-.2-.5c0-.4-.1-.4-.2-.3l-.5.4a4 4 0 00-.3.3l-.2.2a21.2 21.2 0 01-2.2 1.3l-.3.1-.3.1c-.1.2-.4.2-.5.2H33c-.1.2-.6.3-.7.2l-.2-.1-.3-.2-.3-.3-.5-.4a10.6 10.6 0 01-1.7-1.9l-.2-.2-.3-.3c0-.2-.1-.2-.3-.1z">
</path>
</g>
</svg>
</span>
</div>
</div>
</div>
<div class="freelancers-b">
<div class="freelancers-f">
<div class="left-arrow">
<svg viewBox="0 0 13 38" width="13" height="38">
<path d="M12 1L2 19l10 18" stroke="currentColor" stroke-width="2" fill="none" fill-rule="evenodd">
</path>
</svg>
</div>
<div class="freelance-img" role="list">
<div class="one-f" role="listitem">
<div class="one-f-box">
<div class="f-img">
<img src="one-f.webp">
</div>
<div class="one-f-text">
<p class="f-text-n">Vladimir Mitrovic</p>
<p class="f-text-e">C# Developer</p>
</div>
</div>
</div>
<div class="two-f" role="listitem">
<div class="two-f-box">
<div class="f-img">
<img src="two-f.webp">
</div>
<div class="two-f-text">
<p class="f-text-n">Casey Arrington</p>
<p class="f-text-e">Project Manager</p>
</div>
</div>
</div>
<div class="three-f" role="listitem">
<div class="three-f-box">
<div class="f-img">
<img src="three-f.webp">
</div>
<div class="three-f-text">
<p class="f-text-n">Emily Dubow</p>
<p class="f-text-e">UI/UX Designer</p>
</div>
</div>
</div>
<div class="four-f" role="listitem">
<div class="four-f-box">
<div class="f-img">
<img src="four-f.webp">
</div>
<div class="four-f-text">
<p class="f-text-n">Mathew Warkentin</p>
<p class="f-text-e">Python Developer</p>
</div>
</div>
</div>
<div class="five-f" role="listitem">
<div class="five-f-box">
<div class="f-img">
<img src="five-f.webp">
</div>
<div class="five-f-text">
<p class="f-text-n">Danielle Thompson</p>
<p class="f-text-e">Product Designer</p>
</div>
</div>
</div>
<div class="six-f" role="listitem">
<div class="six-f-box">
<div class="f-img-es">
<img src="six-f.webp">
</div>
<div class="six-f-text">
<p class="f-text-n">Ellen Sue</p>
<p class="f-text-e">Finance Expert</p>
</div>
</div>
</div>
</div>
<div class="right-arrow"><svg viewBox="0 0 13 38" width="13" height="38">
<path d="M12 1L2 19l10 18" stroke="currentColor" stroke-width="2" fill="none" fill-rule="evenodd">
</path></svg></div>
</div>
</div>
</section>
</div>
<div class="below-home">
<section class="home-2">
<h2 class="h2-d">Leverage World-Class Talent</h2>
<div class="h2-p">
<p>We are the largest, globally-distributed network of top business, design, and technology talent, ready to tackle your most important initiatives.</p>
</div>
<div class="expertise-logos-b" role="list">
<div class="logo" role="listitem">
<img src="pyhton-dev-logo.svg" class="logo-img">
<h3 class="f-h3">Developers</h3>
<p class="f-h3-p">Seasoned software engineers, coders, and architects with expertise across hundreds of technologies.</p>
<a class="dev-link" href="#">View Developers
<svg width="12" height="8">
<g stroke="#EBECED" fill="none" fill-rule="evenodd">
<path d="M0 3.607h11.253M8 .107l3.5 3.5-3.5 3.5">
</path>
</g>
</svg>
</a>
</div>
<div class="logo" role="listitem">
<img src="UIUX-designer-logo.svg" class="logo-img">
<h3 class="f-h3">Designers</h3>
<p class="f-h3-p">Expert UI, UX, Visual, and Interaction designers as well as a wide range of illustrators, animators, and more.</p>
<a class="dev-link" href="#">View Designers
<svg width="12" height="8">
<g stroke="#EBECED" fill="none" fill-rule="evenodd">
<path d="M0 3.607h11.253M8 .107l3.5 3.5-3.5 3.5">
</path>
</g>
</svg>
</a>
</div>
<div class="logo" role="listitem">
<img src="finance-expert-logo.svg" class="logo-img">
<h3 class="f-h3">Finance Experts</h3>
<p class="f-h3-p">Experts in financial modeling & valuation, startup funding, interim CFO work, and market sizing.</p>
<a class="dev-link" href="#">View Finance Experts
<svg width="12" height="8">
<g stroke="#EBECED" fill="none" fill-rule="evenodd">
<path d="M0 3.607h11.253M8 .107l3.5 3.5-3.5 3.5">
</path>
</g>
</svg>
</a>
</div>
<div class="logo" role="listitem">
<img src="project-manager-logo.svg" class="logo-img">
<h3 class="f-h3">Project Managers</h3>
<p class="f-h3-p">Digital and technical project managers, scrum masters, and more with expertise in numerous PM tools, frameworks, and styles.</p>
<a class="dev-link" href="#">View Project Managers
<svg width="12" height="8">
<g stroke="#EBECED" fill="none" fill-rule="evenodd">
<path d="M0 3.607h11.253M8 .107l3.5 3.5-3.5 3.5">
</path>
</g>
</svg>
</a>
</div>
<div class="logo" role="listitem">
<img src="product-manager-logo.svg" class="logo-img">
<h3 class="f-h3">Product Managers</h3>
<p class="f-h3-p">Digital product managers, scrum product owners with expertise in numerous industries like banking, healthcare, ecommerce, and more.</p>
<a class="dev-link" href="#">View Product Managers
<svg width="12" height="8">
<g stroke="#EBECED" fill="none" fill-rule="evenodd">
<path d="M0 3.607h11.253M8 .107l3.5 3.5-3.5 3.5">
</path>
</g>
</svg>
</a>
</div>
<div class="logo" role="listitem">
<img src="toptal-project-logo.svg" class="logo-img">
<h3 class="f-h3">Toptal<sup>®</sup> Projects</h3>
<p class="f-h3-p">Toptal Project Consultants assemble managed teams of seasoned experts for your most urgent business needs.</p>
<a class="dev-link" href="#">Explore Toptal® Projects
<svg width="12" height="8">
<g stroke="#EBECED" fill="none" fill-rule="evenodd">
<path d="M0 3.607h11.253M8 .107l3.5 3.5-3.5 3.5">
</path>
</g>
</svg>
</a>
</div>
</div>
</section>
</div>
<div class="below-home2">
<section class="home-3">
<div class="home-3-left">
<h2 class="home-3-left-h2">Build Amazing Teams, On Demand</h2>
<p class="home-3-left-p">Quickly assemble the teams you need, exactly when you need them.</p>
<div class="whyToptal" role="list">
<div class="whyToptal-element" role="listitem">
<div class="whyToptal-elementlogo-block">
<img class="whyToptal-elementlogo" src="hire_quickly.svg">
<div class="whyToptal-element-text">
<h3 class="wt-h3">Hire Quickly</h3>
<p class="wt-h3-p">Hire in under 48 hours. Scale up or down, no strings attached. We offer flexible engagements from hourly to full-time.</p>
</div>
</div>
</div>
<div class="whyToptal-element" role="listitem">
<div class="whyToptal-elementlogo-block">
<img class="whyToptal-elementlogo" src="the_top3.svg">
<div class="whyToptal-element-text">
<h3 class="wt-h3">The Top 3%</h3>
<p class="wt-h3-p">Every applicant to the Toptal network is rigorously tested and vetted. Our highly selective process leads to a 98% trial-to-hire success rate.</p>
</div>
</div>
</div>
<div class="whyToptal-element" role="listitem">
<div class="whyToptal-elementlogo-block">
<img class="whyToptal-elementlogo" src="leading_the_future_of_work.svg">
<div class="whyToptal-element-text">
<h3 class="wt-h3">Leading the Future of Work</h3>
<p class="wt-h3-p">Our network is ready for tomorrow's business challenges by embracing advanced and specialized skills including blockchain and AI.</p>
</div>
</div>
</div>
<div class="whyToptal-element" role="listitem">
<div class="whyToptal-elementlogo-block">
<img class="whyToptal-elementlogo" src="a_level_above.svg">
<div class="whyToptal-element-text">
<h3 class="wt-h3">A Level Above</h3>
<p class="wt-h3-p">Every single freelancer in our global network embodies the highest levels of integrity, professionalism, and communication.</p>
</div>
</div>
</div>
</div>
</div>
<div class="home-3-right">
<div class="home-3-right-addf" role="list">
<div class="home-3-right-addf-element" role="listitem">
<div class="home-3-right-addf-element1-box">
<img class="home-3-right-addf-element1-box-img" src="vladimirperic.webp">
<div>
<p class="home-3-right-p1">Vladimir Peric</p>
<p class="home-3-right-p2">JavaScript Developer</p>
<div class="home-3-right-f-logo">
<span class="home-3-right-f-span">Previosuly at</span>
<img class="home-3-f-logo" src="ubisoft.svg">
</div>
</div>
</div>
</div>
<div class="home-3-right-addf-element" role="listitem">
<div class="home-3-right-addf-element2-box">
<img class="home-3-right-addf-element2-box-img" src="ruthmadrigal.webp">
<div>
<p class="home-3-right-p1">Ruth Madrigal</p>
<p class="home-3-right-p2">Scrum Master</p>
<div class="home-3-right-f-logo">
<span class="home-3-right-f-span">Previosuly at</span>
<img class="home-3-f-logo" src="ibm.svg">
</div>
</div>
</div>
</div>
<div class="home-3-right-addf-element" role="listitem">
<div class="home-3-right-addf-element3-box">
<img class="home-3-right-addf-element3-box-img" src="emilydubow.webp">
<div>
<p class="home-3-right-p1">Emily Dubow</p>
<p class="home-3-right-p2">UI/UX Designer</p>
<div class="home-3-right-f-logo">
<span class="home-3-right-f-span">Previosuly at</span>
<img class="home-3-f-logo" src="samsung.svg">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="below-home3">
<div class="home-4">
<section class="hiring-made-easy">
<h2 class="home-4-h2">Hiring Made Easy</h2>
<div class="hiring-made-easy-svgs-container">
<div class="hiring-made-easy-svgs" role="list">
<div class="hiring-made-easy-svg-item" role="listitem">
<div class="hme">
<div class="home-4-svg-item">
<svg class="hiring-made-easy-svg-item-arrow" viewBox="0 0 15 29">
<path d="m.707.707 13.678 13.678-13.678 13.677" fill="none" stroke="#204ecf">
</path>
</svg>
</div>
<div class="no-in-home-4">1</div>
<div class="home-4-svg-item">
<svg class="hiring-made-easy-svg-item-arrow" viewBox="0 0 15 29">
<path d="m.707.707 13.678 13.678-13.678 13.677" fill="none" stroke="#204ecf">
</path>
</svg>
</div>
<div class="hme-4-text">
<h3 class="hme-4-h3">Talk to One of Our Industry Experts</h3>
<div class="hme-4-p">An expert on our team will work with you to understand your goals, technical needs, and team dynamics.</div>
</div>
</div>
</div>
<div class="hiring-made-easy-svg-item" role="listitem">
<div class="hme">
<div class="no-in-home-4">2</div>
<div class="home-4-svg-item">
<svg class="hiring-made-easy-svg-item-arrow" viewBox="0 0 15 29">
<path d="m.707.707 13.678 13.678-13.678 13.677" fill="none" stroke="#204ecf">
</path>
</svg>
</div>
<div class="hme-4-text">
<h3 class="hme-4-h3">Work With Hand-Selected Talent</h3>
<div class="hme-4-p">Within days, we'll introduce you to the right talent for your project. Average time to match is under 24 hours.</div>
</div>
</div>
</div>
<div class="hiring-made-easy-svg-item" role="listitem">
<div class="hme">
<div class="no-in-home-4">3</div>
<div class="home-4-svg-item">
<svg class="hiring-made-easy-svg-item-arrow" viewBox="0 0 15 29">
<path d="m.707.707 13.678 13.678-13.678 13.677" fill="none" stroke="#204ecf">
</path>
</svg>
</div>
<div class="hme-4-text">
<h3 class="hme-4-h3">The Right Fit, Guaranteed</h3>
<div class="hme-4-p">Work with your new team member on a trial basis (pay only if satisfied), ensuring you hire the right people for the job</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<div class="below-home4">
<section class="meet-talent-in-our-network">
<h2 class="home-5-h2">Meet Talent in Our Network</h2>
<div class="e-tab-list-cont">
<ul class ="e-tab-list" role="tablist">
<li class="tab-s" role="tab">
<a>Developers</a>
</li>
<li class="tab" role="tab">
<a>Designers</a>
</li>
<li class="tab" role="tab">
<a>Finance Experts</a>
</li>
<li class="tab" role="tab">
<a>Project Managers</a>
</li>
<li class="tab" role="tab">
<a>Product Managers</a>
</li>
</ul>
<div>
<div class="tab-panel" role="tabpanel">
<div class="tab-list" role="list">
<div class="tab-list-item" roll="listitem">
<div class="tab-list-item-cont">
<img src="gabriel.webp">
<div class="tab-list-item-des">
<p class="des-name">Gabriel Courtemanche</p>
<p class="des-p1">JavaScript Developer</p>
<p class="des-p2">Gabriel is a highly efficient and reliable professional who possesses a broad skill set for web application development. He's been working on a range of products and clients—from working on scalability problems in production engineering teams at Shopify and Autodesk to launching new applications for startups. Most of his work consists of leading technical teams, by creating an easy development environment, fixing technical debts, providing best practices code examples, and mentoring devs. </p>
<div>
<span class="brands-logo-span">Previously at</span>
<img src="shopify.svg">
</div>
</div>
<a href="#gabriel-courtemanche" class="tab-list-item-viewbutton">View Gabriel</a>
</div>
</div>
<div class="tab-list-item" roll="listitem">
<div class="tab-list-item-cont">
<img src="justin.webp">
<div class="tab-list-item-des">
<p class="des-name">Justin Michela</p>
<p class="des-p1">Java Developer</p>
<p class="des-p2">Justin is a technical professional with a passion for learning and 15+ years of experience leading teams to build enterprise-grade distributed applications that solve real-world problems. He is a firm believer that collaboration across all facets of a business, from development to marketing to sales, is required to succeed in this endeavor.</p>
<div class="tab-list-item-logo">
<span class="brands-logo-span">Previously at</span>
<img src="google.svg">
</div>
</div>
<a href="#gabriel-courtemanche" class="tab-list-item-viewbutton">View Justin</a>
</div>
</div>
<div class="tab-list-item" roll="listitem">
<div class="tab-list-item-cont">
<img src="fredrique.webp">
<div class="tab-list-item-des">
<p class="des-name">Frédérique Mittelstaedt</p>
<p class="des-p1">Python Developer</p>
<p class="des-p2">Frédérique is a software engineer and entrepreneur with an MSc in theoretical physics from Imperial College London. He excels at building full-stack systems with the web, desktop, and mobile apps, microservices, and external integrations. Frédérique co-founded an international marketing agency and three startups in developer tools, cybersecurity, and AI. Frédérique regularly releases TypeScript packages and contributes to other open-source projects.</p>
<div>
<span class="brands-logo-span">Previously at</span>
<img src="exxonmobil.svg">
</div>
</div>
<a href="#gabriel-courtemanche" class="tab-list-item-viewbutton">View Frédérique</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<section class="video-and-link">
<div class="home-6">
<div class="home-6f">
<div class="home-6ff">
<div class="video-link-list" role="list">
<div class="video-link-list-item" role="listitem">
<div class="video-link-list-item-cont">
<h2 class="vl-h2">Why Organizations Choose Toptal</h2>
<p class="vl-p">Discover the many ways in which our clients have embraced the benefits of the Toptal network.</p>
</div>
</div>
<div class="video-link-list-item" role="listitem">
<div class="video-link-list-item-cont-img">
<img class="video-link-list-item-cont-imgf" src="video1.webp">
<div class="video-link-list-item-logo">
<img src="video1.svg" class="logo-vl">
</div>
<p class="video-link-list-item-p">Building a cross-platform app to be used worldwide</p>
<div class="video-link-list-item-p-cont">
<p class="video-link-list-item-p1">
Thierry Jakicevic
</p>
<p class="video-link-list-item-p2">
General Manager, Digital Solutions
</p>
</div>
</div>
</div>
<div class="video-link-list-item" role="listitem">
<div class="video-link-list-item-cont-img">
<img class="video-link-list-item-cont-imgf" src="video2.webp">
<div class="video-link-list-item-logo">
<img src="video2.svg" class="logo-vl">
</div>
<p class="video-link-list-item-p">Creating an app for the game</p>
<div class="video-link-list-item-p-cont">
<p class="video-link-list-item-p1">
Conor Kenney
</p>
<p class="video-link-list-item-p2">
Director of Professional Services
</p>
</div>
</div>
</div>
<div class="video-link-list-item" role="listitem">
<div class="video-link-list-item-cont-img">
<img class="video-link-list-item-cont-imgf" src="video3.webp">
<div class="video-link-list-item-logo">
<img src="video3.svg" class="logo-vl">
</div>
<p class="video-link-list-item-p">Leading a digital transformation</p>
<div class="video-link-list-item-p-cont">
<p class="video-link-list-item-p1">
Elmar Platzer
</p>
<p class="video-link-list-item-p2">
Digital Transformation Leader
</p>
</div>
</div>
</div>
<div class="video-link-list-item" role="listitem">
<div class="video-link-list-item-cont-img">
<img class="video-link-list-item-cont-imgf" src="video4.webp">
<div class="video-link-list-item-logo">
<img src="video4.svg" class="logo-vl">
</div>
<p class="video-link-list-item-p">Developing a virtual assistant to improve mental wellness</p>
</div>
</div>
<div class="video-link-list-item" role="listitem">
<div class="video-link-list-item-cont-img">
<img class="video-link-list-item-cont-imgf" src="video5.webp">
<div class="video-link-list-item-logo">
<img src="video5.svg" class="logo-vl">
</div>
<p class="video-link-list-item-p">Scaling revenue with marketing automation</p>
</div>
</div>
<div class="video-link-list-item" role="listitem">
<div class="video-link-list-item-cont">
<h2 class="vl-h2">Collaborations With Leading Brands</h2>
<p class="vl-p">We collaborate with a number of top tier companies on imagining the future of work, have a look.</p>
</div>
</div>
<div class="video-link-list-item" role="listitem">
<div class="video-link-list2" role="list">
<div class="video-link-list2-item" role="listitem" >
<div class="video-link-list2-item-cont-img">
<img class="video-link-list-item-cont-imgf" src="video6.webp">
<div class="video-link-list-item-logo">
<img src="video6.svg" class="logo-vl">
</div>
<p class="video-link-list-item-p">The Opportunity Loop: An Inside Look at How to Attract and Retain Top Talent</p>
</div>
</div>
<div class="video-link-list2-item" role="listitem">
<div class="video-link-list2-item-cont-img">
<img class="video-link-list-item-cont-imgf" src="video7.webp">
<div class="video-link-list-item-logo">
<img src="video7.svg" class="logo-vl">
</div>
<p class="video-link-list-item-p">Industry Perspective: Salesforce On Team Alignment And Agile Talent</p>
</div>
</div>
<div class="video-link-list2-item" role="listitem">
<div class="video-link-list2-item-cont-img">
<img class="video-link-list-item-cont-imgf" src="video8.webp">
<div class="video-link-list-item-logo">
<img src="video8.svg" class="logo-vl">
</div>
<p class="video-link-list-item-p">Call to Action: the On-Demand Business Model</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="rur">
<p class="rur_p">Ready to get started?</p>
<div class="rur_b">
<a href="#a" class="button">Hire Top Talent</a>
</div>
</div>
<div class="mid-end-s">
<div class="mid-end-s-img">
<img class="mid-end-s-img-ff" src="mid-end.webp" width="100%" height="100%">
<div class="mid-end-s-img-f">
<span class="mid-end-img-span"></span>
<div class="mid-end-s-img-f-svg">
<svg class="mid-end-s-img-f-svg-e" style="width:32px;height:32px" viewBox="0 0 24 24">
<path d="M0 13.6C0 17.7 2.47 20 5.247 20c2.469 0 4.32-2 4.32-4.3 0-2.4-1.748-4.2-4.114-4.2-.309 0-1.03.1-1.132.2.206-3.2 2.778-7.1 6.07-9.3L7.305 0C3.395 2.8 0 8 0 13.6zm14.61 0c0 4.1 2.365 6.4 5.143 6.4 2.572 0 4.424-2 4.424-4.3 0-2.4-1.749-4.2-4.115-4.2-.412 0-1.03.1-1.132.2.206-3.2 2.778-7.1 6.07-9.3L21.914 0c-4.013 2.8-7.305 8-7.305 13.6z" fill="currentColor">
</path>
</svg>
<div>
<p class="mid-end-p">We're known as a high-skilled marketplace, and we see an acute pain point within that area.</p>
<img src="cnbc.svg">
</div>
</div>
</div>
</div>
</div>
<div class="home-7">
<div>
<div class="home-7-back">
<section class="home-7-sec">
<h2 class="home-7_h2">Hear From Our Clients</h2>
<div class="rating" role="list">
<div class="r1" role="listitem">
<div class="rt_cont">
<p> Our customers say</p>
</div>
</div>
<div class="r2" role="listitem">
<div class="rt_cont">
<p class="pe"><strong>Excellent</strong></p>
</div>
</div>
<div class="r3" role="listitem">
<div class="rt_cont">
<div style="position: relative; height: 0; width: 100%; padding: 0; padding-bottom: 18.326693227091635%;">
<svg viewBox="0 0 251 46" style="position: absolute; height: 100%; width: 100%; left: 0; top: 0;">
<g class="tp-star">
<path class="tp-star__canvas" fill="#00B67A" d="M0 46.330002h46.375586V0H0z"></path>
<path class="tp-star__shape" d="M39.533936 19.711433L13.230239 38.80065l3.838216-11.797827L7.02115 19.711433h12.418975l3.837417-11.798624 3.837418 11.798624h12.418975zM23.2785 31.510075l7.183595-1.509576 2.862114 8.800152L23.2785 31.510075z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#00B67A" d="M51.24816 46.330002h46.375587V0H51.248161z"></path>
<path class="tp-star__canvas--half" fill="#00B67A" d="M51.24816 46.330002h23.187793V0H51.248161z"></path>
<path class="tp-star__shape" d="M74.990978 31.32991L81.150908 30 84 39l-9.660206-7.202786L64.30279 39l3.895636-11.840666L58 19.841466h12.605577L74.499595 8l3.895637 11.841466H91L74.990978 31.329909z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#00B67A" d="M102.532209 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__canvas--half" fill="#00B67A" d="M102.532209 46.330002h23.187793V0h-23.187793z"></path>
<path class="tp-star__shape" d="M142.066994 19.711433L115.763298 38.80065l3.838215-11.797827-10.047304-7.291391h12.418975l3.837418-11.798624 3.837417 11.798624h12.418975zM125.81156 31.510075l7.183595-1.509576 2.862113 8.800152-10.045708-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#00B67A" d="M153.815458 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__canvas--half" fill="#00B67A" d="M153.815458 46.330002h23.187793V0h-23.187793z"></path>
<path class="tp-star__shape" d="M193.348355 19.711433L167.045457 38.80065l3.837417-11.797827-10.047303-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418974zM177.09292 31.510075l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#dcdce6" d="M205.064416 46.330002h46.375587V0h-46.375587z"></path>
<path class="tp-star__canvas--half" fill="#00B67A" d="M205.064416 46.330002h23.187793V0h-23.187793z"></path>
<path class="tp-star__shape" d="M244.597022 19.711433l-26.3029 19.089218 3.837419-11.797827-10.047304-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418975zm-16.255436 11.798642l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
</svg>
</div>
</div>
</div>
<div class="r4" role="listitem">
<div class="rt_cont">
<p><strong>4.5</strong> out of 5 based on <strong>1,223 reviews</strong></p>
</div>
</div>
<div class="r5" role="listitem">
<div class="rt_cont">
<p>Trustpilot</p>
</div>
</div>
</div>
<div class="blockqoute1" roll="list">
<div class="bq_item" roll="listitem">
<blockquote class="bq">
<div>
<svg class="bq_com" viewBox="0 0 24 24">
<path d="M0 13.6C0 17.7 2.47 20 5.247 20c2.469 0 4.32-2 4.32-4.3 0-2.4-1.748-4.2-4.114-4.2-.309 0-1.03.1-1.132.2.206-3.2 2.778-7.1 6.07-9.3L7.305 0C3.395 2.8 0 8 0 13.6zm14.61 0c0 4.1 2.365 6.4 5.143 6.4 2.572 0 4.424-2 4.424-4.3 0-2.4-1.749-4.2-4.115-4.2-.412 0-1.03.1-1.132.2.206-3.2 2.778-7.1 6.07-9.3L21.914 0c-4.013 2.8-7.305 8-7.305 13.6z" fill="currentColor">
</path>
</svg>
<p class="bq_p">
With Toptal, we are able to find talented developers in a matter of weeks instead of months. The quality of talent they supply is extremely high as the developers are able to immediately onboard and ramp incredibly fast.
</p>
</div>
<div class="bq_img-cont">
<img src="zaccarman.webp" class="bq_img">
<div class="bq_des">
<p class="bq_des_p1">Zac Carman, CEO</p>
<p class="bq_des_p2">ConsumerAffairs</p>
</div>
</div>
</blockquote>
</div>
<div class="bq_item" roll="listitem">
<blockquote class="bq">
<div>
<svg class="bq_com" viewBox="0 0 24 24">
<path d="M0 13.6C0 17.7 2.47 20 5.247 20c2.469 0 4.32-2 4.32-4.3 0-2.4-1.748-4.2-4.114-4.2-.309 0-1.03.1-1.132.2.206-3.2 2.778-7.1 6.07-9.3L7.305 0C3.395 2.8 0 8 0 13.6zm14.61 0c0 4.1 2.365 6.4 5.143 6.4 2.572 0 4.424-2 4.424-4.3 0-2.4-1.749-4.2-4.115-4.2-.412 0-1.03.1-1.132.2.206-3.2 2.778-7.1 6.07-9.3L21.914 0c-4.013 2.8-7.305 8-7.305 13.6z" fill="currentColor">
</path>
</svg>
<p class="bq_p">
With the pressure on and millions watching the Cleveland Cavaliers during the NBA Playoffs, Toptal delivered the talent and expertise needed to launch a brand new fan engagement platform.
</p>
</div>
<div class="bq_img-cont">
<img src="conorkenney.webp" class="bq_img">
<div class="bq_des">
<p class="bq_des_p1">Conor Kenney, Director of Professional Services</p>
<p class="bq_des_p2">Cleveland Cavaliers</p>
</div>
</div>
</blockquote>
</div>
<div class="bq_item" roll="listitem">
<blockquote class="bq">
<div>
<svg class="bq_com" viewBox="0 0 24 24">
<path d="M0 13.6C0 17.7 2.47 20 5.247 20c2.469 0 4.32-2 4.32-4.3 0-2.4-1.748-4.2-4.114-4.2-.309 0-1.03.1-1.132.2.206-3.2 2.778-7.1 6.07-9.3L7.305 0C3.395 2.8 0 8 0 13.6zm14.61 0c0 4.1 2.365 6.4 5.143 6.4 2.572 0 4.424-2 4.424-4.3 0-2.4-1.749-4.2-4.115-4.2-.412 0-1.03.1-1.132.2.206-3.2 2.778-7.1 6.07-9.3L21.914 0c-4.013 2.8-7.305 8-7.305 13.6z" fill="currentColor">
</path>
</svg>
<p class="bq_p">
We've been very pleased with our experience working with Toptal. Their team was incredibly helpful in helping us find the perfect developer for our project. The work was stellar, the communication was excellent and we couldn't have been happier with the overall experience. We're excited to work with Toptal for more projects in the future! </p>
</div>
<div class="bq_img-cont">
<img src="ryanwalker.webp" class="bq_img">
<div class="bq_des">
<p class="bq_des_p1">Ryan Walker, Director of Product</p>
<p class="bq_des_p2">Rand McNally</p>
</div>
</div>
</blockquote>
</div>
</div>
</section>
</div>
</div>
</div>
<div class="home-8">
<section class="s-last">
<h2 class="s-last-h2">Explore Trending Toptal Publications</h2>
<div class="s-last-list" role="list">
<div class="s-last-item" role="listitem">
<img class="img-s-last" src="c1.webp">
<div class="s-last-cont">
<div class="s-last-in">
<img class="c-img" src="kyle.webp" width="48" height="48">
</div>
<div class="s-last-links">
<a>Toptal Insights</a>
<a> > Innovation</a>
</div>
<h3 class="s-last-h3">Prioritizing Health Pros' Pain Points in Connected Medical Device Design</h3>
<div class="credits">by <strong>Kyle Kotowick, Ph.D.</strong></div>
<p class="s-last-p">
In life-or-death situations, Internet of Medical Things-enabled devices are helpful only if healthcare professionals are willing to use them.
</p>
<div class="further_read">
<span>5<!-- --> minute read</span>
<a class="cont_read" href="#a">Continue Reading</a>
</div>
</div>
</div>
<div class="s-last-item1" role="listitem">
<img class="img-s-last" src="c2.webp">
<div class="s-last-cont">
<div class="s-last-in">
<img class="c-img" src="marcos.webp" width="48" height="48">
</div>
<div class="s-last-links">
<a>Engineering</a>
<a> > Back-end</a>
</div>
<h3 class="s-last-h3">Building a Node.js/TypeScript REST API, Part 2: Models, Middleware, and Services</h3>
<div class="credits">by <strong>Marcos Henrique da Silva</strong></div>
</div>
</div>
<div class="s-last-item1" role="listitem">
<img class="img-s-last" src="c3.webp">
<div class="s-last-cont">
<div class="s-last-in">
<img class="c-img" src="micah.webp" width="48" height="48">
</div>
<div class="s-last-links">
<a>Design</a>
<a> > UX Design</a>
</div>
<h3 class="s-last-h3">Why Internal Corporate Software Is So Frustrating (with Infographic)</h3>
<div class="credits">by <strong>Micah Bowers</strong></div>
</div>
</div>
<div class="s-last-item1" role="listitem">
<img class="img-s-last" src="c4.webp">
<div class="s-last-cont">
<div class="s-last-in">
<img class="c-img" src="dylan.webp" width="48" height="48">
</div>
<div class="s-last-links">
<a>Engineering</a>
<a> > Web Front-end</a>
</div>
<h3 class="s-last-h3">Creating Live Dashboards With Airtable and React</h3>
<div class="credits">by <strong>DYLAN GOLOW</strong></div>
</div>
</div>
<div class="s-last-item1" role="listitem">
<img class="img-s-last" src="c5.webp">
<div class="s-last-cont">
<div class="s-last-in">
<img class="c-img" src="punit.webp" width="48" height="48">
</div>
<div class="s-last-links">
<a>Engineering</a>
<a> > Back-end</a>
</div>
<h3 class="s-last-h3">The Definitive Guide to DateTime Manipulation</h3>
<div class="credits">by <strong>PUNIT JAJODIA</strong></div>
</div>
</div>
</div>
<div class="s-last-b">
<a class="slb" href="#a">Read More Thought Leadership</a>
</div>
</section>
</div>
<div class="last-1">
<div class="last-ul">
<h2 class="last-1-h2">Toptal Developers</h2>
<ul class="last-1-ul">
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">AI Engineers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Android Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Angular Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">AWS Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Back-End Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">C# Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">C++ Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Front-End Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Full-Stack Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">iOS Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Java Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">JavaScript Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">.NET Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Node.js Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">PHP Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Python Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">React.js Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">React Native Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Ruby on Rails Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Salesforce Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">SQL Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Swift Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Wordpress Developers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a-link">View More Freelance Developers</a>
</li>
</ul>
</div>
<div class="last-ul">
<h2 class="last-1-h2">Toptal Designers</h2>
<ul class="last-1-ul">
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Adobe Illustrator Experts</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Animation Designers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Blockchain Designers</a>
</li>
<li class="last-ul-li">
<a href="#a" class="last-ul-li-a">Brand Designers</a>
</li>
<li class="last-ul-li">