-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1002 lines (922 loc) · 81.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto">
<title>Sign Up to Drive or Tap and Ride | Uber</title>
<meta name="description"
content="We’re finding better ways for cities to move, work, and thrive. Download the app and get a ride in minutes. Or become a driver and earn money on your schedule.">
<link rel="icon" href="./images/uber.ico"/>
<link rel="stylesheet" type="text/css" href="css/styles.css"/>
<!-- UIkit CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.35/css/uikit.min.css"/>
<link rel="stylesheet" href="./images/font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="./assets/slick-master/slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="./assets/slick-master/slick/slick-theme.css"/>
<!-- UIkit JS -->
<script src="assets/jquery-3.2.1.min%20(1).js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.35/js/uikit.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.35/js/uikit-icons.min.js"></script>
<script src="https://code.jquery.com/jquery-migrate-3.0.1.js"></script>
<script type="text/javascript" src="./assets/slick-master/slick/slick.min.js"></script>
<script src="./slider.js"></script>
</head>
<body>
<div class="sub-wrapper">
<div class="wrapper">
<!-- section navbar -->
<div uk-sticky="sel-target: .uk-navbar-container; cls-active: uk-navbar-sticky; bottom: #transparent-sticky-navbar">
<nav uk-navbar="dropbar: true;" style="position: relative; z-index: 980;" class="magic-section">
<div class="uk-navbar-left">
<ul class="uk-navbar-nav">
<li>
<a class="logo" href="#">
<svg viewBox="0 0 80 17" width="75.29411764705883px" height="16px"
class=" _style_1me9rN" data-reactid="46">
<g data-reactid="47">
<g data-reactid="48">
<path fill="#09091A"
d="M12.5839109,0.5531071v9.2070246c0,3.0744829-1.3608532,4.3512774-4.5529118,4.3512774 c-3.1923466,0-4.5532475-1.2767944-4.5532475-4.3512774v-9.610198H0.4031733C0.1345027,0.1499339,0,0.2844366,0,0.5531071 v9.3581429c0,5.1411524,3.2761652,6.9388151,8.0309992,6.9388151c4.7545462,0,8.0307112-1.7976627,8.0307112-6.9388151V0.1499339 h-3.0745783C12.7184143,0.1499339,12.5839109,0.2844366,12.5839109,0.5531071z"
data-reactid="49"></path>
<path fill="#09091A"
d="M57.1541595,2.8212435c0.2519836,0,0.3696556-0.0838192,0.4535713-0.2686944l0.8906403-2.2010524 c0.0504456-0.1341919,0-0.2015627-0.1346436-0.2015627H45.9814034c-1.1591721,0-1.5957184,0.3527766-1.5957184,1.1425314 v14.2975407c0,0.6720123,0.335659,0.9744625,1.2263489,0.9744625h11.5421257c0.2519836,0,0.3696556-0.0841522,0.4535713-0.2687416 l0.8906403-2.2010527c0.0504456-0.1344786,0-0.2015629-0.1346436-0.2015629H47.8129425v-2.9066296 c0-1.0080519,0.5544586-1.4617653,2.0495758-1.4617653h4.5699348c0.2520294,0,0.3694153-0.0837717,0.4535713-0.2686234 l0.8569794-2.1169939c0.0503006-0.1345029,0-0.2015629-0.1346436-0.2015629h-7.7954178v-4.116293H57.1541595z"
data-reactid="50"></path>
</g>
<path fill="#09091A"
d="M35.3563614,7.9118795c1.3438797-0.7056007,1.8982925-2.0328403,1.8982925-3.5952325 c0-3.6289654-2.9567184-4.1667132-6.0145607-4.1667132h-6.9892597c-1.1592674,0-1.5958633,0.3527766-1.5958633,1.1425314 v14.2975407c0,0.6720123,0.3358021,0.9744625,1.2263508,0.9744625h8.6021461c3.2424545,0,5.5609398-1.2600594,5.5609398-4.5362244 C38.0444069,10.0624876,37.2042542,8.3991585,35.3563614,7.9118795z M26.0485687,2.7541118h5.4435081 c1.8144722,0,2.3185349,0.6889615,2.3185349,2.1168747c0,1.4280329-0.5040627,2.1170182-2.3185349,2.1170182h-5.4435081V2.7541118z M32.1305923,13.9601955h-6.0820236v-3.0409174c0-1.008028,0.5544109-1.4615984,2.0498142-1.4615984h4.0322094 c1.9319992,0,2.4697227,0.7393103,2.4697227,2.2513533C34.6003151,13.2211246,34.0625916,13.9601955,32.1305923,13.9601955z"
data-reactid="51"></path>
<path fill="#09091A"
d="M79.9604492,16.2787285l-3.679245-6.3170338c1.8313522-0.4703054,3.3097305-1.6799688,3.3097305-4.7545233 c0-3.9818139-2.4698181-5.0572376-6.55233-5.0572376h-7.0226364c-1.159317,0-1.5961456,0.3527766-1.5961456,1.1425314v14.868782 c0,0.2686005,0.134407,0.4032211,0.4031677,0.4032211h2.9904251v-4.7882318c0-1.0080519,0.5544586-1.4617653,2.0498199-1.4617653 h3.040863l3.3266144,5.9812555c0.1006927,0.1678543,0.2015839,0.2687416,0.4535675,0.2687416h3.1250687 C80.0278625,16.5644684,80.0278625,16.3795223,79.9604492,16.2787285z M73.5426178,7.7606421h-5.7292023V2.7878211h5.7292023 c2.1336365,0,2.6041794,0.8231056,2.6041794,2.4864104C76.1467972,6.9542713,75.6762543,7.7606421,73.5426178,7.7606421z"
data-reactid="52"></path>
</g>
</svg>
</a>
</li>
<li class="nav-item uk-visible@m">
<a href="#">Ride</a>
<div class="uk-navbar-dropdown">
<ul class="uk-nav uk-navbar-dropdown-nav">
<li class="uk-active"><a href="#">Active</a></li>
<li><a href="#">Item</a></li>
<li><a href="#">Item</a></li>
</ul>
</div>
</li>
<li class="nav-item uk-visible@m">
<a href="#">Drive</a>
<div class="uk-navbar-dropdown ">
<ul class="uk-nav uk-navbar-dropdown-nav">
<li class="uk-active"><a href="#">Active</a></li>
<li><a href="#">Item</a></li>
<li><a href="#">Item</a></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="uk-navbar-right">
<ul class="uk-navbar-nav">
<li class="uk-visible@m nav-item">
<a href="#">HELP</a>
</li>
<li class="uk-visible@m nav-item">
<a href="#">SIGN IN</a>
</li>
<li>
<a>
<svg viewBox="0 0 64 64" width="20px" height="20px" class=" _style_4wJp4e"
data-reactid="78">
<path d="M32.0000114,4c-11.0449219,0-20,8.8027344-20,20c0,6.0996094,2,11.03125,6,16.9375l13.1807709,18.6359062 C31.3796368,59.8575249,31.6893368,59.9997215,31.9991455,60c0.3104134,0.0002785,0.6209373-0.141922,0.820179-0.4265938 L46.0000114,40.9375c4-5.90625,6-10.8378906,6-16.9375C52.0000114,12.8027344,43.0449333,4,32.0000114,4z M32.0000114,36.25 c-6.7655029,0-12.25-5.484375-12.25-12.25s5.4844971-12.25,12.25-12.25s12.25,5.484375,12.25,12.25 S38.7655144,36.25,32.0000114,36.25z"
data-reactid="79"></path>
</svg>
</a>
</li>
<li>
<button class="uk-button uk-button-primary uk-button-small button-top-navbar ">BECOME A
DRIVER
</button>
</li>
<li>
<a class="uk-navbar-toggle" uk-navbar-toggle-icon href="#"></a>
</li>
</ul>
</div>
</div>
<!-- section one -->
<div class="uk-grid section-one ">
<div class="uk-width-2-3@m uk-width-1-1@m uk-padding-remove ">
<div class="magic-section ">
<h1>Get there </h1>
<p id="first-p">Your day belongs to you</p>
</div>
</div>
<div class="uk-width-1-4">
<form class="authentication uk-visible@l uk-width-1-5@m">
<div class="item-one uk-grid ">
<div class="uk-width-1-4"><img src="./images/firstone.svg" alt=""></div>
<div class="uk-width-3-4 uk-padding-remove"><h4 class="">Ride with Uber</h4>
<a href=""> <span class="uk-animation-toggle">SignUp
<i class=" uk-animation-slide-left-small" uk-icon="chevron-right"></i></span>
</a>
</div>
</div>
<div class="or-line">
<h2><span>OR</span></h2>
</div>
<div class="item-one uk-grid">
<div class="uk-width-1-4"><img src="./images/driver-male.svg" alt=""></div>
<div class="uk-width-3-4 uk-padding-remove"><h4 class="uk-margin-small-top">Sign up to
drive</h4>
</div>
</div>
<div class="uk-grid uk-margin-remove couple">
<input class="uk-input uk-width-1-2 uk-padding-small" type="text" placeholder="First Name">
<input class="uk-input uk-width-1-2 uk-padding-small " type="text" placeholder="Last Name">
</div>
<div class="triple">
<input class="uk-input uk-padding-small individual" type="email" placeholder="Email">
<input class="uk-input uk-padding-small " type="text" placeholder="Phone">
<input class="uk-input uk-padding-small " type="password" placeholder="Create Password">
</div>
<input class="uk-input uk-padding-small individual" type="text" placeholder="City">
<input class="uk-input uk-padding-small individual" type="text"
placeholder="Invite Code(optional)">
<button CLASS="uk-button uk-button-primary uk-width-1-1 individual uk-text-left uk-animation-toggle button-top">
SIGN UP TO DRIVE <span class=" uk-animation-slide-left-small"
uk-icon="icon: arrow-right;ratio:1.2"></span></button>
<div class="rules">Or <a href="https://partners.uber.com/login/upgrade?lite=1">sign up</a> with your
rider account.
</div>
<p>
By proceeding, I agree that Uber or its representatives may contact me by email, phone, or SMS
(including by automatic telephone dialing system) at the email address or number I provide,
including for marketing purposes. I have read and understand the relevant
<a href="/legal/privacy/drivers-us/"> Driver Privacy Statement</a>.
</p>
</form>
<a class="uk-position-bottom-right uk-invisible@l uk-width-1-5@m invisible-a">
<div class="invisible-button-description">Start riding with Uber</div>
<div class="invisible-button uk-animation-toggle">Get the app <span
class=" uk-animation-slide-left-small" uk-icon="icon: arrow-right;ratio:1.2"></span></div>
</a>
</div>
</div>
<div class="first-img">
</div>
<div class="section-two magic-section">
<div class="triple-card">
<div class="uk-flex@l uk-flex-column@m uk-grid uk-flex-center">
<div class=" uk-width-1-3@m">
<div></div>
<div class="image">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 88 88" height="88"
width="88" style="display: block; height: 100%; width: 100%;"><title>Decorative
Illustration</title>
<desc>Decorative Illustration</desc>
<defs>
<clipPath id="a___1569785765">
<circle cx="44.04" cy="44" r="43.65" fill="none"></circle>
</clipPath>
<pattern id="b___1569785765" data-name="2x2 - Black" width="4" height="4"
patternTransform="matrix(.8 0 0 .8 5.7 4.5)" patternUnits="userSpaceOnUse"
viewBox="0 0 4 4">
<path fill="none" d="M0 0h4v4H0z"></path>
<path d="M0 0h2v2H0z"></path>
</pattern>
</defs>
<path d="M17.07 74.68h10.25v8.95H17.07z" style="fill: rgb(88, 121, 218);"></path>
<g clip-path="url(#a___1569785765)">
<path fill="#d6d6d5" d="M90.75 90.31H-1.6v-93.5h92.35z"></path>
<path d="M71.01 87.65H17.08V61.3a14.8 14.8 0 0 1 14.8-14.8h24.33a14.8 14.8 0 0 1 14.8 14.8v26.35z"
style="fill: rgb(88, 121, 218);"></path>
<circle cx="40.02" cy="22.61" r="11.58" fill="#f8f8f9"></circle>
<path d="M35.06 46.5h8.32v-4.3a12.59 12.59 0 0 0-3.69-8.9l-1-1A12.59 12.59 0 0 1 35 23.42h-2.29V46.5h2.35z"></path>
<path fill="#f8f8f9" d="M51.6 46.5H36.26V28.61H51.6z"></path>
<path fill="url(#b___1569785765)" d="M17.07 63.76h53.94v23.89H17.07z"></path>
<path d="M40 38.83h-9.41a2.16 2.16 0 0 1-2.16-2.16V22.61H40v16.22z"
fill="#f8f8f9"></path>
<path d="M28.44 25v4.61h-1.16a.54.54 0 0 1-.38-.92A5.23 5.23 0 0 0 28.44 25z"
fill="#f8f8f9"></path>
<path d="M40 11a11.24 11.24 0 0 1 11.6 11.29v17.06l-4-4a5.07 5.07 0 0 1-1.48-3.58v-5.93a1.79 1.79 0 0 0-1.8-1.84 1.79 1.79 0 0 0-1.79 1.79v.27h-1A3.14 3.14 0 0 1 38.36 23v-1.5a2.28 2.28 0 0 0-2.28-2.28h-7.14A11.59 11.59 0 0 1 40 11z"></path>
<path d="M39.77 21.97H25.18v-.48a6.57 6.57 0 0 1 6.56-6.6h8v7.08z"></path>
<path d="M36.27 46.5h15.34v41.03H36.27z" style="fill: rgb(137, 218, 193);"></path>
<path d="M43.97 54.13h-.1a7.63 7.63 0 0 1-7.63-7.63H51.6a7.63 7.63 0 0 1-7.63 7.63z"
fill="#f8f8f9"></path>
<path d="M51.6 46.5h8.32v-4.3a12.59 12.59 0 0 0-3.69-8.9l-1-1a12.59 12.59 0 0 1-3.69-8.9h-5.42V41a5.49 5.49 0 0 0 5.48 5.5z"></path>
</g>
<ellipse cx="67.07" cy="10.13" rx="10.32" ry="9.78" fill="#fff"></ellipse>
<path d="M57 12.35l7.84 23.31a2.32 2.32 0 0 0 4.41 0l7.84-23.31H57z" fill="#fff"></path>
<ellipse cx="67.07" cy="10.13" rx="4.75" ry="4.5"
style="fill: rgb(137, 218, 193);"></ellipse>
<path fill="#f8f8f9" d="M7.16 54.98h6.76v3.27H7.16z"></path>
<path d="M5.77 58.25h11.3v25.38h-3.3a8 8 0 0 1-8-8V58.25z"
style="fill: rgb(88, 121, 218);"></path>
<rect x="8.84" y="38.38" width="8.23" height="17.2" rx="1.18" ry="1.18"
style="fill: rgb(137, 218, 193);"></rect>
<rect x="7.66" y="38.38" width="8.23" height="17.2" rx="1.18" ry="1.18"></rect>
<path d="M13.92 52.59v-4.25H12a1.93 1.93 0 0 0 1.93-1.93H6.54a2.21 2.21 0 0 0-2.21 2.21v2.47a3.09 3.09 0 0 0 .9 2.18l1.87 1.88a4 4 0 0 0 2.83 1.17h.25a3.74 3.74 0 0 0 3.74-3.73z"
fill="#f8f8f9"></path>
</svg>
</div>
<div class="card-description">
<h4>Easiest way around</h4>
<p>One tap and a car comes directly to you. Hop in—your driver knows exactly where to go.
And when you get there, just step out. Payment is completely seamless.</p>
</div>
</div>
<div class="uk-width-1-3@m">
<div class="image ">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 88 88" height="88"
width="88" style="display: block; height: 100%; width: 100%;"><title>Decorative
Illustration</title>
<desc>Decorative Illustration</desc>
<defs>
<clipPath id="a___1127826719">
<path fill="none" d="M0 0h88v88H0z"></path>
</clipPath>
<pattern id="b___1127826719" data-name="Unnamed Pattern 3" width="4" height="4"
patternTransform="translate(-3.8 -.6)" patternUnits="userSpaceOnUse"
viewBox="0 0 4 4">
<path fill="none" d="M0 0h4v4H0z"></path>
<path d="M0 0h2v2H0z"></path>
</pattern>
</defs>
<rect x="33.34" width="40.66" height="69.15" rx="2.22" ry="2.22"></rect>
<path d="M37.41 9.36h32.53v50.57H37.41z" style="fill: rgb(137, 218, 193);"></path>
<path d="M37.41 9.36h32.53v50.57H37.41z" style="fill: rgb(137, 218, 193);"></path>
<path fill="#fff" d="M52.67 9.36h2v26.13h-2z"></path>
<path fill="#fff" d="M37.41 34.49h32.53v2H37.41z"></path>
<path fill="#fff" d="M45.39 35.49h2v19.17h-2zm16.29 0h2v19.17h-2z"></path>
<path d="M56.21 65.91A1.17 1.17 0 0 1 55 67.08h-2.7a1.17 1.17 0 0 1-1.17-1.17v-2.74A1.17 1.17 0 0 1 52.3 62H55a1.17 1.17 0 0 1 1.17 1.17v2.73z"
style="fill: rgb(88, 121, 218);"></path>
<rect x="49.68" y="4.02" width="7.98" height="1.45" rx=".72" ry=".72"
fill="#a5a5a5"></rect>
<rect x="52.43" y="63.31" width="2.47" height="2.47" rx=".43" ry=".43"></rect>
<g clip-path="url(#a___1127826719)">
<circle cx="54.02" cy="71.49" r="16.37"></circle>
<path d="M81.4 60.84l-2.77-2.77a42.26 42.26 0 0 0-16.32-10.14l-27.78-9.42-27-10.67a116.23 116.23 0 0 0-42.64-8.1h-58.8a116.22 116.22 0 0 0-38.8 6.67l-13.94 4.94a42.37 42.37 0 0 1-14.15 2.43h-10.43a.77.77 0 0 0-.54 1.31l.47.47a5 5 0 0 1 1.48 3.56v7.1a12.2 12.2 0 0 1-3.57 8.63 7.75 7.75 0 0 0-2.27 5.48v8.2a13.26 13.26 0 0 0 13.26 13.26H70.24a18.38 18.38 0 0 0 13-5.38 5.22 5.22 0 0 0 1.53-3.69V69a11.52 11.52 0 0 0-3.37-8.16z"
style="fill: rgb(88, 121, 218);"></path>
<path d="M-170 79.42a13.19 13.19 0 0 0 7.54 2.36h232.7a18.38 18.38 0 0 0 9-2.36H-170z"></path>
<path d="M-39.63 27.84l27 10.67 7.49 2.54h28.76a1.47 1.47 0 0 0 .54-2.84l-18-7.08a112.23 112.23 0 0 0-41.34-7.86h-18.7a116.22 116.22 0 0 1 14.25 4.57z"
fill="#fff"></path>
<path d="M24.16 38.21l-18-7.08a112.34 112.34 0 0 0-25.45-6.74l16.68 16.66h26.23a1.47 1.47 0 0 0 .54-2.84zm-43.29 43.57V71.49A18.84 18.84 0 0 1-.29 52.65a18.84 18.84 0 0 1 18.84 18.84v10.29"></path>
<circle cx="-.29" cy="71.49" r="16.37"></circle>
<circle cx="-.29" cy="71.49" r="11.04" fill="#fff"></circle>
<path d="M5.08 66.12l-4 4a2 2 0 0 1 0 2.76l4 4a7.59 7.59 0 0 0 0-10.76z"
fill="#d6d6d5"></path>
<path d="M19.52 60.59l.33.33a16.26 16.26 0 0 0 11.5 4.76h12.9a.78.78 0 0 0 .55-1.32l-3.2-3.2a6.45 6.45 0 0 0-4.6-1.89H20a.78.78 0 0 0-.48 1.32z"
fill="#fff"></path>
<path d="M44.72 60.81L48.87 65a7 7 0 0 0 5 2.06H68.6a7 7 0 0 0 5-2.06l4.16-4.16a.91.91 0 0 0-.64-1.55H45.36a.91.91 0 0 0-.64 1.52z"></path>
<path d="M58.2 62.32l1.38 1.38a4.39 4.39 0 0 0 3.11 1.3 4.39 4.39 0 0 0 3.1-1.29l1.38-1.38a.59.59 0 0 0-.42-1h-8.13a.59.59 0 0 0-.42.99zm19.99 3.36h6.1a11.52 11.52 0 0 0-2.89-4.85l-.09-.09c-.16.13-.31.27-.46.42l-3.2 3.2a.78.78 0 0 0 .54 1.32z"
fill="#fff"></path>
<path d="M28.22 76.46h55l.07-.07a5.22 5.22 0 0 0 1.53-3.69v-1.16h-7.17c-2.06 0-3.34 2.46-3.34 2.46H48.23s-1.23-2.46-3.45-2.46H31.35a4.2 4.2 0 0 0-3 1.23L27.18 74a1.46 1.46 0 0 0 1.04 2.46z"
fill="url(#b___1127826719)"></path>
<rect x="55.49" y="71.34" width="14.4" height="5.12" rx=".78" ry=".78"
fill="#fff"></rect>
</g>
<path d="M53.67 13.79v21.7a1.48 1.48 0 0 0 1.44-1.05l4-12.47a5.88 5.88 0 0 0-5.44-8.18z"></path>
<path d="M47.79 19.67A5.88 5.88 0 0 0 48 21a5.84 5.84 0 0 0 .29.91l4 12.51a1.48 1.48 0 0 0 1.44 1.05V13.79a5.88 5.88 0 0 0-5.94 5.88z"></path>
<circle cx="53.67" cy="19.67" r="2.27" fill="#fff"></circle>
<path d="M73.72 6.79h.75v5.13h-.75z"></path>
</svg>
</div>
<div class="card-description">
<h4>Anywhere, anytime</h4>
<p>Daily commute. Errand across town. Early morning flight. Late night drinks. Wherever
you’re headed, count on Uber for a ride—no reservations required.</p>
</div>
</div>
<div class="uk-width-1-3@m">
<div class="image">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 88 88" height="88"
width="88" style="display: block; height: 100%; width: 100%;"><title>Decorative
Illustration</title>
<desc>Decorative Illustration</desc>
<defs>
<pattern id="a___390658789" data-name="2/2 - black" width="4" height="4"
patternTransform="translate(0 -6.8)" patternUnits="userSpaceOnUse"
viewBox="0 0 4 4">
<path fill="none" d="M0 0h4v4H0z"></path>
<path d="M0 0h2v2H0z"></path>
</pattern>
</defs>
<path d="M75.54 31.63a31.62 31.62 0 0 0-1.88-2.71 9.45 9.45 0 0 0 7.09-9.14H66.07a11.85 11.85 0 0 1-5.32-1.28 46.46 46.46 0 0 0-20.84-4.81C17.87 13.68 0 28.3 0 46.34c0 8.26 3.76 15.8 9.94 21.55a12.52 12.52 0 0 1 4 9.17v4.16h8.17v-5.68A47.08 47.08 0 0 0 39.91 79c.44 0 .87 0 1.3-.05V79a37.15 37.15 0 0 0 15.72-3.2v5.42h8.17v-5a12.79 12.79 0 0 1 3.9-9.09c6.83-6.76 11.42-13.9 19-13.9V40.6c-4.46 0-8.45-3.74-12.46-8.97z"
style="fill: rgb(88, 121, 218);"></path>
<path d="M0 45.74v.59c0 8.26 3.76 15.8 9.94 21.55a12.52 12.52 0 0 1 4 9.17v4.16h8.17v-5.67A47.08 47.08 0 0 0 39.91 79c.44 0 .87 0 1.3-.05V79a37.15 37.15 0 0 0 15.72-3.2v5.42h8.17v-5a12.79 12.79 0 0 1 3.9-9.09c6.83-6.76 11.42-13.9 19-13.9v-7.49H0z"
fill="url(#a___390658789)"></path>
<path d="M40.05 20.62a25 25 0 1 1 0 50.1v-50.1z" fill="#d6d6d5"></path>
<path d="M40.05 20.62a25 25 0 1 0 0 50.1v-50.1z"
style="fill: rgb(137, 218, 193);"></path>
<path d="M10.91 26.12A10.92 10.92 0 0 1 0 15.21a8.94 8.94 0 0 1 8.93-8.93 7.35 7.35 0 0 1 7.34 7.34 6.08 6.08 0 0 1-6.07 6.08 5.07 5.07 0 0 1-5.06-5.06 4.25 4.25 0 0 1 4.25-4.25v2a2.25 2.25 0 0 0-2.25 2.25 3.06 3.06 0 0 0 3.06 3.06 4.08 4.08 0 0 0 4.08-4.07 5.35 5.35 0 0 0-5.35-5.35A6.94 6.94 0 0 0 2 15.21a8.92 8.92 0 0 0 8.91 8.91v2z"
style="fill: rgb(88, 121, 218);"></path>
<path d="M46.38 55.77H29.17v-2h17.21a3.55 3.55 0 1 0 0-7.1H33.72a5.55 5.55 0 0 1 0-11.1h17.21v2H33.72a3.55 3.55 0 0 0 0 7.1h12.66a5.55 5.55 0 1 1 0 11.1z"></path>
<path d="M35.11 26.12h2v38.81h-2zm7.89 0h2v38.81h-2z"></path>
</svg>
</div>
<div class="card-description">
<h4>Low-cost to luxury</h4>
<p>Economy cars at everyday prices are always available. For special occasions, no occasion
at all, or when you just a need a bit more room, call a black car or SUV. </p>
</div>
</div>
</div>
<div class="card-button">
<button class="uk-button uk-button-primary uk-margin-large-top uk-animation-toggle button-top">
Reasons to ride <span class="uk-animation-slide-left-small"
uk-icon="icon: arrow-right;ratio:1.2"></span></button>
</div>
</div>
</div>
<div class="section-three">
<div class="magic-section">
<div class="picture-text">
<h2 style="color:white">Our community</h2>
<p style="color:white"> Our driver community comprises people of different backgrounds, experiences,
and interests. But it’s their passions that tell the story of who they are.</p>
<button class="uk-button uk-button-primary uk-margin-large-top uk-animation-toggle button-top">Read
stories<span class="uk-animation-slide-left-small" uk-icon="icon: arrow-right;ratio:1.2"></span>
</button>
</div>
</div>
</div>
<div class="magic-section">
<div class="map">
<div class="uk-grid">
<div class="uk-width-1-3 ">
<div class="pricing">
<p>Pricing</p>
<h2>Get a fare estimate </h2>
<div class="connector">
<form>
<div class="connect-line"></div>
<div class="pickup-box uk-width-1-1">
<div class=" uk-grid">
<input class="uk-width-5-6" type="text" placeholder="Enter pickup location">
<span class="uk-width-1-6 uk-margin-remove "><i class="fa fa-location-arrow"
aria-hidden="true"></i></span>
</div>
</div>
<div class=" uk-width-1-1">
<div class="destination-box uk-grid">
<div class="input-box uk-width-5-6">
<input type="text" placeholder="Enter destination"
class=" uk-width-5-6">
</div>
<div class="uk-width-1-6 gray"><i class="fa fa-long-arrow-right"></i></div>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="uk-width-2-3">
<div class="googlemap" id="map"></div>
</div>
</div>
</div>
</div>
<div class="section-four">
<div class="magic-section">
<div class="picture-text">
<h2 class="uk-margin-remove" style="color:white">Drive when you want</h2>
<h3 class="uk-margin-remove" style="color:white">Make what you need</h3>
<p style="color:white"> Driving with Uber is flexible and rewarding, helping drivers meet their
career and financial goals.</p>
<button class="uk-button uk-button-primary uk-margin-large-top uk-animation-toggle button-top">
REASONS TO DRIVE <span class=" uk-animation-slide-left-small"
uk-icon="icon: arrow-right;ratio:1.2"></span></button>
</div>
</div>
</div>
<div class="section-five">
<div class="magic-section">
<p class="header"> At the wheel</p>
<h2 class="header2">Meet our drivers</h2>
</div>
</div>
<!--<div class="uk-position-relative uk-visible-toggle ">-->
<!--<ul class="uk-slideshow-items uk-margin-remove uk-padding-remove">-->
<div class="slideshow-padding-1">
<div class="driver-slideshow-1" id="driver-slideshow">
<div style="width:520px" class="s-card">
<img class="card-image"src="./images/4.jpg" alt="">
<div class="caption">
<p>"I started driving with Uber because I liked the idea that my own car could make me money.
After just about a couple weeks, I saw that this was something I wanted to do
permanently." </p>
<p><em><strong>Brandon</strong>, Coach and Chicago partner</em></p>
</div>
</div>
<div style="width:520px" class="s-card">
<img class="card-image" src="./images/6.jpg" alt="">
<div class="caption">
<p>"I wanted something where I could meet new people and get out of the house. Uber has helped
with both of those things, plus I’m seeing new parts of the city I’ve never seen
before!" </p>
<em><strong>Katrina</strong>, Mother and Seattle partner</em>
</div>
</div>
<div style="width:520px" class="s-card">
<img class="card-image" src="./images/5.jpg" alt="">
<div class="caption">
<p>"Uber enables me to have the creative freedom for baking my cakes and also driving on the
side so I can make more money and also have my dream job." " </p>
<em><strong>Jenny,</strong> Business owner and Los Angeles partner</em>
</div>
</div>
<div style="width:520px" class="s-card">
<img class="card-image" src="./images/7.jpg" alt="">
<div class="caption">
<p>"Uber enables me to have the creative freedom for baking my cakes and also driving on the
side so I can make more money and also have my dream job." " </p>
<em><strong>Jenny,</strong> Business owner and Los Angeles partner</em>
</div>
</div>
</div>
<!--<li> -->
<!--<div class="uk-flex uk-flex-center@m uk-flex-left@m">-->
<!--<div class="s-card uk-card uk-card-default uk-card-body">-->
<!--<img src="./images/5.jpg" alt="">-->
<!--<div class="caption">-->
<!--<p>"Uber enables me to have the creative freedom for baking my cakes and also driving on the side so I can make more money and also have my dream job." " </p>-->
<!--<em><strong >Jenny,</strong> Business owner and Los Angeles partner</em>-->
<!--</div> -->
<!--</div>-->
<!--<div class="s-card uk-card uk-card-default uk-card-body uk-margin-left">-->
<!--<img src="./images/6.jpg" alt="">-->
<!--<div class="caption">-->
<!--<p>"Uber enables me to have the creative freedom for baking my cakes and also driving on the side so I can make more money and also have my dream job." " </p>-->
<!--<em><strong >Jenny,</strong> Business owner and Los Angeles partner</em>-->
<!--</div> -->
<!--</div>-->
<!--<div class="s-card uk-card uk-card-default uk-card-body uk-margin-left">-->
<!--<img src="./images/7.jpg" alt="">-->
<!--<div class="caption">-->
<!--<p>""With Uber, I’m able to realize my goals. I’m able to pursue my dreams. I’m able to stay focused on sharing amazing musical experiences with the world."" </p>-->
<!--<em><strong >Sean</strong>Sean, Musician and LA partner</em>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</li>-->
<!--<div class="dots">-->
<!--<a class="uk-position-center-left uk-position-small" href="#" uk-slidenav-previous uk-slideshow-item="previous"></a>-->
<!--<a class="uk-position-center-right uk-position-small " href="#" uk-slidenav-next uk-slideshow-item="next"></a>-->
<!--</div>-->
<!--</div>-->
<!---->
<!--<ul class="uk-dotnav uk-flex-center uk-margin">-->
<!--<li uk-slideshow-item="0"><a href="#">Item 1</a></li>-->
<!--<li uk-slideshow-item="1"><a href="#">Item 2</a></li>-->
<!---->
<!--</ul>-->
<!---->
</div>
<div class="magic-section">
<div CLASS="picturetext">
<div class="written">
<h2>Unlocking cities</h2>
<h3>Imagine a world with fewer, fuller cars</h3>
<p>When was the last time you were stuck in traffic? Yesterday? A few hours ago? Our cities are home
to millions of cars, and the truth is that our streets weren’t built to handle them all.</p>
<p>The good news is that we can all do something about it. Let’s #ridetogether and unlock our
cities.</p>
<a class="uk-animation-toggle" href="https://www.unlockingcities.com/">
LEARN MORE
<span class="uk-animation-slide-left-small" uk-icon="icon: chevron-right"> </span></a>
</div>
</div>
</div>
<div class="section-six">
<div class="magic-section">
<h2>Uber is in San Francisco<br>
<div>and 632 other cities worldwide</div>
</h2>
<div class="uk-margin ">
<input type="text" class="input" placeholder="Find a City">
<button><span uk-icon="icon: arrow-right;ratio:1.2"></span></button>
</div>
</div>
</div>
<div>
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1560 197" height="197" width="1560"
preserveAspectRatio="xMinYMax meet" style="display: block; height: 100%; width: 100%;"><title>
Decorative Illustration</title>
<desc>Decorative Illustration</desc>
<defs>
<pattern id="a___158299693" data-name="2 3 - black" width="5" height="5"
patternTransform="translate(726 27)" patternUnits="userSpaceOnUse" viewBox="0 0 5 5">
<path fill="none" d="M0 0h5v5H0z"></path>
<path fill="none" d="M0 0h5v5H0z"></path>
<path fill="none" d="M0 0h5v5H0V0z"></path>
<path d="M2 2H0V0h2v2z"></path>
</pattern>
<pattern id="b___158299693" data-name="SVGID 1" width="5" height="5"
patternTransform="translate(841.4 310.4)" patternUnits="userSpaceOnUse" viewBox="0 0 5 5">
<path fill="none" d="M0 0h5v5H0z"></path>
<path fill="none" d="M0 0h5v5H0z"></path>
<path fill="none" d="M0 0h5v5H0V0z"></path>
<path d="M2 2H0V0h2v2z"></path>
</pattern>
<pattern id="c___158299693" data-name="2 3 - black" width="5" height="5"
patternTransform="translate(726 30)" patternUnits="userSpaceOnUse" viewBox="0 0 5 5">
<path fill="none" d="M0 0h5v5H0z"></path>
<path fill="none" d="M0 0h5v5H0z"></path>
<path fill="none" d="M0 0h5v5H0V0z"></path>
<path d="M2 2H0V0h2v2z"></path>
</pattern>
</defs>
<path d="M1498.22 54H1361.5a5.5 5.5 0 0 1 0-11h50.6a23.92 23.92 0 0 0 16.9-7 23.92 23.92 0 0 1 16.9-7h19.33a194.76 194.76 0 0 0-100.59-28H1137c-11.9 0-23.2 3.9-32 12a49.47 49.47 0 0 1-32.8 13H969.9c-22.3 0-43.1 7.5-58.9 22s-37.7 23-60 23H720a137.73 137.73 0 0 0-94 37c-26.1 24.4-61.8 38-98.9 38H510c-26.2 0-50.7 10.2-70 28l-26 23h1146a195.13 195.13 0 0 0-61.78-143zM1297 66a17 17 0 1 1 17-17 17 17 0 0 1-17 17zm162 34h-112a5 5 0 0 1 0-10h15.3a30.48 30.48 0 0 0 21.7-9 30.66 30.66 0 0 1 21.7-9h53.3a14 14 0 0 1 0 28z"
style="fill: rgb(15, 78, 101);"></path>
<path d="M1536 173a148 148 0 0 0-104-43h-111v67h239zm-613-21h-17v-38a73.89 73.89 0 0 0 17-2v40zm271-80a125.64 125.64 0 0 1 90 37.2V153h-90V72zm-172-1v14l-14-14h14zM574 197h-45c16.4 0 31.9-5.6 45-15v15z"></path>
<path fill="#fff"
d="M840 32v9h-10v156h48V42h5V32h-43zm115 120h-67l45 45h22v-45zm-32-61h32v61h-32z"></path>
<path fill="#d6d6d6"
d="M928 98h27v2h-27zm0 6h27v2h-27zm0 6h27v2h-27zm0 6h27v2h-27zm0 6h27v2h-27zm0 6h27v2h-27zm0 6h27v2h-27zm0 6h27v2h-27z"></path>
<path fill="#fff" d="M932 85h36v6h-36z"></path>
<path d="M932 85l19-19h17v19h-36z" style="fill: rgb(163, 233, 236);"></path>
<path d="M1022 85l-19-19h-35v19h54z" style="fill: rgb(30, 150, 190);"></path>
<path d="M979 79v-6h-6l6 6zm13 0v-6h-6l6 6zm13 0v-6h-6l6 6z" style="fill: rgb(163, 233, 236);"></path>
<path fill="#fff" d="M951 63h17v3h-17zm104 107l-55-55h55v55z"></path>
<path fill="#d6d6d6"
d="M1045 121h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm16 13h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm16 13h2v7h-2zm-14 1l-1-1h1v1zm8 6h-1l-1-1v-6h2v7z"></path>
<path d="M679 140h21v8h-21zm0-14h21v8h-21zm0-14h21v8h-21zm0-14v8h24l-8-8h-16z"
style="fill: rgb(30, 150, 190);"></path>
<path fill="#d6d6d6" d="M679 134h21v6h-21zm0-14h21v6h-21zm0-14h17v6h-17z"></path>
<path d="M679 140v8h-55l8-8h47zm0-14v8h-44l8-8h36zm0-14v8h-35l8-8h27zm0-14v8h-25l8-8h17z"
style="fill: rgb(163, 233, 236);"></path>
<path fill="#fff"
d="M643 134h36v6h-36zm9-14h27v6h-27zm10-14h17v6h-17zm634 87l-40-40h-10v-38h50v78z"></path>
<path d="M1296 107v8h26l-8-8h-18z" style="fill: rgb(30, 150, 190);"></path>
<path d="M1296 107v8h-50l8.4-8h41.6z" style="fill: rgb(163, 233, 236);"></path>
<path fill="#d6d6d6"
d="M1290 120h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm40 13h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm40 13h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm-494 16h74v35h-74z"></path>
<path fill="url(#a___158299693)" d="M756 162h74v35h-74z"></path>
<path d="M756 32v48h-17v6h-25a14 14 0 0 0-14 14v97h56V86h32V0zm212 17h2v14h-2z" fill="#fff"></path>
<path d="M970 49h6v2h-6z" style="fill: rgb(30, 150, 190);"></path>
<path fill="#fff" d="M985 49h2v14h-2z"></path>
<path d="M987 49h6v2h-6z" style="fill: rgb(30, 150, 190);"></path>
<path fill="#fff" d="M1001 49h2v14h-2z"></path>
<path d="M1003 49h6v2h-6z" style="fill: rgb(30, 150, 190);"></path>
<path fill="#d6d6d6"
d="M749 167h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm16 13h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm155-28h18V42h-5V32h-18v10h-5v155h55l-45-45z"></path>
<path fill="url(#b___158299693)" d="M603 148h41v49h-41z"></path>
<path fill="#d6d6d6" d="M603 148v49h97v-49h-97zM840 18h2v14h-2zm6 0h2v14h-2z"></path>
<path d="M1045 13a13.38 13.38 0 0 0-13 13h26a13.38 13.38 0 0 0-13-13z"
style="fill: rgb(163, 233, 236);"></path>
<path d="M1045 13v13h13a13.38 13.38 0 0 0-13-13z" style="fill: rgb(30, 150, 190);"></path>
<path fill="#fff" d="M1047 111V29h-2v-3h-20v3h-3v82h25z"></path>
<path fill="#d6d6d6"
d="M1041 34h2v7h-2zm0 11h2v7h-2zm0 11h2v7h-2zm0 11h2v7h-2zm0 11h2v7h-2zm-5-44h2v7h-2zm0 11h2v7h-2zm0 11h2v7h-2zm0 11h2v7h-2zm0 11h2v7h-2zm-5-44h2v7h-2zm0 11h2v7h-2zm0 11h2v7h-2zm0 11h2v7h-2zm0 11h2v7h-2zm-5-44h2v7h-2zm0 11h2v7h-2zm0 11h2v7h-2zm0 11h2v7h-2zm0 11h2v7h-2z"></path>
<path fill="#fff" d="M1142 38h26v100h-26z"></path>
<path d="M1194 138h-26V38a26 26 0 0 1 26 26v74z" fill="#d6d6d6"></path>
<path fill="#fff" d="M1123 153h61v44h-61z"></path>
<path fill="#d6d6d6" d="M1184 153h72v44h-72z"></path>
<path d="M1199 166a3 3 0 0 0-3 3v28h6v-28a3 3 0 0 0-3-3zm14 0a3 3 0 0 0-3 3v28h6v-28a3 3 0 0 0-3-3zm14 0a3 3 0 0 0-3 3v28h6v-28a3 3 0 0 0-3-3zm14 0a3 3 0 0 0-3 3v28h6v-28a3 3 0 0 0-3-3z"
style="fill: rgb(30, 150, 190);"></path>
<path d="M1145 166a3 3 0 0 0-3 3v28h6v-28a3 3 0 0 0-3-3zm14 0a3 3 0 0 0-3 3v28h6v-28a3 3 0 0 0-3-3zm14 0a3 3 0 0 0-3 3v28h6v-28a3 3 0 0 0-3-3z"
fill="#d6d6d6"></path>
<path d="M727 162v-4h5a17.39 17.39 0 0 0 12-5l2-2h10v11h-29z" style="fill: rgb(163, 233, 236);"></path>
<path d="M830 162v-4h-4c-4.6 0-9.8-1.8-13-5l-2-2h-55v11h74zm354-9h72a50.17 50.17 0 0 0-36-15 50.83 50.83 0 0 0-36 15z"
style="fill: rgb(30, 150, 190);"></path>
<path fill="#d6d6d6"
d="M1300 197l-44-44v44h44zM1142 68h26v2h-26zm0 6h26v2h-26zm0 6h26v2h-26zm0 6h26v2h-26zm0 6h26v2h-26zm0 6h26v2h-26zm0 6h26v2h-26zm0 6h26v2h-26z"></path>
<path d="M1168 68h26v2h-26zm0 6h26v2h-26zm0 6h26v2h-26zm0 6h26v2h-26zm0 6h26v2h-26zm0 6h26v2h-26zm0 6h26v2h-26zm0 6h26v2h-26z"
style="fill: rgb(30, 150, 190);"></path>
<path d="M1168 41v26h26a26.08 26.08 0 0 0-26-26z" transform="translate(0 -3)"
fill="url(#c___158299693)"></path>
<path fill="#d6d6d6" d="M1335 162h35v35h-35z"></path>
<path fill="url(#a___158299693)" d="M1335 162h35v35h-35z"></path>
<path d="M1335 162h-26l13-13 13 13z" style="fill: rgb(163, 233, 236);"></path>
<path d="M1357 149h-35l13 13h35l-13-13zm-493 30v2a5.06 5.06 0 0 1-1.7 3.3l-2 2-.3.3V179h-2v18h2v-5.5a6.29 6.29 0 0 1 1.7-3.8l2-2a7 7 0 0 0 2.3-4.7v-2h-2zm77 7h2v11h-2zm-227 0h2v11h-2z"
style="fill: rgb(30, 150, 190);"></path>
<path fill="#d6d6d6" d="M968 63h35v3h-35z"></path>
<path d="M490 197a42.44 42.44 0 0 1-30.5-12.9C449.6 174.2 436 168 422 168h-38c-8 0-15.3-2.3-21-8a31.79 31.79 0 0 0-22-9h-80a41.11 41.11 0 0 1-29-12 41.11 41.11 0 0 0-29-12H100a72.29 72.29 0 0 0-51 21L0 197h490z"></path>
<path d="M1297 27a22 22 0 1 0 22 22 22 22 0 0 0-22-22zm0 39a17 17 0 1 1 17-17 17 17 0 0 1-17 17z"
style="fill: rgb(15, 78, 101);"></path>
<path d="M647 151v32h2v-30l-2-2zm8 8v24h2v-22l-2-2zm8 8v16h2v-14l-2-2zm8 8v8h2v-6l-2-2z"
style="fill: rgb(30, 150, 190);"></path>
<path d="M603 148h-17.8a11.18 11.18 0 0 0-11.2 11.16V197h29v-49z" fill="#fff"></path>
<path d="M685 151h2v32h-2zm7 0h2v32h-2zM883 48h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm-11 6h7v2h-7zm11 0h7v2h-7zm229-6h19v15h-19z"
style="fill: rgb(30, 150, 190);"></path>
<path d="M1220 138h-78v15h42a50.83 50.83 0 0 1 36-15z" style="fill: rgb(163, 233, 236);"></path>
<path fill="#d6d6d6" d="M1335 173h-13v-58h-26v82h39v-24z"></path>
<path d="M1316 120h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm16 13h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm16 13h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2z"
style="fill: rgb(30, 150, 190);"></path>
<path d="M826 158h4v-44h-12v42.3a20.53 20.53 0 0 0 8 1.7z"></path>
<path d="M813 153a16.56 16.56 0 0 0 4.3 3h.7V0h-30v86h-32v65h55zm-99-60h42v2h-42zm0 6h42v2h-42zm0 6h42v2h-42zm0 6h42v2h-42zm0 6h42v2h-42zm0 6h42v2h-42zm0 6h42v2h-42zm0 6h42v2h-42z"
fill="#d6d6d6"></path>
<path d="M756 93h34v2h-34zm0 6h34v2h-34zm0 6h34v2h-34zm0 6h34v2h-34zm0 6h34v2h-34zm0 6h34v2h-34zm0 6h34v2h-34zm0 6h34v2h-34zM796 0h2v137h-2zm6 0h2v137h-2zm6 0h2v137h-2z"
style="fill: rgb(30, 150, 190);"></path>
<path fill="#fff" d="M644 148h35v35l-35-35z"></path>
<path fill="#d6d6d6"
d="M649 153v-2h-2l2 2zm8 8v-10h-2v8l2 2zm8 8v-18h-2v16l2 2zm8 8v-26h-2v24l2 2z"></path>
<path d="M1123 72h19v66h-19z"></path>
<path fill="#d6d6d6"
d="M1062 29v-3h-17v3h2v80l-18-18h-7v-6h-54v6h-13v106h100v-27l-55-55h65V29h-3z"></path>
<path d="M1060 34h2v7h-2zm0 11h2v7h-2zm-5-11h2v7h-2zm0 11h2v7h-2zm-5-11h2v7h-2zm0 11h2v7h-2zm-95 53h74v2h-74zm0 6h74v2h-74zm0 6h74v2h-74zm0 6h45v2h-45zm0 6h45v2h-45zm0 6h45v2h-45zm0 6h45v2h-45zm0 6h45v2h-45z"
style="fill: rgb(30, 150, 190);"></path>
<path d="M1024.3 158.6a2 2 0 0 0-3.3 1.4v11l-12.7-12.4a2 2 0 0 0-3.3 1.4v11l-12.7-12.4a2 2 0 0 0-3.3 1.4v11l-12.7-12.4a2 2 0 0 0-3.3 1.4v37h64v-26z"
fill="#fff"></path>
<path fill="#d6d6d6"
d="M977 177h7v2h-7zm11 0h7v2h-7zm11 0h7v2h-7zm11 0h7v2h-7zm-33 6h7v2h-7zm11 0h7v2h-7zm11 0h7v2h-7zm11 0h7v2h-7zm-33 6h7v2h-7zm11 0h7v2h-7zm11 0h7v2h-7zm11 0h7v2h-7z"></path>
<path d="M1043 177h7v2h-7zm0 6h7v2h-7zm0 6h7v2h-7z" style="fill: rgb(30, 150, 190);"></path>
<path fill="#d6d6d6" d="M1021 147h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2z"></path>
<path d="M1029 147h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2z"
style="fill: rgb(30, 150, 190);"></path>
<path fill="#d6d6d6" d="M1013 134h2v7h-2zm-8 0h2v7h-2z"></path>
<path d="M1013 134h2v7h-2zm-8 0h2v7h-2zm0-13v7h2v-6l-1-1h-1z" style="fill: rgb(30, 150, 190);"></path>
<path fill="#d6d6d6" d="M1021 121h2v7h-2zm-8 0h2v7h-2zm10 20l-2-2v-5h2v7z"></path>
<path d="M1039 154h-2v-2l2 2z" style="fill: rgb(30, 150, 190);"></path>
<path fill="url(#a___158299693)" d="M603 148h41v49h-41z"></path>
<path fill="#fff" d="M1335 162h-26l26 26v-26z"></path>
<path d="M1335 162h-26l13-13 13 13z" style="fill: rgb(163, 233, 236);"></path>
<path fill="#d6d6d6" d="M1329 166h2v7h-2zm-8 0h2v7h-2z"></path>
<path d="M1293 197c6.2 0 13.6-2.6 18-7a28 28 0 0 1 20-8h20a17.84 17.84 0 0 0 12-5c2-2 4.4-4.2 7-5v25h-77z"></path>
<path d="M1023 141h-2v-5l2 2v3z" style="fill: rgb(30, 150, 190);"></path>
<path d="M718.5 186h-10a3.54 3.54 0 0 1-3.5-3.5 3.54 3.54 0 0 1 3.5-3.5h1.1a3.49 3.49 0 0 0 2.4-1 3.49 3.49 0 0 1 2.4-1h4.1a4.48 4.48 0 0 1 4.5 4.46 4.48 4.48 0 0 1-4.46 4.5zM848 175.5a3.54 3.54 0 0 1 3.5-3.5 6 6 0 0 0 4.3-1.8l.2-.2a6.73 6.73 0 0 1 4.8-2h7.7a5.55 5.55 0 0 1 5.5 5.5 5.55 5.55 0 0 1-5.5 5.5h-17a3.54 3.54 0 0 1-3.5-3.5zm88.5 10.5H948a3 3 0 0 0 3-3 3 3 0 0 0-3-3h-.9a4.91 4.91 0 0 1-3.6-1.5 5.07 5.07 0 0 0-3.6-1.5h-3.4a4.4 4.4 0 0 0-4.4 4.4v.1a4.34 4.34 0 0 0 4.18 4.5h.22z"
style="fill: rgb(163, 233, 236);"></path>
<path fill="#d6d6d6" d="M1007 122l-1-1h1v1z"></path>
<path d="M1099 50h-24a19.93 19.93 0 0 0-20 19.86V197h44V50z" fill="#fff"></path>
<path fill="#d6d6d6" d="M1072 58h2v57h-2zm7 0h2v57h-2zm9 63l-2-2V58h2v63zm7 7l-2-2V58h2v70z"></path>
<path fill="#d6d6d6" d="M1123 153V50h-24v81l-16-16h-28v82h112l-44-44z"></path>
<path d="M1088 151h-2v-33l2 2v31zm7 0h-2v-26l2 2v24zm-17-30h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm16 13h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm16 13h2v7h-2zm-8 0h2v7h-2zm-8 0h2v7h-2zm20 32v2a5.06 5.06 0 0 1-1.7 3.3l-2 2-.3.3V179h-2v18h2v-5a7.43 7.43 0 0 1 1.7-4.3l2-2a7 7 0 0 0 2.3-4.7v-2h-2z"
style="fill: rgb(30, 150, 190);"></path>
<path d="M1066 175.6a3.46 3.46 0 0 1 3.5-3.4h1.2a4 4 0 0 0 2.5-1l2.2-2.1a3.74 3.74 0 0 1 2.5-1h8.6a5.57 5.57 0 0 1 5.6 5.5 5.57 5.57 0 0 1-5.6 5.5h-16.9a3.63 3.63 0 0 1-3.6-3.5z"
fill="#fff"></path>
<path d="M1106 186h2v11h-2z" style="fill: rgb(30, 150, 190);"></path>
<path d="M1101.5 186h11.5a3 3 0 0 0 3-3 3 3 0 0 0-3-3h-.9a4.91 4.91 0 0 1-3.6-1.5 5.08 5.08 0 0 0-3.6-1.5h-3.4a4.4 4.4 0 0 0-4.4 4.4v.1a4.34 4.34 0 0 0 4.18 4.5h.22z"
fill="#fff"></path>
<path d="M1106 58h2v93h-2zm7 0h2v93h-2z" style="fill: rgb(30, 150, 190);"></path>
<path d="M1297 20a32 32 0 1 0 32 32 32 32 0 0 0-32-32zm0 49a17 17 0 1 1 17-17 17 17 0 0 1-17 17z"
transform="translate(0 -3)" fill="url(#c___158299693)"></path>
</svg>
</div>
<!-- section footer -->
<div class="footer">
<div class="main">
<div class="head-part1">
<div class="uk-child-width-expand@s uk-padding-remove" uk-grid>
<div>
<div class=""><img src="./images/12.png" width="80" alt=""></div>
</div>
<div>
<div class="uk-card uk-card-body uk-padding-remove"><a href="https://get.uber.com"
class="uk-button uk-button-secondary ">SIGN
UP TO RIDE</a></div>
</div>
<div>
<div class="uk-card uk-card-body uk-padding-remove"><a href="https://get.uber.com"
class="uk-button uk-button-default button-footer">BECOME
A DRIVER</a></div>
</div>
</div>
</div>
<div class="head-part2">
<div class="uk-grid uk-padding-remove" uk-grid>
<div class="uk-width-1-2">
<div class=""><img src="./images/12.png" width="80" alt=""></div>
</div>
<div class="uk-width-1-2">
<a href="https://get.uber.com" class="uk-button uk-button-secondary uk-width-1-1 ">Get the
app</a>
<a href="https://get.uber.com"
class="uk-button uk-button-default button-footer uk-width-1-1">BECOME A DRIVER</a>
</div>
</div>
</div>
<hr>
<div class="devide">
<div class="second-divide-1">
<div class="uk-child-width-expand@s uk-text-left uk-padding-remove" uk-grid>
<div>
<div>
<a><span><svg viewBox="0 0 64 64" width="16px" height="16px" class=" _style_1BKBec"
data-reactid="526"><path
d="M32.0000114,4c-11.0449219,0-20,8.8027344-20,20c0,6.0996094,2,11.03125,6,16.9375l13.1807709,18.6359062 C31.3796368,59.8575249,31.6893368,59.9997215,31.9991455,60c0.3104134,0.0002785,0.6209373-0.141922,0.820179-0.4265938 L46.0000114,40.9375c4-5.90625,6-10.8378906,6-16.9375C52.0000114,12.8027344,43.0449333,4,32.0000114,4z M32.0000114,36.25 c-6.7655029,0-12.25-5.484375-12.25-12.25s5.4844971-12.25,12.25-12.25s12.25,5.484375,12.25,12.25 S38.7655144,36.25,32.0000114,36.25z"
data-reactid="527"></path></svg></span>Enter Your Location </a>
</div>
<div>
<a><span><svg viewBox="0 0 64 64" width="16px" height="16px" class=" _style_1BKBec"
data-reactid="533"><path
d="M33.7021484,4.5913086c-0.3100586-0.0356445-0.6191406-0.0869141-0.934082-0.0869141 c-0.0917969,0-0.1821289,0.0224609-0.2734375,0.0258789c-0.1640625-0.003418-0.3251953-0.0258789-0.4907227-0.0258789 c-15.4384766,0-28,12.5615234-28,28c0,15.4404297,12.5615234,28,28,28c0.1655273,0,0.3266602-0.0224609,0.4907227-0.0258789 c0.0913086,0.003418,0.1816406,0.0258789,0.2734375,0.0258789c0.3149414,0,0.6240234-0.0512695,0.934082-0.0869141 c14.6474609-0.8842773,26.3017578-13.046875,26.3017578-27.9130859S48.3496094,5.4755859,33.7021484,4.5913086z M23.6225586,9.4985352c-2.8369141,3.2744141-5.1401367,7.9755859-6.4057617,13.527832 c-3.934082-0.4277344-6.3081055-0.9248047-7.2651367-1.1547852C12.7148438,16.1616211,17.6171875,11.6938477,23.6225586,9.4985352z M7.4907227,32.5043945c0-2.5683594,0.4008789-5.0439453,1.1357422-7.3710938 c0.6674805,0.1816406,3.2211914,0.8120117,7.9482422,1.3364258c-0.2714844,1.9399414-0.4262695,3.9550781-0.4262695,6.034668 c0,2.6425781,0.2529297,5.1772461,0.6821289,7.5864258c-4.0546875,0.4394531-6.5522461,0.9589844-7.6733398,1.2304688 C8.0957031,38.5810547,7.4907227,35.6152344,7.4907227,32.5043945z M10.6801758,44.5527344 c1.269043-0.2705078,3.5415039-0.6787109,6.8984375-1.0292969c1.3217773,4.8876953,3.4707031,9.0180664,6.0439453,11.9868164 C18.1206055,53.5,13.5366211,49.5869141,10.6801758,44.5527344z M30,56.6972656 c-3-1.2558594-7.4179688-6.4589844-9.2285156-13.4731445C23.375,43.03125,27,42.8925781,30,42.8574219V56.6972656z M30,39.3706055 c-3,0.0385742-7.0830078,0.1928711-9.8671875,0.4086914C19.75,37.4692383,19.640625,35.0249023,19.640625,32.5043945 c0-1.9604492,0.0385742-3.8681641,0.2749023-5.7114258C22.7431641,27.0166016,27,27.1777344,30,27.2177734V39.3706055z M30,23.730957c-3-0.0371094-6.9223633-0.1884766-9.6035156-0.394043C22.0708008,15.5424805,27,9.6606445,30,8.3115234V23.730957z M53.9663086,21.6801758c-0.546875,0.1689453-2.7631836,0.7866211-7.1459961,1.3061523 c-0.9892578-5.2597656-2.7744141-9.7421875-5.1020508-12.9780273 C47.0551758,12.3212891,51.3945312,16.4853516,53.9663086,21.6801758z M34,8.2597656 c3,1.2451172,7.9438477,7.1796875,9.5874023,15.0722656C40.9482422,23.5424805,37,23.6953125,34,23.7324219V8.2597656z M34,27.2177734c3-0.0385742,7.2045898-0.2041016,9.996582-0.4360352c0.2299805,1.8466797,0.2885742,3.7573242,0.2885742,5.7226562 c0,2.5234375-0.0893555,4.9711914-0.4624023,7.2841797C41.0742188,39.5668945,37,39.4072266,34,39.3706055V27.2177734z M34,56.7490234V42.8574219c3,0.0351562,6.6523438,0.1767578,9.222168,0.375C41.4418945,50.3393555,37,55.5878906,34,56.7490234z M41.7182617,55.0019531c2.0976562-2.9155273,3.7685547-6.8291016,4.7993164-11.4272461 c3.4487305,0.3974609,5.6196289,0.8588867,6.715332,1.1357422C50.6064453,49.2602539,46.5742188,52.8969727,41.7182617,55.0019531z M47.1386719,40.1313477c0.3535156-2.4189453,0.5566406-4.9682617,0.5566406-7.6269531 c0-2.0942383-0.1254883-4.1206055-0.3476562-6.0732422c5.3911133-0.6464844,7.7763672-1.4570312,7.934082-1.5131836 L54.71875,23.3271484c1.1518555,2.8388672,1.7998047,5.9316406,1.7998047,9.1772461 c0,3.1831055-0.6289062,6.2177734-1.7387695,9.0102539C53.8164062,41.2329102,51.3945312,40.6313477,47.1386719,40.1313477z"
data-reactid="534"></path></svg></span><b>English</b> </a>
</div>
<div>
<a><span><svg viewBox="0 0 64 64" width="16px" height="16px" class=" _style_1BKBec"
data-reactid="541"><path
d="M47.0932617,55.578125c9.9132729-6.3570824,14.8717461-18.5635834,12.1553192-30.0354328 C56.5887451,14.3098202,46.9536171,5.641645,35.4912834,4.2155991C23.8733921,2.7701998,12.3084412,8.9110298,7.0133862,19.3519459 C1.74448,29.7413044,3.6268132,42.6627846,11.5766268,51.1558914c8.0701036,8.6216164,21.1002998,11.2331543,31.8757286,6.395668 C44.713295,56.9854774,45.9299431,56.3239632,47.0932617,55.578125z M39.6118164,41.2753906 c-4.0401917,3.3219337-9.9890003,3.6132507-14.3237305,0.6733398c-4.0170879-2.7244797-6.0503502-7.7514725-5.0132713-12.5050163 c1.0312157-4.7266808,4.9380665-8.4576778,9.7054729-9.2716293c4.9097271-0.8382511,9.9618359,1.5428219,12.4273663,5.8673439 C45.2672005,31.0550518,44.1023178,37.6143417,39.6118164,41.2753906 C39.4360352,41.4199219,39.6884766,41.2128906,39.6118164,41.2753906z M8,32c0-3.1442432,0.6224785-6.2795258,1.8295898-9.1831055 c1.2624741,0.5228825,2.5249491,1.0457668,3.7874231,1.5686493c0.828126,0.342989,1.656251,0.685976,2.484376,1.0289631 c0.3992462,0.1653576,1.0261478,0.2732658,1.0574913,0.622488c0.0245056,0.2730446-0.3147736,0.8365955-0.4069748,1.1256828 c-0.1397781,0.4382725-0.2607269,0.8829498-0.3620167,1.3316765c-0.2065983,0.9152508-0.331707,1.8495617-0.3737926,2.7868748 c-0.0817184,1.8199825,0.1505184,3.6503544,0.6853428,5.3917789c0.0930996,0.3031387,0.5946331,1.2562408,0.4693317,1.469574 c-0.0581551,0.0990143-0.482151,0.1996956-0.5826359,0.2413139c-0.7499542,0.3106117-1.4999084,0.6212234-2.2498627,0.9318314 c-1.5028944,0.6224594-3.0057878,1.2449188-4.5086823,1.8673782C8.6224785,38.2795258,8,35.144249,8,32z M56,32 c0,3.1442451-0.6224785,6.2795258-1.8295898,9.1831055c-1.2623901-0.5228844-2.5247841-1.0457649-3.7871742-1.5686493 c-0.8280678-0.3429871-1.6561394-0.6859741-2.484211-1.028965c-0.3992386-0.1653633-1.0260696-0.2732697-1.0574188-0.6224861 c-0.0245094-0.2730446,0.3147354-0.836586,0.4069138-1.1256828c0.1397438-0.4382706,0.2606392-0.8829498,0.3618774-1.3316765 c0.2064934-0.9152603,0.3314781-1.849575,0.3735237-2.7868729c0.0816383-1.8199425-0.15028-3.6503353-0.684948-5.3917809 c-0.0930748-0.3031387-0.5945549-1.2562542-0.4692574-1.4695759c0.0581551-0.0990105,0.4821129-0.1996918,0.5825958-0.241312 c0.7499046-0.3106117,1.4998093-0.6212215,2.2497139-0.9318333c1.5027962-0.6224594,3.0055885-1.2449169,4.5083847-1.8673763 C55.3775215,25.7204742,56,28.8557529,56,32z M41.1831055,9.8295898c-0.5228844,1.2623911-1.0457649,2.5247822-1.5686493,3.7871733 c-0.3429871,0.8280706-0.6859741,1.6561413-1.028965,2.4842119c-0.1653633,0.3992405-0.2732697,1.0260696-0.6224861,1.0574188 c-0.2730446,0.0245113-0.836586-0.3147354-1.1256828-0.4069138c-0.4382706-0.1397419-0.8829498-0.2606392-1.3316765-0.3618774 c-0.9152603-0.2064934-1.849575-0.3314781-2.7868729-0.3735237c-1.8199425-0.0816374-3.6503353,0.1502781-5.3917809,0.6849499 c-0.3031387,0.093071-1.2562542,0.5945511-1.4695759,0.4692574c-0.0990105-0.0581551-0.1996918-0.4821148-0.241312-0.5825977 c-0.3106117-0.7499046-0.6212215-1.4998093-0.9318333-2.2497139c-0.6224594-1.5027952-1.2449169-3.0055895-1.8673763-4.5083847 C28.6499081,7.4046178,35.3500824,7.4046144,41.1831055,9.8295898z M22.8168945,54.1699219 c0.5228825-1.2623901,1.0457668-2.5247841,1.5686493-3.7871742c0.342989-0.8280678,0.685976-1.6561394,1.0289631-2.484211 c0.1653652-0.3992386,0.2732697-1.0260735,0.622488-1.057415c0.2730446-0.0245094,0.8365974,0.3147736,1.1256828,0.406971 c0.4382725,0.139782,0.8829498,0.2607269,1.3316765,0.3620186c0.9152508,0.2066002,1.8495617,0.331707,2.7868748,0.3737907 c1.8199825,0.0817184,3.6503544-0.1505165,5.3917789-0.6853409c0.3031387-0.0931015,1.2562408-0.594635,1.469574-0.4693298 c0.0990143,0.0581551,0.1996956,0.4821472,0.2413139,0.582634c0.3106117,0.7499542,0.6212234,1.4999084,0.9318314,2.2498627 c0.6224594,1.5028954,1.2449188,3.0057869,1.8673782,4.5086823C35.3502312,56.5953255,28.6495628,56.5957565,22.8168945,54.1699219z "
data-reactid="542"></path></svg></span>Help</a>
</div>
<div id="bottom">
<ul class="uk-iconnav">
<li><a href="#" uk-icon="icon: facebook"></a></li>
<li><a href="#" uk-icon="icon: linkedin"></a></li>
<li><a href="#" uk-icon="icon: twitter"></a></li>
<li><a href="#" uk-icon="icon: instagram"></a></li>
</ul>
</div>
</div>
<div>
<div>
<ul>
<li>Ride</li>
<LI>Drive</LI>
<li>cities</li>
<li>fare estimate</li>
<li>food</li>
<li>bussiness travel</li>
<li>how it wokks</li>
<li>airports</li>
<li>countries</li>
<li>safety</li>
</ul>
</div>
</div>
<div>
<div>
<ul>
<li>Ride</li>
<LI>Drive</LI>
<li>cities</li>
<li>fare estimate</li>
<li>food</li>
<li>bussiness travel</li>
<li>how it wokks</li>
<li>airports</li>
<li>countries</li>
<li>countries</li>
</ul>
</div>
</div>
</div>
</div>
<div class="second-divide-2">
<div>
<div>
<a><span><svg viewBox="0 0 64 64" width="16px" height="16px" class=" _style_1BKBec"
data-reactid="526"><path
d="M32.0000114,4c-11.0449219,0-20,8.8027344-20,20c0,6.0996094,2,11.03125,6,16.9375l13.1807709,18.6359062 C31.3796368,59.8575249,31.6893368,59.9997215,31.9991455,60c0.3104134,0.0002785,0.6209373-0.141922,0.820179-0.4265938 L46.0000114,40.9375c4-5.90625,6-10.8378906,6-16.9375C52.0000114,12.8027344,43.0449333,4,32.0000114,4z M32.0000114,36.25 c-6.7655029,0-12.25-5.484375-12.25-12.25s5.4844971-12.25,12.25-12.25s12.25,5.484375,12.25,12.25 S38.7655144,36.25,32.0000114,36.25z"
data-reactid="527"></path></svg></span>Enter Your Location </a>
</div>
<hr>
<div>
<a><span><svg viewBox="0 0 64 64" width="16px" height="16px" class=" _style_1BKBec"
data-reactid="533"><path
d="M33.7021484,4.5913086c-0.3100586-0.0356445-0.6191406-0.0869141-0.934082-0.0869141 c-0.0917969,0-0.1821289,0.0224609-0.2734375,0.0258789c-0.1640625-0.003418-0.3251953-0.0258789-0.4907227-0.0258789 c-15.4384766,0-28,12.5615234-28,28c0,15.4404297,12.5615234,28,28,28c0.1655273,0,0.3266602-0.0224609,0.4907227-0.0258789 c0.0913086,0.003418,0.1816406,0.0258789,0.2734375,0.0258789c0.3149414,0,0.6240234-0.0512695,0.934082-0.0869141 c14.6474609-0.8842773,26.3017578-13.046875,26.3017578-27.9130859S48.3496094,5.4755859,33.7021484,4.5913086z M23.6225586,9.4985352c-2.8369141,3.2744141-5.1401367,7.9755859-6.4057617,13.527832 c-3.934082-0.4277344-6.3081055-0.9248047-7.2651367-1.1547852C12.7148438,16.1616211,17.6171875,11.6938477,23.6225586,9.4985352z M7.4907227,32.5043945c0-2.5683594,0.4008789-5.0439453,1.1357422-7.3710938 c0.6674805,0.1816406,3.2211914,0.8120117,7.9482422,1.3364258c-0.2714844,1.9399414-0.4262695,3.9550781-0.4262695,6.034668 c0,2.6425781,0.2529297,5.1772461,0.6821289,7.5864258c-4.0546875,0.4394531-6.5522461,0.9589844-7.6733398,1.2304688 C8.0957031,38.5810547,7.4907227,35.6152344,7.4907227,32.5043945z M10.6801758,44.5527344 c1.269043-0.2705078,3.5415039-0.6787109,6.8984375-1.0292969c1.3217773,4.8876953,3.4707031,9.0180664,6.0439453,11.9868164 C18.1206055,53.5,13.5366211,49.5869141,10.6801758,44.5527344z M30,56.6972656 c-3-1.2558594-7.4179688-6.4589844-9.2285156-13.4731445C23.375,43.03125,27,42.8925781,30,42.8574219V56.6972656z M30,39.3706055 c-3,0.0385742-7.0830078,0.1928711-9.8671875,0.4086914C19.75,37.4692383,19.640625,35.0249023,19.640625,32.5043945 c0-1.9604492,0.0385742-3.8681641,0.2749023-5.7114258C22.7431641,27.0166016,27,27.1777344,30,27.2177734V39.3706055z M30,23.730957c-3-0.0371094-6.9223633-0.1884766-9.6035156-0.394043C22.0708008,15.5424805,27,9.6606445,30,8.3115234V23.730957z M53.9663086,21.6801758c-0.546875,0.1689453-2.7631836,0.7866211-7.1459961,1.3061523 c-0.9892578-5.2597656-2.7744141-9.7421875-5.1020508-12.9780273 C47.0551758,12.3212891,51.3945312,16.4853516,53.9663086,21.6801758z M34,8.2597656 c3,1.2451172,7.9438477,7.1796875,9.5874023,15.0722656C40.9482422,23.5424805,37,23.6953125,34,23.7324219V8.2597656z M34,27.2177734c3-0.0385742,7.2045898-0.2041016,9.996582-0.4360352c0.2299805,1.8466797,0.2885742,3.7573242,0.2885742,5.7226562 c0,2.5234375-0.0893555,4.9711914-0.4624023,7.2841797C41.0742188,39.5668945,37,39.4072266,34,39.3706055V27.2177734z M34,56.7490234V42.8574219c3,0.0351562,6.6523438,0.1767578,9.222168,0.375C41.4418945,50.3393555,37,55.5878906,34,56.7490234z M41.7182617,55.0019531c2.0976562-2.9155273,3.7685547-6.8291016,4.7993164-11.4272461 c3.4487305,0.3974609,5.6196289,0.8588867,6.715332,1.1357422C50.6064453,49.2602539,46.5742188,52.8969727,41.7182617,55.0019531z M47.1386719,40.1313477c0.3535156-2.4189453,0.5566406-4.9682617,0.5566406-7.6269531 c0-2.0942383-0.1254883-4.1206055-0.3476562-6.0732422c5.3911133-0.6464844,7.7763672-1.4570312,7.934082-1.5131836 L54.71875,23.3271484c1.1518555,2.8388672,1.7998047,5.9316406,1.7998047,9.1772461 c0,3.1831055-0.6289062,6.2177734-1.7387695,9.0102539C53.8164062,41.2329102,51.3945312,40.6313477,47.1386719,40.1313477z"
data-reactid="534"></path></svg></span><b>English</b> </a>
</div>
<hr>
<div>
<a><span><svg viewBox="0 0 64 64" width="16px" height="16px" class=" _style_1BKBec"
data-reactid="541"><path
d="M47.0932617,55.578125c9.9132729-6.3570824,14.8717461-18.5635834,12.1553192-30.0354328 C56.5887451,14.3098202,46.9536171,5.641645,35.4912834,4.2155991C23.8733921,2.7701998,12.3084412,8.9110298,7.0133862,19.3519459 C1.74448,29.7413044,3.6268132,42.6627846,11.5766268,51.1558914c8.0701036,8.6216164,21.1002998,11.2331543,31.8757286,6.395668 C44.713295,56.9854774,45.9299431,56.3239632,47.0932617,55.578125z M39.6118164,41.2753906 c-4.0401917,3.3219337-9.9890003,3.6132507-14.3237305,0.6733398c-4.0170879-2.7244797-6.0503502-7.7514725-5.0132713-12.5050163 c1.0312157-4.7266808,4.9380665-8.4576778,9.7054729-9.2716293c4.9097271-0.8382511,9.9618359,1.5428219,12.4273663,5.8673439 C45.2672005,31.0550518,44.1023178,37.6143417,39.6118164,41.2753906 C39.4360352,41.4199219,39.6884766,41.2128906,39.6118164,41.2753906z M8,32c0-3.1442432,0.6224785-6.2795258,1.8295898-9.1831055 c1.2624741,0.5228825,2.5249491,1.0457668,3.7874231,1.5686493c0.828126,0.342989,1.656251,0.685976,2.484376,1.0289631 c0.3992462,0.1653576,1.0261478,0.2732658,1.0574913,0.622488c0.0245056,0.2730446-0.3147736,0.8365955-0.4069748,1.1256828 c-0.1397781,0.4382725-0.2607269,0.8829498-0.3620167,1.3316765c-0.2065983,0.9152508-0.331707,1.8495617-0.3737926,2.7868748 c-0.0817184,1.8199825,0.1505184,3.6503544,0.6853428,5.3917789c0.0930996,0.3031387,0.5946331,1.2562408,0.4693317,1.469574 c-0.0581551,0.0990143-0.482151,0.1996956-0.5826359,0.2413139c-0.7499542,0.3106117-1.4999084,0.6212234-2.2498627,0.9318314 c-1.5028944,0.6224594-3.0057878,1.2449188-4.5086823,1.8673782C8.6224785,38.2795258,8,35.144249,8,32z M56,32 c0,3.1442451-0.6224785,6.2795258-1.8295898,9.1831055c-1.2623901-0.5228844-2.5247841-1.0457649-3.7871742-1.5686493 c-0.8280678-0.3429871-1.6561394-0.6859741-2.484211-1.028965c-0.3992386-0.1653633-1.0260696-0.2732697-1.0574188-0.6224861 c-0.0245094-0.2730446,0.3147354-0.836586,0.4069138-1.1256828c0.1397438-0.4382706,0.2606392-0.8829498,0.3618774-1.3316765 c0.2064934-0.9152603,0.3314781-1.849575,0.3735237-2.7868729c0.0816383-1.8199425-0.15028-3.6503353-0.684948-5.3917809 c-0.0930748-0.3031387-0.5945549-1.2562542-0.4692574-1.4695759c0.0581551-0.0990105,0.4821129-0.1996918,0.5825958-0.241312 c0.7499046-0.3106117,1.4998093-0.6212215,2.2497139-0.9318333c1.5027962-0.6224594,3.0055885-1.2449169,4.5083847-1.8673763 C55.3775215,25.7204742,56,28.8557529,56,32z M41.1831055,9.8295898c-0.5228844,1.2623911-1.0457649,2.5247822-1.5686493,3.7871733 c-0.3429871,0.8280706-0.6859741,1.6561413-1.028965,2.4842119c-0.1653633,0.3992405-0.2732697,1.0260696-0.6224861,1.0574188 c-0.2730446,0.0245113-0.836586-0.3147354-1.1256828-0.4069138c-0.4382706-0.1397419-0.8829498-0.2606392-1.3316765-0.3618774 c-0.9152603-0.2064934-1.849575-0.3314781-2.7868729-0.3735237c-1.8199425-0.0816374-3.6503353,0.1502781-5.3917809,0.6849499 c-0.3031387,0.093071-1.2562542,0.5945511-1.4695759,0.4692574c-0.0990105-0.0581551-0.1996918-0.4821148-0.241312-0.5825977 c-0.3106117-0.7499046-0.6212215-1.4998093-0.9318333-2.2497139c-0.6224594-1.5027952-1.2449169-3.0055895-1.8673763-4.5083847 C28.6499081,7.4046178,35.3500824,7.4046144,41.1831055,9.8295898z M22.8168945,54.1699219 c0.5228825-1.2623901,1.0457668-2.5247841,1.5686493-3.7871742c0.342989-0.8280678,0.685976-1.6561394,1.0289631-2.484211 c0.1653652-0.3992386,0.2732697-1.0260735,0.622488-1.057415c0.2730446-0.0245094,0.8365974,0.3147736,1.1256828,0.406971 c0.4382725,0.139782,0.8829498,0.2607269,1.3316765,0.3620186c0.9152508,0.2066002,1.8495617,0.331707,2.7868748,0.3737907 c1.8199825,0.0817184,3.6503544-0.1505165,5.3917789-0.6853409c0.3031387-0.0931015,1.2562408-0.594635,1.469574-0.4693298 c0.0990143,0.0581551,0.1996956,0.4821472,0.2413139,0.582634c0.3106117,0.7499542,0.6212234,1.4999084,0.9318314,2.2498627 c0.6224594,1.5028954,1.2449188,3.0057869,1.8673782,4.5086823C35.3502312,56.5953255,28.6495628,56.5957565,22.8168945,54.1699219z "
data-reactid="542"></path></svg></span>Help</a>
</div>
<hr>
<div>
<ul class="uk-iconnav">
<li><a href="#" uk-icon="icon: facebook"></a></li>
<li><a href="#" uk-icon="icon: linkedin"></a></li>
<li><a href="#" uk-icon="icon: twitter"></a></li>
<li><a href="#" uk-icon="icon: instagram"></a></li>
</ul>
</div>
<hr>
<div class="uk-grid">
<div class="uk-width-1-2">
<ul>
<li>Ride</li>
<LI>Drive</LI>
<li>cities</li>
<li>fare estimate</li>
<li>food</li>
<li>bussiness travel</li>
<li>how it wokks</li>
<li>airports</li>
<li>countries</li>
<li>safety</li>
</ul>
</div>
<div>
<div class="uk-width-1-2">
<ul>
<li>Ride</li>
<LI>Drive</LI>
<li>cities</li>
<li>fare estimate</li>
<li>food</li>
<li>bussiness travel</li>
<li>how it wokks</li>
<li>airports</li>
<li>countries</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class=" countries">
<div class="uk-grid">
<div class="uk-width-1-3">top cities</div>
<div class="uk-width-2-3">
<a>San Francisco</a>
<a>London</a>
<a>Los Angeles</a>
<a>Washington D.C.</a>
<a>Mexico City</a>
<a>São Paulo</a>
</div>
</div>
<div class="uk-grid">
<div class="uk-width-1-3">top countries</div>
<div class="uk-width-2-3">
<a>USA</a>
<a>France</a>
<a>India</a>
<a>Spain</a>
<a>Mexico</a>
<a>Russia</a>
</div>
</div>
</div>
<hr>
<div class="uk-grid">
<div class="uk-width-1-3@m uk-visible@l uk-invisible@s"></div>
<div class="uk-width-2-3">
<a href="https://7336.tlnk.io/serve?action=click&publisher_id=200585&site_id=17688&my_keyword=app_control_ios"
title="Available on the App Store">
<img src="https://d1a3f4spazzrp4.cloudfront.net/uber-com/1.3.5/d1a3f4spazzrp4.cloudfront.net/images/global/app-store-8c177b28a0.svg"
style="width:120px" class="" alt="" data-reactid="691"></a>
<a href="https://7336.tlnk.io/serve?action=click&publisher_id=200585&site_id=26744&my_keyword=app_control_android"
title="Get it on Google Play" data-reactid="694">
<img src="https://play.google.com/intl/en_us/badges/images/generic/en-play-badge.png"
style="border:1px solid #3e3e3e; width:120px" alt=""></a>
<a href="https://microsoft.com/en-us/store/apps/uber/9wzdncrfhxrd?source=uber-com"
title="Get it from Microsoft">
<img src="https://assets.windowsphone.com/8d997df3-5b6e-496c-88b3-e3f40117c8fd/English-get-it-from-MS_InvariantCulture_Default.png"
srcset="https://assets.windowsphone.com/0100c7e5-1455-40bc-a351-b77d2801ad5a/English_get-it-from-MS_InvariantCulture_Default.png 2x"
alt="" style="width:120px"></a>
</div>
</div>
<hr>
<div class="footer-last-part-1">
<div class="uk-grid " style="font-size:10px">
<div class="uk-width-1-3">© 2018 Uber Technologies Inc</div>
<div class="uk-width-1-3">
<ul>
<li>privacy</li>
<li>Accessibility</li>
</ul>
</div>
<div class="uk-width-1-3">
<li>terms</li>
</div>
</div>
</div>
<div class="footer-last-part-2">
<div class="uk-grid " style="font-size:10px">
<div class="uk-width-1-2">© 2018 Uber Technologies Inc</div>
<div class="uk-width-1-2">
<ul>
<li>privacy</li>
<li>Accessibility</li>
<li>terms</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script>
function initMap() {
var uluru = {lat: -25.363, lng: 131.044};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 4,
center: uluru
});
var marker = new google.maps.Marker({
position: uluru,
map: map
});
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBgfEWBdkU-PRKsXlVfZKAkuLfwQP_gcNc&callback=initMap">
(function() {
var trial = document.createElement('script');
trial.type = 'text/javascript';
trial.async = true;
trial.src = 'https://easy.myfonts.net/v2/js?sid=161468(font-family=FF+Clan+Pro+Narrow+Thin)&sid=161668(font-family=FF+Clan+Pro+Book)&sid=162099(font-family=FF+Clan+Pro+Medium)&sid=162165(font-family=FF+Clan+Pro+Bold)&key=sCALvkcXRf';
var head = document.getElementsByTagName("head")[0];
head.appendChild(trial);
})();
</script>
</body>