-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimpressum.html
1185 lines (1114 loc) · 74.7 KB
/
impressum.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>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!-->
<!--<![endif]-->
<!--[if gte IE 9] <style type="text/css"> .gradient {filter: none;}</style><![endif]-->
<!--[if !IE]><html lang="en"><![endif]-->
<html lang="zxx" class="no-js">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Required meta tags for responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Favicon and touch icons -->
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon/favicoon.svg">
<meta name="misapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<!-- Twitter Card data -->
<meta name="twitter:card" content="">
<meta name="twitter:site" content="@twitter_username">
<meta name="twitter:title" content="">
<meta name="twitter:description" content="">
<meta name="twitter:image" content="">
<!-- Open Graph data -->
<meta property="og:title" content="">
<meta property="og:type" content="article">
<meta property="og:url" content="">
<meta property="og:image" content="">
<meta property="og:description" content="">
<meta property="og:site_name" content="R">
<meta property="fb:admins" content="Facebook numeric ID">
<!-- gmail verification -->
<meta name="google-site-verification" content="">
<!-- Website title -->
<title>Impressum</title>
<link rel="stylesheet" href="assets/css/nioicon.css">
<link rel="stylesheet" href="assets/css/animate.css">
<!-- Local server Bootstrap CSS -->
<!-- <link rel="stylesheet" href="assets/css/bootstrap.min.css"> -->
<!-- CDN Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css">
<!-- Main CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!-- jQuery (necessary for jQuery plugins) -->
<script src="assets/js/jquery-3.6.1.min.js"></script>
</head>
<body>
<!-- Main Coding Start Here -->
<!-- header -/Start -->
<header id="header" class="position-absolute top-0 start-0 end-0 w-100">
<!-- navbar -/Start -->
<div class="header">
<div class="container-fluid p-0">
<nav class="menu-area navbar py-0 navbar-expand-xxl py-2">
<div class="container-fluid">
<a href="index.html" class="navbar-brand theme-logo">
<img src="assets/img/logo.svg" alt="logo" class="img-fluid">
</a>
<div class="d-xxl-none d-flex align-items-center ms-auto gap-sm-3 gap-2 contactInfo px-0 me-2">
<div class="nav-item dropdown language pe-2">
<a class="nav-link text-light_white py-xxl-4 py-2 px-0 mx-0 dropdown-toggle fs-14 fw-bold text-uppercase"
href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
<!-- Deutsch -->
<img src="assets/img/language.png" class="img-fluid language-icon" alt="">
</a>
<ul class="dropdown-menu dropdown-menu-end fade-down all-language ">
<li>
<a class="dropdown-item text-light_white fs-14 fw-bold text-uppercase" href="#">
English
</a>
</li>
<li>
<a class="dropdown-item text-light_white fs-14 fw-bold text-uppercase" href="#">
Hindi
</a>
</li>
<li>
<a class="dropdown-item text-light_white fs-14 fw-bold text-uppercase" href="#">
Bangla
</a>
</li>
</ul>
</div>
<a href="tel:+41315520083" class=" text-decoration-none phone text-white fs-5">
<span><img src="assets/img/call.svg" class="img-fluid" alt="call"></span>
</a>
<a href="#" class=" text-decoration-none phone text-white fs-5">
<span><img src="assets/img/appointment.png" class="img-fluid appointment"
alt="appointment"></span>
</a>
<!-- <button type="button" class="nav-btn px-4 border-0 fs-6 fw-semi-bold text-gray_1">
Termin vereinbaren
</button> -->
</div>
<button class="navbar-toggler border-0" type="button" data-bs-toggle="collapse"
data-bs-target="#nav-toggle" aria-controls="nav-toggle" aria-expanded="false"
aria-label="Toggle navigation">
<span><img src="assets/img/menu.png" class="img-fluid" alt=""></span>
</button>
<div class="collapse navbar-collapse" id="nav-toggle">
<ul class="menu navbar-nav mx-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active py-xxl-4 py-2 px-0 mx-3 active fs-14 fw-bold text-uppercase"
aria-current="page" href="index.html">Startseite</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-light_white py-xxl-4 py-2 px-0 mx-3 dropdown-toggle fs-14 fw-bold text-uppercase"
href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Leistungen
</a>
<div
class="dropdown-menu mega-menu dropdown-menu-end fade-down bg-white box-shadow radius-8">
<div class="dropdown-shape">
<img src="assets/img/dropdown-shape.png " class="img-fluid" alt="">
</div>
<div class="row gx-2">
<div class="col-xl-6">
<a href="web-design.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo1.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebar logo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">Webdesign</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">
Unvergessliche User Experience bieten</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
<div class="col-xl-6">
<a href="maintenance.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo6.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebarlogo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">Maintenance</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">Unterhalt,
damit Ihre Website läuft</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
<div class="col-xl-6">
<a href="seo.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo2.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebarlogo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">SEO</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">Mit
Relevanz gefunden werden</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
<div class="col-xl-6">
<a href="sea.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo7.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebarlogo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">SEA</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">Google Ads
Werbung für sofortige Wirkung</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
<div class="col-xl-6">
<a href="content.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo3.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebarlogo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">Content</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">
SEO-Content, der verkauft</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
<div class="col-xl-6">
<a href="branding.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo8.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebarlogo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">Branding</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">
Wiedererkennungswert für Ihre Firma</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
<div class="col-xl-6">
<a href="animations.html"
class="nav-dropdown-item d-flex align-items-start gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/dropdown-logo4.png"
class="img-fluid dropdown-logo d-flex align-items-center justify-content-center"
alt="sidebarlogo">
<div>
<h5 class="fs-6 fw-bold text-indigo_dye">Animations</h5>
<p class="pb-0 text-gray_3 fs-12 mb-0 short-text">Wir
bringen Bewegung auf Ihre Website</p>
</div>
</div>
<div class="">
<svg class="me-2 mt-2" width="11" height="10"
viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.5117 3.82164L6.93425 0.244141L5.75591 1.42247L8.50008 4.16664H0.166748V5.83331H8.50008L5.75591 8.57747L6.93425 9.75581L10.5117 6.17831C10.8242 5.86576 10.9997 5.44191 10.9997 4.99997C10.9997 4.55803 10.8242 4.13419 10.5117 3.82164V3.82164Z"
fill="white" />
</svg>
</div>
</a>
</div>
</div>
</div>
</li>
<li class="nav-item">
<a class="nav-link text-light_white py-xxl-4 py-2 px-0 mx-3 fs-14 fw-bold text-uppercase"
href="referenzen.html">Referenzen</a>
</li>
<li class="nav-item">
<a class="nav-link text-light_white py-xxl-4 py-2 px-0 mx-3 fs-14 fw-bold text-uppercase"
href="uber.html">Über
uns</a>
</li>
<li class="nav-item">
<a class="nav-link text-light_white py-xxl-4 py-2 px-0 mx-3 fs-14 fw-bold text-uppercase"
href="contact.html">Kontakt</a>
</li>
</ul>
<div class="nav-right d-flex align-items-center">
<div class="nav-item dropdown language pe-2 d-xxl-block d-none">
<a class="nav-link text-light_white py-xxl-4 py-2 px-0 mx-3 dropdown-toggle fs-14 fw-bold text-uppercase"
href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Deutsch
</a>
<ul class="dropdown-menu dropdown-menu-end fade-down all-language ">
<li>
<a class="dropdown-item text-light_white fs-14 fw-bold text-uppercase"
href="#">
English
</a>
</li>
<li>
<a class="dropdown-item text-light_white fs-14 fw-bold text-uppercase"
href="#">
Hindi
</a>
</li>
<li>
<a class="dropdown-item text-light_white fs-14 fw-bold text-uppercase"
href="#">
Bangla
</a>
</li>
</ul>
</div>
<div class="d-xxl-flex d-none align-items-center gap-4 contactInfo px-4">
<a href="+41315520083" class=" text-decoration-none phone text-white fs-5">
<span><img src="assets/img/call.svg" class="img-fluid" alt="call"></span>
+41 31 552 00 83
</a>
<button type="button" class="nav-btn px-4 border-0 fs-6 fw-semi-bold text-gray_1">
Termin vereinbaren
</button>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
<!-- navbar -/End -->
</header>
<!--/ header -/End -->
<!-- Banner -->
<section class="subpage-page-banner2 research-banner d-flex align-items-center position-relative">
<div class="banner-shape position-absolute start-0 bottom-0">
<img src="assets/img/banner-left-shape.png" class="img-fluid" alt="banner left shape">
</div>
<div class="contact-toggle" data-bs-toggle="offcanvas" data-bs-target="#offcanvasWithBothOptions"
aria-controls="offcanvasWithBothOptions">
<img src="assets/img/banner-click.png" class="img-fluid" alt="banner">
</div>
<div class="container">
<div class="row gx-0 align-items-center">
<div class="col-lg-6">
<div class="banner-left text-lg-start text-center">
<div
class="px-3 subpage-badge text-cyan fs-18 fw-semi-bold d-inline-flex align-items-center justify-content-center gap-2">
<p class="mb-0">Impressum</p>
</div>
<h1 class="fs-48 fw-bold text-white mt-4">
Sie wollen mehr über uns erfahren?
</h1>
<p class="fs-18 text-light_white mt-4 mb-5">
Hier finden Sie alle relevanten Daten
</p>
</div>
</div>
<div class="col-lg-6">
<div class="ps-4 text-lg-start text-center mt-5 mt-lg-0">
<img src="assets/img/impressum-bg.png" class="img-fluid" alt="banner">
</div>
</div>
</div>
</div>
</section>
<!--/ Banner -->
<!-- Features Section Started -->
<section class="features section-padding position-relative bg-white">
<!-- <div class="features-bg-shape-1 position-absolute"> <img src="assets/img/feature-bg-shape.svg" alt="Bg Shape"
class="img-fluid"> </div> -->
<div class="features-bg-shape-2 position-absolute"> <img src="assets/img/feature-bg-shape.svg" alt="Bg Shape"
class="img-fluid"> </div>
<div class="container">
<div class="row">
<div class="col-md-7 mb-4">
<div class="features-card h-100">
<div class="text-area mt-1">
<h3 class="fs-30 fw-bold text-gray_1 mb-3">Vertretungsberechtigte Personen</h3>
<ul class="list-unstyled mb-30">
<li class="d-flex align-items-center gap-3">
<img src="assets/img/userIcon.svg" alt="icon">
<span class="fs-18 text-indigo_dye">
<a href="#" class="text-decoration-none fw-bold text-indigo_dye">Daniel
Eskandar,</a> Geschäftsführer
</span>
</li>
</ul>
<h3 class="fs-30 fw-bold text-gray_1 mb-3">Handelsregistereintrag</h3>
<ul class="list-unstyled">
<li class="d-flex align-items-center gap-3 mb-3">
<img src="assets/img/homeIcon.svg" alt="icon">
<span class="fs-18 text-indigo_dye">
Eingetragener Firmenname: Dartera GmbH
</span>
</li>
<li class="d-flex align-items-center gap-3 mb-3">
<img src="assets/img/dashboardIcon.svg" alt="icon">
<span class="fs-18 text-indigo_dye">
Handelsregister: CHE-317.493.397
</span>
</li>
<li class="d-flex align-items-center gap-3">
<img src="assets/img/growthIcon.svg" alt="icon">
<span class="fs-18 text-indigo_dye">
MwSt.: CHE-317.493.397-MWST
</span>
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-5 mb-4">
<div class="features-card h-100">
<h3 class="fs-30 fw-bold text-gray_1 mb-3">Handelsregistereintrag</h3>
<ul class="list-unstyled">
<li class="d-flex align-items-center gap-3 mb-3">
<img src="assets/img/locationIcon.svg" alt="icon">
<span class="fs-18 text-indigo_dye">
Dartera GmbH
<br>
Zentweg 21i
<br>
3006 Bern
</span>
</li>
<li class="d-flex align-items-center gap-3 mb-3">
<img src="assets/img/envolapeIcon.svg" alt="icon">
<a href="#" class="fs-18 text-indigo_dye text-decoration-none">
</a>
</li>
<li class="d-flex align-items-center gap-3">
<img src="assets/img/phoneIcon.svg" alt="icon">
<a href="#" class="fs-18 text-indigo_dye text-decoration-none">
+41 31 552 00 72
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section End -->
<!-- process Section -/Start -->
<section class="task-section agb-feature section-padding bg-white position-relative">
<div class="features-bg-shape-1 position-absolute"> <img src="assets/img/feature-bg-shape.svg" alt="Bg Shape"
class="img-fluid"> </div>
<div class="container">
<!-- Task item - 1 -->
<div class="task-area">
<div class="task-content-area px-5">
<div class="step-number">
<span class="fs-120 fw-bold">
01
</span>
</div>
<h3 class="fs-36 text-gray_1 fw-bold mb-4">
Haftungsausschluss
</h3>
<p class="fs-5 text-lapis_lazuli fw-bold">
Der Autor übernimmt keinerlei Gewähr hinsichtlich der inhaltlichen Richtigkeit, Genauigkeit,
Aktualität, Zuverlässigkeit
und Vollständigkeit der Informationen.
</p>
<p class="text-gray_2">
Haftungsansprüche gegen den Autor wegen Schäden materieller oder immaterieller Art, welche aus
dem Zugriff oder der
Nutzung bzw. Nichtnutzung der veröffentlichten Informationen, durch Missbrauch der Verbindung
oder durch technische
Störungen entstanden sind, werden ausgeschlossen.
</p>
<p class="text-gray_2">
Alle Angebote sind unverbindlich. Der Autor behält es sich ausdrücklich vor, Teile der Seiten
oder das gesamte Angebot
ohne besondere Ankündigung zu verändern, zu ergänzen, zu löschen oder die Veröffentlichung
zeitweise oder endgültig
einzustellen.
</p>
</div>
</div>
<!-- Task item - 1 -->
<!-- Task item - 2 -->
<div class="task-area">
<div class="task-content-area px-5">
<div class="step-number">
<span class="fs-120 fw-bold">
02
</span>
</div>
<h3 class="fs-36 text-gray_1 fw-bold mb-4">
Haftungsausschluss für Links
</h3>
<p class="text-gray_2">
Verweise und Links auf Webseiten Dritter liegen ausserhalb unseres Verantwortungsbereichs. Es
wird jegliche
Verantwortung für solche Webseiten abgelehnt. Der Zugriff und die Nutzung solcher Webseiten
erfolgen auf eigene Gefahr
des jeweiligen Nutzers.
</p>
</div>
</div>
<!-- Task item - 2 -->
<!-- Task item - 3 -->
<div class="task-area">
<div class="task-content-area px-5">
<div class="step-number">
<span class="fs-120 fw-bold">
03
</span>
</div>
<h3 class="fs-36 text-gray_1 fw-bold mb-4">
Urheberrechte
</h3>
<p class="text-gray_2">
Die Urheber- und alle anderen Rechte an Inhalten, Bildern, Fotos oder anderen Dateien auf dieser
Website, gehören
ausschliesslich Daniel Eskandar oder den speziell genannten Rechteinhabern. Für die Reproduktion
jeglicher Elemente ist
die schriftliche Zustimmung des Urheberrechtsträgers im Voraus einzuholen.
</p>
<p class="text-lapis_lazuli mt-5"><span class="fs-5 fw-bold">Quelle: </span> SwissAnwalt</p>
</div>
</div>
<!-- Task item - 3 -->
</div>
</section>
<!-- process Section -/End -->
<!-- Footer section -/Start -->
<footer class="footer-area position-relative">
<div class="footer-bg-shape-1 position-absolute">
<img src="assets/img/footer-shape-1.svg" alt="Bg Shape" class="img-fluid">
</div>
<div class="container">
<!-- Fooetr top -/Start -->
<div class="footer-top">
<div class="row">
<div class="newsletter text-center">
<h4 class="fs-30 fw-bold text-white mb-2">
Newsletter
</h4>
<p class="mb-0 text-dark_6">
Abonnieren Sie unseren Newsletter, um die neuesten <br class="d-none d-lg-block">
Nachrichten und Updates zu erhalten.
</p>
<div class="subscribe-box mt-3 position-relative">
<input class="subscribe-field radius-12 w-100 text-white transition-02" type="email"
name="subscribe-mail" id="" placeholder="Geben Sie hier Ihre E-Mail ein">
<div class="subscribe-btn">
<a href="#"
class="fill-btn fw-semi-bold text-gray_1 lh-20 text-decoration-none bg-flourescent_blue radius-4 d-inline-flex align-items-center gap-2">
<span>Anmelden</span>
<span>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M0.842238 3.8902C0.646913 3.94601 0.469545 4.05186 0.327685 4.19726C0.185826 4.34267 0.0843913 4.52259 0.0334185 4.71923C-0.0175542 4.91588 -0.0162984 5.12242 0.0370618 5.31843C0.090422 5.51444 0.194037 5.69311 0.337654 5.83678L2.32799 7.82478V11.6666H6.1739L8.17765 13.6674C8.2852 13.7759 8.41313 13.8621 8.55408 13.9209C8.69504 13.9798 8.84624 14.0102 8.99899 14.0104C9.09938 14.0102 9.19935 13.9973 9.29649 13.9719C9.49305 13.9224 9.6731 13.822 9.81851 13.6808C9.96393 13.5396 10.0696 13.3626 10.1248 13.1675L13.9947 0.012207L0.842238 3.8902ZM1.16657 5.01195L11.0996 2.08362L3.49582 9.67511V7.34178L1.16657 5.01195ZM9.00657 12.8426L6.65749 10.4999H4.32415L11.9267 2.90379L9.00657 12.8426Z"
fill="#002448" />
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Fooetr top -/End -->
<!-- Fooetr Main -/Start -->
<div class="footer-main">
<div class="row">
<div class="col-sm-6 col-lg-3 mb-lg-0 mb-5">
<div class="footer-widget">
<a href="index.html" class="site-logo mb-30 d-inline-block">
<img src="assets/img/footer-logo.svg" alt="">
</a>
<ul class="widget-list list-unstyled m-0 d-flex flex-wrap gap-lg-4 gap-3 ">
<li class="widget-list-item pb-0">
<a href="#" class="text-decoration-none text-white fs-6 d-flex align-items-center">
<span class="pe-2 me-1 ">
<img src="assets/img/linkedin-white.svg" alt="LinkedIn" class="img-fluid">
</span>
<span class="widget-list-item-hover position-relative mt-1">
LinkedIn
</span>
</a>
</li>
<li class="widget-list-item pb-0">
<a href="#" class="text-decoration-none text-white fs-6 d-flex align-items-center">
<span class="pe-2 me-1 ">
<img src="assets/img/instagram-white.svg" alt="LinkedIn" class="img-fluid">
</span>
<span class="widget-list-item-hover position-relative mt-1">
Instagram
</span>
</a>
</li>
<li class="widget-list-item pb-0">
<a href="#" class="text-decoration-none text-white fs-6 d-flex align-items-center">
<span class="pe-2 me-1 ">
<img src="assets/img/facebook-white.svg" alt="LinkedIn" class="img-fluid">
</span>
<span class="widget-list-item-hover position-relative mt-1">
Facebook
</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-6 col-lg-3 mb-lg-0 mb-5">
<div class="footer-widget">
<h6
class="footer-widget-heading fw-semi-bold text-cyan text-uppercase lt-space-05 pb-4 mb-1">
Unterhalten wir uns
</h6>
<ul class="widget-list list-unstyled m-0">
<li class="widget-list-item">
<a href="tel:+41315520083"
class="text-decoration-none text-white fs-5 d-flex align-items-center">
<span class="pe-2 me-1 ">
<svg width="18" height="18" viewBox="0 0 18 18" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M18 13.42V16.956C18.0001 17.2092 17.9042 17.453 17.7316 17.6382C17.559 17.8234 17.3226 17.9363 17.07 17.954C16.633 17.984 16.276 18 16 18C7.163 18 0 10.837 0 2C0 1.724 0.015 1.367 0.046 0.93C0.06372 0.67744 0.17658 0.44101 0.3618 0.26841C0.54703 0.0958102 0.79082 -0.000109725 1.044 2.74852e-07H4.58C4.70404 -0.000129725 4.8237 0.0458602 4.91573 0.12902C5.00776 0.21218 5.0656 0.32658 5.078 0.45C5.101 0.68 5.122 0.863 5.142 1.002C5.34073 2.38892 5.748 3.73783 6.35 5.003C6.445 5.203 6.383 5.442 6.203 5.57L4.045 7.112C5.36445 10.1865 7.8145 12.6365 10.889 13.956L12.429 11.802C12.4919 11.714 12.5838 11.6509 12.6885 11.6237C12.7932 11.5964 12.9042 11.6068 13.002 11.653C14.267 12.2539 15.6156 12.6601 17.002 12.858C17.141 12.878 17.324 12.9 17.552 12.922C17.6752 12.9346 17.7894 12.9926 17.8724 13.0846C17.9553 13.1766 18.0012 13.2961 18.001 13.42H18Z"
fill="#00BAEB" />
</svg>
</span>
<span class="widget-list-item-hover position-relative">
+41 31 552 00 83
</span>
</a>
</li>
<li class="widget-list-item pb-0">
<a href="mailto:[email protected]"
class="text-decoration-none text-white fs-5 d-flex align-items-center">
<span class="pe-2 me-1 ">
<svg width="20" height="19" viewBox="0 0 20 19" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M1.25722 3.49696C0.4979 3.80069 0 4.53611 0 5.35392V16.9999C0 18.1045 0.89543 18.9999 2 18.9999H18C19.1046 18.9999 20 18.1045 20 16.9999V5.35392C20 4.53611 19.5021 3.80069 18.7428 3.49696L11.1142 0.445525C10.3989 0.159435 9.6011 0.159435 8.8858 0.445525L1.25722 3.49696ZM4.70711 7.29274C4.31658 6.90222 3.68342 6.90222 3.29289 7.29274C2.90237 7.68327 2.90237 8.31645 3.29289 8.70695L7.87868 13.2928C9.0503 14.4644 10.9497 14.4644 12.1213 13.2928L16.7071 8.70695C17.0976 8.31645 17.0976 7.68327 16.7071 7.29274C16.3166 6.90222 15.6834 6.90222 15.2929 7.29274L10.7071 11.8786C10.3166 12.2691 9.6834 12.2691 9.2929 11.8786L4.70711 7.29274Z"
fill="#00BAEB" />
</svg>
</span>
<span class="widget-list-item-hover position-relative">
mailto:[email protected]
</span>
</a>
</li>
</ul>
</div>
</div>
<div class="col-sm-6 col-lg-3 mb-lg-0 mb-5">
<div class="footer-widget">
<h6
class="footer-widget-heading fw-semi-bold text-cyan text-uppercase lt-space-05 pb-4 mb-1">
Anschrift
</h6>
<ul class="widget-list list-unstyled m-0">
<li class="widget-list-item pb-0">
<p class="text-white mb-0 fs-5">
Zentweg 21i <br> 3006 Bern
</p>
</li>
</ul>
</div>
</div>
<div class="col-sm-6 col-lg-3 mb-lg-0 mb-5">
<div class="footer-widget">
<h6
class="footer-widget-heading fw-semi-bold text-cyan text-uppercase lt-space-05 pb-4 mb-1">
Rechtliches
</h6>
<ul class="widget-list list-unstyled m-0">
<li class="widget-list-item">
<a href="#" class="text-decoration-none text-white fs-6 fw-medium">
<span class="widget-list-item-hover footer-right-arrow position-relative">
Cookie-Einstellungen
</span>
</a>
</li>
<li class="widget-list-item">
<a href="impressum.html" class="text-decoration-none text-white fs-6 fw-medium">
<span class="widget-list-item-hover footer-right-arrow position-relative">
Impressum
</span>
</a>
</li>
<li class="widget-list-item">
<a href="privacy.html" class="text-decoration-none text-white fs-6 fw-medium">
<span class="widget-list-item-hover footer-right-arrow position-relative">
Privacy
</span>
</a>
</li>
<li class="widget-list-item pb-0">
<a href="agb.html" class="text-decoration-none text-white fs-6 fw-medium">
<span class="widget-list-item-hover footer-right-arrow position-relative">
AGB
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Fooetr Main -/End -->
<div class="footer-bottom">
<div class="row align-items-center">
<div class="col-12 col-xl-5 text-xl-start text-center">
<div class="text-white fw-medium">
© 2024 Dartera GmbH
</div>
</div>
<div class="col-12 col-xl-7 text-xl-end text-center">
<div
class="footer-button-wrapper d-flex flex-wrap align-items-center justify-content-xl-end justify-content-center mt-xl-0 mt-4 gap-4">
<div class="footer-common-btn">
<a href="blog.html"
class="radius-8 text-white text-decoration-none w-100 d-flex align-items-center justify-content-between transition-02">
<span class="fw-bold ">
Blog
</span>
<span>
<svg width="12" height="11" viewBox="0 0 12 11" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M9.22446 0.214993L3.28476 0.214992L3.28476 2.17137L7.84088 2.17137L0.922998 9.08926L2.30658 10.4728L9.22446 3.55495L9.22446 8.11107L11.1808 8.11107L11.1808 2.17137C11.1808 1.65253 10.9746 1.15496 10.6077 0.78809C10.2409 0.421214 9.7433 0.215072 9.22446 0.214993V0.214993Z"
fill="#385470" />
</svg>
</span>
</a>
</div>
<div class="footer-common-btn">
<a href="ressourcen.html"
class="radius-8 text-white text-decoration-none w-100 d-flex align-items-center justify-content-between transition-02">
<span class="fw-bold ">
Ressourcen
</span>
<span>
<svg width="12" height="11" viewBox="0 0 12 11" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M9.22446 0.214993L3.28476 0.214992L3.28476 2.17137L7.84088 2.17137L0.922998 9.08926L2.30658 10.4728L9.22446 3.55495L9.22446 8.11107L11.1808 8.11107L11.1808 2.17137C11.1808 1.65253 10.9746 1.15496 10.6077 0.78809C10.2409 0.421214 9.7433 0.215072 9.22446 0.214993V0.214993Z"
fill="#385470" />
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<button type="button" class="border-0 rounded-pill" id="back-to-top">
<img src="assets/img/back-to-top-icon.svg" alt="Back To Top" class="img-fluid">
</button>
</footer>
<!-- Footer section -/End -->
<!-- sidebar1 -->
<div class="nav-sidebar">
<div class="offcanvas offcanvas-end p-2" data-bs-scroll="true" tabindex="-1" id="offcanvasWithBothOptions"
aria-labelledby="offcanvasWithBothOptionsLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title fs-30 fw-bold text-gray_1" id="offcanvasWithBothOptionsLabel">Wir freuen uns
immer mit Ihnen zu sprechen.</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<div class="offcanvas-body-top">
<p class="fs-6 text-lapis_lazuli fw-bold">Unterhalten wir uns</p>
<a href="tel:+41315520083" class="text-decoration-none d-flex align-items-center gap-2 mb-2">
<img src="assets/img/call1.png" class="img-fluid" alt="call">
<p class="text-gray_2 fs-5 mb-0">+41 31 552 00 83</p>
</a>
<a href="mailto:[email protected]" class="text-decoration-none d-flex align-items-center gap-2">
<img src="assets/img/email1.png" class="img-fluid" alt="call">
<p class="text-gray_2 fs-5 mb-0">[email protected]</p>
</a>
</div>
<div class="offcanvas-body-bottom">
<div class="nav-sidebar-item d-flex align-items-center gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/sidebar.svg" class="img-fluid" alt="sidebarlogo">
<p class="pb-0 text-lapis_lazuli fs-18 fw-bold mb-0">Termin vereinbaren</p>
</div>
<svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.4142 4.58597L8.12115 0.292969L6.70715 1.70697L10.0002 4.99997H0.000152588V6.99997H10.0002L6.70715 10.293L8.12115 11.707L12.4142 7.41397C12.7891 7.03891 12.9997 6.5303 12.9997 5.99997C12.9997 5.46964 12.7891 4.96102 12.4142 4.58597V4.58597Z"
fill="#B3CFE4" />
</svg>
</div>
<div class="nav-sidebar-item d-flex align-items-center gap-2 justify-content-between mb-3"
data-bs-toggle="offcanvas" data-bs-target="#offcanvasWithBothOptions2"
aria-controls="offcanvasWithBothOptions">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/sidebar2.svg" class="img-fluid" alt="sidebarlogo">
<p class="pb-0 text-lapis_lazuli fs-18 fw-bold mb-0">Rückruf anfordern</p>
</div>
<svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.4142 4.58597L8.12115 0.292969L6.70715 1.70697L10.0002 4.99997H0.000152588V6.99997H10.0002L6.70715 10.293L8.12115 11.707L12.4142 7.41397C12.7891 7.03891 12.9997 6.5303 12.9997 5.99997C12.9997 5.46964 12.7891 4.96102 12.4142 4.58597V4.58597Z"
fill="#B3CFE4" />
</svg>
</div>
<div class="nav-sidebar-item d-flex align-items-center gap-2 justify-content-between mb-3"
data-bs-toggle="offcanvas" data-bs-target="#offcanvasWithBothOptions3"
aria-controls="offcanvasWithBothOptions">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/sidebar4.svg" class="img-fluid" alt="sidebarlogo">
<p class="pb-0 text-lapis_lazuli fs-18 fw-bold mb-0">Nachricht senden</p>
</div>
<svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.4142 4.58597L8.12115 0.292969L6.70715 1.70697L10.0002 4.99997H0.000152588V6.99997H10.0002L6.70715 10.293L8.12115 11.707L12.4142 7.41397C12.7891 7.03891 12.9997 6.5303 12.9997 5.99997C12.9997 5.46964 12.7891 4.96102 12.4142 4.58597V4.58597Z"
fill="#B3CFE4" />
</svg>
</div>
<div class="nav-sidebar-item d-flex align-items-center gap-2 justify-content-between mb-3">
<div class="sidebar-left d-flex align-items-center gap-3">
<img src="assets/img/sidebar5.svg" class="img-fluid" alt="sidebarlogo">
<p class="pb-0 text-lapis_lazuli fs-18 fw-bold mb-0">Kontaktseite öffnen</p>
</div>
<svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M12.4142 4.58597L8.12115 0.292969L6.70715 1.70697L10.0002 4.99997H0.000152588V6.99997H10.0002L6.70715 10.293L8.12115 11.707L12.4142 7.41397C12.7891 7.03891 12.9997 6.5303 12.9997 5.99997C12.9997 5.46964 12.7891 4.96102 12.4142 4.58597V4.58597Z"
fill="#B3CFE4" />
</svg>
</div>
</div>
</div>
</div>
</div>
<!--/ sidebar1 -->
<!-- sidebar2 -->
<div class="nav-sidebar">
<div class="offcanvas offcanvas-end p-2" data-bs-scroll="true" tabindex="-1" id="offcanvasWithBothOptions2"
aria-labelledby="offcanvasWithBothOptionsLabel">
<div class="offcanvas-header d-block">
<a href="#" class="d-block text-lapis_lazuli fs-6 text-decoration-none" data-bs-toggle="offcanvas"
data-bs-target="#offcanvasWithBothOptions" aria-controls="offcanvasWithBothOptions">
<svg class="me-1" width="11" height="10" viewBox="0 0 11 10" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M10.8332 4.16664H2.49987L5.24403 1.42247L4.0657 0.244141L0.488199 3.82164C0.175747 4.13419 0.000221252 4.55803 0.000221252 4.99997C0.000221252 5.44191 0.175747 5.86576 0.488199 6.17831L4.0657 9.75581L5.24403 8.57747L2.49987 5.83331H10.8332V4.16664Z"
fill="#015EA5" />
</svg>
Zurück
</a>
<h5 class="offcanvas-title fs-30 fw-bold text-gray_1 mt-3" id="offcanvasWithBothOptionsLabel">Rückruf
anfordern</h5>
<p class="fs-14 text-gray_2 mt-2">Wir werden uns für ein Gespräch bei Ihnen melden.</p>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<div class="offcanvas-body-top">
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label fs-14 fw-medium text-gray_1 ls-5">Ihren
Namen</label>
<input type="email" class="form-control fs-14 fw-medium text-gray_4"
id="exampleFormControlInput1 ls-5" placeholder="Daniel">
</div>
<div class="mb-3">
<label for="exampleFormControlInput1"
class="form-label fs-14 fw-medium text-gray_1 ls-5">E-Mail</label>
<input type="email" class="form-control fs-14 fw-medium text-gray_4"
id="exampleFormControlInput1 ls-5" placeholder="[email protected]">
</div>
<div class="mb-1">
<label for="exampleFormControlInput1"
class="form-label fs-14 fw-medium text-gray_1 ls-5">Telefonnummer</label>
<input type="email" class="form-control fs-14 fw-medium text-gray_4"
id="exampleFormControlInput1 ls-5" placeholder="+41 31 552 00 83">
</div>
</div>
<div class="offcanvas-body-bottom common-border-b pb-4 mb-4">
<h3 class="fs-20 fw-bold text-gray_1 mb-3">Ich suche</h3>
<div class="row">
<div class="col-xl-6">
<div class="form-check pt-2">
<input class="form-check-input" type="checkbox" value="" id="flexCheckChecked" checked>
<label class="form-check-label fs-6 text-gray_2" for="flexCheckChecked">
SEA
</label>
</div>
<div class="form-check pt-2">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label fs-6 text-gray_2" for="flexCheckDefault">
Webdesign
</label>
</div>
<div class="form-check pt-2">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label fs-6 text-gray_2" for="flexCheckDefault">
Content
</label>
</div>
<div class="form-check pt-2">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label fs-6 text-gray_2" for="flexCheckDefault">
Animations
</label>
</div>
</div>
<div class="col-xl-6">
<div class="form-check pt-2">
<input class="form-check-input" type="checkbox" value="" id="flexCheckChecked">
<label class="form-check-label fs-6 text-gray_2" for="flexCheckChecked">
SEO
</label>
</div>
<div class="form-check pt-2">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label fs-6 text-gray_2" for="flexCheckDefault">
Maintenance
</label>
</div>
<div class="form-check pt-2">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label fs-6 text-gray_2" for="flexCheckDefault">
Webdesign
</label>