-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1374 lines (1282 loc) · 126 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="de_CH">
<head>
<title>ETRIX clean motion – Elektro Scooter | Elektro Roller | E-Services</title>
<meta name="description" content="ETRIX steht seit zehn Jahren für zuverlässige Elektromobilität. Vom selbst entwickelten Elektro Roller zum Elektro Scooter Sharing mit Flottenmangagement." />
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<link rel="canonical" href="https://www.etrix.ch/" />
<meta property="og:locale" content="de_DE" />
<meta property="og:type" content="website" />
<meta property="og:title" content="ETRIX clean motion – Elektro Scooter | Elektro Roller | E-Services" />
<meta property="og:description" content="ETRIX steht seit zehn Jahren für zuverlässige Elektromobilität. Vom selbst entwickelten Elektro Roller zum Elektro Scooter Sharing mit Flottenmangagement." />
<meta property="og:url" content="https://www.etrix.ch/" />
<meta property="og:site_name" content="ETRIX" />
<meta property="article:modified_time" content="2021-02-25T20:29:08+00:00" />
<link rel="stylesheet" href="styles.css">
<body>
<section class="bg-contain bg-top bg-no-repeat bg-gray-500">
<div class="pt- pb-16 text-center">
<div class="max-w-lg mx-auto mb-8">
<h1 class="mt-2 text-3xl font-extrabold text-gray-800 tracking-tight sm:text-4xl">
<span>Die preisgekrönten </span><br>
<span class="mt-2 text-8xl font-extrabold text-yellow-500 tracking-tight sm:text-4xl uppercase">Elektro-Roller von ETRIX </span><br>
<span class="mt-2 text-2xl font-extrabold text-gray-700 tracking-tight sm:text-4xl">Spass an der richtigen Entscheidung</span>
</h1>
<p class="text-blueGray-100 leading-relaxed">Unsere Modelle von Ecooter & Silence. Smarte digitale Lösungen.</p>
</div>
<a class="typeform-share button" href="https://form.typeform.com/to/M5PZIYEV?typeform-medium=embed-snippet" data-mode="drawer_right" style="display:inline-block;text-decoration:none;background-color:#f79501;color:white;cursor:pointer;font-family:Helvetica,Arial,sans-serif;font-size:20px;line-height:50px;text-align:center;margin:0;height:50px;padding:0px 33px;border-radius:25px;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:bold;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;" target="_blank">Probefahrt </a> <script> (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm_share", b="https://embed.typeform.com/"; if(!gi.call(d,id)){ js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() </script>
</div>
<div class="relative max-w-6xl mx-auto">
<img src="https://images.squarespace-cdn.com/content/v1/5afc500acef372b962665bee/1526499060928-TKDS4RUZPKQVYE6NDXPH/ke17ZwdGBToddI8pDm48kLkXF2pIyv_F2eUT9F60jBl7gQa3H78H3Y0txjaiv_0fDoOvxcdMmMKkDsyUqMSsMWxHk725yiiHCCLfrh8O1z4YTzHvnKhyp6Da-NYroOW3ZGjoBKy3azqku80C789l0iyqMbMesKd95J-X4EagrgU9L3Sa3U8cogeb0tjXbfawd0urKshkc5MgdBeJmALQKw/048A8789.jpg?format=2500w" alt="">
</div>
<div class="container px-4 mx-auto">
<div class="flex flex-wrap items-center justify-center max-w-4xl mx-auto pt-8 pb-12">
<div class="w-1/2 md:w-1/3 lg:w-1/5 px-3 mb-8"><img class="mx-auto" src="metis-assets/logos/brands/tesla.svg" alt=""></div>
<div class="w-1/2 md:w-1/3 lg:w-1/5 px-3 mb-8"><img class="mx-auto" src="metis-assets/logos/brands/facebook.svg" alt=""></div>
<div class="w-1/2 md:w-1/3 lg:w-1/5 px-3 mb-8"><img class="mx-auto" src="metis-assets/logos/brands/marvel.svg" alt=""></div>
<div class="w-1/2 md:w-1/3 lg:w-1/5 px-3 mb-8"><img class="mx-auto" src="metis-assets/logos/brands/nike.svg" alt=""></div>
<div class="hidden md:block w-1/2 md:w-1/3 lg:w-1/5 px-3 mb-8"><img class="mx-auto" src="metis-assets/logos/brands/airbnb.svg" alt=""></div>
</div>
</div>
</div>
<div class="hidden navbar-menu relative z-50">
<div class="navbar-backdrop fixed inset-0 bg-blueGray-800 opacity-25"></div>
<nav class="fixed top-0 left-0 bottom-0 flex flex-col w-5/6 max-w-sm py-6 px-6 bg-white border-r overflow-y-auto">
<div class="flex items-center mb-8">
<a class="mr-auto text-3xl font-semibold leading-none" href="#"><img class="h-10" src="metis-assets/logos/metis/metis.svg" alt="" width="auto"></a>
<button class="navbar-close">
<svg class="h-6 w-6 text-blueGray-400 cursor-pointer hover:text-blueGray-500" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
</svg>
</button>
</div>
<div>
</div>
</nav>
</div>
</section>
<section class="py-40 bg-gray-100">
<div class="container px-4 mx-auto">
<div class="max-w-lg mx-auto text-center">
<span class="inline-block py-1 px-3 text-xs font-semibold bg-yellow-50 text-yellow-500 rounded-xl">ETRIX Elektro Roller</span>
<h2 class="text-4xl mb-20 md:text-4xl mt-2 mb-4 font-bold font-heading">Ein Elektro-Roller hat viele Fans</h2>
<p class="text-blueGray-400 leading-loose"></p>
</div>
</div>
<section class=" pb-8 bg-gray-100">
<div class="container px-4 mx-auto">
<div class="flex flex-wrap -mx-3">
<div class="w-full md:w-1/2 lg:w-1/4 mb-12 px-3">
<div class="text-center">
<span class="inline-block p-5 mb-6 bg-yellow-500 text-white rounded-full">
<svg class="w-12 h-12" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z"></path>
</svg>
</span>
<h4 class="mb-3 text-lg font-semibold font-heading">Einsteiger</h4>
<p class="text-blueGray-400 leading-loose">Der E1R kann schon ab 16 Jahren gefahren werden und eignet sich besonders für Einsteiger.</p>
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/4 mb-12 px-3">
<div class="text-center">
<span class="inline-block p-5 mb-6 bg-yellow-500 text-white rounded-full">
<svg class="h-12 w-12" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z"></path>
</svg>
</span>
<h4 class="mb-3 text-lg font-semibold font-heading">Frauen & Männer</h4>
<p class="text-blueGray-400 leading-loose">Der Ecooter, auch "Citycat" gennant, ist wegen seines Designs bei Frauen sehr beliebt. Und bei stilbewussten Männern.</p>
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/4 mb-12 px-3">
<div class="text-center">
<span class="inline-block p-5 mb-6 bg-yellow-500 text-white rounded-full">
<svg class="w-12 h-12" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4"></path>
</svg>
</span>
<h4 class="mb-3 text-lg font-semibold font-heading">KMU's</h4>
<p class="text-blueGray-400 leading-loose">KMU's setzen gerne auf den E1R Roller von ETRIX. Weil er das perfekte Gefährt für den nächsten Sitzungstermin ist.</p>
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/4 mb-12 px-3">
<div class="text-center">
<span class="inline-block p-5 mb-6 bg-yellow-500 text-white rounded-full">
<svg class="w-12 h-12" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 18h.01M8 21h8a2 2 0 002-2V5a2 2 0 00-2-2H8a2 2 0 00-2 2v14a2 2 0 002 2z"></path>
</svg>
</span>
<h4 class="mb-3 text-lg font-semibold font-heading">Delivery Services</h4>
<p class="text-blueGray-400 leading-loose">Viele Pizzakuriere und Zustellservices setzen auf die eRoller von ETRIX.</p>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="py-12 md:py-20">
<div class="container px-4 mx-auto">
<div class="max-w-lg mx-auto mb-12 text-center">
</div>
<div class="flex flex-wrap lg:flex-nowrap lg:items-center max-w-lg lg:max-w-full mx-auto">
<div class="w-full lg:w-1/4 p-3"><img class="rounded object-cover mx-auto" src="https://lh3.googleusercontent.com/pw/ACtC-3dJB1InZLX0VEER8nf4isg0ugS9eKt1-bP8oe-6hDoUBAWZ8EDOIFISXphvC20B57WM3YmgUdHJh2MjHlFBh1bYWb6Hu0yyyGCxso4hwHv0BnY-h3jEq6tfN5N4AE0PSOnchimIKQfh2eM1-lRPHBoeNg=w1339-h1005-no?authuser=2
" alt=""></div>
<div class="w-full lg:w-2/4 flex flex-col">
<div class="flex items-end">
<div class="w-2/3 p-3"><img class="rounded object-cover" src="https://lh3.googleusercontent.com/pw/ACtC-3cj6PSQYlSMQ3MVlTXGT0Qyet1OA1I3kvyS3yZ38HUkhFUcBsxL28-EDjFYb4pgZDTSvgzuM8Qdx5BLWxdhTfAA_p5ZvF5nlRE1xX2cIm76PlfsTFOJLh4xebcBbktAJ1yyJMlKbwNMlh1RVjUmnE-N_Q=w1339-h1005-no?authuser=2
" alt=""></div>
<div class="w-1/3 p-3"><img class="h-48 lg:h-32 rounded object-cover" src="https://lh3.googleusercontent.com/pw/ACtC-3eGDpumQ9wHEAP7Dji_erHImN18u65FxYf29dTmXT9bJE9smWU3s9mYYx-bhkNGkAkIHT1sS3tWmRwvxBV1khvSBf4bShEXxFDRTZKCztwOgiTn4u7H-u78aKLdu8t2CZ7UySBS4c9O5VY-1Hc1zCOd1A=w1339-h1005-no?authuser=2" alt=""></div>
</div>
<div class="flex items-start">
<div class="w-1/3 p-3"><img class="h-48 lg:h-32 rounded object-cover" src="https://lh3.googleusercontent.com/pw/ACtC-3erMdvEum4G1LQVRIdEOIfm_H_LFTroiHuiS9orn2BZ4M1Klr8SXfx8l3DVpDmFy9pP27cnewDziL4yYjoEDfPHYp53sRRvlic_sFJWks9mjHiOt1Yz03TcOqKygpN09mhCrAw73tQ87enXiJ6n6KaKcg=w1339-h734-no?authuser=2
" alt=""></div>
<div class="w-2/3 p-3"><img class="rounded object-cover" src="https://lh3.googleusercontent.com/pw/ACtC-3cqJXllk3Raw9ihzjQs-dTSZ9OrEJWuPiTW90Fz-IEnnYFQZz9JK0xV7UWWd8V-8cbK6xOF0ZCGCnBQ_v_Qg8XpeGGjhiudRFwWvAyMcC_4wZRuY59T8WiUTFB_YXyqdsG0s43JAm449-9HuR_00MoufA=w846-h1127-no?authuser=2
" alt=""></div>
</div>
</div>
<div class="w-full lg:w-1/4 p-3"><img class="rounded object-cover mx-auto" src="https://lh3.googleusercontent.com/pw/ACtC-3fOtwEDfBSxrdcbkwL5ZauJLGuPyG9l9Qznq3H2QYEZkb7z6jhFD6vdqKBKVL6PseY32sWXheoBClbQ0jGOOwTnwubkS8BEWk_T6nEsJvTRlnCbYhF02Oz6zsBIhD74L-DqWgmT1KfxJA8hmMYoT4JnEA=w1339-h1005-no?authuser=2
" alt=""></div>
</div>
</div>
</section>
<!--
This example requires Tailwind CSS v2.0+
This example requires some changes to your config:
```
// tailwind.config.js
module.exports = {
// ...
plugins: [
// ...
require('@tailwindcss/aspect-ratio'),
]
}
```
-->
<!--
This example requires Tailwind CSS v2.0+
This example requires some changes to your config:
```
// tailwind.config.js
module.exports = {
// ...
plugins: [
// ...
require('@tailwindcss/typography'),
]
}
```
-->
<!-- Bilder -->
<section class="py-12 md:py-20">
<div class="container px-4 mx-auto">
<div class="max-w-lg mx-auto mb-12 text-center">
<span class="inline-block py-1 px-3 text-xs font-semibold bg-yellow-500 text-bold text-white rounded-xl">ETRIX</span>
<h2 class="text-3xl md:text-4xl mt-2 mb-4 font-bold font-heading">Der Ecooter wird in vier verschiedenen Modelltypen und in fünf Farben angeboten</h2>
<p class="text-blueGray-400 leading-loose">Wie auch immmer Ihre Bedürfnisse aussehen mögen, der ETRIX bietet Ihnen die passende Lösung</p>
</div>
<div class="flex flex-wrap -mx-3 mb-6 lg:mb-0">
<div class="w-full lg:w-1/2 flex flex-wrap px-3 mb-6 lg:md-0">
<div class="w-1/2 h-64 pr-3 pb-3"><img class="h-full object-cover rounded" src="https://www.öko-roller.de/i/4c/4b/09/285f36639d82cd0e8ed00412c9.jpg" alt=""></div>
<div class="w-1/2 h-64 pl-3 pb-3"><img class="h-full object-cover rounded" src="https://www.motorradhandel-schweiz.ch/kunden_occasionen/3408/J479991-ETRIX-eccoter-E1.jpg" alt=""></div>
<div class="w-1/2 h-64 pr-3 pt-3"><img class="h-full object-cover rounded" src="https://images.squarespace-cdn.com/content/v1/5afc500acef372b962665bee/1526568734914-KSAY0AZP47QRKHJYQR5O/ke17ZwdGBToddI8pDm48kLkXF2pIyv_F2eUT9F60jBl7gQa3H78H3Y0txjaiv_0fDoOvxcdMmMKkDsyUqMSsMWxHk725yiiHCCLfrh8O1z4YTzHvnKhyp6Da-NYroOW3ZGjoBKy3azqku80C789l0iyqMbMesKd95J-X4EagrgU9L3Sa3U8cogeb0tjXbfawd0urKshkc5MgdBeJmALQKw/048A8902.jpg?format=2500w" alt=""></div>
<div class="w-1/2 h-64 pl-3 pt-3"><img class="h-full object-cover rounded" src="https://www.öko-roller.de/wp-content/uploads/2017/09/ecooter-e1.png" alt=""></div>
</div>
<div class="w-full lg:w-1/2 px-3"><img class="h-128 w-full object-cover rounded" src="https://www.silent-ride.ch/wordpress/wp-content/uploads/2020/04/weiss6-scaled.jpg" alt=""></div>
</div>
<div class="flex flex-wrap -mx-3 mb-6">
<div class="w-full lg:w-1/2 px-3 order-last lg:order-first mt-6 lg:mt-0"><img class="h-128 w-full object-cover rounded" src="https://www.outdoordreams.eu/images/categories/E1E.4.jpg" alt=""></div>
<div class="w-full lg:w-1/2 flex flex-wrap px-3">
<div class="w-1/2 h-64 pr-3 pb-3"><img class="h-full object-cover rounded" src="https://bereadyto.de/wp-content/uploads/2020/06/Ecooter-a-dashboard.png" alt=""></div>
<div class="w-1/2 h-64 pl-3 pb-3"><img class="h-full object-cover rounded" src="https://www.c-magazine.com/wp-content/uploads/2018/06/30705053_794687557387379_6449426004669370160_n.jpg" alt=""></div>
<div class="w-1/2 h-64 pr-3 pt-3"><img class="h-full object-cover rounded" src="https://bereadyto.de/wp-content/uploads/2020/04/Ecooter-E1R-Rennen.jpg" alt=""></div>
<div class="w-1/2 h-64 pl-3 pt-3"><img class="h-full object-cover rounded" src="https://www.öko-roller.de/i/b7/79/72/a846e680bbc3e9266ccc84ff6e.jpg" alt=""></div>
</div>
</div>
</div>
</section>
<section class="py-12 md:py-20">
<div class="container px-4 mx-auto">
<div class="max-w-lg mx-auto mb-12 text-center">
<span class="inline-block py-1 px-3 text-xs font-semibold bg-blue-100 text-blue-600 rounded-xl">Die Silence Reihe</span>
<h2 class="text-3xl md:text-4xl mt-2 mb-4 font-bold font-heading">Die Silence Roller stehen für Leistung und Ausdauer.</h2>
<p class="text-blueGray-400 leading-loose">Sowohl für Private wie Unternehmen geeignet. Wir bieten auch den entsprechenden Service</p>
</div>
<div class="flex flex-wrap -mx-3 mb-6 lg:mb-0">
<div class="w-full lg:w-1/2 flex flex-wrap px-3 mb-6 lg:md-0">
<div class="w-1/2 h-64 pr-3 pb-3"><img class="h-full object-cover rounded" src="https://can01.anibis.ch/Scooters-Elektroroller-Etrix-Silence-S01/?1024x768/3/60/anibis/427/355/035/McEIMqaE80i4MidtHoeTzg_1.jpg" alt=""></div>
<div class="w-1/2 h-64 pl-3 pb-3"><img class="h-full object-cover rounded" src="https://www.öko-roller.de/i/6d/d2/ec/4903b2a560b05246447ce3f203.jpg" alt=""></div>
<div class="w-1/2 h-64 pr-3 pt-3"><img class="h-full object-cover rounded" src="https://www.öko-roller.ch/i/a7/da/3c/9b3375470c39704eb3f1b1ca1c.jpg" alt=""></div>
<div class="w-1/2 h-64 pl-3 pt-3"><img class="h-full object-cover rounded" src="https://www.öko-roller.de/i/7c/92/ae/a432b2eee20e466911f94877e1.jpg" alt=""></div>
</div>
<div class="w-full lg:w-1/2 px-3"><img class="h-128 w-full object-cover rounded" src="https://www.etrix.ch/wp-content/uploads/2020/02/S01-GREEN-DIAGONAL-scaled.jpg" alt=""></div>
</div>
<div class="flex flex-wrap -mx-3 mb-6">
<div class="w-full lg:w-1/2 px-3 order-last lg:order-first mt-6 lg:mt-0"><img class="h-128 w-full object-cover rounded" src="https://www.etrix.ch/wp-content/uploads/2020/01/arosaenergie2-_freigestell_ohne-scheibe-scaled-scaled-1024x768.jpg" alt=""></div>
<div class="w-full lg:w-1/2 flex flex-wrap px-3">
<div class="w-1/2 h-64 pr-3 pb-3"><img class="h-full object-cover rounded" src="https://www.silence.eco/wp-content/uploads/2019/04/s03-2-seats-775x387.png" alt=""></div>
<div class="w-1/2 h-64 pl-3 pb-3"><img class="h-full object-cover rounded" src="https://www.etrix.ch/wp-content/uploads/2020/02/Etrix_polizei_01-scaled-scaled-1024x767.jpg" alt=""></div>
<div class="w-1/2 h-64 pr-3 pt-3"><img class="h-full object-cover rounded" src="https://www.etrix.ch/wp-content/uploads/2020/01/XAV9188-logo-e1575333920550.jpg" alt=""></div>
<div class="w-1/2 h-64 pl-3 pt-3"><img class="h-full object-cover rounded" src="https://www.etrix.ch/wp-content/uploads/2020/01/Etrix_S02_oven_15-scaled.jpg" alt=""></div>
</div>
</div>
</div>
</section>
<!-- Testimionals -->
<section class="py-20 xl:bg-contain bg-top bg-no-repeat bg-gray-100">
<div class="container px-4 mx-auto">
<div class="max-w-lg mx-auto mb-12 text-center">
<img class="mx-auto" src="metis-assets/icons/quote.svg" alt=""><h2 class="my-2 text-3xl md:text-4xl font-bold font-heading">Das sagen unsere Kunden</h2>
<p class="text-blueGray-400 leading-loose">Die Begeisterung unserer Kundinnen und Kunden bedeutet uns besonders viel.</p>
</div>
<div class="flex flex-wrap -mx-3 mb-6">
<div class="w-full md:w-1/2 lg:w-1/3 px-3 mb-6">
<div class="p-8 bg-white shadow rounded">
<div class="flex items-center mb-4">
<img class="h-16 w-16 rounded-full object-cover" src="https://mymodernmet.com/wp/wp-content/uploads/2019/09/100k-ai-faces-3.jpg" alt=""><div class="pl-4">
<p class="text-xl">Maximilian Weber</p>
<p class="text-yellow-900">Agenturleiter</p>
</div>
</div>
<p class="text-blueGray-400 leading-loose">Wir nutzen den eRoller von ETRIX um zu zweit schnell und sicher zum Ziel zu kommen. Keine Parkplätze, keine Gebühren, keine Bussen und ein gutes Gewissen. </p>
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/3 px-3 mb-6">
<div class="p-8 bg-white shadow rounded">
<div class="flex items-center mb-4">
<img class="h-16 w-16 rounded-full object-cover" src="https://images.generated.photos/8pnNq4mg4CpaCTBaNyDZf6EA0R-cDF-fIMnMfLDd_ZU/rs:fit:256:256/Z3M6Ly9nZW5lcmF0/ZWQtcGhvdG9zL3Yz/XzAwMTcyMjcuanBn.jpg" alt=""><div class="pl-4">
<p class="text-xl">Mara Helbling</p>
<p class="text-yellow-900">Unternehmerin & Mutter</p>
</div>
</div>
<p class="text-blueGray-400 leading-loose">Mir war wichtig, einen Roller zu kaufen, der den Treibhausgaseffekt möglichst nicht noch weiter anheizt. Schliesslich sind wir uns unsere Nachkommen verantwortlich. Dabei spare ich viel Zeit und Geld. Ich bin sicher, meine Kinder werden mir später dankbar sein, dass ich mich für einen eRoller entschieden habe. Heute noch einen Benzinmotor zu kaufen halte ich für rückständig. <br> Meine Freundin war zuerst etwas skeptisch, heute sind beinahe ausnahmslos gemeinsam mit meinem eRoller unterwegs.</p>
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/3 px-3 mb-6">
<div class="p-8 bg-white shadow rounded">
<div class="flex items-center mb-4">
<img class="h-16 w-16 rounded-full object-cover" src="https://images.generated.photos/steBu4yiUresXd2bnHo7kOv0Wo3MJH2n-OJi-mdrBpE/rs:fit:256:256/Z3M6Ly9nZW5lcmF0/ZWQtcGhvdG9zL3Yz/XzAwODAyMzguanBn.jpg" alt=""><div class="pl-4">
<p class="text-xl">Giacomo Vanesto</p>
<p class="text-yellow-900">Pendler</p>
</div>
</div>
<p class="text-blueGray-400 leading-loose">Ich brauche den eRoller von ETRIX für meinen täglichen Arbeitsweg von der Agglomeration in die Stadt. Ich bin schneller als jedes eBike und auch schneller als jedes Auto, weil ich die den Pendlerverkehr ganz einfach umfahre. </p>
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/3 px-3 mb-6">
<div class="p-8 bg-white shadow rounded">
<div class="flex items-center mb-4">
<img class="h-16 w-16 rounded-full object-cover" src="https://images.generated.photos/RTR9mv9Rw9a0NujBZvx53BVkqwgywoyY4W8F3wnyQ6k/rs:fit:256:256/Z3M6Ly9nZW5lcmF0/ZWQtcGhvdG9zL3Yz/XzAxNDYwNzQuanBn.jpg" alt=""><div class="pl-4">
<p class="text-xl">Kevin Maier</p>
<p class="text-yellow-900">Lehrling</p>
</div>
</div>
<p class="text-blueGray-400 leading-loose">Der eRoller von ETRIX war der perfekte Einstieg in Elektromobilität. Ich muss jeden Tag früh aufstehen und liebe es, morgens die Vögel zwitschern zu hören, während ich leise und kraftvoll ins Geschäft oder in die Berufsschule komme. <br> Ich weiss zwar, dass überholen in stehenden Kolonnen verboten ist, doch wenn die Zeit drängt, zählt jede Minute. Das hat mir schon oft den Tag gerettet und natürlich kenn ich alle Schleichwege</p>
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/3 px-3 mb-6">
<div class="p-8 bg-white shadow rounded">
<div class="flex items-center mb-4">
<img class="h-16 w-16 rounded-full object-cover" src="https://images.generated.photos/OGzd_Irfs7gZVA_yM0Z3HSLqRPV4YYXD6G0NVAd5mzM/rs:fit:256:256/Z3M6Ly9nZW5lcmF0/ZWQtcGhvdG9zL3Yz/XzAxOTEyMDEuanBn.jpg" alt=""><div class="pl-4">
<p class="text-xl">Peter Wälti</p>
<p class="text-yellow-900">Pensionierter Lehrer</p>
</div>
</div>
<p class="text-blueGray-400 leading-loose">Seit meiner Pensionierung habe ich Zeit und unternehme jede Woche Ausflüge und besuche meine Freunde und meinen Neffen mit dem ETRIX eRoller. Der Kauf des Elektro Rollers ist eine der besten Investitionen, die ich letzter Zeit getätigt habe. </p>
</div>
</div>
<div class="w-full md:w-1/2 lg:w-1/3 px-3 mb-6">
<div class="p-8 bg-white shadow rounded">
<div class="flex items-center mb-4">
<img class="h-16 w-16 rounded-full object-cover" src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" alt=""><div class="pl-4">
<p class="text-xl">Juliana Hebeisen</p>
<p class="text-yellow-900">Gastro Delivery-Service</p>
</div>
</div>
<p class="text-blueGray-400 leading-loose">In der Corona-Krise haben wir unser Home-Delivery Geschäft aufgebaut und die ETRIX Roller sind unverzichtbar dafür. Insbesondere deshalb, weil sie keinen Lärm verursachen. Eine zwingende Voraussetzung unsere Nachbarn. <br> Die Reichweite der eRoller ist beeindruckend, wir könnten uns schlicht nicht mehr vorstellen, mit einem Roller mit Verbrennungsmotor zu arbeiten.</p>
</div>
</div>
</div>
<div class="text-center">
<a class="typeform-share button" href="https://form.typeform.com/to/M5PZIYEV?typeform-medium=embed-snippet" data-mode="drawer_right" style="display:inline-block;text-decoration:none;background-color:#f79501;color:white;cursor:pointer;font-family:Helvetica,Arial,sans-serif;font-size:20px;line-height:50px;text-align:center;margin:0;height:50px;padding:0px 33px;border-radius:25px;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:bold;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;" target="_blank">Ich will Testfahren </a> <script> (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm_share", b="https://embed.typeform.com/"; if(!gi.call(d,id)){ js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() </script>
</div>
</div>
</section>
<!-- This example requires Tailwind CSS v2.0+ -->
<div class="relative bg-white py-16 sm:py-24 lg:py-32">
<div class="mx-auto max-w-md px-4 text-center sm:max-w-3xl sm:px-6 lg:px-8 lg:max-w-7xl">
<h2 class="text-base font-semibold tracking-wider text-indigo-600 uppercase">Deploy faster</h2>
<p class="mt-2 text-3xl font-extrabold text-gray-900 tracking-tight sm:text-4xl">
Leistungsübersicht der Ecooter Serie
</p>
<p class="mt-5 max-w-prose mx-auto text-xl text-gray-500">
Wir bieten Ihnen fünf verschiedene Modelle der Ecooter Serie, wählen Sie ganz nach Ihren persönlichen Ansprüchen und Vorlieben.
</p>
<div class="mt-12">
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
<div class="pt-6">
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-yellow-500 rounded-md shadow-lg">
<!-- Heroicon name: outline/lock-closed -->
<svg class="h-6 w-6 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" clip-rule="evenodd" />
</svg>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">0-50 Kmh in 4,5 Sekunden</h3>
<p class="mt-5 text-base text-gray-500">
Viele Verkehrsteilnehmer sehen den ECOOTER nur von hinten, weil er allen vorn weg fährt
</p>
</div>
</div>
</div>
<div class="pt-6">
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-yellow-500 rounded-md shadow-lg">
<!-- Heroicon name: outline/lock-closed -->
<svg class="h-6 w-6 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z" />
</svg>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Kilowatt Power</h3>
<p class="mt-5 text-base text-gray-500">
Bis zu 7 kW Spitzenleistung ohne einzigen Piep von sich zu geben. Das ist geballter Power auf leisen Sohlen </p>
</div>
</div>
</div>
<div class="pt-6">
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-yellow-500 rounded-md shadow-lg">
<!-- Heroicon name: outline/lock-closed -->
<svg class="h-6 w-6 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z" clip-rule="evenodd" />
</svg>
</span> </div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Akku-Pack</h3>
<p class="mt-5 text-base text-gray-500">
Der ECOOTER wird je nach Typ mit einer Batterie (2,6 Kw) und einer einer Zusatzbatterie (1,8W Kw) ausgliefert
</p>
</div>
</div>
</div>
<div class="pt-6">
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-yellow-500 rounded-md shadow-lg">
<!-- Heroicon name: outline/shield-check -->
<svg class="h-6 w-6 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7h12m0 0l-4-4m4 4l-4 4m0 6H4m0 0l4 4m-4-4l4-4" />
</svg>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">3 Fahrmodi & Rückwärtsgang</h3>
<p class="mt-5 text-base text-gray-500">
Wählen Sie zwischen verschiedenen Powermodi und fahren elegant rückwärts
</p>
</div>
</div>
</div>
<div class="pt-6">
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-yellow-500 rounded-md shadow-lg">
<!-- Heroicon name: outline/cog -->
<svg class="h-6 w-6 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Regenerative CBS-Bremsen</h3>
<p class="mt-5 text-base text-gray-500">
Zwei Scheibenbremsen schaffen Sicherheit und beim Bremsen wird die Batterie neu geladen
</p>
</div>
</div>
</div>
<div class="pt-6">
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-yellow-500 rounded-md shadow-lg">
<!-- Heroicon name: outline/server -->
<svg class="h-6 w-6 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 3v2m6-2v2M9 19v2m6-2v2M5 9H3m2 6H3m18-6h-2m2 6h-2M7 19h10a2 2 0 002-2V7a2 2 0 00-2-2H7a2 2 0 00-2 2v10a2 2 0 002 2zM9 9h6v6H9V9z" />
</svg>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Ausgefeilte Bordelektronik</h3>
<p class="mt-5 text-base text-gray-500">
Mit digitaler Leistungsanzeige, elektronischem Schlüssel, Rollerapp, USB Charger, hast Du alles unter Kontrolle
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white">
<div class="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:px-8">
<div class="bg-yellow-500 rounded-lg shadow-xl overflow-hidden lg:grid lg:grid-cols-2 lg:gap-4">
<div class="pt-10 pb-12 px-6 sm:pt-16 sm:px-16 lg:py-16 lg:pr-0 xl:py-20 xl:px-20">
<div class="lg:self-center">
<h2 class="text-3xl font-extrabold text-white sm:text-4xl">
<span class="block">Bereit für eine Probefahrt mit Vogelgezwitscher?</span>
</h2>
<p class="mt-4 text-lg leading-6 text-yellow-700">Den einzigen Lärm, den Du hören wirst, ist der Verbrennungsmotor weit hinter Dir.</p>
<div class="pt-12">
<a class="mt-2 typeform-share button" href="https://form.typeform.com/to/M5PZIYEV?typeform-medium=embed-snippet" data-mode="drawer_right" style="display:inline-block;text-decoration:none;background-color:#888888;color:white;cursor:pointer;font-family:Helvetica,Arial,sans-serif;font-size:20px;line-height:50px;text-align:center;margin:0;height:50px;padding:0px 33px;border-radius:25px;max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-weight:bold;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;" target="_blank">Probefahrt </a> <script> (function() { var qs,js,q,s,d=document, gi=d.getElementById, ce=d.createElement, gt=d.getElementsByTagName, id="typef_orm_share", b="https://embed.typeform.com/"; if(!gi.call(d,id)){ js=ce.call(d,"script"); js.id=id; js.src=b+"embed.js"; q=gt.call(d,"script")[0]; q.parentNode.insertBefore(js,q) } })() </script>
</div>
</div>
</div>
<div class="mt-6 aspect-w-5 aspect-h-3 md:aspect-w-2 md:aspect-h-1">
<img class="transform translate-x-6 translate-y-6 rounded-md object-cover object-left-top sm:translate-x-16 lg:translate-y-20" src="https://lh3.googleusercontent.com/pw/ACtC-3eGDpumQ9wHEAP7Dji_erHImN18u65FxYf29dTmXT9bJE9smWU3s9mYYx-bhkNGkAkIHT1sS3tWmRwvxBV1khvSBf4bShEXxFDRTZKCztwOgiTn4u7H-u78aKLdu8t2CZ7UySBS4c9O5VY-1Hc1zCOd1A=w1342-h1007-no?authuser=2" alt="App screenshot">
</div>
</div>
</div>
</div>
<section class="py-20">
<div class="container px-4 mx-auto">
<h2 class="mb-12 lg:mb-20 text-3xl md:text-4xl font-bold font-heading">Features</h2>
<div class="flex flex-wrap -mx-4 mb-20">
<div class="w-full lg:w-1/2 px-4 lg:pr-20 lg:pt-4 order-1 lg:order-0">
<span class="inline-block py-1 px-3 uppercase text-xs font-semibold bg-yellow-50 rounded-full text-yellow-600">Sicherheit</span>
<h3 class="my-4 text-xl md:text-2xl font-bold font-heading">Effizientes Lichstystem</h3>
<p class="mb-4 text-sm md:text-base leading-loose text-blueGray-400">Erhöhte Sicherheit dank dem sparsamen LED Lichtsystem mit extra breiter Strassenausleuchtung.</p>
</div>
<div class="w-full lg:w-1/2 px-4 mb-8 order-0 lg:order-1"><img class="w-full h-80 object-cover rounded" src="https://www.etrix.ch/wp-content/uploads/2020/02/Lichtsystem_ecooter.jpg" alt=""></div>
</div>
<div class="flex flex-wrap -mx-4 mb-20">
<div class="w-full lg:w-1/2 px-4 lg:pl-20 lg:pt-4 order-1">
<span class="inline-block py-1 px-3 uppercase text-xs font-semibold bg-yellow-50 rounded-full text-yellow-600">Sicherheit</span>
<h3 class="my-4 text-xl md:text-2xl font-bold font-heading">Intelligentens Rücklichtsystem</h3>
<p class="mb-4 text-sm md:text-base leading-loose text-blueGray-400">Höchste Sichtbarkeit bei Dunkelheit durch die smarte LED Systemkontrolle. Sie steuert die Lichtmenge je nach Umgebung, Lichtverhältnis oder Fahrmanöver.</p>
</div>
<div class="w-full lg:w-1/2 px-4 mb-8 order-0"><img class="w-full h-80 object-cover rounded" src="https://www.etrix.ch/wp-content/uploads/2020/02/Rueckleuchte_ecooter_etrix.jpg" alt=""></div>
</div>
<div class="flex flex-wrap -mx-4 mb-20">
<div class="w-full lg:w-1/2 px-4 lg:pr-20 lg:pt-4 order-1 lg:order-0">
<span class="inline-block py-1 px-3 uppercase text-xs font-semibold bg-yellow-50 rounded-full text-yellow-600">Elektronische Schliessanlage</span>
<h3 class="my-4 text-xl md:text-2xl font-bold font-heading">Keyless Go.</h3>
<p class="mb-4 text-sm md:text-base leading-loose text-blueGray-400">Der intelligente Ecooter-Schlüssel hat alles mit einem Klick unter Kontrolle.</p>
</div>
<div class="w-full lg:w-1/2 px-4 mb-8 order-0 lg:order-1"><img class="w-full h-80 object-cover rounded" src="https://www.etrix.ch/wp-content/uploads/2020/02/Key-x.jpg" alt=""></div>
</div>
<div class="flex flex-wrap -mx-4 mb-20">
<div class="w-full lg:w-1/2 px-4 lg:pl-20 lg:pt-4 order-1">
<span class="inline-block py-1 px-3 uppercase text-xs font-semibold bg-yellow-50 rounded-full text-yellow-600">Energie</span>
<h3 class="my-4 text-xl md:text-2xl font-bold font-heading">Das Lithium Batterie System</h3>
<p class="mb-4 text-sm md:text-base leading-loose text-blueGray-400">Der E1 Ecooter nutzt eine 2,4 kWh extra starke Lithium Batterie mit welcher eine Reichweite von max. 90 km erreicht werden kann, Das tragbare Batteriesystem kann Zuhause oder im Büro an einer herkömmlichen Steckdose aufgeladen werden.</p>
</div>
<div class="w-full lg:w-1/2 px-4 mb-8 order-0"><img class="w-full h-80 object-cover rounded" src="https://www.etrix.ch/wp-content/uploads/2020/02/Aufladen.jpg" alt=""></div>
</div>
<div class="flex flex-wrap -mx-4 mb-20">
<div class="w-full lg:w-1/2 px-4 lg:pr-20 lg:pt-4 order-1 lg:order-0">
<span class="inline-block py-1 px-3 uppercase text-xs font-semibold bg-yellow-50 rounded-full text-yellow-600">Leise Power</span>
<h3 class="my-4 text-xl md:text-2xl font-bold font-heading">Der E1 Motor</h3>
<p class="mb-4 text-sm md:text-base leading-loose text-blueGray-400">Der Antriebsriemen aus Kohlefaser-Verbundwerkstoff von Gates bieten einzigartige Vorteile, um das Motordrehmoment zu nutzen. Kein anderer Motorroller auf dem Markt, kann diese Art von direkter Leistung anbieten.</p>
</div>
<div class="w-full lg:w-1/2 px-4 mb-8 order-0 lg:order-1"><img class="w-full h-80 object-cover rounded bg-black" src="https://www.etrix.ch/wp-content/uploads/2020/02/engine-2.png" alt=""></div>
</div>
<div class="flex flex-wrap -mx-4 mb-20">
<div class="w-full lg:w-1/2 px-4 lg:pl-20 lg:pt-4 order-1">
<span class="inline-block py-1 px-3 uppercase text-xs font-semibold bg-yellow-50 rounded-full text-yellow-600">Motor</span>
<h3 class="my-4 text-xl md:text-2xl font-bold font-heading">Carbon Antrieb</h3>
<p class="mb-4 text-sm md:text-base leading-loose text-blueGray-400">Der Antriebsriemen aus Kohlefaser-Verbundwerkstoff von Gates bieten einzigartige Vorteile, um das Motordrehmoment zu nutzen. Kein anderer Motorroller auf dem Markt, kann diese Art von direkter Leistung anbieten.</p>
</div>
<div class="w-full lg:w-1/2 px-4 mb-8 order-0"><img class="w-full h-80 object-cover rounded bg-black" src="https://www.etrix.ch/wp-content/uploads/2020/02/engine.png" alt=""></div>
</div>
</div>
</div>
</section>
<!-- comparison-->
<section class="py-20 bg-blueGray-50">
<div class="container px-4 mx-auto">
<div class="bg-white px-6 py-4 rounded shadow">
<table class="w-full">
<thead>
<tr class="text-xs"><th class="pb-4 font-normal text-left">Eignung</th><th class="pb-4 font-normal">eBike</th><th class="pb-4 font-normal">eBike+Nr</th><th class="pb-4 font-normal">eRoller</th><th class="pb-4 font-normal">Tesla</th></tr>
</thead>
<tbody>
<!-- Start -->
<tr class="bg-blueGray-100">
<td class="px-6 py-4 text-xs font-semibold">Alle Velowege benutzen</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<!-- Endee -->
</tr>
<tr class="bg-blueGray-100">
<td class="px-6 py-4 text-xs font-semibold">Alle Velowege benutzen</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w- h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-white">
<td class="px-6 py-4 text-xs font-semibold">"Schleichwege benutzen"</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-blueGray-100">
<td class="px-6 py-4 text-xs font-semibold">Im Verkehrsluss mitfahren</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-white">
<td class="px-6 py-4 text-xs font-semibold">Eignung kurze Strecken</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-blueGray-100">
<td class="px-6 py-4 text-xs font-semibold">Eignung für mittlere Strecken</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-white">
<td class="px-6 py-4 text-xs font-semibold">Eignung lange Strecken</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-blueGray-100">
<td class="px-6 py-4 text-xs font-semibold">Keine Parkplatzsuche</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-white">
<td class="px-6 py-4 text-xs font-semibold">Tiefe Diebstahlgefährlichkeit</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-400" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-blueGray-100">
<td class="px-6 py-4 text-xs font-semibold">Mehrere Personen transportieren</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-white">
<td class="px-6 py-4 text-xs font-semibold">Schutz vor Regen</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-300" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-blueGray-100">
<td class="px-6 py-4 text-xs font-semibold">Eignung für Transporte</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-white">
<td class="px-6 py-4 text-xs font-semibold">Tempo bis 25 Kmh</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-blueGray-100">
<td class="px-6 py-4 text-xs font-semibold">Tempo bis 45 Kmh</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-white">
<td class="px-6 py-4 text-xs font-semibold">Tempo ab 45 Kmh</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
<tr class="bg-white">
<td class="px-6 py-4 text-xs font-semibold">Fahrbar ab 15 Jahren</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-7 h-7 mx-auto text-green-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
<td class="px-6 py-4">
<svg class="w-6 h-6 mx-auto text-red-600" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<section class="py-12 md:py-20">
<div class="container px-4 mx-auto">
<div class="flex flex-wrap -mx-3">
<div class="relative w-full lg:w-1/3 mb-8 lg:mb-0 text-center lg:text-left">
<div class="max-w-md lg:max-w-xs lg:pr-16 mx-auto lg:ml-0 mb-6 lg:mb-0">
<h2 class="text-3xl md:text-4xl mb-4 font-bold font-heading">Lorem ipsum dolor sit amet consectut domor</h2>
<p class="text-xs md:text-base text-blueGray-400 leading-loose">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed luctus eget justo et iaculis.</p>
</div>
<div class="lg:absolute lg:bottom-0 lg:left-0 flex justify-center">
<a class="mr-4" href="#">
<svg class="h-6 w-6 text-blue-600 hover:text-blue-500" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16l-4-4m0 0l4-4m-4 4h18"></path>
</svg>
</a>
<a href="#">
<svg class="h-6 w-6 text-blue-600 hover:text-blue-500" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"></path>
</svg>
</a>
</div>
</div>
<div class="w-full lg:w-2/3 flex flex-wrap">
<div class="w-full md:w-1/2 px-3 mb-6 lg:mb-0"><img class="h-128 w-full object-cover rounded" src="https://images.unsplash.com/photo-1489058535093-8f530d789c3b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=600&q=60" alt=""></div>
<div class="w-full md:w-1/2 px-3"><img class="h-128 w-full object-cover rounded" src="https://images.unsplash.com/photo-1494948141550-221698c089c2?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80" alt=""></div>
</div>
</div>
</div>
</section>
<section class="py-12 md:py-32 overflow-x-hidden">
<div class="container px-4 mx-auto">
<div class="flex flex-wrap lg:flex-nowrap">
<div class="w-full lg:w-1/2">
<div class="py-6 lg:pr-32">
<div class="mb-4">
<!-- <span class="text-xs py-1 px-3 text-yellow-600 font-semibold bg-blue-50 rounded-xl">Lorem ipsum</span> -->
<h3 class="text-3xl mt-3 font-bold font-heading">Minus 60 % Umweltbelastung</h3>
<p class="text-blueGray-600 leading-loose">Eine Studie von NewRide Schweiz (unterstützt) von Energie Schweiz hat gezeigt, dass Elektromotoren 60 % weniger belastend sind für die Umwelt wie Verbrennungsmotoren. Und das bei Fahrtkosten, die kaum ins Gewicht fallen.</p>
</div>
<div class="flex items-start py-4">
<div class="w-8 mr-5 text-yellow-500">
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"></path>
</svg>
</div>
<div>
<h3 class="mb-2 text-xl font-semibold font-heading">Kinder würden o-Roller kaufen</h3>
<p class="text-blueGray-400 leading-loose">ie CO2 Bilanz wird nicht besser, wenn man nur drüber redet. Ihre Kinder werden Ihnen danken, wenn sie verantwortungsvoll agieren.</p>
</div>
</div>
<div class="flex items-start py-4">
<div class="w-8 mr-5 text-yellow-500">