-
Notifications
You must be signed in to change notification settings - Fork 4
/
home.html
595 lines (584 loc) · 49.9 KB
/
home.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
<!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>E-Cycle</title>
<!-- LINK TO STYLESHEET FILE -->
<link rel="stylesheet" href="css/styles.css" />
<!-- JQUERY SCRIPT -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- LINK TO FONT LIBRARY-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<!-- LINK TO ICONS LIBRARY -->
<script
src="https://kit.fontawesome.com/53f3b15eb1.js"
crossorigin="anonymous"
></script>
<!-- LINK TO SLIDER -->
<script src="https://cdn.jsdelivr.net/npm/@splidejs/splide@latest/dist/js/splide.min.js"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@splidejs/splide@latest/dist/css/splide.min.css"
/>
</head>
<body>
<header class="header">
<div class="header__background">
<img
src="./assets/backgrounds/bg_e-cycle.jpg"
class="header__background--image"
alt=""
/>
</div>
<div class="header__nav">
<div class="header__nav-logo-box">
<h2 class="heading-secondary logo-text">
<span class="logo-text--bage">E</span>-Cycle
</h2>
</div>
<nav class="header__nav-links nav" id="navigation">
<li class="header__nav-link">
<a href="#about" class="nav-ltr">About</a>
</li>
<li class="header__nav-link ">
<a href="#testimonials" class="nav-ltr">Testimonials</a>
</li>
<li class="header__nav-link ">
<a href="#contact" class="nav-ltr">Contact</a>
</li>
<li class="header__nav-link login">
<a href="login.php" class="nav-ltr ">Login</a>
</li>
<li class="header__nav-link" id="header__signup">
<a href="register.php" class="btn btn-grey">Sign up</a>
<div class="banner">
<h4 class="heading-tertiary banner--heading">
NEW MEMBER DISCOUNT!
</h4>
<p class="paragraph banner--text">
Get <span>15% off</span> your first order when you sign up and
purchase an E-Cycle
</p>
</div>
</li>
<a href="javascript:void(0)" class="icon" onclick="toggle()">
<i class="fa fa-bars" id="icon-bar"></i>
</a>
</nav>
</div>
<div class="header__content">
<div class="heading-wrapper">
<h1 class="heading-primary heading-primary--white">
Cycling just got easier!
</h1>
</div>
<a href="./products.html"><button class="btn btn-bage btn-shop">Shop</button></a>
</div>
</header>
<main class="section-main">
<section class="section-about" id="about">
<div class="section-about--wrapper">
<div class="section-about__img">
<img src="./assets/images/electric-motor.jpg" alt="" />
</div>
<div class="section-about__content">
<h2
class="
heading-secondary heading-secondary--blue
u-margin-bottom-medium
"
>
What is an E-Cycle?
</h2>
<p class="paragraph u-margin-bottom-medium">
An e-cycle is a typically conventional cycle with a battery and a
motor, which takes some of the effort out of cycling and does help
with those hills!
</p>
<p class="paragraph">
You might want an E-cycle to help assistance with pedalling or it
can help make the commute to work much easier.
</p>
</div>
</div>
<div class="section-about__svg">
<svg
width="auto"
height="auto"
viewBox="0 0 1440 171"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0 112.692H48C96 112.692 192 112.692 288 93.2562C384 73.8203 480 34.9484 576 15.5125C672 -3.92348 768 -3.92348 864 9.01357C960 22.1936 1056 47.7032 1152 54.3843C1248 61.0655 1344 47.7032 1392 41.4473L1440 34.9484V171H1392C1344 171 1248 171 1152 171C1056 171 960 171 864 171C768 171 672 171 576 171C480 171 384 171 288 171C192 171 96 171 48 171H0V112.692Z"
fill="#DFC47F"
/>
</svg>
</div>
</section>
<section class="section-ride">
<div class="section-ride--wrapper">
<div class="left">
<p class="paragraph u-margin-bottom-big">
Ride faster than you ever could and take on those challenging
hills with ease and LESS EXHAUSTION!
</p>
<div class="left-images">
<div class="card card-1">
<img src="./assets/images/ride-1.jpg" alt="" />
</div>
<div class="card card-2">
<img src="./assets/images/ride-2.jpg" alt="" />
</div>
</div>
</div>
<div class="right">
<div class="right-images">
<div class="card card-3">
<img src="./assets/images/ride-3.jpg" alt="" />
</div>
<div class="card card-4">
<img src="./assets/images/ride-4.jpg" alt="" />
</div>
<div class="card card-5">
<img src="./assets/images/ride-5.jpg" alt="" />
</div>
</div>
<p class="paragraph u-margin-top-huge">
Grab an E-Cycle, speed through traffic and don’t be late again to
meet up with friends or to get to work on time!
</p>
</div>
</div>
<div class="section-ride--svg">
<svg
width="auto"
height="auto"
viewBox="0 0 1440 171"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0 171H48C96 171 192 171 288 146.571C384 122.143 480 73.2857 576 48.8571C672 24.4286 768 24.4286 864 40.6888C960 57.2545 1056 89.317 1152 97.7143C1248 106.112 1344 89.317 1392 81.454L1440 73.2857V0H1392C1344 0 1248 0 1152 0C1056 0 960 0 864 0C768 0 672 0 576 0C480 0 384 0 288 0C192 0 96 0 48 0H0V171Z"
fill="#DFC47F"
/>
</svg>
</div>
</section>
<section class="section-shop">
<h2
class="
heading-secondary heading-secondary--blue
u-center-text u-margin-bottom-medium
"
>
Get an E-Cycle just for your needs!
</h2>
<div class="slideshow">
<div class="splide">
<div class="splide__track">
<ul class="splide__list">
<li class="splide__slide relative">
<div class="slideshow__slide">
<img data-splide-lazy="./assets/images/bike.jpg" alt="" />
<div class="slideshow__slide--info">
<h2 class="heading-primary">Meet the new E-Bulls NVX</h2>
<p class="paragraph">
Equiped with the new E-cycle technology, this beast can ride the toughest terrain with outstanding stability and more speed!
<span>At only KES 29,999</span>
</p>
<button
class="
btn btn-grey
slideshow__slide-button
u-margin-top-small
"
>
Check it out →
</button>
</div>
</div>
</li>
<li class="splide__slide relative">
<div class="slideshow__slide">
<img data-splide-lazy="./assets/images/bike4.jpg" alt="" />
<div class="slideshow__slide--info">
<h2 class="heading-primary">Ride with speeed!</h2>
<p class="paragraph">
Take the lead with the E-Mondraker Maxxis and enjoy the maximum speed an E-cycle can offer!
<span>Only at KES 35,999</span>
</p>
<button
class="
btn btn-grey
slideshow__slide-button
u-margin-top-small
"
>
Check it out →
</button>
</div>
</div>
</li>
<li class="splide__slide relative">
<div class="slideshow__slide">
<img data-splide-lazy="./assets/images/bike-3.jpg" alt="" />
<div class="slideshow__slide--info">
<h2 class="heading-primary">Dare to challenge the hill Champion!</h2>
<p class="paragraph">
The rocky mountain E-Minion DHP can ride on anything regardless of slope or terrain, equiped with fully customizable E-cyle components to suit your needs.
<span>Only at KES 49,499</span>
</p>
<button
class="
btn btn-grey
slideshow__slide-button
u-margin-top-small
"
>
Check it out →
</button>
</div>
</div>
</li>
</ul>
</div>
<div class="splide__autoplay">
<div class="splide__progress__bar"></div>
</div>
</div>
<div class="u-center-text u-margin-top-medium">
<button class="btn btn-bage btn-shop">Browse more →</button>
</div>
</div>
</section>
<div class="section-discount">
<div class="section-discount__container">
<div class="discount">
<h4 class="heading-tertiary discount__heading">
NEW MEMBER DISCOUNT!
</h4>
<p class="paragraph discount__text u-margin-bottom-medium">
Get <span>15% off</span> your first order when you sign up and
purchase an E-Cycle!
</p>
<a href="register.php" class="btn btn-bage">Sign up</a>
</div>
</div>
</div>
<section class="section-testimonials" id="testimonials">
<div class="section-testimonials__svg--top">
<svg
width="auto"
height="auto"
viewBox="0 0 1440 171"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0 112.692H48C96 112.692 192 112.692 288 93.2562C384 73.8203 480 34.9484 576 15.5125C672 -3.92348 768 -3.92348 864 9.01357C960 22.1936 1056 47.7032 1152 54.3843C1248 61.0655 1344 47.7032 1392 41.4473L1440 34.9484V171H1392C1344 171 1248 171 1152 171C1056 171 960 171 864 171C768 171 672 171 576 171C480 171 384 171 288 171C192 171 96 171 48 171H0V112.692Z"
fill="#405E76"
/>
</svg>
</div>
<h2 class="heading-secondary heading-secondary--bage u-center-text">
Hear from our satisfied customers!
</h2>
<div class="testimony--wrapper">
<div class="testimony--wrapper__container">
<div class="testimony">
<div class="testimony__image">
<img src="./assets/images/kerengo.jpeg" alt="" srcset="">
</div>
<div class="testimony__content">
<p class="paragraph">I have never gotten to work late ever since
i got an E-Cycle. Very convenient and efficient!</p>
<h4 class="heading-tertiary">
Jeffrey Kerengo
<span>Web Developer</span>
</h4>
</div>
</div>
<div class="testimony">
<div class="testimony__image">
<img src="./assets/images/lina.png" alt="" srcset="">
</div>
<div class="testimony__content">
<p class="paragraph">Riding up hills has never been easier ever since i got an E-Cycle. I can now take on any mountain!</p>
<h4 class="heading-tertiary">
Lina Jepleting
<span>Entrepreneur</span>
</h4>
</div>
</div>
<div class="testimony">
<div class="testimony__image">
<img src="./assets/images/mathiang.png" alt="" srcset="">
</div>
<div class="testimony__content">
<p class="paragraph">My E-Cycle has greatly reduced the time i get to work drastically. I don't have to wait endlessly at the bus-stop again!</p>
<h4 class="heading-tertiary">
Mathiang Malang
<span>Back-end Engineer</span>
</h4>
</div>
</div>
<div class="testimony">
<div class="testimony__image">
<img src="./assets/images/jeff.png" alt="" srcset="">
</div>
<div class="testimony__content">
<p class="paragraph">Now i can reduce fuel costs when i use an E-cycle instead of driving to work everyday!</p>
<h4 class="heading-tertiary">
Jeff Ongeta
<span>UI/UX Designer</span>
</h4>
</div>
</div>
</div>
</div>
<div class="section-testimonials__svg--bottom">
<svg
width="auto"
height="auto"
viewBox="0 0 1440 171"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0 171H48C96 171 192 171 288 146.571C384 122.143 480 73.2857 576 48.8571C672 24.4286 768 24.4286 864 40.6888C960 57.2545 1056 89.317 1152 97.7143C1248 106.112 1344 89.317 1392 81.454L1440 73.2857V0H1392C1344 0 1248 0 1152 0C1056 0 960 0 864 0C768 0 672 0 576 0C480 0 384 0 288 0C192 0 96 0 48 0H0V171Z"
fill="#405E76"
/>
</svg>
</div>
</section>
<section class="section-featured">
<h2 class="heading-secondary--blue u-margin-bottom-big u-center-text">Our Partners <span> Trusted and partnered with top innovative companies in the world!</span></h2>
<div class="featured">
<div class="featured__bike">
<svg width="auto" height="auto" viewBox="0 0 2166 642" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M1988.87 579.985C1988.99 587.284 1990.55 594.487 1993.47 601.177C1996.39 607.868 2000.61 613.914 2005.88 618.965C2011.15 624.016 2017.37 627.972 2024.18 630.605C2030.99 633.238 2038.25 634.495 2045.55 634.305C2077.39 635.19 2102.68 610.53 2102.23 579.985C2102.68 549.636 2077.39 524.956 2045.55 525.665C2038.26 525.503 2031.01 526.78 2024.21 529.423C2017.42 532.067 2011.21 536.024 2005.94 541.07C2000.68 546.115 1996.46 552.149 1993.53 558.827C1990.6 565.504 1989.02 572.694 1988.87 579.985" fill="#DFC47F"/>
<path d="M2045.55 535.111C2020.55 535.741 2000.09 555.422 2000.68 579.985C2000.11 604.901 2020.57 624.405 2045.55 624.858C2071.45 624.425 2091.9 604.901 2092.78 579.985C2091.9 555.403 2071.45 535.741 2045.55 535.111Z" fill="white"/>
<path d="M2033.72 582.346H2045.53L2064.42 610.668H2073.85L2054.96 582.346C2066.43 582.11 2075.17 577.584 2076.21 565.814C2075.17 560.244 2072.83 554.773 2069.13 551.644C2063.82 549.784 2058.21 548.982 2052.6 549.282H2024.25V610.687H2033.7V582.346H2033.72Z" fill="#DFC47F"/>
<path d="M2033.72 556.367H2050.25C2058.8 556.19 2065.82 557.292 2066.79 565.814C2065.82 576.344 2053.64 574.769 2045.53 575.261H2033.72V556.367V556.367Z" fill="white"/>
<path d="M682.802 617.772C646.904 617.654 695.811 584.452 708.781 556.367L921.339 79.2955C931.042 56.7409 931.042 41.98 928.424 32.0804C927.361 23.5387 929.211 1.39741 959.127 1.35805H1110.28C1130.33 -0.432938 1125.73 8.77785 1098.47 46.2311C1092.51 51.2105 1090.66 55.8355 1084.3 65.1251L867.019 551.644C860.012 567.861 863.712 578.922 864.657 587.07C865.542 595.513 864.617 617.654 838.678 617.772H682.802V617.772ZM288.39 1.35805C259.419 1.39741 257.589 23.5387 260.049 32.0804C261.269 41.9997 261.269 56.7605 252.964 79.2955L40.4061 556.367C27.8692 577.997 -22.8691 617.654 12.0651 617.772H172.664L295.475 348.534H479.672C543.557 348.278 558.318 403.622 550.544 424.11C543.577 444.204 479.003 599.193 307.284 528.026C297.266 524.503 293.566 526.334 283.666 532.75L234.07 591.793C229.897 600.138 231.747 611.219 243.497 617.772C255.719 622.279 298.171 645.346 425.352 641.39C552.788 637.965 683.786 543.85 727.656 445.365C740.98 411.002 758.516 325.231 673.335 296.556C699.472 281.834 829.565 204.33 829.211 112.34C829.565 19.819 774.202 1.37773 706.4 1.33837H288.39V1.35805ZM1334.65 15.5285L1221.28 268.235H1263.79C1276.09 267.074 1289 256.938 1296.86 249.341L1525.95 15.5285C1535.33 7.87252 1546.42 1.39741 1561.37 1.35805H1707.8C1718 1.39741 1715.22 7.87252 1710.16 13.1864C1710.62 12.4779 1410.22 315.47 1410.22 315.47C1419.1 319.681 1432.01 330.762 1433.84 348.534C1434.76 349.203 1469.26 603.602 1469.26 603.602C1471.69 610.274 1467.99 617.654 1459.82 617.772H1306.3C1290.85 617.654 1283.47 611.219 1282.69 598.878C1281.62 600.138 1249.62 367.428 1249.62 367.428C1248.4 358.434 1241.02 348.258 1230.73 348.534H1204.75C1193.98 348.278 1181.98 355.659 1176.41 367.428L1070.13 605.964C1068.81 611.75 1062.06 617.654 1053.6 617.772H909.53C873.868 617.654 925.511 577.997 935.509 556.367L1148.07 79.2955C1158.01 56.7409 1158.01 41.98 1155.15 32.0804C1154.33 23.5387 1156.16 1.39741 1185.85 1.35805H1325.2C1334.23 1.37773 1337.42 8.04965 1334.65 15.5285V15.5285Z" fill="#DFC47F"/>
<path d="M2142.38 1.35804C2064.9 1.3974 1693.1 -35.5048 1523.61 298.937C1445.86 490.356 1501.23 617.654 1686.57 617.772H1873.14C1896.07 617.654 1901.6 608.443 1908.57 598.878L1984.15 516.218C1989.24 507.892 1980.03 501.437 1969.98 506.771C1961.57 512.498 1933.9 527.259 1790.48 528.026C1646.06 527.259 1646.06 423.933 1674.76 348.534H2000.68C2012.31 348.278 2018.77 355.659 2024.3 357.981C2029.85 361.209 2052.89 365.814 2062.08 348.534L2092.79 272.958C2095.35 263.393 2087.04 253.257 2071.53 258.788C2053.84 264.338 2048.29 267.093 2031.38 268.235H1710.18C1735.53 215.41 1835.18 89.943 2031.38 91.1042C2071.35 91.8127 2119.32 101.024 2147.11 124.169C2158.09 130.545 2165.47 125.015 2166 114.722C2165.45 102.874 2163.64 22.6137 2163.64 22.6137C2163.6 3.24743 2154.37 3.24743 2142.38 1.35804V1.35804Z" fill="#DFC47F"/>
<path d="M408.839 91.1042H555.268C608.171 91.8127 641.373 104.704 640.291 140.701C641.373 178.528 615.551 257.882 484.415 258.788H335.625L408.839 91.1042Z" fill="white"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="2166" height="642" fill="white"/>
</clipPath>
</defs>
</svg>
</div>
<div class="featured__tesla">
<svg width="auto" height="auto" viewBox="0 0 2000 2000" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 0H2000V2000H0V0Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M540.351 1062.97C508.954 1139.49 426.072 1187.18 344.435 1187.18C223.868 1187.18 125.91 1086.8 125.91 966.362C125.91 847.175 225.124 748.065 341.914 748.065C427.307 748.065 510.199 796.997 542.852 876.03H453.682C427.307 844.664 385.866 824.586 343.169 824.586C266.565 824.586 205.026 891.075 205.026 968.862C205.026 1044.13 267.82 1111.88 343.169 1111.88C385.866 1111.88 421.029 1093.08 449.916 1062.96H540.351V1062.97ZM967.347 625.122L772.686 1021.57V1177.13H693.571V1021.57L491.367 616.334H570.493L733.756 950.051L922.139 554.867H940.972L967.347 625.122ZM1337.84 1062.97C1306.45 1139.49 1224.81 1187.18 1143.17 1187.18C1021.35 1187.18 924.65 1086.8 924.65 966.362C924.65 847.175 1022.61 748.065 1140.65 748.065C1224.81 748.065 1307.7 796.997 1340.35 876.03H1251.18C1226.07 844.664 1183.37 824.586 1140.65 824.586C1064.05 824.586 1002.52 891.075 1002.52 968.862C1002.52 1044.13 1066.57 1111.88 1141.92 1111.88C1183.38 1111.88 1219.8 1093.08 1247.42 1062.96H1337.84V1062.97ZM1390.58 756.853H1468.44V1101.86H1597.79V1177.13H1390.58V756.853ZM1641.75 756.853H1867.81V832.13H1719.6V928.729H1861.52V1005.26H1719.6V1101.86H1867.81V1177.13H1641.75V756.853ZM325.593 1395.42C310.527 1431.82 270.331 1455.65 231.401 1455.65C173.639 1455.65 127.166 1406.71 127.166 1349.02C127.166 1292.57 173.639 1244.88 230.146 1244.88C271.597 1244.88 310.527 1268.73 326.848 1306.37H284.152C271.597 1291.31 251.499 1281.28 230.146 1281.28C193.726 1281.28 164.84 1312.62 164.84 1350.28C164.84 1386.65 194.982 1419.28 231.401 1419.28C251.499 1419.28 267.82 1410.48 281.641 1395.42H325.593ZM491.367 1248.65H599.379V1285.02H529.052V1331.44H596.868V1367.82H529.052V1414.25H599.379V1450.63H491.367V1248.65ZM785.241 1248.65H826.682L912.085 1396.68V1248.65H948.515V1450.63H907.063L822.926 1303.85V1450.63H785.241V1248.65ZM1175.83 1285.02H1138.15V1248.65H1249.92V1285.02H1212.25V1450.63H1175.83V1285.02ZM1433.28 1248.65H1541.27V1285.02H1470.96V1331.44H1538.76V1367.82H1470.96V1414.25H1541.27V1450.63H1433.28V1248.65ZM1730.91 1248.65H1789.94C1808.76 1248.65 1826.36 1249.9 1841.44 1262.45C1856.49 1274.99 1865.29 1293.81 1865.29 1312.62C1865.29 1327.68 1859.01 1345.26 1848.96 1356.53C1838.93 1366.57 1826.36 1372.84 1812.54 1375.36L1867.8 1450.62H1821.33L1768.58 1372.84V1450.62H1730.9V1248.65H1730.91ZM1788.7 1345.24C1798.75 1345.24 1811.29 1343.99 1818.83 1336.47C1825.1 1330.19 1827.63 1322.67 1827.63 1313.87C1827.63 1305.09 1823.86 1296.32 1817.57 1291.29C1808.77 1285.01 1800.01 1285.01 1788.7 1285.01H1768.59V1345.24H1788.7ZM616.956 507.19C616.956 507.19 529.042 518.479 486.345 507.19C486.345 507.19 432.339 487.113 423.551 515.968C423.551 515.968 414.762 576.19 486.345 587.478C486.345 587.478 530.307 593.756 554.161 577.445C554.161 577.445 601.89 534.79 624.489 537.301C624.489 537.301 665.94 541.067 657.141 526.012C657.141 526.012 654.63 504.679 616.956 507.19ZM1011.3 504.679C1026.37 509.691 1043.96 500.913 1048.99 485.858C1054 470.802 1046.48 453.236 1030.15 448.225C1015.08 443.213 998.754 450.736 992.477 467.046C987.434 482.091 996.233 498.412 1011.3 504.679Z" fill="#DFC47F"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M945.996 531.024L1038.94 483.347L1026.38 458.268L933.441 504.679L945.996 531.024ZM1158.24 962.595L928.419 495.891L898.277 510.957L1128.11 978.906L1158.24 962.595Z" fill="#DFC47F"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1144.42 997.728C1160.75 997.728 1174.57 983.928 1174.57 967.617C1174.57 950.051 1160.75 936.251 1144.42 936.251C1140.29 936.209 1136.19 936.992 1132.36 938.553C1128.54 940.115 1125.06 942.423 1122.14 945.344C1119.22 948.265 1116.91 951.739 1115.34 955.563C1113.78 959.388 1112.99 963.486 1113.03 967.617C1113.02 983.928 1126.85 997.728 1144.42 997.728ZM345.69 997.728C363.267 997.728 377.087 983.928 377.087 967.617C377.087 950.051 363.267 936.251 345.69 936.251C328.114 936.251 314.293 950.051 314.293 967.617C314.293 983.928 328.114 997.728 345.69 997.728ZM942.227 631.389H984.923V655.233H942.227V631.389Z" fill="#DFC47F"/>
<path d="M88.2344 1487.02H1911.76V641.433H88.2344V1487.02Z" stroke="#DFC47F" stroke-width="18.9877" stroke-miterlimit="2.613"/>
</svg>
</div>
<div class="featured__ebike">
<svg width="auto" height="auto" viewBox="0 0 2103 653" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2079.01 495.556C2091.85 495.556 2102.82 485.578 2102.82 471.921C2102.82 458.389 2091.85 448.411 2079.01 448.411C2066.04 448.411 2055.07 458.389 2055.07 471.921C2055.07 485.587 2066.04 495.556 2079.01 495.556ZM946.237 238.825C905.948 238.825 881.574 248.722 846.904 278.175L881.244 158.317H729.395L627.426 499.93H714.825L744.089 463.761C771.34 498.38 836.654 506.166 878.991 505.258C960.201 503.512 1051.13 453.65 1070.23 363.743C1089.46 273.319 1037.67 238.825 946.237 238.825V238.825Z" fill="#DFC47F"/>
<path d="M913.809 370.237C904.129 404.34 884.723 444.002 842.368 444.002C824.887 444.002 813.951 437.356 803.023 426.638L828.645 325.56C848.068 309.81 865.113 299.965 883.655 299.965C919.811 299.965 925.547 328.901 913.809 370.237V370.237Z" fill="white"/>
<path d="M1291.43 240.544H1139.57L1062.2 499.93H1214.05L1291.43 240.544ZM1914.07 237.952C1792.65 237.952 1681.3 310.7 1671.02 374.22C1656.05 466.683 1727.13 496.643 1855.67 496.643C1961.8 496.643 2062.38 453.774 2077.07 413.525H1930.37C1922.28 428.857 1906.04 437.124 1874.87 437.124C1838.22 437.124 1814.56 427.173 1824.43 386.451H2089.15L2092.29 373.516C2118.1 267.172 2019.08 237.952 1914.07 237.952V237.952Z" fill="#DFC47F"/>
<path d="M1951.33 340.473H1835.59C1843.27 308.856 1867.3 294.727 1901.75 294.727C1938.39 294.727 1958.88 309.328 1951.33 340.473Z" fill="white"/>
<path d="M359.615 122.851C179.526 122.851 18.4323 231.591 3.19487 325.81C-19.0068 462.959 82.4458 502.79 272.954 510.122C431.759 516.233 576.911 442.959 598.703 383.28H383.811C371.797 406.015 347.708 418.273 301.461 418.273C247.119 418.273 216.564 403.529 231.214 343.119H619.293L623.942 323.948C662.227 166.192 515.373 122.851 359.615 122.851Z" fill="#DFC47F"/>
<path d="M414.921 274.905H251.574C262.403 228.01 296.316 207.065 344.94 207.065C396.664 207.065 425.581 228.722 414.921 274.905V274.905Z" fill="white"/>
<path d="M1593.09 328.883L1734.1 248.206H1609.5L1451.58 338.763L1506.41 159.894H1354.56L1250.3 499.93H1402.16L1425.14 424.981L1471.81 398.282L1516.59 499.93H1668.45L1593.09 328.883Z" fill="#DFC47F"/>
<path d="M1232.66 215.246C1275.03 212.805 1308.6 197.16 1307.63 180.302C1306.66 163.444 1271.52 151.756 1229.15 154.197C1186.78 156.638 1153.22 172.283 1154.19 189.141C1155.16 205.999 1190.29 217.687 1232.66 215.246Z" fill="#DFC47F"/>
<path d="M590.993 154.976C612.802 145.8 950.565 8.70383 1598.21 35.0558C1598.21 35.0558 899.607 -78.0136 323.486 101.996C335.508 101.07 347.559 100.598 359.616 100.579C464.23 100.579 541.762 118.86 590.993 154.976V154.976ZM266.998 535.423C222.515 533.712 184.265 530.247 151.395 524.812C176.945 539.129 308.908 610.71 562.584 653C562.584 653 454.799 620.626 352.296 531.726C324.008 535.24 295.484 536.477 266.998 535.423V535.423ZM699.08 564.456L702.793 556.1H644.462L640.748 564.456H665.425L636.491 629.463H646.296L675.222 564.456H699.08ZM723.962 575.173C720.934 575.173 717.835 575.886 714.647 577.294C711.458 578.71 707.816 581.044 703.737 584.305L716.25 556.1H707.157L674.598 629.454H683.691L693.808 606.666C696.729 600.047 699.365 595.254 701.716 592.278C704.067 589.303 706.89 586.96 710.194 585.24C713.189 583.608 716.535 582.728 719.946 582.675C722.163 582.675 723.73 583.227 724.639 584.323C725.547 585.418 725.814 586.835 725.405 588.563C725.12 589.766 723.926 592.688 721.816 597.347L707.157 629.445H716.25L730.552 598.104C732.85 593.107 734.23 589.677 734.666 587.815C735.557 584.011 735.076 580.946 733.224 578.639C731.389 576.332 728.29 575.173 723.962 575.173V575.173ZM774.857 575.173C769.87 575.173 764.945 576.492 760.047 579.138C755.14 581.784 750.714 585.828 746.742 591.263C742.771 596.706 740.108 602.318 738.754 608.109C737.712 612.537 737.641 616.474 738.558 619.94C739.467 623.405 741.346 626.042 744.213 627.851C747.081 629.668 750.483 630.568 754.419 630.568C760.733 630.568 766.638 628.599 772.123 624.661C777.609 620.724 781.51 616.563 783.808 612.198L775.205 611.361C772.631 615.191 769.603 618.122 766.112 620.145C762.621 622.176 759.326 623.191 756.218 623.191C752.914 623.191 750.42 621.891 748.746 619.272C747.072 616.661 746.814 612.866 747.989 607.904C748.185 607.067 748.452 606.14 748.782 605.107H788.02C789.124 602.381 789.988 599.726 790.594 597.124C792.188 590.336 791.547 584.982 788.688 581.062C785.811 577.133 781.207 575.173 774.857 575.173V575.173Z" fill="#DFC47F"/>
<path d="M782.328 596.145C782.239 596.545 782.07 597.205 781.812 598.14H751.871C754.703 592.786 758.025 588.786 761.854 586.122C765.684 583.459 769.531 582.131 773.423 582.131C777.003 582.131 779.648 583.343 781.366 585.748C783.067 588.162 783.397 591.628 782.328 596.145V596.145Z" fill="white"/>
<path d="M895.581 587.842H857.1L867.483 564.456H905.261L909.037 556.1H861.383L828.824 629.463H838.629L853.395 596.189H891.947L895.581 587.842ZM939.352 576.287L928.825 599.361C926.768 603.94 925.156 607.147 923.989 608.964C922.208 611.815 920.187 614.292 917.925 616.385C915.663 618.479 913.169 620.136 910.435 621.365C907.701 622.595 905.056 623.209 902.491 623.209C900.096 623.209 898.413 622.693 897.424 621.668C896.436 620.644 896.159 619.218 896.587 617.383C896.961 615.788 897.816 613.561 899.143 610.693L914.959 576.305H905.947L891.76 607.004C889.249 612.439 887.726 616.287 887.2 618.523C886.408 621.9 886.987 624.75 888.937 627.085C890.896 629.419 893.915 630.586 898.003 630.586C904.638 630.586 911.967 627.013 920 619.86L915.734 629.472H924.114L948.426 576.296H939.352V576.287ZM993.311 575.173C989.779 575.239 986.307 576.085 983.14 577.65C979.623 579.307 975.642 581.944 971.189 585.561L975.33 576.278H966.95L943.35 629.454H952.443L963.37 604.733C966.995 596.679 971.029 590.986 975.482 587.663C979.934 584.349 984.512 582.683 989.214 582.683C991.547 582.683 993.204 583.236 994.183 584.332C995.163 585.436 995.448 586.862 995.029 588.626C994.664 590.194 993.729 592.599 992.224 595.86L976.889 629.454H985.981L1000.65 597.365C1002.55 593.142 1003.74 590.042 1004.2 588.082C1005.13 584.162 1004.62 581.026 1002.71 578.684C1000.77 576.349 997.648 575.173 993.311 575.173V575.173ZM1066.37 576.287L1042.77 629.463H1051.86L1075.46 576.287H1066.37ZM1101.55 575.173C1095.55 575.173 1090.53 576.67 1086.5 579.663C1082.46 582.657 1079.94 586.247 1078.96 590.443C1078.39 592.839 1078.46 594.96 1079.16 596.804C1079.87 598.648 1081.18 600.26 1083.1 601.623C1084.24 602.452 1086.98 603.886 1091.3 605.926C1095.62 607.966 1098.24 609.686 1099.14 611.093C1099.57 611.745 1099.85 612.476 1099.98 613.242C1100.11 614.008 1100.09 614.793 1099.9 615.548C1099.39 617.721 1097.94 619.61 1095.56 621.214C1093.19 622.817 1090 623.61 1085.99 623.61C1083.12 623.61 1080.75 623.031 1078.87 621.855C1077 620.688 1075.87 619.182 1075.51 617.338C1075.14 615.494 1075.26 613.276 1075.87 610.666L1066.7 611.218C1064.81 618.051 1065.67 622.986 1069.26 626.015C1072.85 629.053 1077.72 630.568 1083.85 630.568C1088.35 630.568 1092.45 629.811 1096.12 628.296C1099.79 626.782 1102.74 624.759 1104.95 622.229C1107.16 619.699 1108.58 617.116 1109.2 614.488C1110.13 610.532 1109.5 607.174 1107.3 604.403C1105.92 602.675 1102.1 600.323 1095.85 597.338C1092.1 595.548 1089.82 594.22 1089.02 593.347C1088.44 592.786 1088.03 592.082 1087.81 591.307C1087.6 590.532 1087.59 589.715 1087.8 588.937C1088.19 587.263 1089.42 585.721 1091.49 584.287C1093.57 582.853 1096.18 582.131 1099.32 582.131C1103.22 582.131 1106.03 583.067 1107.73 584.937C1109.42 586.817 1109.96 589.356 1109.34 592.563L1118.24 592.011C1119.29 586.969 1118.43 582.897 1115.68 579.806C1112.92 576.724 1108.21 575.173 1101.55 575.173V575.173ZM1231.32 573.543C1232.02 570.883 1232.02 568.086 1231.31 565.427C1230.62 562.977 1229.27 561.044 1227.28 559.637C1225.28 558.229 1222.67 557.231 1219.42 556.67C1217.44 556.296 1214.32 556.118 1210.05 556.118H1186.59L1154.02 629.472H1190.41C1195.23 629.472 1199.83 628.465 1204.22 626.443C1208.6 624.421 1212.42 621.561 1215.67 617.864C1218.91 614.167 1221.01 610.292 1221.96 606.256C1222.78 602.746 1222.51 599.69 1221.15 597.071C1219.79 594.452 1217.27 592.492 1213.58 591.191C1218.55 589.597 1222.51 587.271 1225.46 584.198C1228.42 581.116 1230.38 577.579 1231.32 573.543V573.543Z" fill="#DFC47F"/>
<path d="M1211.93 606.265C1211.39 608.563 1210.3 610.764 1208.67 612.866C1207.04 614.969 1205.06 616.652 1202.74 617.935C1200.43 619.218 1197.61 620.127 1194.27 620.652C1192.6 620.955 1189.47 621.107 1184.87 621.107H1167.53L1178.78 595.77H1198.28C1204.61 595.77 1208.68 596.661 1210.46 598.443C1212.26 600.225 1212.74 602.835 1211.93 606.265V606.265ZM1222.01 574.113C1220.98 578.452 1218.62 581.748 1214.9 584.02C1211.19 586.292 1205.59 587.423 1198.12 587.423H1182.49L1192.69 564.456H1209.09C1213.79 564.456 1216.9 564.804 1218.44 565.481C1219.99 566.158 1221.08 567.254 1221.75 568.759C1222.4 570.256 1222.49 572.047 1222.01 574.113V574.113Z" fill="white"/>
<path d="M1230.02 609.891C1227.35 621.24 1232.7 630.505 1242.31 630.505C1247.29 630.505 1252.94 627.61 1258.04 623.209L1258.22 623.441L1255.87 629.463H1265.71L1285.23 577.463C1282.55 576.536 1277.04 575.842 1273.34 575.842C1247.98 575.842 1233.92 593.329 1230.02 609.891V609.891Z" fill="#DFC47F"/>
<path d="M1261.49 614.407C1257.53 618.461 1251.39 622.398 1247.46 622.398C1241.44 622.398 1238.55 616.492 1240.5 608.153C1242.14 601.205 1250.81 582.559 1272.83 584.412L1261.49 614.407Z" fill="white"/>
<path d="M1313.56 620.269C1310.34 622.496 1307.25 623.61 1304.29 623.61C1301.34 623.61 1299.12 622.479 1297.64 620.225C1296.15 617.971 1295.95 614.577 1297.01 610.051C1298.02 605.73 1299.84 601.24 1302.47 596.572C1305.09 591.904 1308.02 588.421 1311.23 586.131C1314.22 583.918 1317.83 582.713 1321.55 582.692C1324.71 582.692 1327.02 583.637 1328.5 585.534C1329.99 587.423 1330.34 590.051 1329.59 593.41L1338.62 592.857C1339.88 587.53 1339.2 583.263 1336.62 580.029C1334.03 576.804 1329.88 575.182 1324.15 575.182C1318.6 575.193 1313.15 576.701 1308.38 579.548C1303.39 582.461 1299.09 586.71 1295.46 592.305C1292 597.519 1289.47 603.294 1287.98 609.374C1286.4 616.064 1286.98 621.267 1289.71 624.991C1292.43 628.715 1296.69 630.577 1302.49 630.577C1307.85 630.577 1313 628.964 1317.96 625.748C1322.92 622.523 1327.32 617.588 1331.16 610.951L1322.32 610.113C1319.71 614.666 1316.79 618.051 1313.56 620.269V620.269ZM1389.8 576.287L1357.21 601.802L1377.5 556.1H1368.4L1335.85 629.463H1344.94L1352.81 611.717L1366.03 602.211L1370.36 629.463H1380.27L1374.42 596.136L1401.78 576.287H1389.8ZM1448.2 576.287L1424.6 629.463H1433.69L1457.29 576.287H1448.2ZM1493.22 575.173C1489.69 575.239 1486.21 576.085 1483.05 577.65C1479.53 579.307 1475.55 581.944 1471.1 585.561L1475.23 576.278H1466.85L1443.25 629.454H1452.34L1463.27 604.732C1466.89 596.679 1470.93 590.986 1475.38 587.663C1479.83 584.349 1484.41 582.683 1489.11 582.683C1491.44 582.683 1493.1 583.236 1494.08 584.332C1495.06 585.436 1495.35 586.862 1494.93 588.626C1494.56 590.194 1493.63 592.599 1492.12 595.859L1476.79 629.454H1485.88L1500.55 597.365C1502.45 593.142 1503.64 590.042 1504.1 588.082C1505.03 584.162 1504.52 581.026 1502.6 578.683C1500.69 576.349 1497.55 575.173 1493.22 575.173V575.173ZM1563.33 612.626L1576.37 583.245H1585.27L1588.3 576.287H1579.4L1587.95 557.08L1576.15 563.298L1570.35 576.287H1563.25L1560.22 583.245H1567.32L1553.65 614.131C1551.8 618.336 1550.73 621.018 1550.45 622.185C1549.91 624.492 1550.27 626.309 1551.57 627.637C1553.28 629.41 1555.93 630.292 1559.52 630.292C1561.56 630.292 1563.72 630.007 1566.02 629.436L1569.26 622.033C1567.46 622.448 1565.62 622.648 1563.77 622.63C1562.37 622.63 1561.42 622.345 1560.94 621.775C1560.46 621.214 1560.35 620.394 1560.6 619.325C1560.78 618.603 1561.69 616.367 1563.33 612.626V612.626ZM1627.35 575.173C1624.33 575.173 1621.23 575.886 1618.05 577.294C1614.86 578.71 1611.22 581.044 1607.14 584.305L1619.66 556.1H1610.57L1578.01 629.454H1587.1L1597.22 606.666C1600.14 600.047 1602.77 595.254 1605.12 592.278C1607.48 589.303 1610.3 586.96 1613.6 585.24C1616.6 583.609 1619.94 582.729 1623.35 582.675C1625.57 582.675 1627.13 583.227 1628.05 584.323C1628.96 585.427 1629.21 586.835 1628.8 588.563C1628.52 589.766 1627.33 592.688 1625.22 597.347L1610.57 629.445H1619.66L1633.96 598.104C1636.26 593.107 1637.64 589.677 1638.07 587.815C1638.97 584.011 1638.48 580.946 1636.63 578.639C1634.78 576.332 1631.68 575.173 1627.35 575.173V575.173ZM1680.55 575.173C1675.58 575.173 1670.64 576.492 1665.74 579.138C1660.85 581.784 1656.41 585.828 1652.44 591.263C1648.47 596.706 1645.81 602.318 1644.44 608.109C1643.4 612.537 1643.34 616.474 1644.25 619.94C1645.15 623.405 1647.03 626.042 1649.9 627.851C1652.77 629.659 1656.17 630.568 1660.11 630.568C1666.42 630.568 1672.33 628.599 1677.81 624.661C1683.31 620.724 1687.2 616.563 1689.5 612.198L1680.89 611.361C1678.32 615.191 1675.29 618.122 1671.8 620.145C1668.31 622.176 1665.02 623.191 1661.92 623.191C1658.6 623.191 1656.12 621.891 1654.44 619.272C1652.77 616.661 1652.52 612.866 1653.69 607.904C1653.88 607.067 1654.15 606.14 1654.49 605.107H1693.72C1694.83 602.381 1695.69 599.726 1696.3 597.124C1697.89 590.336 1697.26 584.982 1694.39 581.062C1691.53 577.142 1686.9 575.173 1680.55 575.173V575.173Z" fill="#DFC47F"/>
<path d="M1688.04 596.145L1687.52 598.14H1657.58C1660.41 592.786 1663.74 588.786 1667.56 586.122C1671.39 583.459 1675.24 582.131 1679.13 582.131C1682.71 582.131 1685.36 583.343 1687.07 585.748C1688.78 588.153 1689.1 591.628 1688.04 596.145V596.145Z" fill="white"/>
<path d="M1789.79 591.174C1794.76 589.579 1798.72 587.254 1801.67 584.18C1804.63 581.116 1806.57 577.57 1807.52 573.543C1808.22 570.883 1808.22 568.088 1807.52 565.427C1806.9 563.082 1805.47 561.031 1803.49 559.637C1801.49 558.22 1798.87 557.231 1795.64 556.67C1793.66 556.296 1790.53 556.118 1786.26 556.118H1762.79L1730.23 629.472H1766.62C1771.44 629.472 1776.03 628.465 1780.42 626.443C1784.8 624.423 1788.7 621.5 1791.87 617.864C1795.12 614.158 1797.22 610.292 1798.17 606.256C1799 602.746 1798.72 599.69 1797.36 597.071C1796 594.434 1793.48 592.474 1789.79 591.174V591.174Z" fill="#DFC47F"/>
<path d="M1788.14 606.265C1787.55 608.675 1786.43 610.927 1784.88 612.866C1783.25 614.969 1781.28 616.652 1778.96 617.935C1776.65 619.218 1773.82 620.127 1770.48 620.652C1768.82 620.955 1765.68 621.107 1761.09 621.107H1743.75L1754.99 595.77H1774.49C1780.81 595.77 1784.88 596.661 1786.67 598.443C1788.46 600.225 1788.95 602.835 1788.14 606.265V606.265ZM1774.33 587.423H1758.69L1768.89 564.456H1785.29C1789.99 564.456 1793.1 564.804 1794.65 565.481C1796.19 566.158 1797.28 567.254 1797.95 568.759C1798.61 570.256 1798.7 572.047 1798.22 574.113C1797.19 578.452 1794.82 581.748 1791.11 584.02C1787.4 586.292 1781.8 587.423 1774.33 587.423V587.423Z" fill="white"/>
<path d="M1822.24 576.287L1798.64 629.463H1807.74L1831.34 576.287H1822.24ZM1874.24 610.951L1865.39 610.113C1862.78 614.666 1859.85 618.051 1856.64 620.278C1853.41 622.505 1850.32 623.619 1847.37 623.619C1844.41 623.619 1842.19 622.488 1840.71 620.234C1839.22 617.98 1839.02 614.586 1840.08 610.06C1841.1 605.739 1842.91 601.249 1845.53 596.581C1848.16 591.913 1851.08 588.43 1854.3 586.14C1857.28 583.928 1860.89 582.723 1864.61 582.701C1867.76 582.701 1870.08 583.646 1871.55 585.543C1873.04 587.432 1873.41 590.06 1872.65 593.419L1881.69 592.866C1882.94 587.539 1882.27 583.271 1879.69 580.038C1877.09 576.813 1872.93 575.191 1867.22 575.191C1861.7 575.191 1856.44 576.652 1851.45 579.557C1846.46 582.47 1842.16 586.719 1838.52 592.314C1835.06 597.526 1832.53 603.302 1831.05 609.383C1829.48 616.073 1830.05 621.276 1832.78 625C1835.5 628.724 1839.76 630.586 1845.56 630.586C1850.92 630.586 1856.08 628.973 1861.04 625.757C1866.01 622.523 1870.41 617.588 1874.24 610.951V610.951ZM1933.19 576.287L1899.44 618.871C1900.12 613.604 1900.67 608.323 1901.11 603.031L1903.41 576.287H1894.5L1890.83 629.49L1886.7 634.675C1884.26 637.713 1882.17 639.779 1880.44 640.884C1879.02 641.748 1877.37 642.184 1875.7 642.14C1873.92 642.138 1872.15 641.868 1870.44 641.338L1867.85 649.98C1869.68 650.693 1871.64 651.049 1873.74 651.049C1877.03 651.049 1880.17 650.087 1883.14 648.163C1886.12 646.229 1889.94 642.301 1894.6 636.35L1942.58 576.296H1933.19V576.287ZM1961.71 620.269C1958.49 622.497 1955.41 623.61 1952.45 623.61C1949.5 623.61 1947.28 622.479 1945.79 620.225C1944.3 617.971 1944.11 614.577 1945.17 610.051C1946.18 605.73 1947.99 601.24 1950.62 596.572C1953.24 591.904 1956.17 588.421 1959.38 586.131C1962.37 583.919 1965.98 582.714 1969.69 582.692C1972.85 582.692 1975.16 583.637 1976.64 585.534C1978.13 587.423 1978.49 590.051 1977.74 593.41L1986.78 592.857C1988.03 587.53 1987.35 583.263 1984.76 580.029C1982.17 576.804 1978.02 575.182 1972.29 575.182C1966.76 575.182 1961.51 576.643 1956.52 579.548C1951.54 582.461 1947.23 586.71 1943.6 592.305C1940.14 597.517 1937.61 603.293 1936.13 609.374C1934.55 616.064 1935.13 621.267 1937.86 624.991C1940.58 628.715 1944.84 630.577 1950.64 630.577C1956 630.577 1961.15 628.964 1966.11 625.748C1971.07 622.523 1975.47 617.588 1979.31 610.951L1970.46 610.113C1967.86 614.666 1964.95 618.051 1961.71 620.269V620.269ZM2016.82 556.1L1984.18 629.463H1993.28L2025.92 556.1H2016.82ZM2069 581.062C2066.13 577.142 2061.52 575.173 2055.17 575.173C2050.19 575.173 2045.26 576.492 2040.36 579.138C2035.46 581.784 2031.03 585.828 2027.06 591.263C2023.09 596.706 2020.43 602.318 2019.07 608.109C2018.03 612.537 2017.95 616.474 2018.87 619.94C2019.78 623.405 2021.66 626.042 2024.53 627.851C2027.39 629.668 2030.8 630.568 2034.74 630.568C2041.05 630.568 2046.96 628.599 2052.45 624.661C2057.93 620.724 2061.82 616.563 2064.12 612.198L2055.52 611.361C2052.94 615.191 2049.92 618.122 2046.42 620.145C2042.93 622.176 2039.64 623.191 2036.54 623.191C2033.23 623.191 2030.73 621.891 2029.06 619.272C2027.38 616.661 2027.14 612.866 2028.3 607.904C2028.5 607.067 2028.77 606.14 2029.1 605.107H2068.33C2069.45 602.381 2070.3 599.726 2070.92 597.125C2072.51 590.336 2071.87 584.982 2069 581.062V581.062Z" fill="#DFC47F"/>
<path d="M2062.65 596.145C2062.55 596.545 2062.38 597.205 2062.12 598.14H2032.18C2035.02 592.786 2038.34 588.786 2042.17 586.122C2046 583.459 2049.84 582.131 2053.74 582.131C2057.32 582.131 2059.96 583.343 2061.68 585.748C2063.4 588.153 2063.71 591.628 2062.65 596.145V596.145Z" fill="white"/>
<path d="M2078.27 622.042C2075.34 622.042 2072.39 624.43 2071.71 627.361C2071.01 630.301 2072.84 632.679 2075.78 632.679C2078.71 632.679 2081.65 630.292 2082.35 627.361C2083.02 624.43 2081.21 622.042 2078.27 622.042ZM1839.17 561.107C1839.86 558.167 1838.04 555.788 1835.1 555.788C1832.17 555.788 1829.22 558.176 1828.54 561.107C1827.84 564.046 1829.67 566.425 1832.61 566.425C1835.55 566.425 1838.48 564.046 1839.17 561.107ZM1461.32 561.107C1462 558.167 1460.19 555.788 1457.25 555.788C1454.32 555.788 1451.37 558.176 1450.68 561.107C1449.99 564.046 1451.81 566.425 1454.75 566.425C1457.69 566.425 1460.62 564.046 1461.32 561.107ZM1068.12 561.107C1067.42 564.046 1069.25 566.425 1072.19 566.425C1075.12 566.425 1078.06 564.038 1078.76 561.107C1079.44 558.167 1077.63 555.788 1074.69 555.788C1071.75 555.788 1068.8 558.176 1068.12 561.107Z" fill="#DFC47F"/>
<path d="M2059.81 471.93C2059.81 460.768 2068.22 452.349 2079.01 452.349C2089.67 452.349 2098.08 460.768 2098.08 471.93C2098.08 483.28 2089.67 491.636 2079.01 491.636C2068.22 491.636 2059.81 483.28 2059.81 471.93Z" fill="white"/>
<path d="M2074.02 473.801H2078.76L2085.93 485.587H2090.54L2082.81 473.614C2086.8 473.115 2089.86 470.995 2089.86 466.131C2089.86 460.768 2086.68 458.398 2080.26 458.398H2069.91V485.587H2074.02V473.801V473.801Z" fill="#DFC47F"/>
<path d="M2074.02 470.309V461.89H2079.63C2082.5 461.89 2085.56 462.514 2085.56 465.881C2085.56 470.059 2082.44 470.309 2078.95 470.309H2074.02Z" fill="white"/>
</svg>
</div>
</div>
<div class="section-featured-svg--bottom">
<svg
width="auto"
height="auto"
viewBox="0 0 1440 171"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0 112.692H48C96 112.692 192 112.692 288 93.2562C384 73.8203 480 34.9484 576 15.5125C672 -3.92348 768 -3.92348 864 9.01357C960 22.1936 1056 47.7032 1152 54.3843C1248 61.0655 1344 47.7032 1392 41.4473L1440 34.9484V171H1392C1344 171 1248 171 1152 171C1056 171 960 171 864 171C768 171 672 171 576 171C480 171 384 171 288 171C192 171 96 171 48 171H0V112.692Z"
fill="#DFC47F"
/>
</svg>
</div>
</section>
<section class="section-contact" id="contact">
<div class="section-contact__wrapper">
<div class="left">
<div class="contact__heading">
<h2 class="heading-secondary u-margin-bottom-medium">
Toss us a message
</h2>
</div>
<form class="section-contact__form" action="./contact.php" method="post">
<div class="section-contact__form--name">
<label class="section-contact__form--label" for="name"
>Name</label
>
<input
type="text"
name="name"
id="name"
placeholder="e.g. Jane Doe"
required
/>
</div>
<div class="section-contact__form--email">
<label class="section-contact__form--label" for="email"
>Email</label
>
<input
type="email"
name="email"
id="email"
placeholder="e.g. [email protected]"
required
/>
</div>
<div class="section-contact__form--message">
<label class="section-contact__form--label" for="message"
>Message</label
>
<textarea
name="message"
id="message"
cols="30"
rows="10"
placeholder="say something..."
></textarea>
</div>
<input class="btn btn-grey" type="submit" value="Send" />
</form>
</div>
<div class="center">
<div class="contact__details">
<div class="contact__details--tel">
<i class="icon-tel fas fa-phone-alt"></i>
<a class="tel" href="tel:+254 711 222 333">+254 711 222 333</a>
</div>
<div class="contact__details--email">
<i class="icon-email far fa-envelope"></i>
<a class="email" href="mailto:[email protected]"
>
</div>
<div class="contact__details--location">
<i class="icon-location fas fa-map-marker-alt"></i>
<a class="location" href="#"
>Multimedia University<br />
Kajiado County <br />
Kenya</a
>
</div>
</div>
</div>
<div class="right">
<div class="contact__location">
<h2
class="
heading-secondary
contact__location--heading
u-margin-bottom-medium
"
>
Find us
</h2>
<div class="contact__location--map card">
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15954.629211112207!2d36.76848!3d-1.382264!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x84f65413371bebb!2sMulti%20Media%20University!5e0!3m2!1sen!2ske!4v1627211063704!5m2!1sen!2ske"
width="600"
height="450"
style="border: 0"
allowfullscreen=""
loading="lazy"
></iframe>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="section-footer">
<div class="section-footer--wrapper">
<div class="top u-padding-bottom-small">
<div class="newsletter">
<p
class="
paragraph
newsletter-content
u-margin-bottom-medium u-margin-top-small
"
>
Join over 50,000 other cyclists in receiving the best newsletter
on new e-cycle updates latest news, upgrades, discounts and more
offers!
</p>
<div class="newsletter-form">
<input
type="email"
name="email"
id="footer-email"
placeholder="Your email"
/>
<button type="button" class="btn btn-bage">Subscribe</button>
</div>
</div>
<div class="follow-us">
<h3 class="footer-heading heading-tertiary u-margin-bottom-small">
Follow us
</h3>
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
</div>
<div class="footer-nav">
<h3 class="footer-heading heading-tertiary u-margin-bottom-small">
Navigate
</h3>
<a href="#shop" class="link">Shop</a>
<a href="#about" class="link">About</a>
<a href="#contact" class="link">Contact</a>
<a href="#testimonials" class="link">Testimonials</a>
</div>
</div>
<div class="bottom section-footer--copyright u-margin-top-small">
<h3 class="heading-tertiary">
E-Cycle <span class="footer-copyright">© copyright 2021</span>
</h3>
</div>
</div>
</footer>
<script src="js/index.js"></script>
</body>
</html>