-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
990 lines (780 loc) · 96.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="rebaze GmbH">
<meta name="description" content="The Rebaze Way ist Developer Experience: Seit 2012 arbeitet Toni Menzel für professionelle Vorraussetzungen in Softwareentwicklungsteams.">
<meta name="keywords" content="DevOps,DDD,Onboarding,talent,teamwork,learning,academy,Customization,Governance,Security,Automation,HR,Human Resources,Workforce,Productivity">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta property="og:locale" content="de_DE" />
<meta property="og:type" content="website" />
<meta name="robots" content="noydir" />
<meta property="og:url" content="https://www.rebaze.com/" />
<link rel="canonical" href="https://wwww.rebaze.com/" />
<!-- Facebook -->
<meta content='http://www.rebaze.com/assets/img/rebaze_circle.png' property='og:image'>
<meta content='Rebaze Consulting | Moderne Softwareteams' property='og:title'>
<meta content='The Rebaze Way ist Developer Experience: Seit 2012 arbeitet Toni Menzel für professionelle Vorraussetzungen in Softwareentwicklungsteams.' property='og:description'>
<meta content='Rebaze Consulting' name='og:site_name'>
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@rebazeio" />
<meta name="twitter:creator" content="@rebazeio" />
<meta name="twitter:title" content="Rebaze Consulting | Moderne Softwareteams" />
<meta content='photo' name='twitter:card'>
<meta content='Rebaze Consulting' name='twitter:title'>
<meta content='http://www.rebaze.com/assets/img/rebaze_circle.png' name='twitter:image:src'>
<meta content='rebaze.com' name='twitter:domain'>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, viewport-fit=cover">
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Page Title -->
<title>The Rebaze Way</title>
<!-- Compressed Styles -->
<link href="css/slides.min.css?422331" rel="stylesheet" type="text/css">
<!-- Custom Styles -->
<!-- <link href="css/custom.css" rel="stylesheet" type="text/css"> -->
<!-- jQuery 3.3.1 -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Compressed Scripts -->
<script src="js/slides.min.js?422331" type="text/javascript"></script>
<!-- Custom Scripts -->
<!-- <script src="js/custom.js" type="text/javascript"></script> -->
<!-- Fonts and Material Icons -->
<link rel="stylesheet" as="font" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,600,700|Material+Icons"/>
<!-- For demousers scripts and styles -->
</head>
<body class="slides noPreload animated">
<!-- SVG Library -->
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
<!-- rebaze -->
<symbol id="rebaze_logo" viewBox="0 0 400 400"><path fill="#FFFFFF" d="M208,42.4v61.9c0,5.2,2.8,9.9,7.2,12.5l51.6,29.8c4.5,2.6,7.2,7.3,7.2,12.5v68.8c0,5.2-2.8,9.9-7.2,12.5
l-59.6,34.4c-4.5,2.6-10,2.6-14.4,0l-55-31.8c-4.5-2.6-10.2-2.6-14.7,0.1l-52.5,31.6c-9.4,5.7-9.3,19.4,0.2,24.9l122,70.4
c4.5,2.6,10,2.6,14.4,0l142.1-82c4.5-2.6,7.2-7.3,7.2-12.5v-164c0-5.2-2.8-9.9-7.2-12.5L229.6,29.9C220,24.4,208,31.3,208,42.4z"/>
<path fill="#FFFFFF" d="M133.2,146.7l51.6-29.8c4.5-2.6,7.2-7.3,7.2-12.5V42.4c0-11.1-12-18.1-21.6-12.5L50.7,99
c-4.5,2.6-7.2,7.3-7.2,12.5v135.4c0,11.2,12.3,18.2,21.9,12.4L119,227c4.3-2.6,7-7.3,7-12.4v-55.5C126,154,128.8,149.2,133.2,146.7
z"/></symbol>
<symbol id="rebaze" viewBox="0 0 1000 500">
<g>
<g>
<path fill="#FFFFFF" d="M188.2,144.8v41.4c0,3.4,1.8,6.6,4.8,8.3l34.4,19.9c3,1.7,4.8,4.9,4.8,8.3v45.9c0,3.4-1.8,6.6-4.8,8.3
l-39.8,23c-3,1.7-6.7,1.7-9.6,0l-36.7-21.2c-3-1.8-6.8-1.7-9.8,0.1l-35.1,21.1c-6.3,3.8-6.2,12.9,0.1,16.6l81.5,47
c3,1.7,6.7,1.7,9.6,0l94.9-54.8c3-1.7,4.8-4.9,4.8-8.3V190.9c0-3.4-1.8-6.6-4.8-8.3l-79.9-46.1
C196.2,132.7,188.2,137.4,188.2,144.8z"/>
<path fill="#FFFFFF" d="M138.3,214.4l34.4-19.9c3-1.7,4.8-4.9,4.8-8.3v-41.4c0-7.4-8-12.1-14.5-8.3l-79.9,46.1
c-3,1.7-4.8,4.9-4.8,8.3v90.4c0,7.5,8.2,12.1,14.6,8.3l35.8-21.5c2.9-1.7,4.7-4.9,4.7-8.3v-37.1
C133.5,219.3,135.3,216.1,138.3,214.4z"/>
</g>
<g>
<g>
<g>
<g>
<g>
<g>
<path fill="#FFFFFF" d="M380.1,213c2,0,3.8,0.2,5.5,0.6l-1.5,11.6c-2.8-0.3-5-0.4-7.4-0.3c-8.5,0.2-15.4,3.8-28.1,14.4v57.5
h-13.9v-81.1h11.2l1,13.9C361.2,217.6,369.8,213,380.1,213L380.1,213z"/>
<path fill="#FFFFFF" d="M479.2,222.7c5.4,6.5,7.2,16.6,5.6,31.2l-0.4,4.4l-55.2,0c0.3,24,5.4,30.8,23.5,30.8
c12.1,0,18.4-1.6,25.8-3.6l1.9,9.9c-6.8,2.2-14.7,4.3-27.6,4.3c-29.9,0-38.1-11.5-38.1-45.1c0-31,11.7-41.5,38-41.5
C464.5,213,473.6,215.9,479.2,222.7z M429.2,250.6h44.1c0.7-9.7-0.7-16.4-3.7-20.5c-3.4-4.7-9-6.6-16.9-6.6
C437,223.5,429.9,229.5,429.2,250.6z"/>
<path fill="#FFFFFF" d="M538.8,226.5c11.4-10,18.6-13.5,27.5-13.5c25.6,0,32.6,11.5,32.6,45.1c0,31.3-12.4,41.5-35,41.5
c-11.7,0-23.8-2.4-39-6.5V183.3h13.9V226.5z M538.8,237.8v46.9c9.9,2.7,16.5,3.7,23.7,3.7c15.6,0,22.3-7.3,22.3-31
c0-26.2-4.6-33.9-22.3-33.9C555.8,223.4,550.6,226.2,538.8,237.8z"/>
<path fill="#FFFFFF" d="M709,220.2l0,76.7h-11.2l-1-13.3c-13.8,13.1-19.9,16-29.4,16c-24.4,0-31.2-12-31.1-45.1
c0-31,10.4-41.5,33.7-41.5C682.4,213,694.3,215.5,709,220.2z M650.4,254.2c0,25.7,4.5,33.7,21.8,33.7
c6.7,0,11.3-2.2,22.9-13.7v-46.4c-8.4-2.9-15.3-4.4-22.7-4.4C656.8,223.4,650.4,230.7,650.4,254.2z"/>
<path fill="#FFFFFF" d="M762.8,286.7h51.8v10.1h-67.8v-11.1l50.3-59.8h-46.9v-10.2h62.9v11.1L762.8,286.7z"/>
<path fill="#FFFFFF" d="M915.5,222.7c5.4,6.5,7.2,16.6,5.6,31.2l-0.4,4.4l-55.2,0c0.3,24,5.4,30.8,23.5,30.8
c12.1,0,18.4-1.6,25.8-3.6l1.9,9.9c-6.8,2.2-14.7,4.3-27.6,4.3c-29.9,0-38.1-11.5-38.1-45.1c0-31,11.7-41.5,38-41.5
C900.7,213,909.9,215.9,915.5,222.7z M865.4,250.6h44.1c0.7-9.7-0.7-16.4-3.7-20.5c-3.4-4.7-9-6.6-16.9-6.6
C873.2,223.5,866.1,229.5,865.4,250.6z"/>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="vrebaze" viewBox="0 0 800 800">
<g>
<g>
<g>
<path fill="#FFFFFF" d="M406.5,167.4v50.1c0,4.2,2.2,8,5.8,10.1l41.7,24.1c3.6,2.1,5.8,5.9,5.8,10.1v55.7c0,4.2-2.2,8-5.8,10.1
l-48.2,27.8c-3.6,2.1-8.1,2.1-11.7,0l-44.5-25.7c-3.7-2.1-8.2-2.1-11.9,0.1l-42.5,25.6c-7.6,4.6-7.5,15.7,0.2,20.1l98.7,57
c3.6,2.1,8.1,2.1,11.7,0l115-66.4c3.6-2.1,5.8-5.9,5.8-10.1V223.3c0-4.2-2.2-8-5.8-10.1L424,157.2
C416.2,152.7,406.5,158.4,406.5,167.4z"/>
<path fill="#FFFFFF" d="M346,251.7l41.7-24.1c3.6-2.1,5.8-5.9,5.8-10.1v-50.1c0-9-9.7-14.6-17.5-10.1l-96.8,55.9
c-3.6,2.1-5.8,5.9-5.8,10.1v109.6c0,9.1,9.9,14.7,17.7,10l43.4-26.1c3.5-2.1,5.7-5.9,5.7-10v-44.9
C340.1,257.6,342.3,253.8,346,251.7z"/>
</g>
<g>
<g>
<g>
<g>
<g>
<path fill="#FFFFFF" d="M150.3,492.3c2,0,3.8,0.2,5.5,0.6l-1.5,11.7c-2.8-0.3-5-0.4-7.5-0.3c-8.5,0.2-15.5,3.8-28.3,14.5
v57.9h-14v-81.6h11.3l1,14C131.2,496.9,139.9,492.3,150.3,492.3L150.3,492.3z"/>
<path fill="#FFFFFF" d="M250.1,502.1c5.4,6.6,7.2,16.7,5.7,31.4l-0.4,4.4l-55.6,0c0.3,24.2,5.4,31,23.7,31
c12.2,0,18.5-1.6,26-3.7l1.9,9.9c-6.8,2.2-14.8,4.3-27.8,4.3c-30.1,0-38.3-11.6-38.3-45.4c0-31.3,11.8-41.8,38.3-41.8
C235.3,492.3,244.4,495.2,250.1,502.1z M199.7,530.2h44.4c0.7-9.8-0.7-16.5-3.7-20.6c-3.4-4.7-9.1-6.7-17-6.7
C207.5,502.9,200.4,509,199.7,530.2z"/>
<path fill="#FFFFFF" d="M310.1,505.9c11.4-10.1,18.7-13.5,27.7-13.5c25.8,0,32.8,11.6,32.8,45.4c0,31.5-12.5,41.8-35.3,41.8
c-11.8,0-24-2.4-39.3-6.5V462.4h14V505.9z M310.1,517.2v47.2c10,2.7,16.6,3.7,23.9,3.7c15.7,0,22.4-7.3,22.4-31.2
c0-26.4-4.7-34.2-22.4-34.2C327.1,502.8,322,505.6,310.1,517.2z"/>
<path fill="#FFFFFF" d="M481.5,499.5l0,77.2h-11.3l-1-13.4c-13.9,13.2-20.1,16.1-29.6,16.1c-24.6,0-31.4-12.1-31.3-45.4
c0-31.2,10.5-41.8,33.9-41.8C454.6,492.3,466.6,494.8,481.5,499.5z M422.4,533.8c0,25.9,4.5,33.9,22,33.9
c6.8,0,11.4-2.3,23.1-13.7v-46.8c-8.5-2.9-15.4-4.4-22.8-4.4C428.8,502.8,422.4,510.2,422.4,533.8z"/>
<path fill="#FFFFFF" d="M535.6,566.5h52.2v10.2h-68.3v-11.2l50.6-60.2h-47.3v-10.2h63.4v11.2L535.6,566.5z"/>
<path fill="#FFFFFF" d="M689.3,502.1c5.4,6.6,7.2,16.7,5.7,31.4l-0.4,4.4l-55.6,0c0.3,24.2,5.4,31,23.7,31
c12.2,0,18.5-1.6,26-3.7l1.9,9.9c-6.8,2.2-14.8,4.3-27.8,4.3c-30.1,0-38.3-11.6-38.3-45.4c0-31.3,11.8-41.8,38.3-41.8
C674.5,492.3,683.6,495.2,689.3,502.1z M638.9,530.2h44.4c0.7-9.8-0.7-16.5-3.7-20.6c-3.4-4.7-9.1-6.7-17-6.7
C646.7,502.9,639.6,509,638.9,530.2z"/>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</symbol>
<symbol id="rlogo" viewBox="0 0 106 31"><title>rebaze</title><path d="M0 0h1000v500H0z"/><g fill="#FFF"><path d="M188.2 144.8v41.4c0 3.4 1.8 6.6 4.8 8.3l34.4 19.9c3 1.7 4.8 4.9 4.8 8.3v45.9c0 3.4-1.8 6.6-4.8 8.3l-39.8 23c-3 1.7-6.7 1.7-9.6 0l-36.7-21.2c-3-1.8-6.8-1.7-9.8.1l-35.1 21.1c-6.3 3.8-6.2 12.9.1 16.6l81.5 47c3 1.7 6.7 1.7 9.6 0l94.9-54.8c3-1.7 4.8-4.9 4.8-8.3V190.9c0-3.4-1.8-6.6-4.8-8.3l-79.9-46.1c-6.4-3.8-14.4.9-14.4 8.3z"/><path d="M138.3 214.4l34.4-19.9c3-1.7 4.8-4.9 4.8-8.3v-41.4c0-7.4-8-12.1-14.5-8.3l-79.9 46.1c-3 1.7-4.8 4.9-4.8 8.3v90.4c0 7.5 8.2 12.1 14.6 8.3l35.8-21.5c2.9-1.7 4.7-4.9 4.7-8.3v-37.1c.1-3.4 1.9-6.6 4.9-8.3z"/></g><g fill="#FFF"><path d="M380.1 213c2 0 3.8.2 5.5.6l-1.5 11.6c-2.8-.3-5-.4-7.4-.3-8.5.2-15.4 3.8-28.1 14.4v57.5h-13.9v-81.1h11.2l1 13.9c14.3-12 22.9-16.6 33.2-16.6zM479.2 222.7c5.4 6.5 7.2 16.6 5.6 31.2l-.4 4.4h-55.2c.3 24 5.4 30.8 23.5 30.8 12.1 0 18.4-1.6 25.8-3.6l1.9 9.9c-6.8 2.2-14.7 4.3-27.6 4.3-29.9 0-38.1-11.5-38.1-45.1 0-31 11.7-41.5 38-41.5 11.8-.1 20.9 2.8 26.5 9.6zm-50 27.9h44.1c.7-9.7-.7-16.4-3.7-20.5-3.4-4.7-9-6.6-16.9-6.6-15.7 0-22.8 6-23.5 27.1zM538.8 226.5c11.4-10 18.6-13.5 27.5-13.5 25.6 0 32.6 11.5 32.6 45.1 0 31.3-12.4 41.5-35 41.5-11.7 0-23.8-2.4-39-6.5V183.3h13.9v43.2zm0 11.3v46.9c9.9 2.7 16.5 3.7 23.7 3.7 15.6 0 22.3-7.3 22.3-31 0-26.2-4.6-33.9-22.3-33.9-6.7-.1-11.9 2.7-23.7 14.3zM709 220.2v76.7h-11.2l-1-13.3c-13.8 13.1-19.9 16-29.4 16-24.4 0-31.2-12-31.1-45.1 0-31 10.4-41.5 33.7-41.5 12.4 0 24.3 2.5 39 7.2zm-58.6 34c0 25.7 4.5 33.7 21.8 33.7 6.7 0 11.3-2.2 22.9-13.7v-46.4c-8.4-2.9-15.3-4.4-22.7-4.4-15.6 0-22 7.3-22 30.8zM762.8 286.7h51.8v10.1h-67.8v-11.1l50.3-59.8h-46.9v-10.2h62.9v11.1l-50.3 59.9zM915.5 222.7c5.4 6.5 7.2 16.6 5.6 31.2l-.4 4.4h-55.2c.3 24 5.4 30.8 23.5 30.8 12.1 0 18.4-1.6 25.8-3.6l1.9 9.9c-6.8 2.2-14.7 4.3-27.6 4.3-29.9 0-38.1-11.5-38.1-45.1 0-31 11.7-41.5 38-41.5 11.7-.1 20.9 2.8 26.5 9.6zm-50.1 27.9h44.1c.7-9.7-.7-16.4-3.7-20.5-3.4-4.7-9-6.6-16.9-6.6-15.7 0-22.8 6-23.5 27.1z"/></symbol>
<symbol id="logo" viewBox="0 0 106 31"><title>Slides Framework</title><path d="M17.413 14.04c-.56-5.84-5.6-7-8.52-7-4.6 0-8.6 2.92-8.6 7.52 0 3 2.4 4.88 5.28 5.8 4.24 1.64 5.88 1.84 5.88 3.36 0 1.08-1.2 1.72-2.32 1.72-.28 0-2.24 0-2.52-2.04h-6.6c.6 5.84 5.68 7.36 9.04 7.36 4.92 0 9.04-2.88 9.04-7.76 0-4.8-4-5.92-7.76-6.96-1.76-.52-3.4-1.2-3.4-2.2 0-.6.48-1.48 1.88-1.48 1.96 0 2.04 1.2 2.08 1.68h6.52zm2.222 15.96h6.64v-29.6h-6.64v29.6zm9.662-24.56h6.64v-5.04h-6.64v5.04zm0 24.56h6.64v-22.2h-6.64v22.2zm32.782-29.6h-6.64v9.28c-.72-.72-2.6-2.64-6.52-2.64-5.64 0-11 4.28-11 11.8 0 6.68 4.4 11.88 11.12 11.88 4.48 0 6.08-2.2 6.72-3.12v2.4h6.32v-29.6zm-17.52 18.4c0-2.56 1.8-5.56 5.64-5.56 1.56 0 2.96.56 3.96 1.56 1 .96 1.64 2.32 1.64 3.92.08 1.64-.52 3.08-1.56 4.12s-2.52 1.68-4.12 1.68c-3.12 0-5.56-2.28-5.56-5.68v-.04zm42.502 2.4c.52-4.08-.32-7.64-3.12-10.64-2.08-2.2-5-3.52-8.4-3.52-6.76 0-11.64 5.72-11.64 11.92 0 6.6 5.4 11.76 11.76 11.76 2.28 0 4.48-.68 6.32-2 1.88-1.28 3.44-3.2 4.52-5.68h-6.8c-.8 1.16-1.92 2.08-4.04 2.08-2.6 0-4.84-1.56-5.12-3.92h16.52zm-16.44-5.04c.16-1.04 1.52-3.52 4.96-3.52s4.8 2.48 4.96 3.52h-9.92zm34.502-2.12c-.56-5.84-5.6-7-8.52-7-4.6 0-8.6 2.92-8.6 7.52 0 3 2.4 4.88 5.28 5.8 4.24 1.64 5.88 1.84 5.88 3.36 0 1.08-1.2 1.72-2.32 1.72-.28 0-2.24 0-2.52-2.04h-6.6c.6 5.84 5.68 7.36 9.04 7.36 4.92 0 9.04-2.88 9.04-7.76 0-4.8-4-5.92-7.76-6.96-1.76-.52-3.4-1.2-3.4-2.2 0-.6.48-1.48 1.88-1.48 1.96 0 2.04 1.2 2.08 1.68h6.52z"/></symbol>
<symbol id="logo-icon" viewBox="0 0 50 41"><title>Slides Framework</title><path d="M4,12h42c2.2,0,4,1.8,4,4v21c0,2.2-1.8,4-4,4H4c-2.2,0-4-1.8-4-4V16C0,13.8,1.8,12,4,12z"/><path opacity="0.6" d="M45.5,9h-41C3.7,9,3,8.3,3,7.5v0C3,6.7,3.7,6,4.5,6h41C46.3,6,47,6.7,47,7.5v0C47,8.3,46.3,9,45.5,9z"/><path opacity="0.4" d="M7.5,0h35C43.3,0,44,0.7,44,1.5v0C44,2.3,43.3,3,42.5,3h-35C6.7,3,6,2.3,6,1.5v0C6,0.7,6.7,0,7.5,0z"/></symbol>
<symbol id="close" viewBox="0 0 30 30"><path d="M15 0c-8.3 0-15 6.7-15 15s6.7 15 15 15 15-6.7 15-15-6.7-15-15-15zm5.7 19.3c.4.4.4 1 0 1.4-.2.2-.4.3-.7.3s-.5-.1-.7-.3l-4.3-4.3-4.3 4.3c-.2.2-.4.3-.7.3s-.5-.1-.7-.3c-.4-.4-.4-1 0-1.4l4.3-4.3-4.3-4.3c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l4.3 4.3 4.3-4.3c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-4.3 4.3 4.3 4.3z"/></symbol>
<symbol id="close-small" viewBox="0 0 11 11"><path d="M6.914 5.5l3.793-3.793c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0l-3.793 3.793-3.793-3.793c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l3.793 3.793-3.793 3.793c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l3.793-3.793 3.793 3.793c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414l-3.793-3.793z"/></symbol>
<symbol id="arrow-left" viewBox="0 0 29 56"><path d="M28.7.3c.4.4.4 1 0 1.4l-26.3 26.3 26.3 26.3c.4.4.4 1 0 1.4-.4.4-1 .4-1.4 0l-27-27c-.4-.4-.4-1 0-1.4l27-27c.3-.3 1-.4 1.4 0z"/></symbol>
<symbol id="arrow-right" viewBox="0 0 29 56"><path d="M.3 55.7c-.4-.4-.4-1 0-1.4l26.3-26.3-26.3-26.3c-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0l27 27c.4.4.4 1 0 1.4l-27 27c-.3.3-1 .4-1.4 0z"/></symbol>
<symbol id="back" viewBox="0 0 20 20"><path d="M2.3 10.7l5 5c.4.4 1 .4 1.4 0s.4-1 0-1.4l-3.3-3.3h11.6c.6 0 1-.4 1-1s-.4-1-1-1h-11.6l3.3-3.3c.4-.4.4-1 0-1.4-.2-.2-.4-.3-.7-.3s-.5.1-.7.3l-5 5c-.2.2-.3.5-.3.7 0 .2.1.5.3.7z"/></symbol>
<symbol id="menu" viewBox="0 0 18 18"><path d="M16 5h-14c-.6 0-1-.4-1-1 0-.5.4-1 1-1h14c.5 0 1 .4 1 1s-.4 1-1 1zm-14 5h14c.5 0 1-.4 1-1 0-.5-.4-1-1-1h-14c-.6 0-1 .4-1 1s.4 1 1 1zm14 3h-14c-.5 0-1 .4-1 1 0 .5.4 1 1 1h14c.5 0 1-.4 1-1s-.4-1-1-1z"/></symbol>
<symbol id="share" viewBox="0 0 18 18"><path d="M16 8c-.6 0-1 .4-1 1v6h-12v-6c0-.6-.4-1-1-1s-1 .4-1 1v6c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-6c0-.6-.4-1-1-1zm-2.3-2.3c.4-.4.4-1 0-1.4l-4-4c-.4-.4-1-.4-1.4 0l-4 4c-.4.4-.4 1 0 1.4s1 .4 1.4 0l2.3-2.3v7.6c0 .6.4 1 1 1s1-.4 1-1v-7.6l2.3 2.3c.4.4 1 .4 1.4 0z"/></symbol>
<symbol id="arrow-down" viewBox="0 0 24 24"><path d="M12 18c-.2 0-.5-.1-.7-.3l-11-10c-.4-.4-.4-1-.1-1.4.4-.4 1-.4 1.4-.1l10.4 9.4 10.3-9.4c.4-.4 1-.3 1.4.1.4.4.3 1-.1 1.4l-11 10c-.1.2-.4.3-.6.3z"/></symbol>
<symbol id="arrow-up" viewBox="0 0 24 24"><path d="M11.9 5.9c.2 0 .5.1.7.3l11 10c.4.4.4 1 .1 1.4-.4.4-1 .4-1.4.1l-10.4-9.4-10.3 9.4c-.4.4-1 .3-1.4-.1-.4-.4-.3-1 .1-1.4l11-10c.1-.2.4-.3.6-.3z"/></symbol>
<symbol id="arrow-top" viewBox="0 0 18 18"><path d="M15.7 7.3l-6-6c-.4-.4-1-.4-1.4 0l-6 6c-.4.4-.4 1 0 1.4.4.4 1 .4 1.4 0l4.3-4.3v11.6c0 .6.4 1 1 1s1-.4 1-1v-11.6l4.3 4.3c.2.2.4.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4z"/></symbol>
<symbol id="play" viewBox="0 0 30 30"><path d="M7 30v-30l22 15z"/></symbol>
<symbol id="chat" viewBox="0 0 18 18"><path d="M5,17c-0.2,0-0.3,0-0.4-0.1C4.2,16.7,4,16.4,4,16v-2H2c-1.1,0-2-0.9-2-2V3c0-1.1,0.9-2,2-2h14c1.1,0,2,0.9,2,2v9 c0,1.1-0.9,2-2,2H9.3l-3.7,2.8C5.4,16.9,5.2,17,5,17z M2,12h3.5C5.8,12,6,12.2,6,12.5V14l2.4-1.8C8.6,12.1,8.8,12,9,12h7V3H2V12z M13,7H5C4.4,7,4,6.6,4,6s0.4-1,1-1h8c0.6,0,1,0.4,1,1S13.6,7,13,7z M13,10H5c-0.6,0-1-0.4-1-1s0.4-1,1-1h8c0.6,0,1,0.4,1,1 S13.6,10,13,10z"/></symbol>
<symbol id="mail" viewBox="0 0 18 18"><path d="M16 2h-14c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-10c0-1.1-.9-2-2-2zm0 2v.5l-7 4.3-7-4.4v-.4h14zm-14 10v-7.2l6.5 4c.1.1.3.2.5.2s.4-.1.5-.2l6.5-4v7.2h-14z"/></symbol>
<symbol id="sound-on" viewBox="0 0 18 18"><path d="M8.5,0.1C8.1-0.1,7.7,0,7.4,0.2L3.7,3H2C0.9,3,0,3.9,0,5v6c0,1.1,0.9,2,2,2h1.7l3.7,2.8C7.6,15.9,7.8,16,8,16 c0.2,0,0.3,0,0.4-0.1C8.8,15.7,9,15.4,9,15V1C9,0.6,8.8,0.3,8.5,0.1z M7,13l-2.4-1.8C4.4,11.1,4.2,11,4,11l-2,0l0-6h2 c0.2,0,0.4-0.1,0.6-0.2L7,3V13z M11.7,9.9l0.7,1.9C13.9,11.2,15,9.7,15,8c0-1.7-1.1-3.2-2.7-3.8l-0.7,1.9C12.5,6.4,13,7.2,13,8C13,8.9,12.5,9.6,11.7,9.9z M12.2,1.1l-0.3,2C14.3,3.5,16,5.6,16,8s-1.8,4.5-4.2,4.9l0.3,2C15.6,14.3,18,11.4,18,8C18,4.6,15.6,1.7,12.2,1.1z"/></symbol>
<symbol id="sound-off" viewBox="0 0 18 18"><path d="M15.9,8l1.8-1.8c0.4-0.4,0.4-1,0-1.4s-1-0.4-1.4,0l-1.8,1.8l-1.8-1.8c-0.4-0.4-1-0.4-1.4,0s-0.4,1,0,1.4L13.1,8l-1.8,1.8 c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3l1.8-1.8l1.8,1.8c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3 c0.4-0.4,0.4-1,0-1.4L15.9,8z M8.5,0.1C8.1-0.1,7.7,0,7.4,0.2L3.7,3H2C0.9,3,0,3.9,0,5v6c0,1.1,0.9,2,2,2h1.7l3.7,2.8C7.6,15.9,7.8,16,8,16 c0.2,0,0.3,0,0.4-0.1C8.8,15.7,9,15.4,9,15V1C9,0.6,8.8,0.3,8.5,0.1z M7,13l-2.4-1.8C4.4,11.1,4.2,11,4,11l-2,0l0-6h2 c0.2,0,0.4-0.1,0.6-0.2L7,3V13z"/></symbol>
<!-- social -->
<symbol id="apple" viewBox="-1 1 24 24"><path d="M17.6 13.8c0-3 2.5-4.5 2.6-4.6-1.4-2.1-3.6-2.3-4.4-2.4-1.9-.2-3.6 1.1-4.6 1.1-.9 0-2.4-1.1-4-1-2 0-3.9 1.2-5 3-2.1 3.7-.5 9.1 1.5 12.1 1 1.5 2.2 3.1 3.8 3 1.5-.1 2.1-1 3.9-1s2.4 1 4 1 2.7-1.5 3.7-2.9c1.2-1.7 1.6-3.3 1.7-3.4-.1-.1-3.2-1.3-3.2-4.9zm-3.1-9c.8-1 1.4-2.4 1.2-3.8-1.2 0-2.7.8-3.5 1.8-.8.9-1.5 2.3-1.3 3.7 1.4.1 2.8-.7 3.6-1.7z"/></symbol>
<symbol id="dribbble" viewBox="0 0 24 24"><path d="M12 0c-6.7 0-12 5.3-12 12s5.3 12 12 12 12-5.3 12-12-5.3-12-12-12zm7.9 5.7c1.3 1.7 2.1 3.9 2.3 6.1-.4-.1-2.4-.4-4.7-.4-.8 0-1.5 0-2.3.1 0-.1-.1-.3-.3-.5l-.7-1.5c3.7-1.4 5.3-3.4 5.7-3.8zm-7.9-3.8c2.5 0 4.9.9 6.7 2.5-.3.4-1.9 2.3-5.2 3.6-1.6-2.9-3.3-5.3-3.7-5.9.6-.1 1.4-.2 2.2-.2zm-4.4 1c.4.6 2.1 3 3.7 5.8-4.4 1.2-8.2 1.2-9.2 1.2h-.1c.8-3.1 2.9-5.6 5.6-7zm-5.7 9.1v-.3h.3c1.2 0 5.6-.1 10.1-1.5l.8 1.6c-.1 0-.3 0-.4.1-5.1 1.6-7.9 6-8.3 6.7-1.6-1.7-2.5-4.1-2.5-6.6zm10.1 10.1c-2.3 0-4.4-.8-6.1-2.1.3-.5 2.4-4.4 7.9-6.3 1.3 3.6 2 6.7 2.1 7.6-1.2.6-2.6.8-3.9.8zm5.7-1.8c-.1-.8-.7-3.6-2-7.1.7-.1 1.3-.1 2-.1 2.1 0 3.7.4 4.1.5-.3 2.8-1.8 5.2-4.1 6.7z"/></symbol>
<symbol id="facebook" viewBox="0 0 24 24"><path d="M24 1.3v21.3c0 .7-.6 1.3-1.3 1.3h-6.1v-9.3h3.1l.5-3.6h-3.6v-2.2c0-1.1.3-1.8 1.8-1.8h1.9v-3.2c-.3 0-1.5-.1-2.8-.1-2.8 0-4.7 1.7-4.7 4.8v2.7h-3.1v3.6h3.1v9.2h-11.5c-.7 0-1.3-.6-1.3-1.3v-21.4c0-.7.6-1.3 1.3-1.3h21.3c.8 0 1.4.6 1.4 1.3z"/></symbol>
<symbol id="facebook2" viewBox="0 0 512 512"><path d="M288 176v-64c0-17.664 14.336-32 32-32h32v-80h-64c-53.024 0-96 42.976-96 96v80h-64v80h64v256h96v-256h64l32-80h-96z"/></symbol>
<symbol id="fb-like" viewBox="0 0 20 20"><path d="M0 8v12h5v-12h-5zm2.5 10.8c-.4 0-.8-.3-.8-.8 0-.4.3-.8.8-.8s.8.3.8.8c0 .4-.4.8-.8.8zm3.5-.8h9.5c1.1 0 1.7-1 1.7-1.7 0-.3-.4-1-.4-1 1.4-.3 1.7-1.2 1.7-1.7-.1-.5-.3-.9-.5-1 1-.4 1.5-1.1 1.4-1.9-.1-.8-1-1.5-1-1.5 1-.6.9-1.5.9-1.5-.3-1.3-1.5-1.7-1.7-1.7h-5.6s.3-.5.3-2.4-1.3-3.6-2.6-3.6c0 0-.7.1-1 .3v3.5l-2.7 4.4v9.8z"/></symbol>
<symbol id="googlePlus" viewBox="0 1 24 24"><path d="M7.8 13.5h4.6c-.6 2-2.5 3.4-4.6 3.4-2.7 0-4.9-2.2-4.9-4.9s2.2-4.9 4.9-4.9c1.1 0 2.1.3 3 1l1.8-2.4c-1.4-1.1-3-1.6-4.8-1.6-4.3 0-7.9 3.5-7.9 7.9s3.5 7.9 7.9 7.9 7.9-3.5 7.9-7.9v-1.5h-7.9v3zM21.7 11v-2.2h-2v2.2h-2.2v2h2.2v2.2h2v-2.2h2.2v-2z"/></symbol>
<symbol id="instagram" viewBox="0 0 20 20"><circle cx="10" cy="10" r="3.3"/><path d="M13,0H7C2.2,0,0,2.2,0,7v6c0,4.8,2.1,7,7,7h6c4.8,0,7-2.2,7-7V7C20,2.2,17.9,0,13,0z M10,15.1c-2.8,0-5.1-2.3-5.1-5.1 S7.2,4.9,10,4.9s5.1,2.3,5.1,5.1S12.8,15.1,10,15.1z M15.3,5.9c-0.7,0-1.2-0.5-1.2-1.2c0-0.7,0.5-1.2,1.2-1.2s1.2,0.5,1.2,1.2 C16.5,5.3,16,5.9,15.3,5.9z"/></symbol>
<symbol id="behance" viewBox="0 0 511.958 511.958"><path d="M210.624 240.619c10.624-5.344 18.656-11.296 24.16-17.728 9.792-11.584 14.624-26.944 14.624-45.984 0-18.528-4.832-34.368-14.496-47.648-16.128-21.632-43.424-32.704-82.016-33.28h-152.896v312.096h142.56c16.064 0 30.944-1.376 44.704-4.192 13.76-2.848 25.664-8.064 35.744-15.68 8.96-6.624 16.448-14.848 22.4-24.544 9.408-14.656 14.112-31.264 14.112-49.76 0-17.92-4.128-33.184-12.32-45.728-8.288-12.544-20.448-21.728-36.576-27.552zm-147.552-90.432h68.864c15.136 0 27.616 1.632 37.408 4.864 11.328 4.704 16.992 14.272 16.992 28.864 0 13.088-4.32 22.24-12.864 27.392-8.608 5.152-19.776 7.744-33.472 7.744h-76.928v-68.864zm108.896 198.24c-7.616 3.68-18.336 5.504-32.064 5.504h-76.832v-83.232h77.888c13.568.096 24.128 1.888 31.68 5.248 13.44 6.08 20.128 17.216 20.128 33.504 0 19.2-6.912 32.128-20.8 38.976zM327.168 110.539h135.584v38.848h-135.584zM509.856 263.851c-2.816-18.08-9.024-33.984-18.688-47.712-10.592-15.552-24.032-26.944-40.384-34.144-16.288-7.232-34.624-10.848-55.04-10.816-34.272 0-62.112 10.72-83.648 32-21.472 21.344-32.224 52.032-32.224 92.032 0 42.656 11.872 73.472 35.744 92.384 23.776 18.944 51.232 28.384 82.4 28.384 37.728 0 67.072-11.232 88.032-33.632 13.408-14.144 20.992-28.064 22.656-41.728h-62.464c-3.616 6.752-7.808 12.032-12.608 15.872-8.704 7.04-20.032 10.56-33.92 10.56-13.216 0-24.416-2.912-33.76-8.704-15.424-9.28-23.488-25.536-24.512-48.672h170.464c.256-19.936-.384-35.264-2.048-45.824zm-166.88 5.984c2.24-15.008 7.68-26.912 16.32-35.712 8.64-8.768 20.864-13.184 36.512-13.216 14.432 0 26.496 4.128 36.32 12.416 9.696 8.352 15.168 20.48 16.288 36.512h-105.44z"/></symbol>
<symbol id="linkedin" viewBox="0 0 24 24"><path d="M5.9 21.9h-4.7v-14.2h4.7v14.2zm-2.3-16.1c-1.6 0-2.6-1.1-2.6-2.5s1-2.5 2.7-2.5c1.6 0 2.6 1 2.6 2.5-.1 1.4-1.2 2.5-2.7 2.5zm19.2 16.1h-4.7v-7.6c0-2-.7-3.3-2.3-3.3-1.3 0-2.1.9-2.5 1.7-.1.3-.1.8-.1 1.2v7.9h-4.7v-14.1h4.7v2c.7-.9 1.7-2.3 4.3-2.3 3.1 0 5.5 2.1 5.5 6.4v8.2h-.2z"/></symbol>
<symbol id="medium" viewBox="0 0 130.8 104"><path d="M15.5 21.2c.2-1.6-.5-3.2-1.7-4.3l-12.1-14.7v-2.2h38l29.3 64.4 25.8-64.4h36.2v2.2l-10.5 10c-.9.7-1.3 1.8-1.2 2.9v73.7c0 1.1.3 2.2 1.2 2.9l10.2 10v2.2h-51.3v-2.2l10.6-10.2c1-1 1-1.3 1-2.9v-59.6l-29.4 74.7h-4l-34.2-74.7v50.3c0 2.2.4 4.2 1.9 5.7l13.7 16.8v2.2h-39v-2.2l13.8-16.7c1.5-1.5 1.8-3.3 1.8-5.7l-.1-58.2z"/></symbol>
<symbol id="pinterest" viewBox="0 0 24 24"><path d="M5.9 13.9c1.2-2-.4-2.5-.6-4-1-6.1 7.1-10.2 11.4-6 2.9 2.9 1 12-3.7 11-4.6-.9 2.2-8.1-1.4-9.5-3-1.1-4.6 3.6-3.2 5.9-.8 4-2.5 7.7-1.8 12.7 2.3-1.7 3.1-4.8 3.7-8.1 1.2.7 1.8 1.4 3.3 1.5 5.5.4 8.6-5.4 7.8-10.7-.7-4.7-5.5-7.1-10.6-6.6-4.1.4-8.1 3.7-8.3 8.3-.1 2.8.7 4.9 3.4 5.5z"/></symbol>
<symbol id="stumbleupon" viewBox="0 0 24 24"><path d="M13.3 9.6l1.6.8 2.5-.8v-1.4c0-3-2.4-5.4-5.4-5.4s-5.4 2.4-5.4 5.4v7.5c0 .7-.6 1.3-1.3 1.3s-1.3-.6-1.3-1.3v-3.2h-4v3.2c0 3 2.4 5.4 5.4 5.4s5.4-2.4 5.4-5.4v-7.5c0-.7.6-1.3 1.3-1.3s1.3.6 1.3 1.3l-.1 1.4zm6.6 2.9v3.2c0 .7-.6 1.3-1.3 1.3s-1.3-.6-1.3-1.3v-3.2l-2.5.8-1.6-.8v3.2c0 3 2.4 5.4 5.4 5.4s5.4-2.4 5.4-5.4v-3.2h-4.1z"/></symbol>
<symbol id="twitter" viewBox="0 1 24 23"><path d="M21.5 7.6v.6c0 6.6-5 14.1-14 14.1-2.8 0-5.4-.8-7.6-2.2l1.2.1c2.3 0 4.4-.8 6.1-2.1-2.2 0-4-1.5-4.6-3.4.3.1.6.1.9.1.5 0 .9-.1 1.3-.2-2.1-.6-3.8-2.6-3.8-5 .7.4 1.4.6 2.2.6-1.3-.9-2.2-2.4-2.2-4.1 0-.9.2-1.8.7-2.5 2.4 3 6.1 5 10.2 5.2-.1-.4-.1-.7-.1-1.1 0-2.7 2.2-5 4.9-5 1.4 0 2.7.6 3.6 1.6 1-.3 2.1-.7 3-1.3-.4 1.2-1.1 2.1-2.2 2.7 1-.1 1.9-.4 2.8-.8-.6 1.1-1.4 2-2.4 2.7z"/></symbol>
<symbol id="tumblr" viewBox="0 0 23 23"><path d="M12.573 4.94v-4.94h-3.188c-.072.183-.11.4-.11.622-.034.107-.072.184-.072.293-.328 1.829-1.28 3.11-2.892 3.807-.476.218-.914.253-1.39.218v3.987h2.342c.039 5.603.039 8.493.039 8.64v.332c.294 2.449 1.573 3.914 3.843 4.463.914.257 1.901.366 2.892.366 1.279-.036 2.525-.256 3.771-.659v-4.685c-.731.22-1.395.402-1.977.583-1.135.333-2.087.113-2.857-.619-.073-.11-.183-.257-.221-.403-.106-.586-.178-1.206-.178-1.795v-6.222h5.083v-3.988h-5.085z"/></symbol>
<symbol id="xing" viewBox="0 0 24 24"><path d="M3.647 4.74c-.208 0-.384.073-.472.216-.091.148-.077.338.02.531l2.34 4.051v.02l-3.678 6.49c-.096.191-.091.383 0 .531.088.142.244.236.452.236h3.461c.518 0 .767-.349.944-.669l3.737-6.608-2.38-4.15c-.172-.307-.433-.649-.964-.649h-3.46zm14.542-4.74c-.517 0-.741.326-.927.659l-7.702 13.658 4.918 9.023c.172.307.437.659.967.659h3.457c.208 0 .371-.079.459-.221.092-.148.09-.343-.007-.535l-4.88-8.915v-.023l7.664-13.551c.096-.191.098-.386.007-.534-.088-.142-.252-.221-.46-.221h-3.496z"/></symbol>
<symbol id="whatsapp" viewBox="0 0 512 512"><path d="M256.064 0h-.128c-141.152 0-255.936 114.816-255.936 256 0 56 18.048 107.904 48.736 150.048l-31.904 95.104 98.4-31.456c40.48 26.816 88.768 42.304 140.832 42.304 141.152 0 255.936-114.848 255.936-256s-114.784-256-255.936-256zm148.96 361.504c-6.176 17.44-30.688 31.904-50.24 36.128-13.376 2.848-30.848 5.12-89.664-19.264-75.232-31.168-123.68-107.616-127.456-112.576-3.616-4.96-30.4-40.48-30.4-77.216s18.656-54.624 26.176-62.304c6.176-6.304 16.384-9.184 26.176-9.184 3.168 0 6.016.16 8.576.288 7.52.32 11.296.768 16.256 12.64 6.176 14.88 21.216 51.616 23.008 55.392 1.824 3.776 3.648 8.896 1.088 13.856-2.4 5.12-4.512 7.392-8.288 11.744-3.776 4.352-7.36 7.68-11.136 12.352-3.456 4.064-7.36 8.416-3.008 15.936 4.352 7.36 19.392 31.904 41.536 51.616 28.576 25.44 51.744 33.568 60.032 37.024 6.176 2.56 13.536 1.952 18.048-2.848 5.728-6.176 12.8-16.416 20-26.496 5.12-7.232 11.584-8.128 18.368-5.568 6.912 2.4 43.488 20.48 51.008 24.224 7.52 3.776 12.48 5.568 14.304 8.736 1.792 3.168 1.792 18.048-4.384 35.52z"/></symbol>
<symbol id="youtube" viewBox="0 0 24 24"><path d="M23.6 6.3c-.3-1.2-1.4-2.2-2.6-2.3-3-.3-6-.3-9-.3s-6 0-9 .3c-1.2.1-2.3 1.1-2.6 2.3-.4 1.8-.4 3.8-.4 5.7 0 1.9 0 3.9.4 5.7.3 1.2 1.4 2.2 2.6 2.3 3 .3 6 .3 9 .3s6 0 9-.3c1.3-.1 2.3-1.1 2.6-2.4.4-1.7.4-3.7.4-5.6 0-1.9 0-3.9-.4-5.7zm-14.1 9v-6.6l6.5 3.3-6.5 3.3z"/></symbol>
</svg>
<!-- Panel Top #library/panel/panel-top-02.html -->
<nav class="panel top exceptFirstSlide">
<div class="sections desktop">
<div class="left">
<a href="#home" title="rebaze">
<img src="assets/img/rebaze2.png" height="82px" alt="rebaze"/>
<!--<svg style="width:82px;height:24px"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#rdlogo"></use></svg>-->
</a>
</div>
<!-- <a href="#home" title="rebaze">
</a></div>
-->
<div class="right">
<ul class="menu trim">
<li><a href="#why">Growing Developer Culture</a></li>
<li><a href="#how">Developer Therapy</a></li>
<li><a href="#what">Develop Like Tomorrow</a></li>
<li><a href="#contact">Clients & Partners</a></li>
<li><a href="#imprint">Contact</a></li>
<li class="cropRight"><span class="button actionButton sidebarTrigger" style="position:relative; top:-10px;" data-sidebar-id="1"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#menu"></use></svg></span></li>
</ul>
</div>
</div>
<div class="sections compact hidden">
<!--
<div class="left"><a href="#" title="Slides Framework"><svg style="width:82px;height:24px"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo"></use></svg></a></div>
-->
<div class="right"><span class="button actionButton sidebarTrigger" data-sidebar-id="1"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#menu"></use></svg></span></div>
</div>
</nav>
<!-- Sidebar -->
<nav class="sidebar" data-sidebar-id="1">
<div class="close">
<svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#close"></use></svg>
</div>
<div class="content">
<!--
<a href="#" class="logo"><svg width="37" height="30"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo-icon"></use></svg></a>
-->
<a href="#">
<img src="assets/img/rebaze2.png" height="82px" alt="rebaze"/>
</a>
<ul class="mainMenu margin-top-3">
<li><a href="#why">Developer Culture</a></li>
<li><a href="#how">Developer Therapy</a></li>
<li><a href="#what">Develop Like Tomorrow</a></li>
<li><a href="#contact">Clients & Partners</a></li>
</ul>
<ul class="subMenu small opacity-8">
<li><a href="https://github.com/rebaze/">Github</a></li>
<li><a href="#imprint">Imprint</a></li>
<li><a href="#privacy">Privacy</a></li>
<li><a href="#imprint">Contact Us</a></li>
</ul>
<ul class="social opacity-8">
<li><a href="https://twitter.com/rebazeio"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#twitter"></use></svg></a>
</li>
</ul>
</div>
</nav>
<section class="slide kenBurns fade-6 black" data-name="home">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-8-12"
><a href="#why">
<svg height="500" class="wide ae-1 fromCenter"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#vrebaze"></use></svg>
<h2 class="ae-1">Peace of Mind at High Velocity</h2>
</a>
<p class="ae-2"><span class="opacity-9"><b>Smarte DevOps-Beratung für Startups & Mittelstand</b></span></p>
</div>
</div>
</div>
</div>
<div class="background" style="background-image:url(assets/img/background/iStock-636887598-2.jpg)"></div>
</section>
<section class="slide kenBurns fade-8" data-name="why">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12">
<p class="opacity-6 margin-bottom-2 ae-1">Das ist Developer Experience by Rebaze</p>
<h1 class="huge ae-1 margin-bottom-2">Growing Developer Culture</h1>
</div>
<div class="fix-12-12">
<ul class="flex later margin-top-6 left">
<li class="col-4-12 box-88">
<img src="assets/img/toni2.jpg" data-action="zoom" class="rounded ae-8" alt="Toni Menzel"/>
<div class="quoteBubble ae-4 fromLeft">
<p class="cropBottom light opacity-8 small">Es wird Zeit, dass Entwicklungsteams unter professionellen Bedingungen arbeiten können. Ich sehe mich als Enabler für innovative Software-Entwicklungsteams.</p>
</div>
<p class="margin-top-3 tiny ae-6 fromRight"><strong><a href="https://www.tonimenzel.com">Toni Menzel</a></strong> <span class="opacity-7"> Gründer der rebaze GmbH</span></p>
</li>
<li class="col-8-12">
<div class="ae-3">
<p class="opacity-8">In digitalen Projekten vernachlässigen wir einen entscheidenden Innovationsmotor: Die Entwicklungsteams.</p>
<p class="opacity-8">Professionelle Entwicklungsteams brauchen professionelle Vorraussetzungen.</p>
</div>
<ul class="flex fromBottomRight fixedSpaces">
<li class="col-6-12 ae-6">
<h3>Entscheidungskompetenz fördern</h3>
<p class="tiny opacity-6 margin-bottom-3">Die IT-Industrie erfindet sich stets neu. Kaum ein Unternehmen behält selbst den Überblick. Notwendige Entscheidungen werden aus dem "Bauch heraus" getroffen oder unnötig aufgeschoben, bis Veränderung noch teurer wird. </p>
</li>
<li class="col-6-12 ae-7">
<h3>Komplexität reduzieren</h3>
<p class="tiny opacity-6 margin-bottom-3">Deine Domain hat eine eigene Komplexität, die es in Software zu modellieren gilt. Gar nicht gebrauchen kannst du deshalb die Art von Komplexität die durch veraltete Prozesse, nicht vorhandener Infrastruktur oder unpassender Architektur erzeugt wird.</p>
</li>
</ul>
<div class="ae-3"><p class="opacity-8">Als Experte für Developer Experience habe ich das Ziel, ein Ökosystem für hochperformante & innovativ agierende Entwicklungsteams zu schaffen. Mehr auf <a href="https://www.tonimenzel.com"><b>www.tonimenzel.com</b></a></p></div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="background" style="background-image:url(assets/img/background/sci4.png)"></div>
</section>
<!-- Slide 12 (#89) -->
<section class="slide kenBurns fade-6" data-name="how">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-12-12">
<p class="opacity-6 ae-1">Neue Wege gehen</p>
<h1 class="ae-2">Software Engineering Therapy</h1>
<div class="ae-3"><p class="opacity-8">Moderne Entwicklungsteams benötigen ein gesundes Ökosystem</p></div>
<ul class="flex later left">
<li class="col-6-12 ae-3">
<h3 class="margin-top-3">Verteiltes Arbeiten</h3>
<p class="tiny opacity-6">Ich habe meine Arbeitsweise auf "remote first" ausgelegt. So verliere ich keine Zeit in Staus und bin für Kunden auf vielen Wegen erreichbar. Ich arbeite mobil mit modernster Kommunikationstechnologie.</p>
</li>
<li class="col-6-12 ae-4">
<h3 class="margin-top-3">Hohe Transparenz</h3>
<p class="tiny opacity-6">Eine hohe Transparenz in den Arbeitsprozessen schafft Vertrauen, was wiederum die Voraussetzung für verteiltes Arbeiten ist. Ich pflege eine offene Kommunikationskultur, offene Sprachkanäle und flache Strukturen. </p>
</li>
<li class="col-6-12 ae-5">
<h3 class="margin-top-3">Breites Netzwerk</h3>
<p class="tiny opacity-6">Ich besuche Konferenzen & tausche mich mit Partnerfirmen regelmäßig aus. Darüber hinaus bin ich mit rebaze Mitglied und Förderer in Netzwerken wie <a href="https://initiatived21.de">Initiative d21</a>, der <a href="https://www.apache.org/">Apache Foundation</a> und der <a href="https://www.osgi.org/">OSGi Alliance</a>.</p>
</li>
<li class="col-6-12 ae-6">
<h3 class="margin-top-3">Rituale & Innovationskultur</h3>
<p class="tiny opacity-6">Rituale kennen wir unter anderem aus der Sportwelt, wenn sich ein Team auf ein Spiel einstellt. Rituale fördern Teamgeist, helfen sich gemeinsam auf eine Sache zu fokussieren und schaffen eine wiederkehrende Institution im schnelllebigen Projektalltag. </p>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="background" style="background-image:url(assets/img/background/sci4.png)"></div>
</section>
<!-- Slide 10 (#47) -->
<section class="slide kenBurns fade-6" data-name="what">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12 toCenter">
<h1 class="huge ae-1">Dabei unterstützte ich dich</h1>
<div class="ae-3"><p class="opacity-8">Einige Vorgehensweisen und Technologien, mit denen ich bei meinen Kunden arbeite:</p></div>
</div>
<div class="fix-12-12">
<ul class="flex grid-47 margin-top-3">
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1">
<div class="fix-3-12 ae-3">
<i class="material-icons">people</i>
<h3>Domain Driven Design</h3>
<p class="tiny opacity-6">Ich sehe die Softwareentwicklung primär kommunikative Herausforderung, in der Teams mittels "Ubiquitous Language" effizient Sachverhalte definieren und austauschen.</p>
</div>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1">
<div class="fix-3-12 ae-4">
<i class="material-icons">settings_applications</i>
<h3>Developer Onboarding</h3>
<p class="tiny opacity-6">Der Start in ein neues Projekt oder eine Aufgabe sollte reibungslos verlaufen. Ich kann dir dabei helfen, ein "Onboarding" Programm zu verfassen.</p>
</div>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1">
<div class="fix-3-12 ae-5">
<i class="material-icons">apps</i>
<h3>Test Infrastruktur Automatisierung</h3>
<p class="tiny opacity-6">Die Testautomatisierung ist eines unserer ursprünglichsten Kompetenzen, die ich gerne in dein Vorhaben einbringe.</p>
</div>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1">
<div class="fix-3-12 ae-6">
<i class="material-icons">view_module</i>
<h3>Modularisierung</h3>
<p class="tiny opacity-6">Die rebaze GmbH ist Mitglied der OSGi Alliance & kann auf langfristige Erfahrung mit dem der "School of Modularity" zurückgreifen.</p>
</div>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1">
<div class="fix-3-12 ae-7">
<i class="material-icons">cloud</i>
<h3>Cloud Native</h3>
<p class="tiny opacity-6">Wir planen und migrieren Cloud-Lösungen. Egal ob Amazon Web Services oder eigener Kubernetes Cluster.</p>
</div>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1">
<div class="fix-3-12 ae-8">
<i class="material-icons">star</i>
<h3>Ideale Arbeitsumgebung</h3>
<p class="tiny opacity-6">Rebaze hilft euch beim Erstellen und Verwalten von passgenauen Eclipse Distribitionen.</p>
</div>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1">
<div class="fix-3-12 ae-6">
<i class="material-icons">people</i>
<h3>Agile Methodik</h3>
<p class="tiny opacity-6">Ich unterstütze bereits vorhandene Agile Vorgehensweisen oder helfe gern bei der Einführung in dein Unternehmen.</p>
</div>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1">
<div class="fix-3-12 ae-7">
<i class="material-icons">cloud</i>
<h3>DevSecOps</h3>
<p class="tiny opacity-6">Automatiserung ist eine Kernkompetenz für jedes Team. Ich helfe euch dabei, eine gut geölte Entwicklungs und Deployment-Pipeline zur schaffen.</p>
</div>
</li>
<li class="col-4-12 col-tablet-1-2 col-phablet-1-1">
<div class="fix-3-12 ae-8">
<i class="material-icons">star</i>
<h3>Open Source</h3>
<p class="tiny opacity-6">Rebaze is committed to OSS, contributing to projects at OPS4J and Apache.</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="background" style="background-image:url(assets/img/background/sci4.png)"></div>
</section>
<section class="slide kenBurns fade-6" data-name="contact">
<div class="content">
<div class="container">
<div class="wrap">
<h2>Eine Auswahl meiner bisherigen Klienten</h2>
<p>Seit 14 Jahren unterstütze ich Konzerne und mittelständische Unternehmen.</p>
<div class="fix-11-12 margin-top-5">
<ul class="grid fixedSpaces equal left grid-71">
<li class="col-4-12 ae-3">
<a href="https://moia.io" class="cell-71 rounded equalElement">
<h3>MOIA</h3>
<p class="tiny opacity-6">Integration of public and private cloud infrastructure.</p>
</a>
</li>
<li class="col-4-12 ae-4">
<a href="https://sma.de" class="cell-71 rounded equalElement">
<h3>SMA Solar Technology</h3>
<p class="tiny opacity-6">Technical advisory for a modern embedded software platform.</p>
</a>
</li>
<li class="col-4-12 ae-6">
<a href="https://www.db.com" class="cell-71 rounded equalElement last">
<h3>Deutsche Bank</h3>
<p class="tiny opacity-6">Automated anayltics of software system landscape.</p>
</a>
</li>
<li class="col-4-12 ae-3">
<a href="https://www.concardis.com" class="cell-71 rounded equalElement">
<h3>Concardis</h3>
<p class="tiny opacity-6">Simplification of software solution, modularisation, coaching.</p>
</a>
</li>
<li class="col-4-12 ae-4">
<a href="http://morganstanley.com" class="cell-71 rounded equalElement">
<h3>Morgan Stanley</h3>
<p class="tiny opacity-6">Technical consulting and coaching in OSGi technology.</p>
</a>
</li>
<li class="col-4-12 ae-6">
<a href="https://www.postbank.de" class="cell-71 rounded equalElement last">
<h3>Postbank Systems</h3>
<p class="tiny opacity-6">Software Methodology, Cloud Concepts, CI/CD consulting.</p>
</a>
</li>
</ul>
</div>
<h2 class="margin-top-5">Wollen wir zusammenarbeiten? <a href="mailto:[email protected]">[email protected]</a></h2>
</div>
</div>
</div>
<div class="background" style="background-image:url(assets/img/background/sci4.png)"></div>
</section>
<section class="slide kenBurns fade-6" data-name="imprint">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-10-12">
<h1 class="ae-1">Wollen wir einen guten Kaffee trinken gehen?</h1>
<p class="ae-2"><span class="opacity-8">We can meet anywhere in the larger area of Hannover or remote (dann ohne Kaffee; )</span></p>
<ul class="grid equal fixedSpaces margin-top-3">
<li class="col-4-12 ae-3">
<div class="fix-3-12 equalElement">
<h6 class="uppercase opacity-4 margin-top-3 margin-bottom-2">rebaze GmbH</h6>
<p class="tiny">Managing Director: Toni Menzel, Amtsgericht Stendal. Germany. HRB Nr. 17993
VAT ID DE282233792</p>
</div>
<div class="fix-3-12 equalElement">
<h6 class="uppercase opacity-4 margin-top-3 margin-bottom-2">Papierkram</h6>
<p class="tiny"><a class="opacity-8" href="#">Zollstrasse 6 in 39114 Magdeburg, Germany</a></p>
</div>
<div class="fix-3-12 equalElement">
<h6 class="uppercase opacity-4 margin-top-3 margin-bottom-2">Homeoffice</h6>
<p class="tiny"><a class="opacity-8" href="#">Mühlenberg 9A in 30938 Burgwedel, Germany</a></p>
</div>
</li>
<li class="col-4-12 ae-4">
<div class="fix-3-12 equalElement">
<h6 class="uppercase opacity-4 margin-top-3 margin-bottom-2">Allgemeine Anfragen</h6>
<p class="tiny"><a class="opacity-8" href="mailto:[email protected]">[email protected]</a></p>
</div>
<div class="fix-3-12 equalElement">
<h6 class="uppercase opacity-4 margin-top-3 margin-bottom-2">Kontaktaufnahme / Beratung</h6>
<p class="tiny"><a class="opacity-8" href="mailto:[email protected]">[email protected]</a></p>
</div>
<div class="fix-3-12 equalElement">
<h6 class="uppercase opacity-4 margin-top-3 margin-bottom-2">Developer Program & Open Source</h6>
<p class="tiny"><a class="opacity-8" href="mailto:[email protected]">[email protected]</a></p>
</div>
</li>
<li class="col-4-12 ae-5">
<div class="fix-3-12 equalElement">
<h6 class="uppercase opacity-4 margin-top-3 margin-bottom-2">The Rebaze Way Blog</h6> <p class="tiny"><a class="opacity-8" href="https://medium.com/rebaze">The Rebaze Way on Medium</a></p>
</div>
<div class="fix-3-12 equalElement">
<h6 class="uppercase opacity-4 margin-top-3 margin-bottom-2">Stay in touch</h6>
<ul class="social-circles">
<li><a class="social-twitter" href="https://twitter.com/rebazeio"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#twitter"></use></svg></a></li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="background" style="background-image:url(assets/img/background/sci4.png)"></div>
</section>
<section class="slide kenBurns deepOrange" data-name="privacy">
<div class="content">
<div class="container">
<div class="wrap">
<div class="fix-8-12 left">
<h1 class="margin-bottom-2 ae-1">Data Privacy</h1>
<p>We are very delighted that you have shown interest in our organisation. Data protection is of a particularly high priority for the management of the rebaze GmbH. The use of the Internet pages of the rebaze GmbH is possible without any indication of personal data; however, if a data subject wants to use special enterprise services via our website, processing of personal data could become necessary. If the processing of personal data is necessary and there is no statutory basis for such processing, we generally obtain consent from the data subject.</p>
<p>The processing of personal data, such as the name, address, e-mail address, or telephone number of a data subject shall always be in line with the General Data Protection Regulation (GDPR), and in accordance with the country-specific data protection regulations applicable to the rebaze GmbH. By means of this data protection declaration, our organisation would like to inform the general public of the nature, scope, and purpose of the personal data we collect, use and process. Furthermore, data subjects are informed, by means of this data protection declaration, of the rights to which they are entitled.</p>
<p>As the controller, the rebaze GmbH has implemented numerous technical and organizational measures to ensure the most complete protection of personal data processed through this website. However, Internet-based data transmissions may in principle have security gaps, so absolute protection may not be guaranteed. For this reason, every data subject is free to transfer personal data to us via alternative means, e.g. by telephone. </p>
<h4>1. Definitions</h4>
<p>The data protection declaration of the rebaze GmbH is based on the terms used by the European legislator for the adoption of the General Data Protection Regulation (GDPR). Our data protection declaration should be legible and understandable for the general public, as well as our customers and business partners. To ensure this, we would like to first explain the terminology used.</p>
<p>In this data protection declaration, we use, inter alia, the following terms:</p>
<ul style="list-style: none">
<li><h4>a) Personal data</h4>
<p>Personal data means any information relating to an identified or identifiable natural person (“data subject”). An identifiable natural person is one who can be identified, directly or indirectly, in particular by reference to an identifier such as a name, an identification number, location data, an online identifier or to one or more factors specific to the physical, physiological, genetic, mental, economic, cultural or social identity of that natural person.</p>
</li>
<li><h4>b) Data subject</h4>
<p>Data subject is any identified or identifiable natural person, whose personal data is processed by the controller responsible for the processing.</p>
</li>
<li><h4>c) Processing</h4>
<p>Processing is any operation or set of operations which is performed on personal data or on sets of personal data, whether or not by automated means, such as collection, recording, organisation, structuring, storage, adaptation or alteration, retrieval, consultation, use, disclosure by transmission, dissemination or otherwise making available, alignment or combination, restriction, erasure or destruction. </p>
</li>
<li><h4>d) Restriction of processing</h4>
<p>Restriction of processing is the marking of stored personal data with the aim of limiting their processing in the future. </p>
</li>
<li><h4>e) Profiling</h4>
<p>Profiling means any form of automated processing of personal data consisting of the use of personal data to evaluate certain personal aspects relating to a natural person, in particular to analyse or predict aspects concerning that natural person's performance at work, economic situation, health, personal preferences, interests, reliability, behaviour, location or movements. </p>
</li>
<li><h4>f) Pseudonymisation</h4>
<p>Pseudonymisation is the processing of personal data in such a manner that the personal data can no longer be attributed to a specific data subject without the use of additional information, provided that such additional information is kept separately and is subject to technical and organisational measures to ensure that the personal data are not attributed to an identified or identifiable natural person. </p>
</li>
<li><h4>g) Controller or controller responsible for the processing</h4>
<p>Controller or controller responsible for the processing is the natural or legal person, public authority, agency or other body which, alone or jointly with others, determines the purposes and means of the processing of personal data; where the purposes and means of such processing are determined by Union or Member State law, the controller or the specific criteria for its nomination may be provided for by Union or Member State law. </p>
</li>
<li><h4>h) Processor</h4>
<p>Processor is a natural or legal person, public authority, agency or other body which processes personal data on behalf of the controller. </p>
</li>
<li><h4>i) Recipient</h4>
<p>Recipient is a natural or legal person, public authority, agency or another body, to which the personal data are disclosed, whether a third party or not. However, public authorities which may receive personal data in the framework of a particular inquiry in accordance with Union or Member State law shall not be regarded as recipients; the processing of those data by those public authorities shall be in compliance with the applicable data protection rules according to the purposes of the processing. </p>
</li>
<li><h4>j) Third party</h4>
<p>Third party is a natural or legal person, public authority, agency or body other than the data subject, controller, processor and persons who, under the direct authority of the controller or processor, are authorised to process personal data.</p>
</li>
<li><h4>k) Consent</h4>
<p>Consent of the data subject is any freely given, specific, informed and unambiguous indication of the data subject's wishes by which he or she, by a statement or by a clear affirmative action, signifies agreement to the processing of personal data relating to him or her. </p>
</li>
</ul>
<h4>2. Name and Address of the controller</h4>
<p>Controller for the purposes of the General Data Protection Regulation (GDPR), other data protection laws applicable in Member states of the European Union and other provisions related to data protection is:
</p>
<p>rebaze GmbH</p>
<p>Zollstrasse 6</p>
<p>39114 Magdeburg</p>
<p>Germany</p>
<p>Phone: 0123</p>
<p>Email: [email protected]</p>
<p>Website: www.rebaze.com</p>
<h4>3. Name and Address of the Data Protection Officer</h4>
<p>The Data Protection Officer of the controller is:</p>
Jana Menzel
<p>rebaze GmbH</p>
<p>Zollstrasse 6</p>
<p>39114 Magdeburg</p>
<p>Gernany</p>
<p>Phone: 0123</p>
<p>Email: [email protected]</p>
<p>Website: www.rebaze.com</p>
<p>Any data subject may, at any time, contact our Data Protection Officer directly with all questions and suggestions concerning data protection.</p>
<h4>4. Cookies</h4>
<p>The Internet pages of the rebaze GmbH use cookies. Cookies are text files that are stored in a computer system via an Internet browser.</p>
<p>Many Internet sites and servers use cookies. Many cookies contain a so-called cookie ID. A cookie ID is a unique identifier of the cookie. It consists of a character string through which Internet pages and servers can be assigned to the specific Internet browser in which the cookie was stored. This allows visited Internet sites and servers to differentiate the individual browser of the dats subject from other Internet browsers that contain other cookies. A specific Internet browser can be recognized and identified using the unique cookie ID.</p>
<p>Through the use of cookies, the rebaze GmbH can provide the users of this website with more user-friendly services that would not be possible without the cookie setting.</p>
<p>By means of a cookie, the information and offers on our website can be optimized with the user in mind. Cookies allow us, as previously mentioned, to recognize our website users. The purpose of this recognition is to make it easier for users to utilize our website. The website user that uses cookies, e.g. does not have to enter access data each time the website is accessed, because this is taken over by the website, and the cookie is thus stored on the user's computer system. Another example is the cookie of a shopping cart in an online shop. The online store remembers the articles that a customer has placed in the virtual shopping cart via a cookie.</p>
<p>The data subject may, at any time, prevent the setting of cookies through our website by means of a corresponding setting of the Internet browser used, and may thus permanently deny the setting of cookies. Furthermore, already set cookies may be deleted at any time via an Internet browser or other software programs. This is possible in all popular Internet browsers. If the data subject deactivates the setting of cookies in the Internet browser used, not all functions of our website may be entirely usable.</p>
<h4>5. Collection of general data and information</h4>
<p>The website of the rebaze GmbH collects a series of general data and information when a data subject or automated system calls up the website. This general data and information are stored in the server log files. Collected may be (1) the browser types and versions used, (2) the operating system used by the accessing system, (3) the website from which an accessing system reaches our website (so-called referrers), (4) the sub-websites, (5) the date and time of access to the Internet site, (6) an Internet protocol address (IP address), (7) the Internet service provider of the accessing system, and (8) any other similar data and information that may be used in the event of attacks on our information technology systems.</p>
<p>When using these general data and information, the rebaze GmbH does not draw any conclusions about the data subject. Rather, this information is needed to (1) deliver the content of our website correctly, (2) optimize the content of our website as well as its advertisement, (3) ensure the long-term viability of our information technology systems and website technology, and (4) provide law enforcement authorities with the information necessary for criminal prosecution in case of a cyber-attack. Therefore, the rebaze GmbH analyzes anonymously collected data and information statistically, with the aim of increasing the data protection and data security of our organisation, and to ensure an optimal level of protection for the personal data we process. The anonymous data of the server log files are stored separately from all personal data provided by a data subject.</p>
<h4>6. Routine erasure and blocking of personal data</h4>
<p>The data controller shall process and store the personal data of the data subject only for the period necessary to achieve the purpose of storage, or as far as this is granted by the European legislator or other legislators in laws or regulations to which the controller is subject to.</p>
<p>If the storage purpose is not applicable, or if a storage period prescribed by the European legislator or another competent legislator expires, the personal data are routinely blocked or erased in accordance with legal requirements.</p>
<h4>7. Rights of the data subject</h4>
<ul style="list-style: none;">
<li><h4>a) Right of confirmation</h4>
<p>Each data subject shall have the right granted by the European legislator to obtain from the controller the confirmation as to whether or not personal data concerning him or her are being processed. If a data subject wishes to avail himself of this right of confirmation, he or she may, at any time, contact any employee of the controller.</p>
</li>
<li><h4>b) Right of access</h4>
<p>Each data subject shall have the right granted by the European legislator to obtain from the controller free information about his or her personal data stored at any time and a copy of this information. Furthermore, the European directives and regulations grant the data subject access to the following information:</p>
<ul style="list-style: none;">
<li>the purposes of the processing;</li>
<li>the categories of personal data concerned;</li>
<li>the recipients or categories of recipients to whom the personal data have been or will be disclosed, in particular recipients in third countries or international organisations;</li>
<li>where possible, the envisaged period for which the personal data will be stored, or, if not possible, the criteria used to determine that period;</li>
<li>the existence of the right to request from the controller rectification or erasure of personal data, or restriction of processing of personal data concerning the data subject, or to object to such processing;</li>
<li>the existence of the right to lodge a complaint with a supervisory authority;</li>
<li>where the personal data are not collected from the data subject, any available information as to their source;</li>
<li>the existence of automated decision-making, including profiling, referred to in Article 22(1) and (4) of the GDPR and, at least in those cases, meaningful information about the logic involved, as well as the significance and envisaged consequences of such processing for the data subject.</li>
</ul>
<p>Furthermore, the data subject shall have a right to obtain information as to whether personal data are transferred to a third country or to an international organisation. Where this is the case, the data subject shall have the right to be informed of the appropriate safeguards relating to the transfer.</p>
<p>If a data subject wishes to avail himself of this right of access, he or she may, at any time, contact any employee of the controller.</p>
</li>
<li><h4>c) Right to rectification </h4>
<p>Each data subject shall have the right granted by the European legislator to obtain from the controller without undue delay the rectification of inaccurate personal data concerning him or her. Taking into account the purposes of the processing, the data subject shall have the right to have incomplete personal data completed, including by means of providing a supplementary statement.</p>
<p>If a data subject wishes to exercise this right to rectification, he or she may, at any time, contact any employee of the controller.</p></li>
<li>
<h4>d) Right to erasure (Right to be forgotten) </h4>
<p>Each data subject shall have the right granted by the European legislator to obtain from the controller the erasure of personal data concerning him or her without undue delay, and the controller shall have the obligation to erase personal data without undue delay where one of the following grounds applies, as long as the processing is not necessary: </p>
<ul style="list-style: none;">
<li>The personal data are no longer necessary in relation to the purposes for which they were collected or otherwise processed.</li>
<li>The data subject withdraws consent to which the processing is based according to point (a) of Article 6(1) of the GDPR, or point (a) of Article 9(2) of the GDPR, and where there is no other legal ground for the processing.</li>
<li>The data subject objects to the processing pursuant to Article 21(1) of the GDPR and there are no overriding legitimate grounds for the processing, or the data subject objects to the processing pursuant to Article 21(2) of the GDPR. </li>
<li>The personal data have been unlawfully processed.</li>
<li>The personal data must be erased for compliance with a legal obligation in Union or Member State law to which the controller is subject.</li>
<li>The personal data have been collected in relation to the offer of information society services referred to in Article 8(1) of the GDPR.</li>
</ul>
<p>If one of the aforementioned reasons applies, and a data subject wishes to request the erasure of personal data stored by the rebaze GmbH, he or she may, at any time, contact any employee of the controller. An employee of rebaze GmbH shall promptly ensure that the erasure request is complied with immediately.</p>
<p>Where the controller has made personal data public and is obliged pursuant to Article 17(1) to erase the personal data, the controller, taking account of available technology and the cost of implementation, shall take reasonable steps, including technical measures, to inform other controllers processing the personal data that the data subject has requested erasure by such controllers of any links to, or copy or replication of, those personal data, as far as processing is not required. An employees of the rebaze GmbH will arrange the necessary measures in individual cases.</p>
</li>
<li><h4>e) Right of restriction of processing</h4>
<p>Each data subject shall have the right granted by the European legislator to obtain from the controller restriction of processing where one of the following applies:</p>
<ul style="list-style: none;">
<li>The accuracy of the personal data is contested by the data subject, for a period enabling the controller to verify the accuracy of the personal data. </li>
<li>The processing is unlawful and the data subject opposes the erasure of the personal data and requests instead the restriction of their use instead.</li>
<li>The controller no longer needs the personal data for the purposes of the processing, but they are required by the data subject for the establishment, exercise or defence of legal claims.</li>
<li>The data subject has objected to processing pursuant to Article 21(1) of the GDPR pending the verification whether the legitimate grounds of the controller override those of the data subject.</li>
</ul>
<p>If one of the aforementioned conditions is met, and a data subject wishes to request the restriction of the processing of personal data stored by the rebaze GmbH, he or she may at any time contact any employee of the controller. The employee of the rebaze GmbH will arrange the restriction of the processing. </p>
</li>
<li><h4>f) Right to data portability</h4>
<p>Each data subject shall have the right granted by the European legislator, to receive the personal data concerning him or her, which was provided to a controller, in a structured, commonly used and machine-readable format. He or she shall have the right to transmit those data to another controller without hindrance from the controller to which the personal data have been provided, as long as the processing is based on consent pursuant to point (a) of Article 6(1) of the GDPR or point (a) of Article 9(2) of the GDPR, or on a contract pursuant to point (b) of Article 6(1) of the GDPR, and the processing is carried out by automated means, as long as the processing is not necessary for the performance of a task carried out in the public interest or in the exercise of official authority vested in the controller.</p>
<p>Furthermore, in exercising his or her right to data portability pursuant to Article 20(1) of the GDPR, the data subject shall have the right to have personal data transmitted directly from one controller to another, where technically feasible and when doing so does not adversely affect the rights and freedoms of others.</p>
<p>In order to assert the right to data portability, the data subject may at any time contact any employee of the rebaze GmbH.</p>
</li>
<li>
<h4>g) Right to object</h4>
<p>Each data subject shall have the right granted by the European legislator to object, on grounds relating to his or her particular situation, at any time, to processing of personal data concerning him or her, which is based on point (e) or (f) of Article 6(1) of the GDPR. This also applies to profiling based on these provisions.</p>
<p>The rebaze GmbH shall no longer process the personal data in the event of the objection, unless we can demonstrate compelling legitimate grounds for the processing which override the interests, rights and freedoms of the data subject, or for the establishment, exercise or defence of legal claims.</p>
<p>If the rebaze GmbH processes personal data for direct marketing purposes, the data subject shall have the right to object at any time to processing of personal data concerning him or her for such marketing. This applies to profiling to the extent that it is related to such direct marketing. If the data subject objects to the rebaze GmbH to the processing for direct marketing purposes, the rebaze GmbH will no longer process the personal data for these purposes.</p>
<p>In addition, the data subject has the right, on grounds relating to his or her particular situation, to object to processing of personal data concerning him or her by the rebaze GmbH for scientific or historical research purposes, or for statistical purposes pursuant to Article 89(1) of the GDPR, unless the processing is necessary for the performance of a task carried out for reasons of public interest.</p>
<p>In order to exercise the right to object, the data subject may contact any employee of the rebaze GmbH. In addition, the data subject is free in the context of the use of information society services, and notwithstanding Directive 2002/58/EC, to use his or her right to object by automated means using technical specifications.</p>
</li>
<li><h4>h) Automated individual decision-making, including profiling</h4>
<p>Each data subject shall have the right granted by the European legislator not to be subject to a decision based solely on automated processing, including profiling, which produces legal effects concerning him or her, or similarly significantly affects him or her, as long as the decision (1) is not is necessary for entering into, or the performance of, a contract between the data subject and a data controller, or (2) is not authorised by Union or Member State law to which the controller is subject and which also lays down suitable measures to safeguard the data subject's rights and freedoms and legitimate interests, or (3) is not based on the data subject's explicit consent.</p>
<p>If the decision (1) is necessary for entering into, or the performance of, a contract between the data subject and a data controller, or (2) it is based on the data subject's explicit consent, the rebaze GmbH shall implement suitable measures to safeguard the data subject's rights and freedoms and legitimate interests, at least the right to obtain human intervention on the part of the controller, to express his or her point of view and contest the decision.</p>
<p>If the data subject wishes to exercise the rights concerning automated individual decision-making, he or she may, at any time, contact any employee of the rebaze GmbH.</p>
</li>
<li><h4>i) Right to withdraw data protection consent </h4>
<p>Each data subject shall have the right granted by the European legislator to withdraw his or her consent to processing of his or her personal data at any time. </p>
<p>If the data subject wishes to exercise the right to withdraw the consent, he or she may, at any time, contact any employee of the rebaze GmbH.</p>
</li>
</ul>
<h4>8. Data protection for applications and the application procedures</h4>
<p>The data controller shall collect and process the personal data of applicants for the purpose of the processing of the application procedure. The processing may also be carried out electronically. This is the case, in particular, if an applicant submits corresponding application documents by e-mail or by means of a web form on the website to the controller. If the data controller concludes an employment contract with an applicant, the submitted data will be stored for the purpose of processing the employment relationship in compliance with legal requirements. If no employment contract is concluded with the applicant by the controller, the application documents shall be automatically erased two months after notification of the refusal decision, provided that no other legitimate interests of the controller are opposed to the erasure. Other legitimate interest in this relation is, e.g. a burden of proof in a procedure under the General Equal Treatment Act (AGG).</p>
<h4>9. Data protection provisions about the application and use of Google Analytics (with anonymization function)</h4>
<p>On this website, the controller has integrated the component of Google Analytics (with the anonymizer function). Google Analytics is a web analytics service. Web analytics is the collection, gathering, and analysis of data about the behavior of visitors to websites. A web analysis service collects, inter alia, data about the website from which a person has come (the so-called referrer), which sub-pages were visited, or how often and for what duration a sub-page was viewed. Web analytics are mainly used for the optimization of a website and in order to carry out a cost-benefit analysis of Internet advertising.</p>
<p>The operator of the Google Analytics component is Google Inc., 1600 Amphitheatre Pkwy, Mountain View, CA 94043-1351, United States.</p>
<p>For the web analytics through Google Analytics the controller uses the application "_gat. _anonymizeIp". By means of this application the IP address of the Internet connection of the data subject is abridged by Google and anonymised when accessing our websites from a Member State of the European Union or another Contracting State to the Agreement on the European Economic Area.</p>
<p>The purpose of the Google Analytics component is to analyze the traffic on our website. Google uses the collected data and information, inter alia, to evaluate the use of our website and to provide online reports, which show the activities on our websites, and to provide other services concerning the use of our Internet site for us.</p>
<p>Google Analytics places a cookie on the information technology system of the data subject. The definition of cookies is explained above. With the setting of the cookie, Google is enabled to analyze the use of our website. With each call-up to one of the individual pages of this Internet site, which is operated by the controller and into which a Google Analytics component was integrated, the Internet browser on the information technology system of the data subject will automatically submit data through the Google Analytics component for the purpose of online advertising and the settlement of commissions to Google. During the course of this technical procedure, the organisation Google gains knowledge of personal information, such as the IP address of the data subject, which serves Google, inter alia, to understand the origin of visitors and clicks, and subsequently create commission settlements.</p>
<p>The cookie is used to store personal information, such as the access time, the location from which the access was made, and the frequency of visits of our website by the data subject. With each visit to our Internet site, such personal data, including the IP address of the Internet access used by the data subject, will be transmitted to Google in the United States of America. These personal data are stored by Google in the United States of America. Google may pass these personal data collected through the technical procedure to third parties.
</p>
<p>The data subject may, as stated above, prevent the setting of cookies through our website at any time by means of a corresponding adjustment of the web browser used and thus permanently deny the setting of cookies. Such an adjustment to the Internet browser used would also prevent Google Analytics from setting a cookie on the information technology system of the data subject. In addition, cookies already in use by Google Analytics may be deleted at any time via a web browser or other software programs.</p>
<p>In addition, the data subject has the possibility of objecting to a collection of data that are generated by Google Analytics, which is related to the use of this website, as well as the processing of this data by Google and the chance to preclude any such. For this purpose, the data subject must download a browser add-on under the link https://tools.google.com/dlpage/gaoptout and install it. This browser add-on tells Google Analytics through a JavaScript, that any data and information about the visits of Internet pages may not be transmitted to Google Analytics. The installation of the browser add-ons is considered an objection by Google. If the information technology system of the data subject is later deleted, formatted, or newly installed, then the data subject must reinstall the browser add-ons to disable Google Analytics. If the browser add-on was uninstalled by the data subject or any other person who is attributable to their sphere of competence, or is disabled, it is possible to execute the reinstallation or reactivation of the browser add-ons.</p>
<p>Further information and the applicable data protection provisions of Google may be retrieved under https://www.google.com/intl/en/policies/privacy/ and under http://www.google.com/analytics/terms/us.html. Google Analytics is further explained under the following Link https://www.google.com/analytics/.</p>
<h4>10. Data protection provisions about the application and use of Instagram</h4>
<p>On this website, the controller has integrated components of the service Instagram. Instagram is a service that may be qualified as an audiovisual platform, which allows users to share photos and videos, as well as disseminate such data in other social networks.</p>
<p>The operating company of the services offered by Instagram is Instagram LLC, 1 Hacker Way, Building 14 First Floor, Menlo Park, CA, UNITED STATES.</p>
<p>With each call-up to one of the individual pages of this Internet site, which is operated by the controller and on which an Instagram component (Insta button) was integrated, the Internet browser on the information technology system of the data subject is automatically prompted to the download of a display of the corresponding Instagram component of Instagram. During the course of this technical procedure, Instagram becomes aware of what specific sub-page of our website was visited by the data subject.</p>
<p>If the data subject is logged in at the same time on Instagram, Instagram detects with every call-up to our website by the data subject—and for the entire duration of their stay on our Internet site—which specific sub-page of our Internet page was visited by the data subject. This information is collected through the Instagram component and is associated with the respective Instagram account of the data subject. If the data subject clicks on one of the Instagram buttons integrated on our website, then Instagram matches this information with the personal Instagram user account of the data subject and stores the personal data.</p>
<p>Instagram receives information via the Instagram component that the data subject has visited our website provided that the data subject is logged in at Instagram at the time of the call to our website. This occurs regardless of whether the person clicks on the Instagram button or not. If such a transmission of information to Instagram is not desirable for the data subject, then he or she can prevent this by logging off from their Instagram account before a call-up to our website is made.</p>
<p>Further information and the applicable data protection provisions of Instagram may be retrieved under https://help.instagram.com/155833707900388 and https://www.instagram.com/about/legal/privacy/.</p>
<h4>11. Data protection provisions about the application and use of LinkedIn</h4>
<p>The controller has integrated components of the LinkedIn Corporation on this website. LinkedIn is a web-based social network that enables users with existing business contacts to connect and to make new business contacts. Over 400 million registered people in more than 200 countries use LinkedIn. Thus, LinkedIn is currently the largest platform for business contacts and one of the most visited websites in the world.</p>
<p>The operating company of LinkedIn is LinkedIn Corporation, 2029 Stierlin Court Mountain View, CA 94043, UNITED STATES. For privacy matters outside of the UNITED STATES LinkedIn Ireland, Privacy Policy Issues, Wilton Plaza, Wilton Place, Dublin 2, Ireland, is responsible.</p>
<p>With each call-up to one of the individual pages of this Internet site, which is operated by the controller and on which a LinkedIn component (LinkedIn plug-in) was integrated, the Internet browser on the information technology system of the data subject is automatically prompted to the download of a display of the corresponding LinkedIn component of LinkedIn. Further information about the LinkedIn plug-in may be accessed under https://developer.linkedin.com/plugins. During the course of this technical procedure, LinkedIn gains knowledge of what specific sub-page of our website was visited by the data subject.</p>
<p>If the data subject is logged in at the same time on LinkedIn, LinkedIn detects with every call-up to our website by the data subject—and for the entire duration of their stay on our Internet site—which specific sub-page of our Internet page was visited by the data subject. This information is collected through the LinkedIn component and associated with the respective LinkedIn account of the data subject. If the data subject clicks on one of the LinkedIn buttons integrated on our website, then LinkedIn assigns this information to the personal LinkedIn user account of the data subject and stores the personal data.</p>
<p>LinkedIn receives information via the LinkedIn component that the data subject has visited our website, provided that the data subject is logged in at LinkedIn at the time of the call-up to our website. This occurs regardless of whether the person clicks on the LinkedIn button or not. If such a transmission of information to LinkedIn is not desirable for the data subject, then he or she may prevent this by logging off from their LinkedIn account before a call-up to our website is made.</p>
<p>LinkedIn provides under https://www.linkedin.com/psettings/guest-controls the possibility to unsubscribe from e-mail messages, SMS messages and targeted ads, as well as the ability to manage ad settings. LinkedIn also uses affiliates such as Eire, Google Analytics, BlueKai, DoubleClick, Nielsen, Comscore, Eloqua, and Lotame. The setting of such cookies may be denied under https://www.linkedin.com/legal/cookie-policy. The applicable privacy policy for LinkedIn is available under https://www.linkedin.com/legal/privacy-policy. The LinkedIn Cookie Policy is available under https://www.linkedin.com/legal/cookie-policy.</p>
<h4>12. Data protection provisions about the application and use of SlideShare</h4>
<p>On this website, the controller has integrated SlideShare components. LinkedIn SlideShare as a file hosting service allows you to exchange and archive presentations and other documents, such as PDF files, videos, and webinars. The file hosting service allows users to upload media content in all popular formats, with the documents either publicly-accessible or private-labeled.</p>
<p>The operating company of SlideShare is LinkedIn Corporation, 2029 Stierlin Court Mountain View, CA 94043, United States. For privacy matters outside of the United States the LinkedIn Ireland, Privacy Policy Issues, Wilton Plaza, Wilton Place, Dublin 2, Ireland, is responsible.</p>
<p>LinkedIn SlideShare provides so-called embedded codes for the media content (e.g. presentations, PDF files, videos, photos, etc.) stored there. Embedded codes are program codes that are embedded in the Internet pages to display external content on their own website. Embedded codes allow content to be reproduced on its own website without storing it on its own server, possibly violating the right of reproduction of the respective author of the content. A further advantage of the use of an embedded code is that the respective operator of a website does not use its own storage space and the own server is thereby relieved. An embedded code may be integrated at any point on another website so that an external content may also be inserted within the own text. The purpose of using LinkedIn SlideShare is to relieve our server and to avoid copyright infringements, while at the same time using third-party content.</p>
<p>With each call-up to our Internet site, which is equipped with a SlideShare component (embedded code), this component prompts the browser that you are using to download the according embedded data from SlideShare. During the course of this technical procedure, LinkedIn gains knowledge of which specific sub-page of our website is visited by the data subject.</p>
<p>If the data subject is logged in on SlideShare at the same time, SlideShare recognizes with each call-up to our website by the data subject and for the entire duration of their stay on our Internet site which specific sub-page was visited by the data subject. This information is collected by SlideShare and assigned to the respective SlideShare account of the data subject through LinkedIn.</p>
<p>LinkedIn obtains information via the SlideShare component that the data subject has visited our website, provided that the data subject is logged in at SlideShare at the time of the call-up to our website. This occurs regardless of whether the person clicks on the embedded media data or not. If such a transmission of information to SlideShare is not desirable for the data subject, then he or she may prevent this by logging off from their SlideShare account before a call-up to our website is made.</p>
<p>LinkedIn also uses affiliates such as Eire, Google Analytics, BlueKai, DoubleClick, Nielsen, Comscore, Eloqua, and Lotame. The setting of such cookies may be denied under https://www.linkedin.com/legal/cookie-policy. The applicable data protection provisions for LinkedIn is available under https://www.linkedin.com/legal/privacy-policy.</p>
<h4>13. Data protection provisions about the application and use of Twitter</h4>
<p>On this website, the controller has integrated components of Twitter. Twitter is a multilingual, publicly-accessible microblogging service on which users may publish and spread so-called ‘tweets,’ e.g. short messages, which are limited to 280 characters. These short messages are available for everyone, including those who are not logged on to Twitter. The tweets are also displayed to so-called followers of the respective user. Followers are other Twitter users who follow a user's tweets. Furthermore, Twitter allows you to address a wide audience via hashtags, links or retweets.</p>
<p>The operating company of Twitter is Twitter, Inc., 1355 Market Street, Suite 900, San Francisco, CA 94103, UNITED STATES.</p>
<p>With each call-up to one of the individual pages of this Internet site, which is operated by the controller and on which a Twitter component (Twitter button) was integrated, the Internet browser on the information technology system of the data subject is automatically prompted to download a display of the corresponding Twitter component of Twitter. Further information about the Twitter buttons is available under https://about.twitter.com/de/resources/buttons. During the course of this technical procedure, Twitter gains knowledge of what specific sub-page of our website was visited by the data subject. The purpose of the integration of the Twitter component is a retransmission of the contents of this website to allow our users to introduce this web page to the digital world and increase our visitor numbers.</p>
<p>If the data subject is logged in at the same time on Twitter, Twitter detects with every call-up to our website by the data subject and for the entire duration of their stay on our Internet site which specific sub-page of our Internet page was visited by the data subject. This information is collected through the Twitter component and associated with the respective Twitter account of the data subject. If the data subject clicks on one of the Twitter buttons integrated on our website, then Twitter assigns this information to the personal Twitter user account of the data subject and stores the personal data.</p>
<p>Twitter receives information via the Twitter component that the data subject has visited our website, provided that the data subject is logged in on Twitter at the time of the call-up to our website. This occurs regardless of whether the person clicks on the Twitter component or not. If such a transmission of information to Twitter is not desirable for the data subject, then he or she may prevent this by logging off from their Twitter account before a call-up to our website is made.</p>
<p>The applicable data protection provisions of Twitter may be accessed under https://twitter.com/privacy?lang=en.</p>
<h4>14. Data protection provisions about the application and use of Xing</h4>
<p>On this website, the controller has integrated components of XING. XING is an Internet-based social network that enables users to connect with existing business contacts and to create new business contacts. The individual users can create a personal profile of themselves at XING. Companies may, e.g. create company profiles or publish jobs on XING.</p>
<p>The operating company of XING is XING SE, Dammtorstraße 30, 20354 Hamburg, Germany.</p>
<p>With each call-up to one of the individual pages of this Internet site, which is operated by the controller and on which a XING component (XING plug-in) was integrated, the Internet browser on the information technology system of the data subject is automatically prompted to download a display of the corresponding XING component of XING. Further information about the XING plug-in the may be accessed under https://dev.xing.com/plugins. During the course of this technical procedure, XING gains knowledge of what specific sub-page of our website was visited by the data subject.</p>
<p>If the data subject is logged in at the same time on XING, XING detects with every call-up to our website by the data subject—and for the entire duration of their stay on our Internet site—which specific sub-page of our Internet page was visited by the data subject. This information is collected through the XING component and associated with the respective XING account of the data subject. If the data subject clicks on the XING button integrated on our Internet site, e.g. the "Share"-button, then XING assigns this information to the personal XING user account of the data subject and stores the personal data.</p>
<p>XING receives information via the XING component that the data subject has visited our website, provided that the data subject is logged in at XING at the time of the call to our website. This occurs regardless of whether the person clicks on the XING component or not. If such a transmission of information to XING is not desirable for the data subject, then he or she can prevent this by logging off from their XING account before a call-up to our website is made.</p>
<p>The data protection provisions published by XING, which is available under https://www.xing.com/privacy, provide information on the collection, processing and use of personal data by XING. In addition, XING has published privacy notices for the XING share button under https://www.xing.com/app/share?op=data_protection.</p>
<h4>15. Data protection provisions about the application and use of YouTube</h4>
<p>On this website, the controller has integrated components of YouTube. YouTube is an Internet video portal that enables video publishers to set video clips and other users free of charge, which also provides free viewing, review and commenting on them. YouTube allows you to publish all kinds of videos, so you can access both full movies and TV broadcasts, as well as music videos, trailers, and videos made by users via the Internet portal.
</p>
<p>The operating company of YouTube is YouTube, LLC, 901 Cherry Ave., San Bruno, CA 94066, UNITED STATES. The YouTube, LLC is a subsidiary of Google Inc., 1600 Amphitheatre Pkwy, Mountain View, CA 94043-1351, UNITED STATES.</p>
<p>With each call-up to one of the individual pages of this Internet site, which is operated by the controller and on which a YouTube component (YouTube video) was integrated, the Internet browser on the information technology system of the data subject is automatically prompted to download a display of the corresponding YouTube component. Further information about YouTube may be obtained under https://www.youtube.com/yt/about/en/. During the course of this technical procedure, YouTube and Google gain knowledge of what specific sub-page of our website was visited by the data subject.</p>
<p>If the data subject is logged in on YouTube, YouTube recognizes with each call-up to a sub-page that contains a YouTube video, which specific sub-page of our Internet site was visited by the data subject. This information is collected by YouTube and Google and assigned to the respective YouTube account of the data subject.</p>
<p>YouTube and Google will receive information through the YouTube component that the data subject has visited our website, if the data subject at the time of the call to our website is logged in on YouTube; this occurs regardless of whether the person clicks on a YouTube video or not. If such a transmission of this information to YouTube and Google is not desirable for the data subject, the delivery may be prevented if the data subject logs off from their own YouTube account before a call-up to our website is made.</p>
<p>YouTube's data protection provisions, available at https://www.google.com/intl/en/policies/privacy/, provide information about the collection, processing and use of personal data by YouTube and Google.</p>
<h4>16. Legal basis for the processing </h4>
<p>Art. 6(1) lit. a GDPR serves as the legal basis for processing operations for which we obtain consent for a specific processing purpose. If the processing of personal data is necessary for the performance of a contract to which the data subject is party, as is the case, for example, when processing operations are necessary for the supply of goods or to provide any other service, the processing is based on Article 6(1) lit. b GDPR. The same applies to such processing operations which are necessary for carrying out pre-contractual measures, for example in the case of inquiries concerning our products or services. Is our company subject to a legal obligation by which processing of personal data is required, such as for the fulfillment of tax obligations, the processing is based on Art. 6(1) lit. c GDPR.
In rare cases, the processing of personal data may be necessary to protect the vital interests of the data subject or of another natural person. This would be the case, for example, if a visitor were injured in our company and his name, age, health insurance data or other vital information would have to be passed on to a doctor, hospital or other third party. Then the processing would be based on Art. 6(1) lit. d GDPR.
Finally, processing operations could be based on Article 6(1) lit. f GDPR. This legal basis is used for processing operations which are not covered by any of the abovementioned legal grounds, if processing is necessary for the purposes of the legitimate interests pursued by our company or by a third party, except where such interests are overridden by the interests or fundamental rights and freedoms of the data subject which require protection of personal data. Such processing operations are particularly permissible because they have been specifically mentioned by the European legislator. He considered that a legitimate interest could be assumed if the data subject is a client of the controller (Recital 47 Sentence 2 GDPR).
</p>
<h4>17. The legitimate interests pursued by the controller or by a third party</h4>
<p>Where the processing of personal data is based on Article 6(1) lit. f GDPR our legitimate interest is to carry out our business in favor of the well-being of all our employees and the shareholders.</p>
<h4>18. Period for which the personal data will be stored</h4>
<p>The criteria used to determine the period of storage of personal data is the respective statutory retention period. After expiration of that period, the corresponding data is routinely deleted, as long as it is no longer necessary for the fulfillment of the contract or the initiation of a contract.</p>
<h4>19. Provision of personal data as statutory or contractual requirement; Requirement necessary to enter into a contract; Obligation of the data subject to provide the personal data; possible consequences of failure to provide such data </h4>
<p>We clarify that the provision of personal data is partly required by law (e.g. tax regulations) or can also result from contractual provisions (e.g. information on the contractual partner).
Sometimes it may be necessary to conclude a contract that the data subject provides us with personal data, which must subsequently be processed by us. The data subject is, for example, obliged to provide us with personal data when our company signs a contract with him or her. The non-provision of the personal data would have the consequence that the contract with the data subject could not be concluded.
Before personal data is provided by the data subject, the data subject must contact any employee. The employee clarifies to the data subject whether the provision of the personal data is required by law or contract or is necessary for the conclusion of the contract, whether there is an obligation to provide the personal data and the consequences of non-provision of the personal data.
</p>
<h4>20. Existence of automated decision-making</h4>
<p>As a responsible company, we do not use automatic decision-making or profiling.</p>
<p>This Privacy Policy has been generated by the Privacy Policy Generator of the <a href="https://dg-datenschutz.de/services/external-data-protection-officer/?lang=en">External Data Protection Officers</a> that was developed in cooperation with the <a href="https://www.wbs-law.de/eng/practice-areas/media-law/">Media Law Lawyers</a> from WBS-LAW.
</p>
</div>
</div>
</div>
</div>
<div class="background" style="background-image:url(assets/img/background/sci4.png)"></div>
</section>
<!-- Panel Bottom #09 -->
<nav class="panel bottom ">
<div class="sections">
<div class="center"><span class="nextSlide"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#arrow-down"></use></svg></span></div>
</div>
</nav>
<!-- Panel Bottom #02 -->
<!--
<nav class="panel bottom forceMobileView">
<div class="sections desktop">
<div class="left"></div>
<div class="center">
<ul class="menu uppercase">
<li><a href="#">Tour</a></li>
<li><a href="#">Upgrade</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Explore</a></li>
</ul>
</div>
<div class="right"><span data-dropdown-id="2" class="button actionButton dropdownTrigger"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#share"></use></svg></span></div>
</div>
<div class="sections compact hidden">
<div class="right"><span data-dropdown-id="2" class="button actionButton dropdownTrigger"><svg><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#share"></use></svg></span></div>
</div>
</nav>
-->
</body>
</html>