-
Notifications
You must be signed in to change notification settings - Fork 0
/
ueber-uns.html
1069 lines (1052 loc) · 50.9 KB
/
ueber-uns.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="wide wow-animation" lang="en">
<head>
<title>Wolkenhof - Über uns</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="images/favicon-96x96.png" type="image/x-icon">
<link rel="stylesheet" type="text/css"
href="//fonts.googleapis.com/css?family=Montserrat:300,400,700%7CPoppins:300,400,500,700,900">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/snippet-styles.css">
<style>
.ie-panel {
display: none;
background: #212121;
padding: 10px 0;
box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, .3);
clear: both;
text-align: center;
position: relative;
z-index: 1;
}
html.ie-10 .ie-panel,
html.lt-ie-10 .ie-panel {
display: block;
}
</style>
</head>
<body>
<div class="ie-panel"><a href="http://windows.microsoft.com/en-US/internet-explorer/"><img
src="images/ie8-panel/warning_bar_0000_us.jpg" height="42" width="820"
alt="Der von ihnen benutzte Browser ist veraltet. Bitte nutzen sie eine neuere Version."></a>
</div>
<div class="preloader">
<div class="preloader-body">
<div class="cssload-container">
<div class="cssload-speeding-wheel"></div>
</div>
<p>Loading...</p>
</div>
</div>
<div class="page">
<header class="section page-header">
<!--RD Navbar-->
<div class="rd-navbar-wrap">
<nav class="rd-navbar rd-navbar-classic" data-layout="rd-navbar-fixed" data-sm-layout="rd-navbar-fixed"
data-md-layout="rd-navbar-fixed" data-md-device-layout="rd-navbar-fixed" data-lg-layout="rd-navbar-static"
data-lg-device-layout="rd-navbar-static" data-xl-layout="rd-navbar-static"
data-xl-device-layout="rd-navbar-static" data-lg-stick-up-offset="46px" data-xl-stick-up-offset="46px"
data-xxl-stick-up-offset="46px" data-lg-stick-up="true" data-xl-stick-up="true" data-xxl-stick-up="true">
<div class="rd-navbar-collapse-toggle rd-navbar-fixed-element-1" data-rd-navbar-toggle=".rd-navbar-collapse">
<span></span>
</div>
<div class="rd-navbar-main-outer">
<div class="rd-navbar-main">
<!--RD Navbar Panel-->
<div class="rd-navbar-panel">
<!--RD Navbar Toggle-->
<button class="rd-navbar-toggle" data-rd-navbar-toggle=".rd-navbar-nav-wrap"><span></span></button>
<!--RD Navbar Brand-->
<div class="rd-navbar-brand">
<!--Brand--><a class="brand" href="index.html"><img class="brand-logo-dark"
src="images/Wolkenhof_Logo-weiss.png" alt="" width="100" height="15" /><img
class="brand-logo-light" src="images/Wolkenhof_Logo-weiss.png" alt="" width="100"
height="17" /></a>
</div>
</div>
<div class="rd-navbar-main-element">
<div class="rd-navbar-nav-wrap">
<ul class="rd-navbar-nav">
<li class="rd-nav-item"><a class="rd-nav-link" href="index.html">Home</a></li>
<li class="rd-nav-item active">
<a class="rd-nav-link" href="/ueber-uns.html">Über Uns</a>
<ul class="rd-submenu">
<li><a href="/ueber-uns.html#vision">Vision</a></li>
<li><a href="/ueber-uns.html#standorte">Standorte</a></li>
<li><a href="/ueber-uns.html#team">Team</a></li>
<li><a href="/ueber-uns.html#historie">Historie</a></li>
</ul>
</li>
<li class="rd-nav-item">
<a class="rd-nav-link" href="#">Leistungen</a>
<ul class="rd-submenu">
<li><a href="/leistungen-greencloud.html">GREENCLOUD</a></li>
<li><a href="/leistungen-it.html">IT</a></li>
<li><a href="/leistungen-office.html">OFFICE</a></li>
</ul>
</li>
<li class="rd-nav-item">
<a class="rd-nav-link" href="./netzwerk.html">Netzwerk & Partner</a>
</li>
<li class="rd-nav-item">
<a class="rd-nav-link" href="#">Jobs & Karriere</a>
</li>
<li class="rd-nav-item">
<a class="rd-nav-link" href="./kontakt.html">Kontakt</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
</header>
<!--Main section-->
<div class="floating-chat">
<img style="margin-left: -10px;" src="/images/Support-Wolke.png" aria-hidden="true"></img>
<div class="chat">
<div class="header">
<span class="title">
<div style="height: 15px;"></div>
<strong>Wir helfen gerne!</strong>
</span>
<button>
<i class="fa fa-times" aria-hidden="true" style="margin-left: -50px;"></i>
</button>
</div>
<ul class="messages">
<span class="icon text-middle fa-phone"></span><a href="tel:+4958190360" style="color: #fff;"><strong> +49 581
9036-0</strong></a>
<br>
<span class="icon text-middle fa-envelope"></span><a href="mailto:info@wolkenhof.com"
style="color: #fff;"><strong> info@wolkenhof.com</strong></a>
<br>
<span class="icon text-middle fa-download"></span><a href="https://get.teamviewer.com/wolkenhof"
style="color: #fff;"><strong> Fernwartung</strong></a>
</ul>
</div>
</div>
<section class="section main-section parallax-scene-js main-banner">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-8 col-12">
<div class="main-decorated-box text-center text-xl-left" style="margin-top: -50px;">
<img style="z-index: 999;" id="whlogo" alt="Wolkenhof Logo – GREENCLOUD, IT, OFFICE"
src="images/Wolkenhof-Logo_mit-UZ.png">
<div style="margin-top: -70px;" class="decorated-subtitle text-italic text-white wow slideInLeft">
</div>
</div>
</div>
<div style="margin-top: 250px;" class="col-12 text-center offset-top-75" data-wow-delay=".2s"><a
class="button-way-point d-inline-block text-center d-inline-flex flex-column justify-content-center"
href="#" data-custom-scroll-to="vision"><span class="fa-chevron-down"></span></a></div>
</div>
</div>
<div class="decorate-layer">
<div class="layer-1">
<div class="layer" data-depth=".20"><img src="images/parallax-item-1-563x532.png" alt="" width="563"
height="266" />
</div>
</div>
<div class="layer-2">
<div class="layer" data-depth=".30"><img src="images/parallax-item-2-276x343.png" alt="" width="276"
height="171" />
</div>
</div>
<div class="layer-3">
<div class="layer" data-depth=".40"><img src="images/parallax-item-3-153x144.png" alt="" width="153"
height="72" />
</div>
</div>
<div class="layer-4">
<div class="layer" data-depth=".20"><img src="images/parallax-item-4-69x74.png" alt="" width="69"
height="37" />
</div>
</div>
<div class="layer-5">
<div class="layer" data-depth=".40"><img src="images/parallax-item-5-72x75.png" alt="" width="72"
height="37" />
</div>
</div>
<div class="layer-6">
<div class="layer" data-depth=".30"><img src="images/parallax-item-6-45x54.png" alt="" width="45"
height="27" />
</div>
</div>
</div>
</section>
<!--Counters-->
<section class="section bg-blue" style="margin-top: -165px;">
<div class="container section-md">
<div class="row row-30 text-center">
<div class="col-xl-3 col-sm-6 col-12">
<div class="counter-classic block-decorate-img">
<div class="counter-classic-number"><span
class="icon-lg novi-icon offset-right-10 mercury-icon-time"></span><span class="counter"
data-speed="4000">50</span><span class="symbol" style="color: #fff;">+</span>
</div>
<div class="counter-classic-title">Jahre Erfahrung</div>
</div>
</div>
<div class="col-xl-3 col-sm-6 col-12">
<div class="counter-classic">
<div class="counter-classic-number"><span
class="icon-lg novi-icon offset-right-10 mercury-icon-folder"></span><span class="counter"
data-speed="4000">800</span><span class="symbol" style="color: #fff;">+</span>
</div>
<div class="counter-classic-title">Zufriedene Kunden</div>
</div>
</div>
<div class="col-xl-3 col-sm-6 col-12">
<div class="counter-classic">
<div class="counter-classic-number"><span
class="icon-lg novi-icon offset-right-10 mercury-icon-users"></span><span class="counter"
data-speed="4000">45</span><span class="symbol" style="color: #fff;">+</span>
</div>
<div class="counter-classic-title">Partner</div>
</div>
</div>
<div class="col-xl-3 col-sm-6 col-12">
<div class="counter-classic">
<div class="counter-classic-number"><span
class="icon-lg novi-icon offset-right-10 mercury-icon-group"></span><span class="counter"
data-speed="4000">60</span><span class="symbol" style="color: #fff;">+</span>
</div>
<div class="counter-classic-title">Mitarbeiter</div>
<div id="about"></div>
</div>
</div>
</div>
</div>
</section>
<!--Service-->
<section class="section section-md bg-xs-overlay" style="margin-top: -100px;" id="vision">
<div class="container">
<div class="row row-50 justify-content-center">
<div class="col-12 text-center col-md-10 col-lg-8">
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s">Unsere<span class="text-primary">
Vision</span></h3>
<h2>• gemeinsame Werte leben •</h2>
</div>
</div>
<div class="quote-container" style="z-index: 1; margin-bottom: 30px;">
<div class="quote" style="margin-top: 40px;">
<blockquote style="margin-left: 50px; margin-top: 40px;">
<p class="text-italic wow slideInLeft blockquote-text">Gemeinsam schaffen wir Ihre digitale und gesunde
Arbeitswelt in der Menschen <br>und die Nachhaltigkeit im Vordergrund stehen.</p>
<cite style="text-align: right; margin-right: 70px;"><span></cite>
<br>
<p style="width: 90%; text-align: justify;">Mit mit unserem grünen Rechenzentrum GREENCLOUD als
Unternehmenssektor der wolkenhof GmbH möchten wir
uns der Aufgabe stellen, Digitalisierung, Nachhaltigkeit und Gemeinwohlorientierung in Einklang zu
bringen. Als Unternehmen sehen wir uns in der Verantwortung – und haben die Möglichkeit – die Welt von
morgen positiv mitzugestalten.
<p class="more"> Ein Wandel ist in vielen Bereichen notwendig und auch möglich. Die
wolkenhof GmbH ist im Jahr 2020 durch Fusion von 3 bestehenden Unternehmen der IT- und
Büroausstattungsbranche entstanden. Seither, wurden 2 weitere Firmen in den Wolkenhof übernommen. Unser
grünes Rechenzentrum GREENCLOUD ist daraus als neuer innovativer Unternehmenssektor hervorgegangen.
Somit können wir auf fundiertes technisches Knohow, annähernd 50 Jahre Erfahrungen und stabile
Partnerschaften mit Kunden und Zulieferern zurückgreifen.
<br>
<br>
Neben modernster Technik entsprechen wir auch den heutigen ökologischen Anforderungen – angefangen von
der baulichen Gestaltung und Energieversorgung bis hin zu den angebotenen Produkten.
</p>
</p>
</blockquote>
</div>
</div>
</div>
</section>
<section>
<div class="row row-50 justify-content-center">
<div class="col-12 text-center col-md-10 col-lg-8">
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s">Unsere<span class="text-primary">
Werte</span></h3>
<h2>was uns antreibt • was uns ausmacht</h2>
</div>
</div>
<div class="parallax-row">
<div class="parallax-col">
<div class="parallax-card">
<div class="parallax-card__side parallax-card__side--front parallax-card__side--front-GC">
</div>
<div class="parallax-card__side parallax-card__side--back">
<div class="parallax-card__text">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere, minima.
</div>
</div>
</div>
</div>
<div class="parallax-col">
<div class="parallax-card">
<div class="parallax-card__side parallax-card__side--front parallax-card__side--front-IT">
</div>
<div class="parallax-card__side parallax-card__side--back">
<div class="parallax-card__text">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere, minima.
</div>
</div>
</div>
</div>
<div class="parallax-col">
<div class="parallax-card">
<div class="parallax-card__side parallax-card__side--front parallax-card__side--front-OFF">
</div>
<div class="parallax-card__side parallax-card__side--back">
<div class="parallax-card__text">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere, minima.
</div>
</div>
</div>
</div>
</div>
</section>
<div class="spacer3" id="standorte"></div>
<section>
<div class="row row-50 justify-content-center">
<div class="col-12 text-center col-md-10 col-lg-8">
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s">Unsere<span class="text-primary">
Standorte</span></h3>
<h2>regional stark • global vernetzt</h2>
<br>
<h5>Willkommen an unseren Standorten! Wir sind stolz darauf, regional präsent und gut erreichbar zu sein.
Unsere Niederlassungen stehen für Kompetenz, Verlässlichkeit und besten Service – immer in Ihrer Nähe. Ob
Sie Beratung suchen, Produkte abholen oder unser Team persönlich kennenlernen möchten: An unseren Standorten
sind Sie stets herzlich willkommen!</h5>
</div>
</div>
<div class="standorte">
<div class="cards">
<div class="card card-uelzen card-item-01">
<div class="card__content">
<h5 class="card__category">Hauptsitz</h5>
<h3 class="card__title">UELZEN</h3>
<p class="card__text">Lorem ipsum dolor sit amet consectetur adipisicing elit nulla cumque. massa placerat
duis ultricies lacus sed turpis tincidunt id aliquet risus feugiat in ante metus dictum at tempor
commodo
ullamcorper.</p>
</div>
<div class="adress">
<ul>
<li>
<h4>Hauptsitz</h4>
</li>
<li><b>IT-Abteilung, Greencloud</b></li>
<li><i class="fa fa-home"></i> Schillerstraße 13b</li>
<li>29525 Uelzen</li>
<li><i class="fa fa-phone"></i> <a href="tel:+4958190360">+49 581 9036-0</a></li>
<li><i class="fa fa-envelope"></i> <a href="mailto:info@wolkenhof.com">info@wolkenhof.com</a>
</li>
</ul>
</div>
</div>
<div class="card card-oldenstadt card-item-02">
<div class="card__content">
<h5 class="card__category">Niederlassung</h5>
<h3 class="card__title">OLDENSTADT</h3>
<p class="card__text">Lorem ipsum dolor sit amet consectetur adipisicing elit nulla cumque. massa placerat
duis ultricies lacus sed turpis tincidunt id aliquet risus feugiat in ante metus dictum at tempor
commodo
ullamcorper.</p>
</div>
<div class="adress">
<ul>
<li>
<h4>Niederlassung</h4>
</li>
<li><b>Office-Abteilung</b></li>
<li><i class="fa fa-home"></i> Klosterstraße 1</li>
<li>29525 Uelzen, OT Oldenstadt</li>
<li><i class="fa fa-phone"></i> <a href="tel:+4958190360">+49 581 9036-0</a></li>
<li><i class="fa fa-envelope"></i> <a href="mailto:info@wolkenhof.com">info@wolkenhof.com</a>
</li>
</ul>
</div>
</div>
<div class="card card-geesthacht card-item-03">
<div class="card__content">
<h5 class="card__category">Niederlassung</h5>
<h3 class="card__title">GEESTHACHT</h3>
<p class="card__text">Lorem ipsum dolor sit amet consectetur adipisicing elit nulla cumque. massa placerat
duis ultricies lacus sed turpis tincidunt id aliquet risus feugiat in ante metus dictum at tempor
commodo
ullamcorper.</p>
</div>
<div class="adress">
<ul>
<li>
<h4>Niederlassung</h4>
</li>
<li><b>Technischer Standort</b></li>
<li><i class="fa fa-home"></i> Tempelhofer Weg 10</li>
<li>21502 Geesthacht</li>
<li><i class="fa fa-phone"></i> <a href="tel:+4958190360">+49 581 9036-0</a></li>
<li><i class="fa fa-envelope"></i> <a href="mailto:info@wolkenhof.com">info@wolkenhof.com</a>
</li>
</ul>
</div>
</div>
<div class="card card-bremen card-item-04">
<div class="card__content">
<h5 class="card__category">Niederlassung</h5>
<h3 class="card__title">BREMEN</h3>
<p class="card__text">Lorem ipsum dolor sit amet consectetur adipisicing elit nulla cumque. massa placerat
duis ultricies lacus sed turpis tincidunt id aliquet risus feugiat in ante metus dictum at tempor
commodo
ullamcorper.</p>
</div>
<div class="adress">
<ul>
<li>
<h4>Niederlassung</h4>
</li>
<li><b>Technischer Standort</b></li>
<li><i class="fa fa-home"></i> Kleiner Ort 9-11</li>
<li>28357 Bremen</li>
<li><i class="fa fa-phone"></i> <a href="tel:+4958190360">+49 581 9036-0</a></li>
<li><i class="fa fa-envelope"></i> <a href="mailto:info@wolkenhof.com">info@wolkenhof.com</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div style="height: 200px;">
</div>
</section>
<!-- Spacer 1 -->
<div class="spacer1"></div>
<div class="spacer3" id="team"></div>
<section>
<div class="row row-50 justify-content-center">
<div class="col-12 text-center col-md-10 col-lg-8">
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s">Unser<span class="text-primary">
Team</span></h3>
<h2>Menschen • die es besonders machen</h2>
</div>
</div>
<img src="./images/Gruppenbild_B.png" style="width: 60%; margin-left: 20%;">
</section>
<section>
<div class="parallax-row">
<div class="parallax-col">
<div class="parallax-card">
<div class="parallax-card__side parallax-card__side--front parallax-card__side--front-GC">
</div>
<div class="parallax-card__side parallax-card__side--back">
<div class="parallax-card__text">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere, minima.
</div>
</div>
</div>
</div>
<div class="parallax-col">
<div class="parallax-card">
<div class="parallax-card__side parallax-card__side--front parallax-card__side--front-IT">
</div>
<div class="parallax-card__side parallax-card__side--back">
<div class="parallax-card__text">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere, minima.
</div>
</div>
</div>
</div>
<div class="parallax-col">
<div class="parallax-card">
<div class="parallax-card__side parallax-card__side--front parallax-card__side--front-OFF">
</div>
<div class="parallax-card__side parallax-card__side--back">
<div class="parallax-card__text">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere, minima.
</div>
</div>
</div>
</div>
</div>
</section>
<div class="spacer3"></div>
<section class="section section-md bg-xs-overlay" style="margin-top: -100px;">
<div class="container">
<div class="row row-50 justify-content-center">
<div class="col-12 text-center col-md-10 col-lg-8">
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s">Unser<span class="text-primary">
Miteinander</span></h3>
<h2>• für ein besseres Wir •</h2>
</div>
</div>
<div class="quote-container" style="z-index: 1; margin-bottom: 30px;">
<div class="quote" style="margin-top: 40px;">
<blockquote style="margin-left: 50px; margin-top: 40px;">
<p class="text-italic wow slideInLeft blockquote-text">In unserer Firma steht der Mensch im Mittelpunkt.
Respekt, Wertschätzung und ein offenes Miteinander prägen unsere Kultur. Gemeinsam schaffen wir ein
Umfeld, in dem sich jeder wohlfühlt und entfalten kann.</p>
<cite style="text-align: right; margin-right: 70px;"><span><strong>Nikolai
Hofmeister</strong></span><br />Geschäftsführer<br />Wolkenhof GmbH</cite>
</blockquote>
</div>
</div>
</div>
</section>
<section class="section section-md">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-10">
<h3 class="wow fadeInLeft text-center" data-wow-delay=".3s">Das sagen unsere<span class="text-primary">
Mitarbeiter</span></h3>
<div class="owl-carousel review-carousel" data-items="1" data-sm-items="1" data-md-items="1"
data-lg-items="1" data-xl-items="1" data-xxl-items="1" data-dots="true" data-nav="false"
data-stage-padding="0" data-loop="false" data-margin="0" data-mouse-drag="true" data-autoplay="false">
<div class="item">
<div class="item-preview wow fadeInDown" data-wow-delay=".2s"><img src="images/KI1.webp" alt=""
width="216" height="108" />
</div>
<div class="item-description wow fadeInUp" data-wow-delay=".3s">
<p>"Die Wolkenhof GmbH hat sich als unverzichtbarer Partner erwiesen. Dank ihrer innovativen
Cloud-Lösungen konnten wir unsere Infrastruktur effizient und nachhaltig umgestalten. Ihr Team
versteht es, maßgeschneiderte Lösungen zu liefern, die sowohl zukunftssicher als auch
umweltfreundlich sind. Absolut empfehlenswert für Unternehmen, die eine intelligente und
nachhaltige
Transformation suchen."</p>
<div class="item-subsection"><span class="item-subsection-title devider-left">Amara
Sullivan</span><span>CEO von InnovaCore Technologies</span></div>
</div>
</div>
<div class="item">
<div class="item-preview wow fadeInDown" data-wow-delay=".2s"><img src="images/KI2.webp" alt=""
width="216" height="108" />
</div>
<div class="item-description wow fadeInUp" data-wow-delay=".3s">
<p>"Unsere Zusammenarbeit mit der Wolkenhof GmbH hat unsere Erwartungen weit übertroffen. Ihre
Expertise in Cloud-Infrastruktur und IT-Sicherheit war genau das, was wir brauchten, um unser
Geschäft zukunftssicher zu machen. Mit Wolkenhof konnten wir komplexe Prozesse vereinfachen und
gleichzeitig die Datensicherheit erhöhen. Ich kann sie nur jedem Unternehmen empfehlen, das auf
der
Suche nach technologischem Fortschritt ist."</p>
<div class="item-subsection"><span class="item-subsection-title devider-left">Donald
Hughes</span><span>CEO von NexWave Solutions</span></div>
</div>
</div>
<div class="item">
<div class="item-preview wow fadeInDown" data-wow-delay=".2s"><img src="images/KI3.webp" alt=""
width="216" height="108" />
</div>
<div class="item-description wow fadeInUp" data-wow-delay=".3s">
<p>"Die Wolkenhof GmbH hat es verstanden, unsere Werte von Nachhaltigkeit und Verantwortung auf
ein
neues Level zu heben. Ihre Cloud-Services sind nicht nur zuverlässig, sondern auch auf die
Reduzierung unseres ökologischen Fußabdrucks ausgerichtet. Mit Wolkenhof konnten wir
sicherstellen,
dass unsere IT-Strategie im Einklang mit unseren Umweltzielen steht. Ihr Service ist einzigartig
und
absolut unverzichtbar für Unternehmen, die Nachhaltigkeit ernst nehmen."</p>
<div class="item-subsection"><span class="item-subsection-title devider-left">Anthony
Parker</span><span>CEO von EcoVera</span></div>
</div>
</div>
<div class="item">
<div class="item-preview wow fadeInDown" data-wow-delay=".2s"><img src="images/KI4.webp" alt=""
width="216" height="108" />
</div>
<div class="item-description wow fadeInUp" data-wow-delay=".3s">
<p>"Mit der Wolkenhof GmbH haben wir einen Partner gefunden, der unsere Vision von globaler
Vernetzung
und Wachstum teilt. Die Cloud-Lösungen von Wolkenhof sind stabil, skalierbar und ermöglichen es
uns,
schnell auf neue Chancen und Herausforderungen zu reagieren. Ihr Team ist nicht nur kompetent,
sondern auch engagiert, uns in jeder Phase der Implementierung zu unterstützen. Ein Partner, der
unser globales Wachstum wirklich versteht!"
</p>
<div class="item-subsection"><span class="item-subsection-title devider-left">Liam
Coleman</span><span>CEO von Unity Global Ventures</span></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Spacer 2 -->
<div class="spacer2"></div>
<!--Partner-->
<section class="section section-md">
<div style="text-align: center;">
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s">Unsere<span class="text-primary">
Teams</span></h3>
<h2>im Überblick </h2>
<br>
<br>
<br>
<br>
</div>
<div class="container partner1">
<div class="row row-40 justify-content-center">
<div class="col-lg-6 col-12">
<div class="offset-top-45 offset-lg-right-45" style="text-align: center; width: 80%; margin-left: 10%;">
<div class="section-name wow fadeInRight" data-wow-delay=".2s">Slogan
</div>
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s"><span class="text-primary">
Greencloud</span></h3>
<p class="font-weight-bold text-gray-dark wow fadeInUp" data-wow-delay=".4s">LOREM IPSUM
LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM
LOREM
IPSUM
LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM
LOREM
IPSUM</p>
</p>
<!-- <a class="button-width-190 button-primary button-circle button-lg button offset-top-30" href="#">mehr
erfahren</a> -->
<!-- <div class="decor-text decor-text-1">Wortmann</div> -->
</div>
</div>
<div class="col-lg-6 col-sm-10 col-12">
<div class="block-decorate-img wow fadeInLeft" data-wow-delay=".2s"><img src="images/LF-0494-180.jpg" alt=""
style="height: 350px; width: 525px; margin-left: 11%;" />
</div>
</div>
</div>
</div>
<div class="container partner2">
<div class="row row-40 justify-content-center">
<div class="col-lg-6 col-sm-10 col-12">
<div class="block-decorate-img wow fadeInLeft" data-wow-delay=".2s"><img src="images/LF-0494-044.jpg" alt=""
style="height: 350px; width: 525px; margin-left: -3%;" />
</div>
</div>
<div class="col-lg-6 col-12">
<div class="offset-top-45 offset-lg-right-45" style="text-align: center; width: 80%; margin-left: 10%;">
<div class="section-name wow fadeInRight" data-wow-delay=".2s">SLOGAN
</div>
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s"><span class="text-primary">
IT</span></h3>
<p class="font-weight-bold text-gray-dark wow fadeInUp" data-wow-delay=".4s">LOREM IPSUM
LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM
LOREM
IPSUM
LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM
LOREM
IPSUM</p>
</p>
<!-- <a
class="button-width-190 button-primary button-circle button-lg button offset-top-30" href="#">mehr
erfahren</a> -->
<!-- <div class="decor-text decor-text-1">Wortmann</div> -->
</div>
</div>
</div>
</div>
<div class="container partner1">
<div class="row row-40 justify-content-center">
<div class="col-lg-6 col-12">
<div class="offset-top-45 offset-lg-right-45" style="text-align: center; width: 80%; margin-left: 10%;">
<div class="section-name wow fadeInRight" data-wow-delay=".2s">SLOGAN
</div>
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s"><span class="text-primary">
Office</span></h3>
<p class="font-weight-bold text-gray-dark wow fadeInUp" data-wow-delay=".4s">LOREM IPSUM
LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM
LOREM
IPSUM
LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM
LOREM
IPSUM</p>
</p>
<!-- <a style="margin-top: -10px;"
class="button-width-190 button-primary button-circle button-lg button offset-top-30" href="#">mehr
erfahren</a> -->
<!-- <div class="decor-text decor-text-1">Wortmann</div> -->
</div>
</div>
<div class="col-lg-6 col-sm-10 col-12">
<div class="block-decorate-img wow fadeInLeft" data-wow-delay=".2s"><img src="images/LF-0494-110.jpg" alt=""
style="height: 350px; width: 525px; margin-left: 11%;" />
</div>
</div>
</div>
</div>
<div class="container partner2">
<div class="row row-40 justify-content-center">
<div class="col-lg-6 col-sm-10 col-12">
<div class="block-decorate-img wow fadeInLeft" data-wow-delay=".2s"><img src="images/LF-0494-070.jpg" alt=""
style="height: 350px; width: 525px; margin-left: -3%;" />
</div>
</div>
<div class="col-lg-6 col-12">
<div class="offset-top-45 offset-lg-right-45" style="text-align: center; width: 80%; margin-left: 10%;">
<div class="section-name wow fadeInRight" data-wow-delay=".2s">SLOGAN
</div>
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s"><span class="text-primary">
Büro</span></h3>
<p class="font-weight-bold text-gray-dark wow fadeInUp" data-wow-delay=".4s">LOREM IPSUM
LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM
LOREM
IPSUM
LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM
LOREM
IPSUM</p>
</p>
<!-- <a
class="button-width-190 button-primary button-circle button-lg button offset-top-30" href="#">mehr
erfahren</a> -->
<!-- <div class="decor-text decor-text-1">Wortmann</div> -->
</div>
</div>
</div>
</div>
<div class="container partner1">
<div class="row row-40 justify-content-center">
<div class="col-lg-6 col-12">
<div class="offset-top-45 offset-lg-right-45" style="text-align: center; width: 80%; margin-left: 10%;">
<div class="section-name wow fadeInRight" data-wow-delay=".2s">SLOGAN
</div>
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s"><span class="text-primary">
Vertrieb</span></h3>
<p class="font-weight-bold text-gray-dark wow fadeInUp" data-wow-delay=".4s">LOREM IPSUM
LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM
LOREM
IPSUM
LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM LOREM IPSUM
LOREM
IPSUM</p>
</p>
<!-- <a style="margin-top: -10px;"
class="button-width-190 button-primary button-circle button-lg button offset-top-30" href="#">mehr
erfahren</a> -->
<!-- <div class="decor-text decor-text-1">Wortmann</div> -->
</div>
</div>
<div class="col-lg-6 col-sm-10 col-12">
<div class="block-decorate-img wow fadeInLeft" data-wow-delay=".2s"><img src="images/LF-0494-052.jpg" alt=""
style="height: 350px; width: 525px; margin-left: 11%;" />
</div>
</div>
</div>
</div>
</section>
<div class="container" id="historie">
<div class="row row-50 justify-content-center">
<div class="col-12 text-center col-md-10 col-lg-8">
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s">Unsere<span class="text-primary">
Historie</span></h3>
<h2>Eine Reise durch die Zeit</h2>
</div>
</div>
<div class="row">
<div class="col">
<div class="main-timeline">
<div class="timeline">
<a href="#" class="timeline-content">
<span class="timeline-year">2018</span>
<div class="timeline-icon">
<i class="fa fa-rocket" aria-hidden="true"></i>
</div>
<div class="content">
<h3 class="title">Web Development</h3>
<p class="description">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s.
</p>
</div>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content">
<span class="timeline-year">2017</span>
<div class="timeline-icon">
<i class="fa fa-users" aria-hidden="true"></i>
</div>
<div class="content">
<h3 class="title">JavaScript</h3>
<p class="description">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s.
</p>
</div>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content">
<span class="timeline-year">2017</span>
<div class="timeline-icon">
<i class="fa fa-cog" aria-hidden="true"></i>
</div>
<div class="content">
<h3 class="title">Mongo DB</h3>
<p class="description">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s.
</p>
</div>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content">
<span class="timeline-year">2017</span>
<div class="timeline-icon">
<i class="fa fa-heart" aria-hidden="true"></i>
</div>
<div class="content">
<h3 class="title">BlackPearl</h3>
<p class="description">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s.
</p>
</div>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content">
<span class="timeline-year">2017</span>
<div class="timeline-icon">
<i class="fa fa-globe" aria-hidden="true"></i>
</div>
<div class="content">
<h3 class="title">Angular</h3>
<p class="description">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s.
</p>
</div>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content">
<span class="timeline-year">2017</span>
<div class="timeline-icon">
<i class="fa fa-apple" aria-hidden="true"></i>
</div>
<div class="content">
<h3 class="title">Laravel</h3>
<p class="description">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s.
</p>
</div>
</a>
</div>
<div class="timeline">
<a href="#" class="timeline-content">
<span class="timeline-year">2017</span>
<div class="timeline-icon">
<i class="fa fa-edit" aria-hidden="true"></i>
</div>
<div class="content">
<h3 class="title">Creapure</h3>
<p class="description">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the
industry's standard dummy text ever since the 1500s.
</p>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<section style="background-color: #FAFAFA;">
<div style="text-align: center;">
<h3 class="wow fadeInLeft text-capitalize" data-wow-delay=".3s">Unsere<span class="text-primary">
Partner</span></h3>
<h2>Langlebige, vertrauensvolle Zusammenarbeit</h2>
<div class="logo-slider">
<div class="logo-slide-track">
<div class="slide">
<a href="netzwerk-partner/#datev"><img style="filter: grayscale(1);"
src="images/partner-logos/DATEVx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#elo"><img style="filter: grayscale(1);"
src="images/partner-logos/ELOx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#fujitsu"><img style="filter: grayscale(1);"
src="images/partner-logos/FUJITSUx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#microsoft"><img style="filter: grayscale(1);"
src="images/partner-logos/Microsoftx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#securepoint"><img style="filter: grayscale(1);"
src="images/partner-logos/SECUREPOINTx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#trendmicro"><img style="filter: grayscale(1);"
src="images/partner-logos/TrendMicrox250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#veeam"><img style="filter: grayscale(1);"
src="images/partner-logos/VEEAMx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#winwin"><img style="filter: grayscale(1);"
src="images/partner-logos/WinWinx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#artemide"><img style="filter: grayscale(1);"
src="images/partner-logos/ARTEMIDEx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#swyx"><img style="filter: grayscale(1);"
src="images/partner-logos/ENREACHx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#epson"><img style="filter: grayscale(1);"
src="images/partner-logos/EPSONx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#interstuhl"><img style="filter: grayscale(1);"
src="images/partner-logos/INTERSTUHLx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#kn"><img style="filter: grayscale(1);"
src="images/partner-logos/KÖNIGNEURATHx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#terra"><img style="filter: grayscale(1);"
src="images/partner-logos/TERRAx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#toshiba"><img style="filter: grayscale(1);"
src="images/partner-logos/TOSHIBAx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#utax"><img style="filter: grayscale(1);"
src="images/partner-logos/UTAXx250.png"></a>
</div>
<div class="slide">
<a href="netzwerk-partner/#walterknoll"><img style="filter: grayscale(1);"
src="images/partner-logos/WALTERKNOLLx250.png"></a>
</div>
</div>
</div>
<a style="margin-top: -120px;"
class="button-width-190 button-primary button-circle button-lg button offset-top-30" href="#">mehr
erfahren</a>
<br>
</div>
</section>
<!--Footer-->
<footer class="section footer-classic section-sm">
<div class="container">
<div class="row row-30">
<div class="col-lg-3 wow fadeInLeft">
<!--Brand--><a class="brand" href="index.html"><img class="brand-logo-dark"
src="images/Wolkenhof-Logo_mit-UZ_weiss.png" alt="" width="100" height="17" /><img
style="margin-left: -49px;" class="brand-logo-light" src="images/Wolkenhof-Logo_mit-UZ_weiss.png" alt=""
width="100" height="17" /></a>
<p class="footer-classic-description offset-top-0 offset-right-25">Die Wolkenhof GmbH bietet ein
umfassendes
Spektrum an Beratungs- und Unterstützungsleistungen für kleine, mittelständische und internationale
Unternehmen weltweit. Mit Innovationskraft und Erfahrung fördern wir Ihren Erfolg.</p>
</div>
<div class="col-lg-3 col-sm-8 wow fadeInUp">
<P class="footer-classic-title">Kontakt</P>
<div class="d-block offset-top-0">Schillerstraße 13b<span class="d-lg-block">29525 Uelzen</span></div>
<a class="d-inline-block color-a" href="mailto:#">info@wolkenhof.com</a><a class="d-inline-block color-a"
href="tel:#">+49 581 9036-0
</a>
<ul>
<li>Mo-Fr:<span class="d-inline-block offset-left-10 text-white">8:00 - 17:00</span></li>
</ul>
</div>
<div class="col-lg-2 col-sm-4 wow fadeInUp" data-wow-delay=".3s">
<P class="footer-classic-title">Kurzlinks</P>
<ul class="footer-classic-nav-list">
<li><a class="color-a" href="index.html">Home</a></li>
<li><a class="color-a" href="about.html">Über Uns</a></li>
<li><a class="color-a" href="#">Netzwerk & Partner</a></li>
<li><a class="color-a" href="#"></a></li>
<li><a class="color-a" href="contacts.html">Kontakt</a></li>
</ul>
</div>
<div class="col-lg-4 wow fadeInLeft" data-wow-delay=".2s">
<P class="footer-classic-title">Rückrufbitte</P>
<form id="contact-form" class="form-inline">
<div class="screen-body-item">
<div class="app-form">
<div class="app-form-group">
<input class="app-form-control" name="name" id="name" placeholder="Name" required="required">
</div>
<div class="app-form-group">
<input class="app-form-control" name="phone" id="phone" placeholder="Rufnummer" required="required">
</div>
<div class="app-form-group">
<input class="app-form-control" name="mail" id="mail" placeholder="E-Mail (optional)">
</div>
<div class="app-form-group message">
<input class="app-form-control" name="comment" id="comment" placeholder="Nachricht"