-
Notifications
You must be signed in to change notification settings - Fork 0
/
animations.html
1711 lines (1613 loc) · 105 KB
/
animations.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>Animations</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="contact toggle">
</div>
<div class="container">
<div class="row gx-0 align-items-center banner-wrapper">
<div class="col-lg-6">
<div class="banner-left text-lg-start text-center mb-5 mb-lg-0">
<div
class="subpage-badge px-3 text-cyan fs-18 fw-semi-bold d-inline-flex gap-2 align-items-center justify-content-center">
<img src="assets/img/animation-page-icon.svg" alt="settings icon" class="img-fluid">
<p class="mb-0">
Animations
</p>
</div>
<h1 class="fs-48 fw-bold text-white mt-4">
Die Animationen, nach denen Sie schon lange gesucht haben.
</h1>
<p class="fs-18 text-light_white mt-4 mb-5">
Wir schaffen unvergessliche <a href="#"
class="text-flourescent_blue text-decoration-none text-hover">Erlebnisse mit
Bewegungen.</a> Für Websites, Videos, E-Mails und mehr.
</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>Referenzen</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-lg-4 text-lg-start text-center">
<img src="assets/img/animations-banner-img.png" class="img-fluid" alt="banner">
</div>
</div>
</div>
</div>
</section>
<!--/ Banner -->
<!-- process Section -/Start -->
<section class="task-section section-padding bg-white">
<div class="container">
<div class="section-heading text-center">
<h6
class="sub-title fs-18 fw-semi-bold text-lapis_lazuli bg-lapis_lazuli_light radius-4 d-inline-block">
Angebot
</h6>
<h2 class="fs-48 fw-bold text-gray_1 mt-2 mb-3">
Animationen die man sich merkt
</h2>
</div>
<!-- Task item - 1 -->
<div class="task-area">
<div class="row align-items-center gx-5">
<div class="col-lg-6">
<div class="task-content-area px-4 px-lg-5 text-lg-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">
Animierte Illustrationen
</h3>
<p class="fs-18 text-gray_2">
Bringen Sie Bewegung in Ihre Website und binden Sie Ihre Kunden stärker ein – mit
Illustrationen, die sich bewegen.
</p>
</div>
</div>
<div class="col-lg-6">
<div class="task-img text-lg-start text-center">
<img src="assets/img/animations-img-1.png" alt="Task One" class="img-fluid">
</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-img text-lg-start text-center">
<img src="assets/img/animations-img-2.png" alt="Task One" class="img-fluid">
</div>
</div>
<div class="col-lg-6">
<div class="task-content-area px-4 px-lg-5 text-lg-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">
Animierte Logos
</h3>
<p class="fs-18 text-gray_2">
Individuell animierte Logos verleihen Ihrer Marke ein dramatisches Flair und zeigen der
Welt, dass jedes Detail zählt.
</p>
</div>
</div>
</div>
</div>
<!-- Task item - 2 -->
<!-- Task item - 3 -->
<div class="task-area">
<div class="row align-items-center gx-5 ">
<div class="col-lg-6">
<div class="task-content-area px-4 px-lg-5 text-lg-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">
Production Intros
</h3>
<p class="fs-18 text-gray_2">
Ein animiertes Intro fesselt Ihr Publikum vom ersten Augenblick an. Von
Social-Media-Inhalten über Werbevideos bis hin
zu Websiteintros: Animationen erhöhen den Wert, unterhalten und erweitern Ihr Branding
bis zum letzten Bild.
</p>
</div>
</div>
<div class="col-lg-6">
<div class="task-img text-lg-start text-center">
<img src="assets/img/animations-img-3.png" alt="Task One" class="img-fluid">
</div>
</div>
</div>
</div>
<!-- Task item - 3 -->
<!-- Task item - 4 -->
<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/typography-add.png" alt="Task One" class="img-fluid">
</div>
</div>
<div class="col-lg-6">
<div class="task-content-area px-4 px-lg-5 text-lg-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">
Kinetic Typography Ads
</h3>
<p class="fs-18 text-gray_2">
Zu viele Wörter in Ihrem Text können für Ihre Betrachter überwältigend sein. Unsere
Kunst des Einsatzes von ansprechenden Schriftarten, auffälligen Texteffekten,
Hintergrundfarbmustern und animierten Zeichen ist einzigartig, insbesondere in der
heutigen Zeit, in der kinetische Typografievideos ein wichtiges Werbemittel sind.
</p>
</div>
</div>
</div>
</div>
<!-- Task item - 4 -->
</div>
</section>
<!-- process Section -/End -->
<!-- Design Tools Slider start -->
<section class="design-tools-slider section-padding">
<div class="container">
<h2 class="fs-48 fw-bold text-white text-center">Unsere technische Expertise <br> im Bereich der Animationen
</h2>
</div>
<div class="animation-slider-wrap d-flex gap-4 pt-60">
<div
class="animation-slide-item bg-indigo_dye w-100 position-relative d-flex align-items-center justify-content-center flex-shrink-0">
<div class="">
<img src="assets/img/lottiefile-icon.png" alt="Luminar ai" class="img-fluid">
</div>
<p class="animLogo-name mb-0 fw-medium text-thristle_purple position-absolute">
LottieFiles
</p>
</div>
<div
class="animation-slide-item bg-indigo_dye w-100 position-relative d-flex align-items-center justify-content-center flex-shrink-0">
<div class="">
<img src="assets/img/photoshop-icon.png" alt="Luminar ai" class="img-fluid">
</div>
<p class="animLogo-name mb-0 fw-medium text-thristle_purple position-absolute">
Adobe Photoshop
</p>
</div>
<div
class="animation-slide-item bg-indigo_dye w-100 position-relative d-flex align-items-center justify-content-center flex-shrink-0">
<div class="">
<img src="assets/img/luminar-ai-icon.png" alt="Luminar ai" class="img-fluid">
</div>
<p class="animLogo-name mb-0 fw-medium text-thristle_purple position-absolute">
Skylum Luminar AI
</p>
</div>
<div
class="animation-slide-item bg-indigo_dye w-100 position-relative d-flex align-items-center justify-content-center flex-shrink-0">
<div class="">
<img src="assets/img/after-effect-icon.png" alt="Luminar ai" class="img-fluid">
</div>
<p class="animLogo-name mb-0 fw-medium text-thristle_purple position-absolute">
Adobe After Effects
</p>
</div>
<div
class="animation-slide-item bg-indigo_dye w-100 position-relative d-flex align-items-center justify-content-center flex-shrink-0">
<div class="">
<img src="assets/img/illustrator-icon.png" alt="Luminar ai" class="img-fluid">
</div>
<p class="animLogo-name mb-0 fw-medium text-thristle_purple position-absolute">
Adobe Illustrator
</p>
</div>
<div
class="animation-slide-item bg-indigo_dye w-100 position-relative d-flex align-items-center justify-content-center flex-shrink-0">
<div class="">
<img src="assets/img/lottiefile-icon.png" alt="Luminar ai" class="img-fluid">
</div>
<p class="animLogo-name mb-0 fw-medium text-thristle_purple position-absolute">
LottieFiles
</p>
</div>
<div
class="animation-slide-item bg-indigo_dye w-100 position-relative d-flex align-items-center justify-content-center flex-shrink-0">
<div class="">
<img src="assets/img/photoshop-icon.png" alt="Luminar ai" class="img-fluid">
</div>
<p class="animLogo-name mb-0 fw-medium text-thristle_purple position-absolute">
Adobe Photoshop
</p>
</div>
<div
class="animation-slide-item bg-indigo_dye w-100 position-relative d-flex align-items-center justify-content-center flex-shrink-0">
<div class="">
<img src="assets/img/luminar-ai-icon.png" alt="Luminar ai" class="img-fluid">
</div>
<p class="animLogo-name mb-0 fw-medium text-thristle_purple position-absolute">
Skylum Luminar AI
</p>
</div>
<div
class="animation-slide-item bg-indigo_dye w-100 position-relative d-flex align-items-center justify-content-center flex-shrink-0">
<div class="">
<img src="assets/img/after-effect-icon.png" alt="Luminar ai" class="img-fluid">
</div>
<p class="animLogo-name mb-0 fw-medium text-thristle_purple position-absolute">
Adobe After Effects
</p>
</div>
<div
class="animation-slide-item bg-indigo_dye w-100 position-relative d-flex align-items-center justify-content-center flex-shrink-0">
<div class="">
<img src="assets/img/illustrator-icon.png" alt="Luminar ai" class="img-fluid">
</div>
<p class="animLogo-name mb-0 fw-medium text-thristle_purple position-absolute">
Adobe Illustrator
</p>
</div>
</div>
</section>
<!-- Design Tools Slider end -->
<!-- Animation Task Start -->
<section class="task-section section-padding bg-white">
<div class="container">
<!-- Task item - 1 -->
<div class="mt-0">
<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/animation-task-img.png" alt="Task One" class="img-fluid">
</div>
</div>
<div class="col-lg-6">
<div class="task-content-area text-lg-start text-center">
<h3 class="fs-36 text-gray_1 fw-bold mb-30">
Sagen Sie es mit Bewegung: Unvergessliche Website-Animation
</h3>
<div class="quality">
<p class="fs-18 text-gray_2 mb-0">
Wir verleihen Ihren Ideen einen kreativen und einprägsamen Touch und sorgen dafür,
dass die Illustrationen Ihre Ideen
wunderschön darstellen und perfekt auf Ihre Marke abgestimmt sind. Unsere
Illustrationen sind einzigartig, exklusiv und
voller Innovation.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Task item - 1 -->
</div>
</section>
<!-- Animation Task end -->
<!-- Common Slider Start -->
<section class="common-slider section-padding bg-gray_7">
<div class="container">
<div class="section-heading text-center mb-5 pb-2">
<h6
class="sub-title fs-18 fw-semi-bold text-lapis_lazuli bg-lapis_lazuli_light radius-4 d-inline-block">
Portfolio
</h6>
<h2 class="fs-48 fw-bold text-gray_1 mt-2 mb-3">
Eine Auswahl unserer Projekte
</h2>
</div>
<div id="common-slider" class="owl-carousel owl-theme">
<!--slider 1 -->
<div class="item">
<div class="slider-card position-relative">
<div class="img-box">
<img class="img-fluid slide-img" src="assets/img/slider-img2.png" alt="img" />
<div
class="btn-wrap position-absolute bottom-0 start-0 end-0 d-flex justify-content-center px-2">
<a href="#"
class="slider-btn fs-5 fw-bold text-gray_1 text-decoration-none bg-flourescent_blue radius-4 d-inline-flex justify-content-between align-items-center gap-2">
<span>Webdesign </span>
<span class="ni ni-forward-ios fs-14 fw-bold"></span>
</a>
</div>
</div>
</div>
</div>
<!--END OF slider 1 -->
<!--slidr 2 -->
<div class="item">
<div class="slider-card position-relative">
<div class="img-box">
<img class="img-fluid slide-img" src="assets/img/slider-img3.png" alt="img" />
<div
class="btn-wrap position-absolute bottom-0 start-0 end-0 d-flex justify-content-center px-2">
<a href="#"
class="slider-btn fs-5 fw-bold text-gray_1 text-decoration-none bg-flourescent_blue radius-4 d-inline-flex justify-content-between align-items-center gap-2">
<span>Webdesign </span>
<span class="ni ni-forward-ios fs-14 fw-bold"></span>
</a>
</div>
</div>
</div>
</div>
<!--END OF slider 2 -->
<!--slider 3 -->
<div class="item">
<div class="slider-card position-relative">
<div class="img-box">
<img class="img-fluid slide-img" src="assets/img/slider-img3.png" alt="img" />
<div
class="btn-wrap position-absolute bottom-0 start-0 end-0 d-flex justify-content-center px-2">
<a href="#"
class="slider-btn fs-5 fw-bold text-gray_1 text-decoration-none bg-flourescent_blue radius-4 d-inline-flex justify-content-between align-items-center gap-2">
<span>Webdesign </span>
<span class="ni ni-forward-ios fs-14 fw-bold"></span>
</a>
</div>
</div>
</div>
</div>
<!--END OF slider 3 -->
<!--slider 4 -->
<div class="item">
<div class="slider-card position-relative">
<div class="img-box">
<img class="img-fluid slide-img" src="assets/img/slider-img2.png" alt="img" />
<div
class="btn-wrap position-absolute bottom-0 start-0 end-0 d-flex justify-content-center px-2">
<a href="#"
class="slider-btn fs-5 fw-bold text-gray_1 text-decoration-none bg-flourescent_blue radius-4 d-inline-flex justify-content-between align-items-center gap-2">
<span>Webdesign </span>
<span class="ni ni-forward-ios fs-14 fw-bold"></span>
</a>
</div>
</div>
</div>
</div>
<!--End slider 4 -->
<!--slider 5 -->
<div class="item">
<div class="slider-card position-relative">
<div class="img-box">
<img class="img-fluid slide-img" src="assets/img/slider-img1.png" alt="img" />
<div
class="btn-wrap position-absolute bottom-0 start-0 end-0 d-flex justify-content-center px-2">
<a href="#"
class="slider-btn fs-5 fw-bold text-gray_1 text-decoration-none bg-flourescent_blue radius-4 d-inline-flex justify-content-between align-items-center gap-2">
<span>Webdesign </span>
<span class="ni ni-forward-ios fs-14 fw-bold"></span>
</a>
</div>
</div>
</div>
</div>
<!--END OF slider 5 -->
</div>
</div>
</section>
<!-- Common Slider Start -->
<!-- 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"></a> <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 -->
<!-- FAQ's -Start -->
<div id="faq" class="section-padding bg-white">
<div class="container">
<div class="faq-wrapper">
<div class="section-heading text-center">
<h6
class="sub-title fs-18 fw-semi-bold text-lapis_lazuli bg-lapis_lazuli_light radius-4 d-inline-block">
FAQ
</h6>
<h2 class="fs-48 fw-bold text-gray_1 mt-2 mb-3">
Häufig gestellte Fragen
</h2>
</div>
</div>
<div class="faq">
<div class="row pt-5">
<div class="col-xl-6">
<ul class="accordion-list list-unstyled">
<li class="accordion-list-item radius-16 bg-white mb-2 open">
<h5
class="accordion-title fw-bold fs-20 text-gray_3 px-4 d-flex justify-content-between align-items-center">
Warum sollten Sie mit einer PPC-Agentur zusammenarbeiten?
<span class="ni ni-minus"></span>
</h5>
<div class="accordion-desc">
<p class="px-4 m-0 fw-normal fs-16 text-gray_3">
Amazon Web Services (AWS) ist eine sichere Plattform für Cloud-Dienste,
<a href="#" class="text-indigo_dye fw-bold text-decoration-none">
die
Rechenleistung, Datenbankspeicher, Inhaltsbereitstellung und andere
Funktionen
bietet, um Unternehmen beim Skalieren und Wachsen zu helfen.
</a> Web- und
Anwendungsserver werden in der Cloud betrieben, um dynamische Websites zu
hosten.
</p>
</div>
</li>
<li class="accordion-list-item radius-16 bg-white mb-2">
<h5
class="accordion-title fw-bold fs-20 text-gray_3 px-4 d-flex justify-content-between align-items-center">
Mit wem werde ich bei Dartera sprechen?
<span class="ni ni-plus-sm"></span>
</h5>
<div class="accordion-desc" style="display: none">
<p class="px-4 m-0 fw-normal fs-16 text-gray_3">
Natürlich werden Sie mit einem speziellen PPC-Experten zusammenarbeiten. Unser
Unternehmen verfügt über voll zertifizierte PPC-Experten. Unser Team, das
regelmässig Strategien und Kampagnen entwickelt, arbeitet mit Ihnen mit viel
Energie daran, Ihren Erfolg zu maximieren und Ihre Ziele zu erreichen.