-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpower-growth.html
1474 lines (1378 loc) · 90.7 KB
/
power-growth.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>Power Growth</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" type="text/css"
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap">
<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 banner-wrapper">
<div class="col-lg-6 mb-5 mb-lg-0">
<div class="banner-left text-lg-start text-center">
<div
class="badge px-3 text-cyan fs-18 fw-semi-bold d-inline-flex align-items-center justify-content-center">
<p class="mb-0">SEO Schritt 4 von 4</p>
</div>
<h1 class="fs-48 fw-bold text-white mt-4">
Power Growth
</h1>
<p class="fs-18 text-light_white mt-3 mb-30">
Die Autorität Ihrer Website wird durch unsere hochwertigen Backlinks deutlich erhöht, so
dass wir Ihre Position in
Google nachhaltig festigen.
</p>
<!-- Common Buttons -/ Start -->
<div
class="common-btn d-flex flex-wrap align-items-center justify-content-lg-start justify-content-center gap-3">
<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>Kostenloses Audit</span>
<span>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M14.5117 8.82164L10.9342 5.24414L9.75591 6.42247L12.5001 9.16664H4.16675V10.8333H12.5001L9.75591 13.5775L10.9342 14.7558L14.5117 11.1783C14.8242 10.8658 14.9997 10.4419 14.9997 9.99997C14.9997 9.55803 14.8242 9.13419 14.5117 8.82164Z"
fill="#002448" />
</svg>
</span>
</a>
<a href="#"
class="minimal-btn cyan-border fw-semi-bold text-flourescent_blue lh-20 text-decoration-none radius-4 d-inline-flex align-items-center gap-2">
<span>Buchen Sie einen Rückruf</span>
<span class="">
<svg 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="#00F5EB" />
</svg>
</span>
</a>
</div>
<!-- Common Buttons -/ End -->
</div>
</div>
<div class="col-lg-6">
<div class="ps-4 text-lg-start text-center">
<img src="assets/img/power-growth-hero-img.png" class="img-fluid" alt="banner">
</div>
</div>
</div>
</div>
</section>
<!--/ Banner -->
<!-- research feature start -->
<section class="rearch-section section-padding bg-white">
<div class="container">
<div class="row">
<div class="col-lg-6 mb-4 mb-lg-0">
<div class="list-card h-100">
<h3 class="fs-36 fw-bold text-gray_1 mb-30">Was ist dabei</h3>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Link Audit
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Link Strategy
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Link Building
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Link Campaigns
</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="list-card h-100">
<h3 class="fs-36 fw-bold text-gray_1 mb-30">Was ist das Resultat?</h3>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Bereinigung des Link-Profils
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Liste der Link-Building-Ziele
</p>
</div>
<div class="d-flex align-items-start gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
High Authority Links
</p>
</div>
<div class="d-flex align-items-center gap-3 mb-3">
<img class="img-fluid" src="./assets/img/list-icon.svg" alt="icon">
<p class="fs-18 text-gray_2 m-0">
Konkretes, weiteres Vorgehen
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--/ research feature end -->
<!-- /full width highlight -/Start -->
<section class="fullwidth-highlight">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-7">
<div class="section-centent text-lg-start text-center">
<h2 class="fs-44 fw-bold text-light_white mb-0">
Laut <span>
<img src="assets/img/hubspot.svg" alt="amazon icon" class="img-fluid">
</span> Hubspot besteht die Such maschinen optimieung aus <span
class=" text-flourescent_blue"> 75 % OffPage- und <br class="d-none d-lg-block">
25 % OnPage Optimierung.</span>
</h2>
</div>
</div>
<div class="col-lg-5">
<div class="">
<img src="assets/img/power-growth-hubspot.svg" alt="Hubspot" class="img-fluid">
</div>
</div>
</div>
</div>
</section>
<!-- /full width highlight -/End -->
<!-- Deep research Section -/Start -->
<section class="task-section section-padding bg-white">
<div class="container">
<!-- Task item - 1 -->
<div class="task-area ">
<div class="row align-items-center gx-5 ">
<div class="col-lg-6">
<div class="task-img text-lg-start text-center">
<img src="assets/img/link-building.png" alt="Task One" class="img-fluid">
</div>
</div>
<div class="col-lg-6">
<div class="task-content-area text-sm-start text-center">
<h3 class="fs-48 text-gray_1 fw-bold mb-4">
Link Building
</h3>
<div class="quality">
<p class="fs-18 text-gray_2">
Link Building ist der Aufbau von Links von anderen Websites zu Ihrer Website oder
Ihrem Online-Shop. Diese Backlinks legen das Fundament für eine bessere
Auffindbarkeit im Internet. So können Sie bessere Platzierungen in Google erreichen
und die Autorität Ihrer Website erhöhen. Die Wirkung von guten Inhalten auf einer
Website oder einem Online-Shop kommt dann zum Tragen, wenn die Popularität
gesteigert wird. Mit Hilfe des Linkaufbaus sorgen wir dafür, dass Ihre Website
populärer wird und an Autorität gewinnt, was in der Regel Ihre Platzierung in den
Suchmaschinen erhöht.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Task item - 1 -->
<!-- Task item - 2 -->
<div class="task-area">
<div class="row align-items-center gx-5 flex-lg-row flex-column flex-column-reverse">
<div class="col-lg-6">
<div class="task-content-area text-sm-start text-center">
<h3 class="fs-48 text-gray_1 fw-bold mb-4">
Wir bauen White Hat Links auf, die zu überragenden Rankings führen
</h3>
<div class="quality">
<p class="fs-18 text-gray_2">
Mit einem prozessgesteuerten Ansatz und einer innovativen Linkbuilding-Strategie
verbessern unsere Linkbuilding-Services Ihr Suchmaschinenranking und Ihre
SEO-Leistung erheblich.
<br class="d-none d-lg-block"> <br class="d-none d-lg-block">
Unser Prozess funktioniert durch den Erwerb von relevanten Links zu wichtigen
Zielseiten auf Ihrer Domain, was der wichtigste Ranking-Faktor ist.
</p>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="task-img">
<img src="assets/img/organic-traffic.png" alt="Task One" class="img-fluid">
</div>
</div>
</div>
</div>
<!-- Task item - 2 -->
</div>
</section>
<!-- Deep research Section -/End -->
<!-- seo process Section -/Start -->
<section class="task-section section-padding pt-0 bg-white">
<div class="section-heading text-center section-padding pb-0 pg-heading-bg">
<h6 class="sub-title fs-18 fw-semi-bold text-lapis_lazuli bg-lapis_lazuli_light radius-4 d-inline-block">
Vorgehen
</h6>
<h2 class="fs-48 fw-bold text-gray_1 mt-2 pb-5">
Der Weg zum Erfolg
</h2>
</div>
<div class="container">
<!-- Task item - 1 -->
<div class="task-area pt-0">
<div class="row align-items-center flex-lg-row flex-column flex-column-reverse gx-5">
<div class="col-lg-6">
<div class="task-img text-lg-start text-center">
<img src="assets/img/pg-strategy.png" alt="Task One" class="img-fluid">
</div>
</div>
<div class="col-lg-6">
<div class="task-content-area px-1 text-sm-start text-center">
<div class="step-number">
<span class="fs-120 fw-bold">
01
</span>
</div>
<h3 class="fs-36 text-gray_1 fw-bold">
Strategy
</h3>
<p class="fs-18 text-gray_2">
Unser kundenspezifischer Linkaufbau-Prozess umfasst über 20 verschiedene
Linkaufbau-Strategien, die für jede Website funktionieren. Wir verwenden Daten von
Mitbewerbern, um den optimalen Linkaufbau-Plan für Ihre Website zu erstellen.
</p>
</div>
</div>
</div>
</div>
<!-- Task item - 1 -->
<!-- Task item - 2 -->
<div class="task-area">
<div class="row align-items-center gx-5">
<div class="col-lg-6">
<div class="task-content-area px-1 text-sm-start text-center">
<div class="step-number">
<span class="fs-120 fw-bold">
02
</span>
</div>
<h3 class="fs-36 text-gray_1 fw-bold">
Outreach
</h3>
<p class="fs-18 text-gray_2">
Wir zielen auf erstklassige Websites und Influencer ab, die für die Nische und den
Inhalt unserer Kunden relevant sind, und starten bewährte Outreach-Kampagnen. Unsere
Outreach-Technik wird ständig angepasst, um die besten Reaktionsraten und Ergebnisse zu
erzielen.
</p>
</div>
</div>
<div class="col-lg-6">
<div class="task-img text-lg-start text-center">
<img src="assets/img/pg-outreach.png" alt="Task One" class="img-fluid">
</div>
</div>
</div>
</div>
<!-- Task item - 2 -->
<!-- Task item - 3 -->
<div class="task-area">
<div class="row align-items-center gx-5 flex-lg-row flex-column flex-column-reverse">
<div class="col-lg-6">
<div class="task-img text-lg-start text-center">
<img src="assets/img/pg-backlinks.png" alt="Task One" class="img-fluid">
</div>
</div>
<div class="col-lg-6">
<div class="task-content-area px-1 text-sm-start text-center">
<div class="step-number">
<span class="fs-120 fw-bold">
03
</span>
</div>
<h3 class="fs-36 text-gray_1 fw-bold">
Backlinks
</h3>
<p class="fs-18 text-gray_2">
Mit einer Vielzahl von White-Hat-Linkbuilding-Methoden gewinnen wir für unsere Kunden
stets bedeutende Links. Unser Ziel ist es, ein solides Backlink-Profil aufzubauen, das
Sie von Ihren Mitbewerbern abhebt.
</p>
</div>
</div>
</div>
</div>
<!-- Task item - 3 -->
<!-- Task item - 4 -->
<div class="task-area ">
<div class="row align-items-center gx-5">
<div class="col-lg-6">
<div class="task-content-area px-1 text-sm-start text-center">
<div class="step-number">
<span class="fs-120 fw-bold">
04
</span>
</div>
<h3 class="fs-36 text-gray_1 fw-bold">
Results
</h3>
<p class="fs-18 text-gray_2">
Suchmaschinen lieben die Links, die wir aufbauen. Und unsere Kunden vertrauen darauf,
dass wir Links aufbauen, die sich positiv auf ihre SEO-Rankings auswirken. Wir messen
die Ergebnisse und arbeiten mit unseren Kunden zusammen, um unsere Kampagnen zu
verbessern und unsere Linkaufbau-Taktiken anzupassen.
</p>
</div>
</div>
<div class="col-lg-6">
<div class="task-img text-lg-start text-center">
<img src="assets/img/pg-results.png" alt="Task One" class="img-fluid">
</div>
</div>
</div>
</div>
<!-- Task item - 4 -->
</div>
</section>
<!-- SEO process Section -/End -->
<!-- Call To Action -/Start -->
<section class="call-to-action-area section-padding bg-indigo_dye position-relative">
<div class="CTA-bg-shape-1 position-absolute start-0">
<img src="assets/img/call-to-action-shape-1.png" alt="Bg Shape" class="img-fluid">
</div>
<div class="CTA-bg-shape-2 position-absolute end-0 bottom-0">
<img src="assets/img/call-to-action-shape-2.png" alt="Bg Shape" class="img-fluid">
</div>
<div class="container">
<div class="call-to-action-inner-wrap position-relative">
<div class="section-heading text-center pb-3">
<h2 class="fs-48 fw-bold text-white mb-3">
Weil gutes Marketing schon immer <br class="d-none d-lg-block"> glücklich gemacht hat.
</h2>
<p class="fs-18 text-white mb-0">
Buchen Sie jetzt einen kostenlosen Beratungstermin. Wir freuen uns auf das Gespräch.
</p>
</div>
<!-- Common Buttons -/ Start -->
<div class="common-btn text-center my-3 pb-4">
<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"
data-bs-toggle="offcanvas" data-bs-target="#offcanvasWithBothOptions"
aria-controls="offcanvasWithBothOptions"> <span>Buchen Sie einen Rückruf</span>
<span>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M14.5117 8.82164L10.9342 5.24414L9.75591 6.42247L12.5001 9.16664H4.16675V10.8333H12.5001L9.75591 13.5775L10.9342 14.7558L14.5117 11.1783C14.8242 10.8658 14.9997 10.4419 14.9997 9.99997C14.9997 9.55803 14.8242 9.13419 14.5117 8.82164Z"
fill="#002448" />
</svg>
</span>
</a>
</div>
<!-- Common Buttons -/ End -->
<!-- Call to action Form -/Start -->
<div class="call-to-action-inner bg-white radius-12">
<div class="row align-items-center gx-5">
<div class="col-lg-6">
<div class="CTA-left">
<div class="">
<img src="assets/img/call-to-action-section-img.png" alt="Call to action"
class="img-fluid">
</div>
<a href="tel:+41315520083"
class="CTA-call-btn d-flex align-items-center gap-3 text-decoration-none rounded-pill mx-3">
<span class="CTA-call-icon">
<img src="assets/img/call-icon-with-bg.svg" alt="Call to action"
class="img-fluid">
</span>
<span class="">
<span class="fs-5 fw-bold text-gray_8 d-block mb-1">
Rufen Sie uns an
</span>
<span class="fs-30 fw-bold text-indigo_dye d-block">
+41 31 552 00 83
</span>
</span>
</a>
</div>
</div>
<div class="col-lg-6 mt-lg-0 mt-5">
<div class="CTA-form-wrapper">
<h4 class="fs-30 fw-bold mb-0">
Kostenloses Audit in <br class="d-none d-lg-block"> nur 1 Minute.
</h4>
<form class="CTA-form">
<div class="mb-3">
<label for="myemail"
class="fs-14 text-gray_1 lt-space-05 fw-medium mb-1">E-Mail</label>
<input type="email" class="form-control radius-4 text-gray_4"
placeholder="[email protected]" id="myemail">
</div>
<div class="mb-3">
<label for="mynumber"
class="fs-14 text-gray_1 lt-space-05 fw-medium mb-1">Telefon</label>
<input type="text" class="form-control radius-4 text-gray_4"
placeholder="+41 31 552 00 83" id="mynumber">
</div>
<div class="mb-3">
<label for="webAdress"
class="fs-14 text-gray_1 lt-space-05 fw-medium mb-1">Website-Adresse</label>
<input type="url" class="form-control radius-4 text-gray_4 web-url-field"
placeholder="www.dartera.ch" id="webAdress">
</div>
<!-- Common Buttons -/ Start -->
<div class="common-btn text-center pt-3">
<a href="#"
class="fill-btn fw-semi-bold text-gray_1 lh-20 text-decoration-none bg-flourescent_blue radius-4 d-flex align-items-center gap-2 justify-content-center">
<span>Lassen Sie es uns prüfen</span>
<span>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M14.5117 8.82164L10.9342 5.24414L9.75591 6.42247L12.5001 9.16664H4.16675V10.8333H12.5001L9.75591 13.5775L10.9342 14.7558L14.5117 11.1783C14.8242 10.8658 14.9997 10.4419 14.9997 9.99997C14.9997 9.55803 14.8242 9.13419 14.5117 8.82164Z"
fill="#002448" />
</svg>
</span>
</a>
</div>
<!-- Common Buttons -/ End -->
</form>
</div>
</div>
</div>
</div>
<!-- Call to action Form -/End -->
</div>
</div>
</section>
<!-- Call To Action -/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>