-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1172 lines (845 loc) · 57.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
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/site.webmanifest">
<link rel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-config" content="favicons/browserconfig.xml">
<meta name="theme-color" content="#ff676f">
<meta content="text/html" charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Adam Dolinsky</title>
<link rel="stylesheet" type="text/css" href="css/layout.css">
<link rel="stylesheet" type="text/css" href="css/nav.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="fonts/fonts.css">
<meta property="description" content="Adam Dolinsky">
<meta property="title" content="Adam Dolinsky">
<script src="js/jquery-2.1.1.min.js"></script>
<script src="js/mousewheel.js"></script>
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#941717">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#941717">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#941717">
</head>
<body class="bg-black ov-h is-in" style="background-color: rgb(0, 0, 0); color: rgb(255, 255, 255);">
<style>
::selection {
background-color: rgba(255, 0, 0, 0.5);
color: white;
}
h3.t-a-l {
line-height: 32px;
}
@media screen and (max-width: 698px) {
h3.t-a-l {
line-height: 32px;
font-size: 24px;
margin-left: 50px;
}
span.js-section-title-word {
font-size: 32px;
width: 10px;
}
.onlyShowWhenMS {
display: block;
}
.onlyShowWhenDT {
display: none;
}
}
@media screen and (min-width: 699px) {
.onlyShowWhenMS {
display: none;
}
.onlyShowWhenDT {
display: block;
}
}
</style>
<nav>
<div>
<a href="#nav-menu" class="nav-test wiggle js-view-icon">
<div class="nav-burger-text js-view-text">|</div>
<div class="nav-burger-text js-view-text">|</div>
<div class="nav-burger-text js-view-text">|</div>
</a>
<div class="lightbox short-animate" id="nav-menu">
<div>
<div align="center" class="fond">
<div class="nav-preview-holder" style="width:1400px;">
<div class="nav-preview">
<img src="img/preview/0.png">
<a href="index.html"><b>Hauptübersicht</b></a>
</div>
<div class="nav-preview">
<img src="img/preview/1.png">
<a href="mailto:adam.dolinsky@outlook.com?subject=Kontaktanfrage%20über%20Portfolio-Website&body=Hallo%20Adam,%0D%0A%0D%0Aich%20kontaktiere%20dich,%20..." target="_blank">Kontakt</a>
</div>
<div class="nav-preview">
<img src="img/preview/2.png">
<a href="projekte.html">Erklärvideo 1</a>
</div>
<div class="nav-preview">
<img src="img/preview/3.png">
<a href="projekte.html">Erklärvideo 2</a>
</div>
<div class="nav-preview">
<img src="img/preview/4.png">
<a href="fotowoche.html">Fotoarchiv</a>
</div>
<div class="nav-preview">
<img src="img/preview/5.png">
<a href="projekte.html">Projektübersicht</a>
</div>
<div class="nav-preview">
<img src="img/preview/6.png">
<a href="download-master/Lebenslauf.pdf" target="_blank">Lebenslauf</a>
</div>
<div class="nav-preview">
<img src="img/preview/7.png">
<a href="unavailable.html">Coming Soon!</a>
</div>
¨
<style>
.s-button {
text-align: right;
margin-right: 45px;
}
.s-button a {
background-color: black;
display: inline-block;
width: 170px;
padding: 5px;
margin: 3px 0;
border-radius: 3px;
transition: all 0.15s ease-out;
}
.s-button a:hover {
background-color: rgb(255, 80, 80);
transition: all 0.08s ease-out;
}
</style>
</div>
</div>
</div>
<div class="nav-ms-nav">
<table>
<tr>
<td colspan="4"><a href="index.html"><b>Hauptübersicht</b></a></td>
</tr>
<tr>
<td colspan="4"><a href="mailto:adam.dolinsky@outlook.com?subject=Kontaktanfrage%20über%20Portfolio-Website&body=Hallo%20Adam,%0D%0A%0D%0Aich%20kontaktiere%20dich,%20..." target="_blank">Kontakt</a></td>
</tr>
<tr>
<td colspan="4"><a href="projekte.html">Erklärvideo 1</a></td>
</tr>
<tr>
<td colspan="4"><a href="projekte.html">Erklärvideo 2</a></td>
</tr>
<tr>
<td colspan="4"><a href="fotowoche.html">Fotoarchiv</a></td>
</tr>
<tr>
<td colspan="4"><a href="projekte.html">Projektübersicht</a></td>
</tr>
<tr>
<td colspan="4"><a href="download-master/Lebenslauf.pdf" target="_blank">Lebenslauf</a></td>
</tr>
<tr>
<td colspan="4"> </td>
</tr>
</table>
</div>
<div class="nav-phone">
<table>
<tr>
<td colspan="2"><a href="index.html"><b>Hauptübersicht</b></a></td>
</tr>
<tr>
<td><a href="projekte.html">Erklärvideo 1</a></td> <!-- links -->
<td><a href="mailto:adam.dolinsky@outlook.com?subject=Kontaktanfrage%20über%20Portfolio-Website&body=Hallo%20Adam,%0D%0A%0D%0Aich%20kontaktiere%20dich,%20..." target="_blank">Kontakt</a></td> <!-- rechts -->
</tr>
<tr>
<td><a href="projekte.html">Erklärvideo 2</a></td>
<td><a href="download-master/Lebenslauf.pdf">Lebenslauf</a></td>
</tr>
<tr>
<td><a href="fotowoche.html">Fotoarchiv</a></td>
<td><a href="projekte.html">Projektübersicht</a></td>
</tr>
</table>
</div>
</div>
<div id="lightbox-controls" class="short-animate">
<a id="close-lightbox" class="long-animate" href="#"></a>
</div>
</div>
</nav>
<!-- ############ BACKGROUND ############# -->
<canvas id="playArea" style="position: absolute; top: 0; left: 0;"></canvas>
<!-- ############ OUTSIDE THE BOX ############# -->
<div class="js-overlay pos-f t-a-r z-500" style="display: none;">
<svg class="js-n pos-f l-phi6 t-phi6 w-phi5 ms-w-phi7" x="0px" y="0px" viewBox="0 0 206.0284 130.8335" enable-background="new 0 0 206.0284 130.8335" xml:space="preserve">
<path fill="#555" d="M203.8853,11.1924c0.4126-0.0342,0.7617-0.3193,0.8774-0.7168l1.2256-4.2031
c0.0884-0.3022,0.0288-0.6279-0.1602-0.8799c-0.1885-0.252-0.4849-0.3999-0.7998-0.3999H172.979
c-0.4663,0-0.8706,0.3223-0.9746,0.7764l-0.9805,4.2773c-0.0635,0.2773-0.0063,0.5684,0.1577,0.8008
c0.1641,0.2319,0.4194,0.3833,0.7017,0.416c5.6851,0.6597,8.3633,1.5317,8.3633,6.6592c0,1.7827-0.3013,3.8931-0.8975,6.2798
l-11.1357,45.9512L144.2603,5.6445c-0.1455-0.3916-0.5195-0.6519-0.9375-0.6519h-10.1855c-7.2212,0-12.3076-0.9287-18.2026-2.0054
C107.269,1.5869,98.5811,0,82.5703,0C60.0469,0,48.2622,15.6494,48.2622,31.1084c0,13.4951,11.5278,24.0664,26.2441,24.0664
c10.8247,0,19.9697-6.9761,19.9697-15.2334c0-3.1304-1.8774-6.7856-7.1689-6.7856c-4.4868,0-6.8726,2.5093-9.3994,5.166
l-0.2026,0.2134c-2.4561,2.5903-4.835,4.7349-9.0879,4.7349c-6.4746,0-10.4971-5.6904-10.4971-14.8506
c0-11.311,12.4863-20.8667,27.2666-20.8667c33.541,0,33.541,11.8423,33.541,16.8989c0,10.3062-12.7153,46.71-25.731,65.7998
c-14.1865,20.7612-34.2866,33.1562-53.7681,33.1562c-20.8701,0-30.2119-14.2095-30.2119-28.2915
c0-11.2949,6.5059-23.2993,18.5625-23.2993c7.0962,0,10.7949,4.0898,14.373,8.0464c3.165,3.4985,6.1538,6.8032,11.231,6.8032
c3.4644,0,8.9609-2.5366,8.9609-9.3442c0-3.5103-2.6045-7.6748-6.7979-10.8691c-4.7788-3.6406-11.0029-5.6455-17.5249-5.6455
C15.6348,60.8076,0,75.5474,0,96.6523c0,17.0137,12.3501,34.1812,39.9414,34.1812c32.9858,0,51.7437-22.0645,62.9829-38.6602
c11.4517-16.8638,23.5093-49.9248,25.3477-65.1616l0.6401-0.1274l29.3271,77.3154c0.1475,0.3887,0.5195,0.6455,0.9351,0.6455
h11.1938c0.4624,0,0.8647-0.3174,0.9727-0.7671l19.147-80.0088C193.1479,13.0474,196.1069,11.8379,203.8853,11.1924z"></path>
</svg>
<svg class="js-spiral-overlay pos-a l-0 t-0 d-n ms-d-b w-fs" x="0px" y="0px" viewBox="-83.8 154.9 779.6 482.2" enable-background="new -83.8 154.9 779.6 482.2" xml:space="preserve">
<rect x="-83.3" y="155.4" fill="none" stroke="#666666" stroke-width="5" stroke-miterlimit="10" width="481.2" height="481.2"></rect>
<rect x="397.9" y="155.4" fill="none" stroke="#666666" stroke-width="5" stroke-miterlimit="10" width="297.4" height="297.4"></rect>
<rect x="511.5" y="452.8" fill="none" stroke="#666666" stroke-width="5" stroke-miterlimit="10" width="183.8" height="183.8"></rect>
<rect x="397.9" y="523" fill="none" stroke="#666666" stroke-width="5" stroke-miterlimit="10" width="113.6" height="113.6"></rect>
<rect x="397.9" y="452.8" fill="none" stroke="#666666" stroke-width="5" stroke-miterlimit="10" width="70.2" height="70.2"></rect>
<path fill="none" stroke="#666666" stroke-width="5" stroke-miterlimit="10" d="M468.1,452.8c-38.8,0-70.2,31.4-70.2,70.2
c0,62.7,50.9,113.6,113.6,113.6l0,0c101.5,0,183.8-82.3,183.8-183.8c0-164.3-133.2-297.4-297.4-297.4
c-265.8,0-481.2,215.4-481.2,481.2"></path>
</svg>
<svg class="js-spiral-overlay pos-a l-0 t-0 ms-d-n w-fs" x="0px" y="0px" viewBox="64.9 6.2 482.2 779.6" enable-background="new 64.9 6.2 482.2 779.6" xml:space="preserve">
<rect x="65.4" y="6.7" fill="none" stroke-width="5" stroke="#666666" stroke-miterlimit="10" width="481.2" height="481.2"></rect>
<rect x="249.2" y="487.9" fill="none" stroke-width="5" stroke="#666666" stroke-miterlimit="10" width="297.4" height="297.4"></rect>
<rect x="65.4" y="601.5" fill="none" stroke-width="5" stroke="#666666" stroke-miterlimit="10" width="183.8" height="183.8"></rect>
<rect x="65.4" y="487.9" fill="none" stroke-width="5" stroke="#666666" stroke-miterlimit="10" width="113.6" height="113.6"></rect>
<rect x="179" y="487.9" fill="none" stroke-width="5" stroke="#666666" stroke-miterlimit="10" width="70.2" height="70.2"></rect>
<path fill="none" stroke="#666666" stroke-width="5" stroke-miterlimit="10" d="M249.2,558.1c0-38.8-31.4-70.2-70.2-70.2
c-62.7,0-113.6,50.9-113.6,113.6l0,0c0,101.5,82.3,183.8,183.8,183.8c164.3,0,297.4-133.2,297.4-297.4
C546.6,222.1,331.2,6.7,65.4,6.7"></path>
</svg>
</div>
<div class="js-message pos-f fx-c l-phi6 b-phi7 f-w-700 z-10" style="z-index: 10;">
<div class="ms-f-s-xxxl po-e-n m-l--025 ms-m-l--05">Adam<br>Dolinsky</div>
</div>
<!-- ############ PAGINATION ############# -->
<div class="js-dots d-ib pos-f r-phi6 ms-r-a ms-l-phi9 t-phi5 ms-t-phi6 h-phi2 ms-h-phi4 fx-c j-c-between m-r-025 z-200" style="color: rgb(11, 11, 11);">
<div style="cursor: default;" class="pos-r d-n ms-d-ib rot-90 w-80px t-o-tl l-05rem t-a-l f-s-xxxs m-b-1"><span class="js-current">1</span> / <span class="js-total">23</span></div>
<div class="js-dot w-0 h-0 ol ol-w-1 circle bg-white op-30 op-100"></div>
<div class="js-dot w-0 h-0 ol ol-w-1 circle bg-white op-30"></div>
</div>
<!-- ############ SPIRAL EFFECT CONTROLS ############# -->
<canvas id="canvas" class="pos-f t-0 l-0" width="1600" height="988"></canvas>
<div class="pos-f fs t-0 l-0 z-400 d-b po-e-n">
<svg class="js-spiral-svg w-fs start" x="0px" y="0px" viewBox="-83.4 155.4 985.9 610" enable-background="new -83.4 155.4 985.9 610" xml:space="preserve">
<path class="op-50 svg-spiral-big" id="path2776_2_" sodipodi:start="3.1415927" sodipodi:end="4.712389" sodipodi:ry="281.75464" sodipodi:cx="337.94031" sodipodi:open="true" sodipodi:type="arc" sodipodi:rx="301.58487" sodipodi:cy="2354.0146" fill="none" stroke="#d9cfe6" stroke-width=".1" d="
M630.9,596.6c0.3,0,0.6-0.3,0.6-0.6c0-0.6-0.4-1-1-1c-0.9,0-1.6,0.7-1.6,1.6l0,0c0,1.4,1.2,2.6,2.6,2.6l0,0c2.3,0,4.2-1.9,4.2-4.2
l0,0c0-3.8-3.1-6.8-6.8-6.8l0,0h0.1l0,0c-6.9,0-12.5,5.6-12.5,12.5v-0.1c0,11.2,9.1,20.3,20.3,20.3l0,0h-0.1l0,0
c18.3,0,33.1-14.8,33.1-33.1l0,0.6c0-30.3-24.5-54.8-54.8-54.8l0,0l0.1,0l0,0c-48.3,0-87.5,39.2-87.5,87.5v0
c0,78.8,63.9,142.8,142.8,142.8l0,0l0,0c128.3,0,232.3-104,232.3-232.3l0,0l0,0c0-207.7-168.4-376.1-376.1-376.1l0,0l0.2,0l0,0
c-336.8,0-609.9,273.1-609.9,609.9"></path>
</svg>
</div>
<div class="js-close-icon pos-f t-0 l-fs w-2rem ms-w-3rem h-2rem ms-h-3rem m-r-phi6 m-t-phi6 ms-m-r-0 ms-m-t-0 z-500" style="transform: translate3d(693px, 325px, 0px); right: auto;">
<svg class="w-100p h-100p" x="0px" y="0px" viewBox="0 0 40.729 40.729" enable-background="new 0 0 40.729 40.729" xml:space="preserve">
<circle class="js-close-bg" cx="20.365" cy="20.365" r="20.365" style="fill: rgb(11, 11, 11);"></circle>
<polygon class="js-close-lines" fill="#FFFFFF" points="28.465,13.325 27.404,12.264 20.365,19.304 13.325,12.264 12.264,13.325 19.304,20.365
12.264,27.405 13.325,28.465 20.365,21.425 27.404,28.465 28.465,27.405 21.425,20.365 " style="fill: rgb(255, 255, 255);"></polygon>
</svg>
</div>
<!-- END SPIRAL EFFECT CONTROLS -->
<!-- PAGES -->
<div class="js-spiral pos-f t-0 l-0 fs z-20" style="transform-origin: 1157px 715px 0px; transform: rotate(4.23827e-186deg) scale(1); pointer-events: auto;">
<!-- ############ LANDING PAGE ############# -->
<div class="js-section js-project pos-a bg-got color-got bd ms-bd-w-2 ol" style="background-color: rgba(0,0,0,0) !important;, border: 0px solid rgba(0,0,0,0) !important; color: rgba(0,0,0,0) !important;"></div>
<!-- END PAGE -->
<!-- ############ PAGE 1 ############# -->
<div id="page-1" class="js-section js-project pos-a bg-got color-got bd ms-bd-w-2 ol" style="width: 988.853px; height: 988.853px; transform-origin: 1157px 715px 0px; transform: rotate(180deg) scale(0.381965); background: rgb(255, 255, 255); color: rgb(11, 11, 11); display: block;">
<div class="js-arc pos-a t-0 l-0 w-200p h-200p circle d-n op-60 po-e-n" style="display: none; background-color: rgb(11, 11, 11);"></div>
<section class="MAIN-SECTION d-f a-i-start j-c-between m-t-phi6 m-l-phi6 m-r-phi6">
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<h3 class="t-a-l">Hallo!</h3>
<div class="js-description d-n ms-d-b f-s-body">Ich bin Mediamatiker und erstelle multimediale Inhalte, wie Videos, Fotos, Flyer, Webseiten, Brandings und vieles mehr. Meine Skills und Tätigkeitsbereiche sind sehr breit. Ich verfüge über einen Berufsmaturabschluss des Typs Wirtschaft und Dienstleistungen, weshalb Buchhaltung und BWL für mich keine Fremdwörter sind.
</div>
<div class="js-description d-n ms-d-b f-s-body">Wenn du mich wegen einer Projektanfrage oder sonstigem kontaktieren möchtest, kannst du gerne direkt eine <a href="mailto:adam.dolinsky@outlook.com?subject=Kontaktanfrage%20über%20Portfolio-Website&body=Hallo%20Adam,%0D%0A%0D%0Aich%20kontaktiere%20dich,%20..." target="_blank"><span class="BUTTON-long" style="cursor: pointer;">E-Mail schreiben</span></a>. Ich freue mich von dir zu hören!
</div>
<div class="js-description d-n ms-d-b f-s-body">Ich bin mit vielen neuen modernen Technologien vertraut. Mein Ziel ist es, Wünsche kundenorientiert umzusetzen. Ich interessiere mich ebenfalls für IT und kann neue Sachen schnell auffassen.
</div>
</div>
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<h3 class="t-a-l">Schnellzugriff </h3>
<div class="js-description d-n ms-d-b f-s-body">Sieh dir das wichtigste in kürze an. Klicke auf einen der untenstehenden Links, um mehr zu erfahren.
</div>
<div class="js-description d-n ms-d-b f-s-body">
<a href="projekte.html"><span class="BUTTON-fw" style="cursor: pointer;">➤ Projekte und Arbeiten</span></a>
<a href="download-master/Lebenslauf.pdf" target="_blank"><span class="BUTTON-fw" style="cursor: pointer;">➤ Karrierelaufbahn und Interessen</span></a>
<a href="mailto:adam.dolinsky@outlook.com?subject=Kontaktanfrage%20über%20Portfolio-Website&body=Hallo%20Adam,%0D%0A%0D%0Aich%20kontaktiere%20dich,%20..."><span class="BUTTON-fw" style="cursor: pointer;">➤ Kontakt</span></a>
</div>
</div>
</section>
<section class="FOOTER-SECTION pos-a b-phi6 ms-b-a ms-t-phi2 l-0 w-100p d-f a-i-start j-c-between ms-p-b-phi6 p-l-phi6 p-r-phi6">
<h1 class="js-section-title h-phi5 w-phi3 d-f fx-c j-c-between f-s-xxxl ms-f-s-xl f-w-700">
<span class="js-section-title-word m-b-phi9 w-s-nw"></span>
<span class="js-section-title-word m-b-phi9 w-s-nw">Entdecke, was alles</span>
<span class="js-section-title-word m-b-phi9 w-s-nw">möglich ist</span>
</h1>
</section>
</div>
<!-- END PAGE -->
<!-- ############ PAGE 2 ############# -->
<!-- 0, 200, 255 / 0, 29, 38 -->
<div id="page-13" class="js-section js-project pos-a bg-got color-got bd ms-bd-w-2 ol" data-project="got" style="width: 988.853px; height: 988.853px; transform-origin: 1157px 715px 0px; transform: rotate(180deg) scale(0.381965); background: rgb(0, 29, 38); color: rgb(0, 200, 255); display: block;">
<div class="js-arc pos-a t-0 l-0 w-200p h-200p circle d-n op-60 po-e-n" style="display: none; background-color: rgb(11, 11, 11);"></div>
<section class="MAIN-SECTION d-f a-i-start j-c-between m-t-phi6 m-l-phi6 m-r-phi6">
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<h3 class="t-a-l">Suchfunktionen</h3>
<div class="js-description d-n ms-d-b t-a-l f-s-body">Die interdisziplinäre Abschlussarbeit, welche Teil des Qualifikationsverfahrens ist, habe ich mit der Note (ausstehend) bestanden. Das Produkt meiner Abschlussarbeit war ein animiertes Erklärvideo.
</div>
<div class="js-description d-n ms-d-b t-a-l f-s-body">Es wurde für die Website der <a href="https://www.mediathek.admin.ch/" target="_blank"><span class="BUTTON-long" style="cursor: pointer;">Mediathek VBS</span></a> ein zielgruppengerechtes animiertes Erklärvideo erstellt, welches die Suchfunktionen schnell, leicht und verständlich erklärt. Die Mediathek des VBS ist die grösste Medienplattform der Schweizer Armee. Sie ist das Zuhause von zahlreichem Foto-, Video- sowie Retromaterial des VBS.
</div>
</div>
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<div class="js-description d-n ms-d-b t-a-l f-s-body">
<h3 class="t-a-l"></h3>
<iframe style="margin-top: 52px; border: 15px solid black;" width="375" height="233" src="https://www.youtube.com/embed/_omjNEHwJHc" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</section>
<section class="FOOTER-SECTION pos-a b-phi6 ms-b-a ms-t-phi2 l-0 w-100p d-f a-i-start j-c-between ms-p-b-phi6 p-l-phi6 p-r-phi6">
<h1 class="js-section-title h-phi5 w-phi3 d-f fx-c j-c-between f-s-xxxl ms-f-s-xl f-w-700">
<span class="js-section-title-word m-b-phi9 w-s-nw"></span>
<span class="js-section-title-word m-b-phi9 w-s-nw">Erklärvideo für</span>
<span class="js-section-title-word m-b-phi9 w-s-nw">die Mediathek VBS</span>
</h1>
<!-- ############ BUTTON FÜR DETAILANSICHT ############# -->
<div class="js-project-cta d-f">
<div class="js-project-cover pos-r w-0 h-phi5 ov-h vis-h">
<a href="unavailable.html"><img src="img\logo\Logo.jpg" alt="Preview Thumbnail" class="pos-a d-n ms-d-b l-0 t-0 w-phi3 ms-w-phi5"></a>
</div>
<a href="unavailable.html">
<div class="js-view-icon pos-r f-s-xs w-phi3 ms-w-phi7 ov-h h-phi2 ms-h-phi5 p-t-phi5 ms-p-t-phi8 t-a-c rounded-3" style="background: rgb(11, 11, 11); color: rgb(255, 255, 255);">
<!-- SVG -->
<svg class="vis-h w-phi5 ms-w-phi8 start" x="0px" y="0px" viewBox="0 0 33.656 33.656" enable-background="new 0 0 33.656 33.656" xml:space="preserve">
<circle class="js-eye-ball" fill="#FFFFFF" cx="16.828" cy="16.828" r="16.828"></circle>
<circle class="js-eye-retina" fill="#DC5141" cx="16.828" cy="16.828" r="9.003" style="fill: rgb(11, 11, 11); transform: translate3d(-5.84966px, -4.6347px, 0px);"></circle>
<circle class="js-eye-pupil" fill="#3A3C43" cx="16.828" cy="16.828" r="5.892" style="fill: rgb(255, 255, 255); transform: translate3d(-6.8246px, -5.40717px, 0px);"></circle>
<circle class="js-eye-highlight" fill="#FFFFFF" cx="21.342" cy="12.952" r="3.383" style="transform: translate3d(-1.94989px, -1.54491px, 0px);"></circle>
<g class="js-eye-lid" fill="red" style="fill: rgb(11, 11, 11); transform: scaleY(1.15449);">
<g>
<path d="M16.828,26.39C8.911,26.39,4.989,17.25,0,16.76v16.896h33.656V16.76
C28.667,17.25,24.745,26.39,16.828,26.39z"></path>
</g>
<g>
<path d="M16.828,7.266c-7.917,0-11.839,9.139-16.828,9.63V0h33.656v16.896
C28.667,16.406,24.745,7.266,16.828,7.266z"></path>
</g>
</g>
</svg>
<div class="js-arrow pos-a l-0 t-0 d-f j-c-center a-i-center w-100p h-100p">
<svg class="h-phi4 ms-h-phi6" x="0px" y="0px" viewBox="0 0 14.987 52.163" enable-background="new 0 0 14.987 52.163" xml:space="preserve">
<line fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-miterlimit="10" x1="7.493" y1="52.163" x2="7.493" y2="1.414" style="stroke: rgb(255, 255, 255);"></line>
<polyline fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-miterlimit="10" points="14.28,8.2 7.493,1.414 0.707,8.2 " style="stroke: rgb(255, 255, 255);"></polyline>
</svg>
</div>
<!-- SVG END -->
<div class="vis-h js-view-text p-t-phi9 f-s-s ms-f-s-xs f-w-700">Mehr lesen</div>
</div>
</a>
</div>
<!-- END BUTTON -->
</section>
</div>
<!-- END PAGE -->
<!-- ############ PAGE 3 ############# -->
<div id="page-14" class="js-section js-project pos-a bg-got color-got bd ms-bd-w-2 ol" data-project="got" style="width: 988.853px; height: 988.853px; transform-origin: 1157px 715px 0px; transform: rotate(180deg) scale(0.381965); background: rgb(38, 29, 0); color: rgb(255, 124, 0); display: block;">
<div class="js-arc pos-a t-0 l-0 w-200p h-200p circle d-n op-60 po-e-n" style="display: none; background-color: rgb(11, 11, 11);"></div>
<section class="MAIN-SECTION d-f a-i-start j-c-between m-t-phi6 m-l-phi6 m-r-phi6">
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<h3 class="t-a-l">Buchungsprozess</h3>
<div class="js-description d-n ms-d-b t-a-l f-s-body"><a href="https://www.carify.com/de/" target="_blank"><span class="BUTTON-long" style="cursor: pointer;">CARIFY</span></a> ist ein innovatives Schweizer Start-Up, welches sich auf Auto-Abos spezialisiert hat. In Kooperation mit diversen Garagen bietet CARIFY eine breite und qualitative Auswahl an Autos an.
</div>
<div class="js-description d-n ms-d-b t-a-l f-s-body">Da sich CARIFY statt einem reinen Text ein Video für die Erklärung des Buchungsprozesses wünschte, wurde ein solches erstellt. Es zeigt den Prozess leicht verständlich auf, ist zeitgemäss und der Zielgruppe angepasst.
</div>
</div>
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<div class="js-description d-n ms-d-b t-a-l f-s-body">
<iframe style="margin-top: 52px; border: 15px solid black;" width="375" height="233" src="https://www.youtube.com/embed/VKpon0_gHnQ" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</section>
<section class="FOOTER-SECTION pos-a b-phi6 ms-b-a ms-t-phi2 l-0 w-100p d-f a-i-start j-c-between ms-p-b-phi6 p-l-phi6 p-r-phi6">
<h1 class="js-section-title h-phi5 w-phi3 d-f fx-c j-c-between f-s-xxxl ms-f-s-xl f-w-700">
<span class="js-section-title-word m-b-phi9 w-s-nw"></span>
<span class="js-section-title-word m-b-phi9 w-s-nw">Erklärvideo für</span>
<span class="js-section-title-word m-b-phi9 w-s-nw">CARIFY</span>
</h1>
<!-- ############ BUTTON FÜR DETAILANSICHT ############# -->
<div class="js-project-cta d-f">
<div class="js-project-cover pos-r w-0 h-phi5 ov-h vis-h">
<a href="unavailable.html"><img src="img\logo\Logo.jpg" alt="Preview Thumbnail" class="pos-a d-n ms-d-b l-0 t-0 w-phi3 ms-w-phi5">
</a>
</div>
<a href="unavailable.html">
<div class="js-view-icon pos-r f-s-xs w-phi3 ms-w-phi7 ov-h h-phi2 ms-h-phi5 p-t-phi5 ms-p-t-phi8 t-a-c rounded-3" style="background: rgb(11, 11, 11); color: rgb(255, 255, 255);">
<!-- SVG -->
<svg class="vis-h w-phi5 ms-w-phi8 start" x="0px" y="0px" viewBox="0 0 33.656 33.656" enable-background="new 0 0 33.656 33.656" xml:space="preserve">
<circle class="js-eye-ball" fill="#FFFFFF" cx="16.828" cy="16.828" r="16.828"></circle>
<circle class="js-eye-retina" fill="#DC5141" cx="16.828" cy="16.828" r="9.003" style="fill: rgb(11, 11, 11); transform: translate3d(-5.84966px, -4.6347px, 0px);"></circle>
<circle class="js-eye-pupil" fill="#3A3C43" cx="16.828" cy="16.828" r="5.892" style="fill: rgb(255, 255, 255); transform: translate3d(-6.8246px, -5.40717px, 0px);"></circle>
<circle class="js-eye-highlight" fill="#FFFFFF" cx="21.342" cy="12.952" r="3.383" style="transform: translate3d(-1.94989px, -1.54491px, 0px);"></circle>
<g class="js-eye-lid" fill="red" style="fill: rgb(11, 11, 11); transform: scaleY(1.15449);">
<g>
<path d="M16.828,26.39C8.911,26.39,4.989,17.25,0,16.76v16.896h33.656V16.76
C28.667,17.25,24.745,26.39,16.828,26.39z"></path>
</g>
<g>
<path d="M16.828,7.266c-7.917,0-11.839,9.139-16.828,9.63V0h33.656v16.896
C28.667,16.406,24.745,7.266,16.828,7.266z"></path>
</g>
</g>
</svg>
<div class="js-arrow pos-a l-0 t-0 d-f j-c-center a-i-center w-100p h-100p">
<svg class="h-phi4 ms-h-phi6" x="0px" y="0px" viewBox="0 0 14.987 52.163" enable-background="new 0 0 14.987 52.163" xml:space="preserve">
<line fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-miterlimit="10" x1="7.493" y1="52.163" x2="7.493" y2="1.414" style="stroke: rgb(255, 255, 255);"></line>
<polyline fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-miterlimit="10" points="14.28,8.2 7.493,1.414 0.707,8.2 " style="stroke: rgb(255, 255, 255);"></polyline>
</svg>
</div>
<!-- SVG END -->
<div class="vis-h js-view-text p-t-phi9 f-s-s ms-f-s-xs f-w-700">Mehr lesen</div>
</div>
</a>
</div>
<!-- END BUTTON -->
</section>
</div>
<!-- END PAGE -->
<!-- ############ PAGE 4 ############# -->
<div id="page-15" class="js-section js-project pos-a bg-got color-got bd ms-bd-w-2 ol" data-project="got" style="width: 988.853px; height: 988.853px; transform-origin: 1157px 715px 0px; transform: rotate(180deg) scale(0.381965); background: rgb(46, 0, 19); color: rgb(255, 63, 148); display: block;">
<div class="js-arc pos-a t-0 l-0 w-200p h-200p circle d-n op-60 po-e-n" style="display: none; background-color: rgb(11, 11, 11);"></div>
<section class="MAIN-SECTION d-f a-i-start j-c-between m-t-phi6 m-l-phi6 m-r-phi6">
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<h3 class="t-a-l">Festgehaltene Momente</h3>
<div class="js-description d-n ms-d-b t-a-l f-s-body">Ich fotografiere gerne. Schau dir in der Gallerie einige Beispiele an, um dich von meiner Qualität zu überzeugen.
</div>
</div>
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<div class="js-description d-n ms-d-b t-a-l f-s-body">
<h3 class="t-a-l"></h3>
<img style="margin-top: 47px;" src="img/svg/fotowoche.jpg" width="365" height="365">
</div>
</div>
</section>
<section class="FOOTER-SECTION pos-a b-phi6 ms-b-a ms-t-phi2 l-0 w-100p d-f a-i-start j-c-between ms-p-b-phi6 p-l-phi6 p-r-phi6">
<h1 class="js-section-title h-phi5 w-phi3 d-f fx-c j-c-between f-s-xxxl ms-f-s-xl f-w-700">
<span class="js-section-title-word m-b-phi9 w-s-nw"></span>
<span class="js-section-title-word m-b-phi9 w-s-nw"></span>
<span class="js-section-title-word m-b-phi9 w-s-nw">Fotoprojekte</span>
</h1>
<!-- ############ BUTTON FÜR DETAILANSICHT ############# -->
<div class="js-project-cta d-f">
<div class="js-project-cover pos-r w-0 h-phi5 ov-h vis-h">
<a href="fotowoche.html"><img src="img\logo\Logo.jpg" alt="Preview Thumbnail" class="pos-a d-n ms-d-b l-0 t-0 w-phi3 ms-w-phi5">
</a>
</div>
<a href="fotowoche.html">
<div class="js-view-icon pos-r f-s-xs w-phi3 ms-w-phi7 ov-h h-phi2 ms-h-phi5 p-t-phi5 ms-p-t-phi8 t-a-c rounded-3" style="background: rgb(11, 11, 11); color: rgb(255, 255, 255);">
<!-- SVG -->
<svg class="vis-h w-phi5 ms-w-phi8 start" x="0px" y="0px" viewBox="0 0 33.656 33.656" enable-background="new 0 0 33.656 33.656" xml:space="preserve">
<circle class="js-eye-ball" fill="#FFFFFF" cx="16.828" cy="16.828" r="16.828"></circle>
<circle class="js-eye-retina" fill="#DC5141" cx="16.828" cy="16.828" r="9.003" style="fill: rgb(11, 11, 11); transform: translate3d(-5.84966px, -4.6347px, 0px);"></circle>
<circle class="js-eye-pupil" fill="#3A3C43" cx="16.828" cy="16.828" r="5.892" style="fill: rgb(255, 255, 255); transform: translate3d(-6.8246px, -5.40717px, 0px);"></circle>
<circle class="js-eye-highlight" fill="#FFFFFF" cx="21.342" cy="12.952" r="3.383" style="transform: translate3d(-1.94989px, -1.54491px, 0px);"></circle>
<g class="js-eye-lid" fill="red" style="fill: rgb(11, 11, 11); transform: scaleY(1.15449);">
<g>
<path d="M16.828,26.39C8.911,26.39,4.989,17.25,0,16.76v16.896h33.656V16.76
C28.667,17.25,24.745,26.39,16.828,26.39z"></path>
</g>
<g>
<path d="M16.828,7.266c-7.917,0-11.839,9.139-16.828,9.63V0h33.656v16.896
C28.667,16.406,24.745,7.266,16.828,7.266z"></path>
</g>
</g>
</svg>
<div class="js-arrow pos-a l-0 t-0 d-f j-c-center a-i-center w-100p h-100p">
<svg class="h-phi4 ms-h-phi6" x="0px" y="0px" viewBox="0 0 14.987 52.163" enable-background="new 0 0 14.987 52.163" xml:space="preserve">
<line fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-miterlimit="10" x1="7.493" y1="52.163" x2="7.493" y2="1.414" style="stroke: rgb(255, 255, 255);"></line>
<polyline fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-miterlimit="10" points="14.28,8.2 7.493,1.414 0.707,8.2 " style="stroke: rgb(255, 255, 255);"></polyline>
</svg>
</div>
<!-- SVG END -->
<div class="vis-h js-view-text p-t-phi9 f-s-s ms-f-s-xs f-w-700">Mehr lesen</div>
</div>
</a>
</div>
<!-- END BUTTON -->
</section>
</div>
<!-- END PAGE -->
<!-- ############ PAGE 5 ############# -->
<div id="page-16" class="js-section js-project pos-a bg-got color-got bd ms-bd-w-2 ol" data-project="got" style="width: 988.853px; height: 988.853px; transform-origin: 1157px 715px 0px; transform: rotate(180deg) scale(0.381965); background: rgb(31, 0, 64); color: rgb(210, 145, 255); display: block;">
<div class="js-arc pos-a t-0 l-0 w-200p h-200p circle d-n op-60 po-e-n" style="display: none; background-color: rgb(11, 11, 11);"></div>
<section class="MAIN-SECTION d-f a-i-start j-c-between m-t-phi6 m-l-phi6 m-r-phi6">
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<h3 class="t-a-l">Projektüberblick</h3>
<div class="js-description d-n ms-d-b t-a-l f-s-body">Egal ob das Durchführen eines Livestreams während einem Event, die Erstellung einer Broschüre oder die Konzipierung eines MockUps für eine neue Website eines Unternehmens – während meiner Karrierelaufbahn konnte ich mich bereits mit vielen multimedialen und IT-bezogenen Themen auseinandersetzen.
</div>
<div class="js-description d-n ms-d-b t-a-l f-s-body">Ich empfehle dir, mal einen Blick auf meine weiteren Projekte zu werfen. Solltest du mehr Informationen über ein Projekt erhalten wollen, kannst du mich jederzeit kontaktieren.
</div>
</div>
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<h3 class="t-a-l">Kundenkontakt</h3>
<div class="js-description d-n ms-d-b t-a-l f-s-body">Um ein Projekt erfolgreich durchzuführen, ist für mich der Kundenkontakt der wichtigste Faktor. Im ständigen Austausch können wir so gemeinsam Lösungen finden und ein neues Produkt erschaffen.
</div>
</div>
</section>
<section class="FOOTER-SECTION pos-a b-phi6 ms-b-a ms-t-phi2 l-0 w-100p d-f a-i-start j-c-between ms-p-b-phi6 p-l-phi6 p-r-phi6">
<h1 class="js-section-title h-phi5 w-phi3 d-f fx-c j-c-between f-s-xxxl ms-f-s-xl f-w-700">
<span class="js-section-title-word m-b-phi9 w-s-nw"></span>
<span class="js-section-title-word m-b-phi9 w-s-nw">Alle Projekte</span>
<span class="js-section-title-word m-b-phi9 w-s-nw">im Überblick</span>
</h1>
<!-- ############ BUTTON FÜR DETAILANSICHT ############# -->
<div class="js-project-cta d-f">
<div class="js-project-cover pos-r w-0 h-phi5 ov-h vis-h">
<a href="projekte.html"><img src="img\logo\Logo.jpg" alt="Preview Thumbnail" class="pos-a d-n ms-d-b l-0 t-0 w-phi3 ms-w-phi5">
</a>
</div>
<a href="projekte.html">
<div class="js-view-icon pos-r f-s-xs w-phi3 ms-w-phi7 ov-h h-phi2 ms-h-phi5 p-t-phi5 ms-p-t-phi8 t-a-c rounded-3" style="background: rgb(11, 11, 11); color: rgb(255, 255, 255);">
<!-- SVG -->
<svg class="vis-h w-phi5 ms-w-phi8 start" x="0px" y="0px" viewBox="0 0 33.656 33.656" enable-background="new 0 0 33.656 33.656" xml:space="preserve">
<circle class="js-eye-ball" fill="#FFFFFF" cx="16.828" cy="16.828" r="16.828"></circle>
<circle class="js-eye-retina" fill="#DC5141" cx="16.828" cy="16.828" r="9.003" style="fill: rgb(11, 11, 11); transform: translate3d(-5.84966px, -4.6347px, 0px);"></circle>
<circle class="js-eye-pupil" fill="#3A3C43" cx="16.828" cy="16.828" r="5.892" style="fill: rgb(255, 255, 255); transform: translate3d(-6.8246px, -5.40717px, 0px);"></circle>
<circle class="js-eye-highlight" fill="#FFFFFF" cx="21.342" cy="12.952" r="3.383" style="transform: translate3d(-1.94989px, -1.54491px, 0px);"></circle>
<g class="js-eye-lid" fill="red" style="fill: rgb(11, 11, 11); transform: scaleY(1.15449);">
<g>
<path d="M16.828,26.39C8.911,26.39,4.989,17.25,0,16.76v16.896h33.656V16.76
C28.667,17.25,24.745,26.39,16.828,26.39z"></path>
</g>
<g>
<path d="M16.828,7.266c-7.917,0-11.839,9.139-16.828,9.63V0h33.656v16.896
C28.667,16.406,24.745,7.266,16.828,7.266z"></path>
</g>
</g>
</svg>
<div class="js-arrow pos-a l-0 t-0 d-f j-c-center a-i-center w-100p h-100p">
<svg class="h-phi4 ms-h-phi6" x="0px" y="0px" viewBox="0 0 14.987 52.163" enable-background="new 0 0 14.987 52.163" xml:space="preserve">
<line fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-miterlimit="10" x1="7.493" y1="52.163" x2="7.493" y2="1.414" style="stroke: rgb(255, 255, 255);"></line>
<polyline fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-miterlimit="10" points="14.28,8.2 7.493,1.414 0.707,8.2 " style="stroke: rgb(255, 255, 255);"></polyline>
</svg>
</div>
<!-- SVG END -->
<div class="vis-h js-view-text p-t-phi9 f-s-s ms-f-s-xs f-w-700">Mehr lesen</div>
</div>
</a>
</div>
<!-- END BUTTON -->
</section>
</div>
<!-- END PAGE -->
<!-- ############ PAGE 6 ############# -->
<div id="page-6" class="js-section js-project pos-a bg-got color-got bd ms-bd-w-2 ol" style="width: 988.853px; height: 988.853px; transform-origin: 1157px 715px 0px; transform: rotate(180deg) scale(0.381965); background: rgb(255, 255, 255); color: rgb(11, 11, 11); display: block;">
<div class="js-arc pos-a t-0 l-0 w-200p h-200p circle d-n op-60 po-e-n" style="display: none; background-color: rgb(11, 11, 11);"></div>
<section class="MAIN-SECTION d-f a-i-start j-c-between m-t-phi6 m-l-phi6 m-r-phi6">
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<h3 class="t-a-l">Lebenslauf</h3>
<div class="js-description d-n ms-d-b t-a-l f-s-body">
<strong>8/2021 – weiteres</strong><br>
Mediamatikerin EFZ bei <span class="BUTTON-short" style="cursor: pointer;">Dir / Euch</span>?<br>
Aktuell bin ich auf Stellensuche!<br>
<br>
<strong>8/2019 – 7/2021</strong><br>
2. Teil Ausbildung Mediamatiker im <a href="https://www.vtg.admin.ch/de/service/zem.html" target="_blank"><span class="BUTTON-short" style="cursor: pointer;">Zentrum elektronische Medien VBS</span></a>:<br>
Webtechnologien, Print, interaktive Medien, Lernmodule, Videos, Animationen, Einblicke in Cyber Security, Skype for Business Server, Projektmanagement<br>
<br>
<strong>8/2017 – 7/2019</strong><br>
1. Teil Ausbildung Mediamatiker in der <a href="https://bict.ch/" target="_blank"><span class="BUTTON-short" style="cursor: pointer;">BiCT AG</span></a>:<br>
Basisausbildung über Multimedia und IT, Projektarbeiten<br>
<br>
<strong>8/2017 – 7/2021 (berufsbegleitend)</strong><br>
Berufsmaturität Typ Dienstleistungen im <a href="https://www.bbz-cfp.ch/" target="_blank"><span class="BUTTON-short" style="cursor: pointer;">BBZ Biel</span></a>:<br>
Rechnungswesen, VWL und BWL, Marketing, Informatik
</div>
</div>
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<h3 class="t-a-l">Zusatztätigkeiten</h3>
<div class="js-description d-n ms-d-b t-a-l f-s-body">
<strong>Sommer 2020</strong><br>
Live Streaming Operator beim <a href="https://www.bielchessfestival.ch/de/Homepage.html" target="_blank"><span class="BUTTON-short" style="cursor: pointer;">Biel Chess Festival</span></a><br>
Live Streaming, Einrichten der IT-Infrastruktur, Software-Schulung<br>
<br>
<strong>Sommer 2019</strong><br>
Live Streaming Operator beim <a href="https://www.bielchessfestival.ch/de/Homepage.html" target="_blank"><span class="BUTTON-short" style="cursor: pointer;">Biel Chess Festival</span></a><br>
Live Streaming, Einrichten der IT-Infrastruktur, Videobearbeitung, Aufbereitung von Plakaten
</div>
</div>
</section>
<section class="FOOTER-SECTION pos-a b-phi6 ms-b-a ms-t-phi2 l-0 w-100p d-f a-i-start j-c-between ms-p-b-phi6 p-l-phi6 p-r-phi6">
<h1 class="js-section-title h-phi5 w-phi3 d-f fx-c j-c-between f-s-xxxl ms-f-s-xl f-w-700">
<span class="js-section-title-word m-b-phi9 w-s-nw"></span>
<span class="js-section-title-word m-b-phi9 w-s-nw"></span>
<span class="js-section-title-word m-b-phi9 w-s-nw"></span>
<span class="js-section-title-word m-b-phi9 w-s-nw">Karriere</span>
</h1>
<!-- ############ BUTTON FÜR DETAILANSICHT ############# -->
<div class="js-project-cta d-f">
<div class="js-project-cover pos-r w-0 h-phi5 ov-h vis-h">
<a href="download-master/Lebenslauf.pdf" target="_blank"><img src="img\logo\Logo.jpg" alt="Preview Thumbnail" class="pos-a d-n ms-d-b l-0 t-0 w-phi3 ms-w-phi5">
</a>
</div>
<a href="download-master/Lebenslauf.pdf" target="_blank">
<div class="js-view-icon pos-r f-s-xs w-phi3 ms-w-phi7 ov-h h-phi2 ms-h-phi5 p-t-phi5 ms-p-t-phi8 t-a-c rounded-3" style="background: rgb(11, 11, 11); color: rgb(255, 255, 255);">
<!-- SVG -->
<svg class="vis-h w-phi5 ms-w-phi8 start" x="0px" y="0px" viewBox="0 0 33.656 33.656" enable-background="new 0 0 33.656 33.656" xml:space="preserve">
<circle class="js-eye-ball" fill="#FFFFFF" cx="16.828" cy="16.828" r="16.828"></circle>
<circle class="js-eye-retina" fill="#DC5141" cx="16.828" cy="16.828" r="9.003" style="fill: rgb(11, 11, 11); transform: translate3d(-5.84966px, -4.6347px, 0px);"></circle>
<circle class="js-eye-pupil" fill="#3A3C43" cx="16.828" cy="16.828" r="5.892" style="fill: rgb(255, 255, 255); transform: translate3d(-6.8246px, -5.40717px, 0px);"></circle>
<circle class="js-eye-highlight" fill="#FFFFFF" cx="21.342" cy="12.952" r="3.383" style="transform: translate3d(-1.94989px, -1.54491px, 0px);"></circle>
<g class="js-eye-lid" fill="red" style="fill: rgb(11, 11, 11); transform: scaleY(1.15449);">
<g>
<path d="M16.828,26.39C8.911,26.39,4.989,17.25,0,16.76v16.896h33.656V16.76
C28.667,17.25,24.745,26.39,16.828,26.39z"></path>
</g>
<g>
<path d="M16.828,7.266c-7.917,0-11.839,9.139-16.828,9.63V0h33.656v16.896
C28.667,16.406,24.745,7.266,16.828,7.266z"></path>
</g>
</g>
</svg>
<div class="js-arrow pos-a l-0 t-0 d-f j-c-center a-i-center w-100p h-100p">
<svg class="h-phi4 ms-h-phi6" x="0px" y="0px" viewBox="0 0 14.987 52.163" enable-background="new 0 0 14.987 52.163" xml:space="preserve">
<line fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-miterlimit="10" x1="7.493" y1="52.163" x2="7.493" y2="1.414" style="stroke: rgb(255, 255, 255);"></line>
<polyline fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-miterlimit="10" points="14.28,8.2 7.493,1.414 0.707,8.2 " style="stroke: rgb(255, 255, 255);"></polyline>
</svg>
</div>
<!-- SVG END -->
<div class="vis-h js-view-text p-t-phi9 f-s-s ms-f-s-xs f-w-700">Kontakt</div>
</div>
</a>
</div>
<!-- END BUTTON -->
</section>
</div>
<!-- END PAGE -->
<!-- ############ PAGE 7 ############# -->
<div id="page-7" class="js-section js-project pos-a bg-got color-got bd ms-bd-w-2 ol" style="width: 988.853px; height: 988.853px; transform-origin: 1157px 715px 0px; transform: rotate(180deg) scale(0.381965); background: rgb(255, 255, 255); color: rgb(11, 11, 11); display: block;">
<div class="js-arc pos-a t-0 l-0 w-200p h-200p circle d-n op-60 po-e-n" style="display: none; background-color: rgb(11, 11, 11);"></div>
<section class="MAIN-SECTION d-f a-i-start j-c-between m-t-phi6 m-l-phi6 m-r-phi6">
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<h3 class="t-a-l">Coming Soon!</h3>
<div class="js-description d-n ms-d-b t-a-l f-s-body">Dies ist erst die Vorschau auf das, was noch kommt! Aktuell befinde ich mich in der Abschlussphase meiner Berufsbildung und Berufsmaturität. Dementsprechend habe ich einen vollen Terminkalender.
</div>
<div class="js-description d-n ms-d-b t-a-l f-s-body">Meine Website wird aber sehr bald noch voller sein und es lohnt sich nach einiger Zeit wieder vorbeizuschauen! Wenn du etwas auf der aktuellen Website nicht gefunden hast, worüber du mehr wissen möchtest, kannst du mich natürlich jederzeit gerne kontaktieren.
</div>
</div>
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<div class="js-description d-n ms-d-b t-a-l f-s-body">
<h3 class="t-a-l"></h3>
<img style="margin-top: 47px;" src="img/svg/freizeit.jpg" width="365" height="365">
</div>
</div>
</section>
<section class="FOOTER-SECTION pos-a b-phi6 ms-b-a ms-t-phi2 l-0 w-100p d-f a-i-start j-c-between ms-p-b-phi6 p-l-phi6 p-r-phi6">
<h1 class="js-section-title h-phi5 w-phi3 d-f fx-c j-c-between f-s-xxxl ms-f-s-xl f-w-700">
<span class="js-section-title-word m-b-phi9 w-s-nw"></span>
<span class="js-section-title-word m-b-phi9 w-s-nw">Hier entsteht</span>
<span class="js-section-title-word m-b-phi9 w-s-nw">Grosses</span>
</h1>
<!-- ############ BUTTON FÜR DETAILANSICHT ############# -->
<div class="js-project-cta d-f">
<div class="js-project-cover pos-r w-0 h-phi5 ov-h vis-h">
<a href="projekte.html"><img src="img\logo\Logo.jpg" alt="Preview Thumbnail" class="pos-a d-n ms-d-b l-0 t-0 w-phi3 ms-w-phi5">
</a>
</div>
<a href="projekte.html">
<div class="js-view-icon pos-r f-s-xs w-phi3 ms-w-phi7 ov-h h-phi2 ms-h-phi5 p-t-phi5 ms-p-t-phi8 t-a-c rounded-3" style="background: rgb(11, 11, 11); color: rgb(255, 255, 255);">
<!-- SVG -->
<svg class="vis-h w-phi5 ms-w-phi8 start" x="0px" y="0px" viewBox="0 0 33.656 33.656" enable-background="new 0 0 33.656 33.656" xml:space="preserve">
<circle class="js-eye-ball" fill="#FFFFFF" cx="16.828" cy="16.828" r="16.828"></circle>
<circle class="js-eye-retina" fill="#DC5141" cx="16.828" cy="16.828" r="9.003" style="fill: rgb(11, 11, 11); transform: translate3d(-5.84966px, -4.6347px, 0px);"></circle>
<circle class="js-eye-pupil" fill="#3A3C43" cx="16.828" cy="16.828" r="5.892" style="fill: rgb(255, 255, 255); transform: translate3d(-6.8246px, -5.40717px, 0px);"></circle>
<circle class="js-eye-highlight" fill="#FFFFFF" cx="21.342" cy="12.952" r="3.383" style="transform: translate3d(-1.94989px, -1.54491px, 0px);"></circle>
<g class="js-eye-lid" fill="red" style="fill: rgb(11, 11, 11); transform: scaleY(1.15449);">
<g>
<path d="M16.828,26.39C8.911,26.39,4.989,17.25,0,16.76v16.896h33.656V16.76
C28.667,17.25,24.745,26.39,16.828,26.39z"></path>
</g>
<g>
<path d="M16.828,7.266c-7.917,0-11.839,9.139-16.828,9.63V0h33.656v16.896
C28.667,16.406,24.745,7.266,16.828,7.266z"></path>
</g>
</g>
</svg>
<div class="js-arrow pos-a l-0 t-0 d-f j-c-center a-i-center w-100p h-100p">
<svg class="h-phi4 ms-h-phi6" x="0px" y="0px" viewBox="0 0 14.987 52.163" enable-background="new 0 0 14.987 52.163" xml:space="preserve">
<line fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-miterlimit="10" x1="7.493" y1="52.163" x2="7.493" y2="1.414" style="stroke: rgb(255, 255, 255);"></line>
<polyline fill="none" stroke="#FFFFFF" stroke-width="1.5" stroke-miterlimit="10" points="14.28,8.2 7.493,1.414 0.707,8.2 " style="stroke: rgb(255, 255, 255);"></polyline>
</svg>
</div>
<!-- SVG END -->
<div class="vis-h js-view-text p-t-phi9 f-s-s ms-f-s-xs f-w-700">Projekte</div>
</div>
</a>
</div>
<!-- END BUTTON -->
</section>
</div>
<!-- END PAGE -->
<!-- ############ prototyp PAGE 17 #############
<div id="page-17" class="js-section js-project pos-a bg-got color-got bd ms-bd-w-2 ol" data-project="got" style="width: 988.853px; height: 988.853px; transform-origin: 1157px 715px 0px; transform: rotate(180deg) scale(0.381965); background: rgb(42, 0, 52); color: rgb(234, 119, 255); display: block;">
<div class="js-arc pos-a t-0 l-0 w-200p h-200p circle d-n op-60 po-e-n" style="display: none; background-color: rgb(11, 11, 11);"></div>
<section class="MAIN-SECTION d-f a-i-start j-c-between m-t-phi6 m-l-phi6 m-r-phi6">
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<h3 class="t-a-l">Professionelle Filme.</h3>
<div class="js-description d-n ms-d-b t-a-l f-s-body">Premiere Pro wird dazu verwendet, einzelne Videoaufnahmen zu einem ganzen Film zusammen zu schneiden. So gesehen sind also Filmtechnik und Filmschnitt miteinander verbunden, denn zuerst werden einzelne Video-Takes gemäss Storyboard aufgenommen, welche danach in Premiere Pro geschnitten und mit Spezialeffekten versehen werden.
</div>
<div class="js-description d-n ms-d-b t-a-l f-s-body">Die Coaches in der BiCT AG konnten mir extrem viel Fachwissen über Premiere Pro, aber vor allem über die Filmtechniken übermitteln. Storyboard, Konzept, Berücksichtugung der Handelsachse und vieles mehr werden von mir stets beim Filmdreh bearbeitet. Denn der Spruch "Fix it in the post" darf nicht zum Motto werden!
</div>
<div class="js-description d-n ms-d-b t-a-l f-s-body">Gerne können Sie sich auch meine über 50-seitige Arbeit über Premiere Pro und Filmtechniken ansehen.</div>
</div>
<div class="PARAGRAPH w-phi1 ms-w-phi3 l-h-m t-a-r">
<div class="js-description d-n ms-d-b t-a-l f-s-body">
<h3 class="t-a-l"></h3>
<svg height="365" version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 250.97 250.97" style="enable-background:new 0 0 250.97 250.97;" xml:space="preserve">
<path class="js-view-icon" d="M0,0v250.97h250.97V0H0z M234.09,234.09H16.88V16.88h217.21V234.09z"/>
<g>
<path class="js-view-icon" d="M60.14,164.24V78.17H45.7V63.81h41.01c12.05,0,21.07,0.85,27.07,2.56c6,1.71,11.02,5.57,15.06,11.59
c4.04,6.02,6.07,13.14,6.07,21.33c0,6.55-1.33,12.42-4,17.62c-2.67,5.2-5.97,9.04-9.9,11.51c-3.93,2.48-8.36,4.14-13.29,4.99
c-4.92,0.85-12.37,1.28-22.32,1.28h-7.92v29.54h14.85v14.36H45.7v-14.36H60.14z M77.47,120.83h9.9c11.28,0,19.09-1.61,23.44-4.83
c4.34-3.22,6.52-8.9,6.52-17.04c0-5.17-1.15-9.46-3.46-12.87c-2.31-3.41-5.17-5.58-8.58-6.52c-3.41-0.93-9.11-1.4-17.08-1.4H77.47
V120.83z"/>
<path class="js-view-icon" d="M159,164.65v-51.99h-16.09V98.72h28.63v17.99c1.76-4.68,4.21-8.55,7.34-11.64c3.14-3.08,6.45-5.12,9.94-6.11
c3.49-0.99,8.26-1.49,14.32-1.49h4.13v15.84h-3.13c-7.98,0-13.93,0.8-17.87,2.39c-3.93,1.6-6.85,4.5-8.75,8.71
c-1.9,4.21-2.85,11.76-2.85,22.65v17.58h17.41v13.95h-49.18v-13.95H159z"/>
</g>
</svg>
</div>
</div>
</section>
<section class="FOOTER-SECTION pos-a b-phi6 ms-b-a ms-t-phi2 l-0 w-100p d-f a-i-start j-c-between ms-p-b-phi6 p-l-phi6 p-r-phi6">
<h1 class="js-section-title h-phi5 w-phi3 d-f fx-c j-c-between f-s-xxxl ms-f-s-xl f-w-700">
<span class="js-section-title-word m-b-phi9 w-s-nw">Premiere Pro,</span>
<span class="js-section-title-word m-b-phi9 w-s-nw">Filmschnitt,</span>
<span class="js-section-title-word m-b-phi9 w-s-nw">Filmtechniken</span>
</h1>
<div class="js-project-cta d-f">
<div class="js-project-cover pos-r w-0 h-phi5 ov-h vis-h">
<a href="premiere.html"><img src="img\logo\Logo-pr.jpg" alt="Preview Thumbnail" class="pos-a d-n ms-d-b l-0 t-0 w-phi3 ms-w-phi5">
</a></div>
<a href="premiere.html">
<div class="js-view-icon pos-r f-s-xs w-phi3 ms-w-phi7 ov-h h-phi2 ms-h-phi5 p-t-phi5 ms-p-t-phi8 t-a-c rounded-3" style="background: rgb(11, 11, 11); color: rgb(255, 255, 255);">
<svg class="vis-h w-phi5 ms-w-phi8 start" x="0px" y="0px" viewBox="0 0 33.656 33.656" enable-background="new 0 0 33.656 33.656" xml:space="preserve">
<circle class="js-eye-ball" fill="#FFFFFF" cx="16.828" cy="16.828" r="16.828"></circle>
<circle class="js-eye-retina" fill="#DC5141" cx="16.828" cy="16.828" r="9.003" style="fill: rgb(11, 11, 11); transform: translate3d(-5.84966px, -4.6347px, 0px);"></circle>
<circle class="js-eye-pupil" fill="#3A3C43" cx="16.828" cy="16.828" r="5.892" style="fill: rgb(255, 255, 255); transform: translate3d(-6.8246px, -5.40717px, 0px);"></circle>