-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
1092 lines (992 loc) · 135 KB
/
index2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="html" lang="en-US" itemscope itemtype="http://schema.org/WebPage">
<head>
<meta charset="UTF-8">
<link rel="profile" href="http://gmpg.org/xfn/11">
<title>Felix Fieseler – Modern webdesign and video editing</title>
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<link rel="alternate" type="application/rss+xml" title="Felix Fieseler » Feed" href="http://127.0.0.1:81/wordpress/feed/" />
<link rel="alternate" type="application/rss+xml" title="Felix Fieseler » Comments Feed" href="http://127.0.0.1:81/wordpress/comments/feed/" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/svg\/","svgExt":".svg","source":{"concatemoji":"http:\/\/127.0.0.1:81\/wordpress\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.2.4"}};
!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55357,56424,55356,57342,8205,55358,56605,8205,55357,56424,55356,57340],[55357,56424,55356,57342,8203,55358,56605,8203,55357,56424,55356,57340]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='sb_instagram_styles-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/instagram-feed/css/sb-instagram-2-1.min.css?ver=2.1' type='text/css' media='all' />
<link rel='stylesheet' id='wp-block-library-css' href='http://127.0.0.1:81/wordpress/wp-includes/css/dist/block-library/style.min.css?ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='wp-block-library-theme-css' href='http://127.0.0.1:81/wordpress/wp-includes/css/dist/block-library/theme.min.css?ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='common-card-style-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/card-elements-for-elementor/assets/css/common-card-style.css?ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='profile-card-style-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/card-elements-for-elementor/assets/css/profile-card-style.css?ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='testimonial-card-style-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/card-elements-for-elementor/assets/css/testimonial-card-style.css?ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='post-card-style-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/card-elements-for-elementor/assets/css/post-card-style.css?ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='Total_Soft_Gallery_Video-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/gallery-videos/CSS/Total-Soft-Gallery-Video-Widget.css?ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='fontawesome-css-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/gallery-videos/CSS/totalsoft.css?ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='google-fonts-css' href='https://fonts.googleapis.com/css?family=Lato%3A400%2C500%2C600%2C700&ver=2.2.5' type='text/css' media='all' />
<link rel='stylesheet' id='adamlabsgallery-plugin-settings-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/photo-gallery-portfolio/com/public/assets/css/settings.css?ver=1.0.6' type='text/css' media='all' />
<link rel='stylesheet' id='adamlabs-open-sans-css' href='http://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C700%2C800&ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='adamlabs-raleway-css' href='http://fonts.googleapis.com/css?family=Raleway%3A100%2C200%2C300%2C400%2C500%2C600%2C700%2C800%2C900&ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='adamlabs-droid-serif-css' href='http://fonts.googleapis.com/css?family=Droid+Serif%3A400%2C700&ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='adamlabs-fontello-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/photo-gallery-portfolio/com/public/assets/font/fontello/css/fontello.css?ver=1.0.6' type='text/css' media='all' />
<link rel='stylesheet' id='Rich_Web_Video_Slider-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/slider-video/Style/Rich-Web-Video-Slider-Widget.css?ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='fontawesomeSl-css-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/slider-video/Style/richwebicons.css?ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='wpforms-full-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/wpforms-lite/assets/css/wpforms-full.css?ver=1.5.6' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-5-all-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.5.1' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-4-shim-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.5.1' type='text/css' media='all' />
<link rel='stylesheet' id='ea-admin-bar-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/essential-addons-for-elementor-lite/assets/admin/css/admin-bar.css?ver=3.5.1' type='text/css' media='all' />
<link rel='stylesheet' id='eael-front-end-css' href='http://127.0.0.1:81/wordpress/wp-content/uploads/essential-addons-elementor/eael-post-11.min.css?ver=3.5.1' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-css' href='http://127.0.0.1:81/wordpress/wp-content/themes/oceanwp/assets/css/third/font-awesome.min.css?ver=4.7.0' type='text/css' media='all' />
<link rel='stylesheet' id='simple-line-icons-css' href='http://127.0.0.1:81/wordpress/wp-content/themes/oceanwp/assets/css/third/simple-line-icons.min.css?ver=2.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='magnific-popup-css' href='http://127.0.0.1:81/wordpress/wp-content/themes/oceanwp/assets/css/third/magnific-popup.min.css?ver=1.0.0' type='text/css' media='all' />
<link rel='stylesheet' id='slick-css' href='http://127.0.0.1:81/wordpress/wp-content/themes/oceanwp/assets/css/third/slick.min.css?ver=1.6.0' type='text/css' media='all' />
<link rel='stylesheet' id='oceanwp-style-css' href='http://127.0.0.1:81/wordpress/wp-content/themes/oceanwp/assets/css/style.min.css?ver=1.7.1' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-frontend-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=2.7.5' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-51-css' href='http://127.0.0.1:81/wordpress/wp-content/uploads/elementor/css/post-51.css?ver=1572541883' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.4.0' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-animations-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/elementor/assets/lib/animations/animations.min.css?ver=2.7.5' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-global-css' href='http://127.0.0.1:81/wordpress/wp-content/uploads/elementor/css/global.css?ver=1572357508' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-post-11-css' href='http://127.0.0.1:81/wordpress/wp-content/uploads/elementor/css/post-11.css?ver=1572532489' type='text/css' media='all' />
<link rel='stylesheet' id='oe-widgets-style-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/ocean-extra/assets/css/widgets.css?ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&ver=5.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-shared-0-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.9.0' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-brands-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css?ver=5.9.0' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-solid-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.9.0' type='text/css' media='all' />
<link rel='stylesheet' id='elementor-icons-fa-regular-css' href='http://127.0.0.1:81/wordpress/wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css?ver=5.9.0' type='text/css' media='all' />
<link rel="stylesheet" type="text/css" href="http://127.0.0.1:81/wordpress/wp-content/plugins/smart-slider-3/library/media/smartslider.min.css?1572481846" media="all" />
<style type="text/css">.n2-ss-spinner-simple-white-container {
position: absolute;
top: 50%;
left: 50%;
margin: -20px;
background: #fff;
width: 20px;
height: 20px;
padding: 10px;
border-radius: 50%;
z-index: 1000;
}
.n2-ss-spinner-simple-white {
outline: 1px solid RGBA(0,0,0,0);
width:100%;
height: 100%;
}
.n2-ss-spinner-simple-white:before {
position: absolute;
top: 50%;
left: 50%;
width: 20px;
height: 20px;
margin-top: -11px;
margin-left: -11px;
}
.n2-ss-spinner-simple-white:not(:required):before {
content: '';
border-radius: 50%;
border-top: 2px solid #333;
border-right: 2px solid transparent;
animation: n2SimpleWhite .6s linear infinite;
}
@keyframes n2SimpleWhite {
to {transform: rotate(360deg);}
}</style><script type='text/javascript' src='http://127.0.0.1:81/wordpress/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp'></script>
<script type='text/javascript' src='http://127.0.0.1:81/wordpress/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<script type='text/javascript' src='http://127.0.0.1:81/wordpress/wp-includes/js/jquery/ui/core.min.js?ver=1.11.4'></script>
<script type='text/javascript' src='http://127.0.0.1:81/wordpress/wp-content/plugins/gallery-videos/JS/modernizr.custom.js?ver=5.2.4'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var object = {"ajaxurl":"http:\/\/127.0.0.1:81\/wordpress\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='http://127.0.0.1:81/wordpress/wp-content/plugins/gallery-videos/JS/Total-Soft-Gallery-Video-Widget.js?ver=5.2.4'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var object = {"ajaxurl":"http:\/\/127.0.0.1:81\/wordpress\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='http://127.0.0.1:81/wordpress/wp-content/plugins/slider-video/Scripts/Rich-Web-Video-Slider-Widget.js?ver=5.2.4'></script>
<script type='text/javascript' src='http://127.0.0.1:81/wordpress/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.5.1'></script>
<script type='text/javascript' src='http://127.0.0.1:81/wordpress/wp-content/plugins/essential-addons-for-elementor-lite/assets/admin/js/admin-bar.js?ver=3.5.1'></script>
<link rel='https://api.w.org/' href='http://127.0.0.1:81/wordpress/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://127.0.0.1:81/wordpress/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://127.0.0.1:81/wordpress/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.2.4" />
<link rel="canonical" href="http://127.0.0.1:81/wordpress/" />
<link rel='shortlink' href='http://127.0.0.1:81/wordpress/' />
<link rel="alternate" type="application/json+oembed" href="http://127.0.0.1:81/wordpress/wp-json/oembed/1.0/embed?url=http%3A%2F%2F127.0.0.1%3A81%2Fwordpress%2F" />
<link rel="alternate" type="text/xml+oembed" href="http://127.0.0.1:81/wordpress/wp-json/oembed/1.0/embed?url=http%3A%2F%2F127.0.0.1%3A81%2Fwordpress%2F&format=xml" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<style id="mystickymenu" type="text/css">#mysticky-nav { width:100%; position: static; }#mysticky-nav.wrapfixed { position:fixed; left: 0px; margin-top:0px; z-index: 99990; -webkit-transition: 1s; -moz-transition: 1s; -o-transition: 1s; transition: 1s; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; filter: alpha(opacity=60); opacity:0.6; background-color: #0a0909;}#mysticky-nav .myfixed { margin:0 auto; float:none; border:0px; background:none; max-width:100%; }</style> <style type="text/css">
</style>
<script type='text/javascript'>
/* <![CDATA[ */
var VPData = {"__":{"couldnt_retrieve_vp":"Couldn't retrieve Visual Portfolio ID.","pswp_close":"Close (Esc)","pswp_share":"Share","pswp_fs":"Toggle fullscreen","pswp_zoom":"Zoom in\/out","pswp_prev":"Previous (arrow left)","pswp_next":"Next (arrow right)","pswp_share_fb":"Share on Facebook","pswp_share_tw":"Tweet","pswp_share_pin":"Pin it","fancybox_close":"Close","fancybox_next":"Next","fancybox_prev":"Previous","fancybox_error":"The requested content cannot be loaded. <br \/> Please try again later.","fancybox_play_start":"Start slideshow","fancybox_play_stop":"Pause slideshow","fancybox_full_screen":"Full screen","fancybox_thumbs":"Thumbnails","fancybox_download":"Download","fancybox_share":"Share","fancybox_zoom":"Zoom"},"settingsPopupGallery":{"vendor":"photoswipe","show_arrows":true,"show_counter":true,"show_zoom_button":true,"show_fullscreen_button":true,"show_share_button":true,"show_close_button":true,"show_download_button":false,"show_slideshow":false,"show_thumbs":true},"screenSizes":[320,576,768,992,1200]};
/* ]]> */
</script>
<link rel="icon" href="http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/LogoMakr_0VbJYM-150x150.png" sizes="32x32" />
<link rel="icon" href="http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/LogoMakr_0VbJYM-300x300.png" sizes="192x192" />
<link rel="apple-touch-icon-precomposed" href="http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/LogoMakr_0VbJYM-300x300.png" />
<meta name="msapplication-TileImage" content="http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/LogoMakr_0VbJYM-300x300.png" />
<!-- OceanWP CSS -->
<style type="text/css">
/* Header CSS */#site-header,.has-transparent-header .is-sticky #site-header,.has-vh-transparent .is-sticky #site-header.vertical-header,#searchform-header-replace{background-color:#303030}#site-header.has-header-media .overlay-header-media{background-color:rgba(0,0,0,0.5)}#site-logo #site-logo-inner a img,#site-header.center-header #site-navigation-wrap .middle-site-logo a img{max-width:210px}#site-navigation-wrap .dropdown-menu >li >a,.oceanwp-mobile-menu-icon a,#searchform-header-replace-close{color:#ffffff}#site-navigation-wrap .dropdown-menu >li >a:hover,.oceanwp-mobile-menu-icon a:hover,#searchform-header-replace-close:hover{color:#45aaf2}#site-navigation-wrap .dropdown-menu >.current-menu-item >a,#site-navigation-wrap .dropdown-menu >.current-menu-ancestor >a,#site-navigation-wrap .dropdown-menu >.current-menu-item >a:hover,#site-navigation-wrap .dropdown-menu >.current-menu-ancestor >a:hover{color:#45aaf2}/* Footer Widgets CSS */#footer-widgets{padding:0}
</style><script type="text/javascript">(function(){var N=this;N.N2_=N.N2_||{r:[],d:[]},N.N2R=N.N2R||function(){N.N2_.r.push(arguments)},N.N2D=N.N2D||function(){N.N2_.d.push(arguments)}}).call(window);if(!window.n2jQuery){window.n2jQuery={ready:function(cb){console.error('n2jQuery will be deprecated!');N2R(['$'],cb)}}}window.nextend={localization:{},ready:function(cb){console.error('nextend.ready will be deprecated!');N2R('documentReady',function($){cb.call(window,$)})}};</script><script type="text/javascript" src="http://127.0.0.1:81/wordpress/wp-content/plugins/smart-slider-3/nextend/media/dist/n2.min.js?1572481848"></script>
<script type="text/javascript" src="http://127.0.0.1:81/wordpress/wp-content/plugins/smart-slider-3/nextend/media/dist/nextend-frontend.min.js?1572481848"></script>
<script type="text/javascript" src="http://127.0.0.1:81/wordpress/wp-content/plugins/smart-slider-3/library/media/dist/smartslider-frontend.min.js?1572481846"></script>
<script type="text/javascript" src="http://127.0.0.1:81/wordpress/wp-content/plugins/smart-slider-3/library/media/plugins/type/simple/simple/dist/smartslider-simple-type-frontend.min.js?1572481846"></script>
<script type="text/javascript">N2R('documentReady',function($){N2R(["nextend-frontend","smartslider-frontend","smartslider-simple-type-frontend"],function(){new N2Classes.SmartSliderSimple('#n2-ss-2',{"admin":false,"translate3d":1,"callbacks":"","background.video.mobile":1,"align":"normal","isDelayed":0,"load":{"fade":1,"scroll":0},"playWhenVisible":1,"playWhenVisibleAt":0.5,"responsive":{"desktop":1,"tablet":1,"mobile":1,"onResizeEnabled":true,"type":"auto","downscale":1,"upscale":1,"minimumHeight":0,"maximumHeight":700,"maximumSlideWidth":3000,"maximumSlideWidthLandscape":3000,"maximumSlideWidthTablet":3000,"maximumSlideWidthTabletLandscape":3000,"maximumSlideWidthMobile":3000,"maximumSlideWidthMobileLandscape":3000,"maximumSlideWidthConstrainHeight":0,"forceFull":0,"forceFullOverflowX":"body","forceFullHorizontalSelector":"","constrainRatio":1,"sliderHeightBasedOn":"real","decreaseSliderHeight":0,"focusUser":1,"deviceModes":{"desktopPortrait":1,"desktopLandscape":0,"tabletPortrait":1,"tabletLandscape":0,"mobilePortrait":1,"mobileLandscape":0},"normalizedDeviceModes":{"unknownUnknown":["unknown","Unknown"],"desktopPortrait":["desktop","Portrait"],"desktopLandscape":["desktop","Portrait"],"tabletPortrait":["tablet","Portrait"],"tabletLandscape":["tablet","Portrait"],"mobilePortrait":["mobile","Portrait"],"mobileLandscape":["mobile","Portrait"]},"verticalRatioModifiers":{"unknownUnknown":1,"desktopPortrait":1,"desktopLandscape":1,"tabletPortrait":1,"tabletLandscape":1,"mobilePortrait":1,"mobileLandscape":1},"minimumFontSizes":{"desktopPortrait":4,"desktopLandscape":4,"tabletPortrait":4,"tabletLandscape":4,"mobilePortrait":4,"mobileLandscape":4},"ratioToDevice":{"Portrait":{"tablet":0.7,"mobile":0.5},"Landscape":{"tablet":0,"mobile":0}},"sliderWidthToDevice":{"desktopPortrait":1200,"desktopLandscape":1200,"tabletPortrait":840,"tabletLandscape":0,"mobilePortrait":600,"mobileLandscape":0},"basedOn":"combined","orientationMode":"width_and_height","overflowHiddenPage":0,"desktopPortraitScreenWidth":1200,"tabletPortraitScreenWidth":800,"mobilePortraitScreenWidth":440,"tabletLandscapeScreenWidth":800,"mobileLandscapeScreenWidth":440,"focus":{"offsetTop":"#wpadminbar","offsetBottom":""}},"controls":{"mousewheel":0,"touch":"horizontal","keyboard":1,"blockCarouselInteraction":1},"lazyLoad":0,"lazyLoadNeighbor":0,"blockrightclick":0,"maintainSession":0,"autoplay":{"enabled":0,"start":1,"duration":8000,"autoplayToSlide":-1,"autoplayToSlideIndex":-1,"allowReStart":0,"pause":{"click":1,"mouse":"0","mediaStarted":1},"resume":{"click":0,"mouse":0,"mediaEnded":1,"slidechanged":0}},"perspective":1500,"layerMode":{"playOnce":0,"playFirstLayer":1,"mode":"skippable","inAnimation":"mainInEnd"},"initCallbacks":["new N2Classes.FrontendItemYouTube(this, \"n2-ss-2item1\", {\"image\":\"https:\\\/\\\/i.ytimg.com\\\/vi\\\/XCvFp6YRdjM\\\/maxresdefault.jpg\",\"start\":\"0\",\"volume\":-1,\"autoplay\":0,\"controls\":1,\"center\":0,\"loop\":0,\"reset\":0,\"related\":\"1\",\"code\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=XCvFp6YRdjM\",\"youtubeurl\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=XCvFp6YRdjM\",\"defaultimage\":\"maxresdefault\",\"modestbranding\":1,\"playbutton\":1,\"scroll-pause\":\"partly-visible\",\"query\":[],\"youtubecode\":\"XCvFp6YRdjM\",\"end\":\"\",\"privacy-enhanced\":0}, 1);","new N2Classes.FrontendItemYouTube(this, \"n2-ss-2item2\", {\"image\":\"https:\\\/\\\/i.ytimg.com\\\/vi\\\/XiD_2uMtxHE\\\/maxresdefault.jpg\",\"start\":\"0\",\"volume\":-1,\"autoplay\":0,\"controls\":1,\"center\":0,\"loop\":0,\"reset\":0,\"related\":\"1\",\"code\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=XiD_2uMtxHE\",\"youtubeurl\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=XiD_2uMtxHE\",\"defaultimage\":\"maxresdefault\",\"modestbranding\":1,\"playbutton\":1,\"scroll-pause\":\"partly-visible\",\"query\":[],\"youtubecode\":\"XiD_2uMtxHE\",\"end\":\"\",\"privacy-enhanced\":0}, 1);","new N2Classes.FrontendItemYouTube(this, \"n2-ss-2item3\", {\"image\":\"https:\\\/\\\/i.ytimg.com\\\/vi\\\/JNupVvvHbU0\\\/maxresdefault.jpg\",\"start\":\"0\",\"volume\":-1,\"autoplay\":0,\"controls\":1,\"center\":0,\"loop\":0,\"reset\":0,\"related\":\"1\",\"code\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=JNupVvvHbU0\",\"youtubeurl\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=JNupVvvHbU0\",\"defaultimage\":\"maxresdefault\",\"modestbranding\":1,\"playbutton\":1,\"scroll-pause\":\"partly-visible\",\"query\":[],\"youtubecode\":\"JNupVvvHbU0\",\"end\":\"\",\"privacy-enhanced\":0}, 1);","new N2Classes.FrontendItemYouTube(this, \"n2-ss-2item4\", {\"image\":\"https:\\\/\\\/i.ytimg.com\\\/vi\\\/0Q85KsZ18Fo\\\/maxresdefault.jpg\",\"start\":\"0\",\"volume\":-1,\"autoplay\":0,\"controls\":1,\"center\":0,\"loop\":0,\"reset\":0,\"related\":\"1\",\"code\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=0Q85KsZ18Fo\",\"youtubeurl\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=0Q85KsZ18Fo\",\"defaultimage\":\"maxresdefault\",\"modestbranding\":1,\"playbutton\":1,\"scroll-pause\":\"partly-visible\",\"query\":[],\"youtubecode\":\"0Q85KsZ18Fo\",\"end\":\"\",\"privacy-enhanced\":0}, 1);","new N2Classes.FrontendItemYouTube(this, \"n2-ss-2item5\", {\"image\":\"https:\\\/\\\/i.ytimg.com\\\/vi\\\/GbKPr-HYvas\\\/hqdefault.jpg\",\"start\":\"0\",\"volume\":-1,\"autoplay\":0,\"controls\":1,\"center\":0,\"loop\":0,\"reset\":0,\"related\":\"1\",\"code\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=GbKPr-HYvas&t=2s\",\"youtubeurl\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=GbKPr-HYvas&t=2s\",\"defaultimage\":\"maxresdefault\",\"modestbranding\":1,\"playbutton\":1,\"scroll-pause\":\"partly-visible\",\"query\":{\"t\":\"2s\"},\"youtubecode\":\"GbKPr-HYvas\",\"end\":\"\",\"privacy-enhanced\":0}, 1);","new N2Classes.FrontendItemYouTube(this, \"n2-ss-2item6\", {\"image\":\"https:\\\/\\\/i.ytimg.com\\\/vi\\\/zpQrwsIGAKM\\\/maxresdefault.jpg\",\"start\":\"0\",\"volume\":-1,\"autoplay\":0,\"controls\":1,\"center\":0,\"loop\":0,\"reset\":0,\"related\":\"1\",\"code\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=zpQrwsIGAKM\",\"youtubeurl\":\"https:\\\/\\\/www.youtube.com\\\/watch?v=zpQrwsIGAKM\",\"defaultimage\":\"maxresdefault\",\"modestbranding\":1,\"playbutton\":1,\"scroll-pause\":\"partly-visible\",\"query\":[],\"youtubecode\":\"zpQrwsIGAKM\",\"end\":\"\",\"privacy-enhanced\":0}, 1);","N2D(\"SmartSliderWidgetArrowImage\",function(i,e){function s(e,s,t,h){this.slider=e,this.slider.started(i.proxy(this.start,this,s,t,h))}return s.prototype.start=function(e,s,t){return this.slider.sliderElement.data(\"arrow\")?!1:(this.slider.sliderElement.data(\"arrow\",this),this.deferred=i.Deferred(),this.slider.sliderElement.on(\"SliderDevice\",i.proxy(this.onDevice,this)).trigger(\"addWidget\",this.deferred),this.previous=i(\"#\"+this.slider.elementID+\"-arrow-previous\").on(\"click\",i.proxy(function(i){i.stopPropagation(),this.slider[this.slider.getDirectionPrevious()]()},this)),this.previousResize=this.previous.find(\".n2-resize\"),0===this.previousResize.length&&(this.previousResize=this.previous),this.next=i(\"#\"+this.slider.elementID+\"-arrow-next\").on(\"click\",i.proxy(function(i){i.stopPropagation(),this.slider[this.slider.getDirectionNext()]()},this)),this.nextResize=this.next.find(\".n2-resize\"),0===this.nextResize.length&&(this.nextResize=this.next),this.desktopRatio=e,this.tabletRatio=s,this.mobileRatio=t,void i.when(this.previous.n2imagesLoaded(),this.next.n2imagesLoaded()).always(i.proxy(this.loaded,this)))},s.prototype.loaded=function(){this.previous.css(\"display\",\"inline-block\"),this.previousResize.css(\"display\",\"inline-block\"),this.previousWidth=this.previousResize.width(),this.previousHeight=this.previousResize.height(),this.previousResize.css(\"display\",\"\"),this.previous.css(\"display\",\"\"),this.next.css(\"display\",\"inline-block\"),this.nextResize.css(\"display\",\"inline-block\"),this.nextWidth=this.nextResize.width(),this.nextHeight=this.nextResize.height(),this.nextResize.css(\"display\",\"\"),this.next.css(\"display\",\"\"),this.previousResize.find(\"img\").css(\"width\",\"100%\"),this.nextResize.find(\"img\").css(\"width\",\"100%\"),this.onDevice(null,{device:this.slider.responsive.getDeviceMode()}),this.deferred.resolve()},s.prototype.onDevice=function(i,e){var s=1;switch(e.device){case\"tablet\":s=this.tabletRatio;break;case\"mobile\":s=this.mobileRatio;break;default:s=this.desktopRatio}this.previousResize.width(this.previousWidth*s),this.previousResize.height(this.previousHeight*s),this.nextResize.width(this.nextWidth*s),this.nextResize.height(this.nextHeight*s)},s});","new N2Classes.SmartSliderWidgetArrowImage(this, 1, 0.7, 0.5);","N2D(\"SmartSliderWidgetThumbnailDefault\",function(t,i){\"use strict\";function s(i,s){this.slider=i,this.slider.started(t.proxy(this.start,this,s))}var e=!1,r={videoDark:'<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"48\" height=\"48\" viewBox=\"0 0 48 48\"><circle cx=\"24\" cy=\"24\" r=\"24\" fill=\"#000\" opacity=\".6\"\/><path fill=\"#FFF\" d=\"M19.8 32c-.124 0-.247-.028-.36-.08-.264-.116-.436-.375-.44-.664V16.744c.005-.29.176-.55.44-.666.273-.126.592-.1.84.07l10.4 7.257c.2.132.32.355.32.595s-.12.463-.32.595l-10.4 7.256c-.14.1-.31.15-.48.15z\"\/><\/svg>'};s.prototype.start=function(i){if(this.slider.sliderElement.data(\"thumbnail\"))return!1;this.slider.sliderElement.data(\"thumbnail\",this),this.parameters=t.extend({captionSize:0,minimumThumbnailCount:1.5,invertGroupDirection:0},i),this.ratio=1,this.hidden=!1,this.forceHidden=!1,this.forceHiddenCB=null,this.itemPerPane=1,this.currentI=0,this.offset=0,this.horizontal={prop:\"width\",Prop:\"Width\",sideProp:n2const.rtl.left,invProp:\"height\",axis:\"x\",outerProp:\"outerWidth\"},this.vertical={prop:\"height\",Prop:\"Height\",sideProp:\"top\",invProp:\"width\",axis:\"y\",outerProp:\"outerHeight\"},this.group=parseInt(i.group),this.orientation=i.orientation,\"vertical\"===this.orientation&&(this.goToDot=this._goToDot),this.outerBar=this.slider.sliderElement.find(\".nextend-thumbnail-default\"),this.bar=this.outerBar.find(\".nextend-thumbnail-inner\"),this.scroller=this.bar.find(\".nextend-thumbnail-scroller\"),this.$groups=t();for(var s=0;s<this.group;s++)this.$groups=this.$groups.add(t('<div class=\"nextend-thumbnail-scroller-group\"><\/div>').appendTo(this.scroller));var e=\"universalclick\";if(\"mouseenter\"===i.action?e=\"universalenter\":this.slider.hasTouch()&&(e=\"n2click\"),this.renderThumbnails(),this.dots=this.scroller.find(\".nextend-thumbnail-scroller-group > div\").on(e,t.proxy(this.onDotClick,this)),this.images=this.dots.find(\".n2-ss-thumb-image\"),n2const.rtl.isRtl?(this.previous=this.outerBar.find(\".nextend-thumbnail-next\").on(\"click\",t.proxy(this.previousPane,this)),this.next=this.outerBar.find(\".nextend-thumbnail-previous\").on(\"click\",t.proxy(this.nextPane,this))):(this.previous=this.outerBar.find(\".nextend-thumbnail-previous\").on(\"click\",t.proxy(this.previousPane,this)),this.next=this.outerBar.find(\".nextend-thumbnail-next\").on(\"click\",t.proxy(this.nextPane,this))),this.slider.hasTouch()&&(N2Classes.EventBurrito(this.outerBar.get(0),{mouse:this.slider.parameters.controls.drag,axis:\"vertical\"===this.orientation?\"y\":\"x\",start:t.proxy(function(){this._touch={start:parseInt(this.scroller.css(this[this.orientation].sideProp)),max:this.bar[this[this.orientation].prop]()-this.scroller[this[this.orientation].outerProp](!0)},this._touch.current=this._touch.start},this),move:t.proxy(function(t,i,s,e,r){return this._touch.current=Math.max(this._touch.max,Math.min(0,this._touch.start+s[this[this.orientation].axis])),this.scroller.css(this[this.orientation].sideProp,this._touch.current),Math.abs(s[this[this.orientation].axis])>5},this),end:t.proxy(function(t,i,s,e,r){40>Math.abs(this._touch.start-this._touch.current)?this.resetPane():this._touch.current>this._touch.start?this.previousPane():this.nextPane(),10>Math.abs(s.x)&&10>Math.abs(s.y)?this.onTap(t):nextend.preventClick(),delete this._touch},this)}),this.slider.parameters.controls.drag||this.outerBar.on(\"click\",t.proxy(this.onTap,this))),this.thumbnailDimension={widthLocal:this.dots.width(),width:this.dots.outerWidth(!0),height:this.dots.outerHeight(!0),widthBorder:parseInt(this.dots.css(\"borderLeftWidth\"))+parseInt(this.dots.css(\"borderRightWidth\"))+parseInt(this.dots.css(\"paddingLeft\"))+parseInt(this.dots.css(\"paddingRight\")),heightBorder:parseInt(this.dots.css(\"borderTopWidth\"))+parseInt(this.dots.css(\"borderBottomWidth\"))+parseInt(this.dots.css(\"paddingTop\"))+parseInt(this.dots.css(\"paddingBottom\"))},this.thumbnailDimension.widthMargin=this.thumbnailDimension.width-this.dots.outerWidth(),this.thumbnailDimension.heightMargin=this.thumbnailDimension.height-this.dots.outerHeight(),this.imageDimension={width:this.images.outerWidth(!0),height:this.images.outerHeight(!0)},this.sideDimension=.25*this.thumbnailDimension[this[this.orientation].prop],\"horizontal\"===this.orientation?(this.scroller.height(this.thumbnailDimension.height*this.group),this.bar.height(this.scroller.outerHeight(!0))):(this.scroller.width(this.thumbnailDimension.width*this.group),this.bar.width(this.scroller.outerWidth(!0))),this.slider.sliderElement.on({BeforeVisible:t.proxy(this.onReady,this),sliderSwitchTo:t.proxy(this.onSlideSwitch,this)}),this.slider.firstSlideReady.done(t.proxy(this.onFirstSlideSet,this)),0==i.overlay){var r=!1;switch(i.area){case 1:r=\"Top\";break;case 12:r=\"Bottom\";break;case 5:r=\"Left\";break;case 8:r=\"Right\"}r&&(this.offset=parseFloat(this.outerBar.data(\"offset\")),this.slider.responsive.addStaticMargin(r,this))}},s.prototype.renderThumbnails=function(){var s;this.parameters.invertGroupDirection&&(s=Math.ceil(this.slider.realSlides.length\/this.group));for(var e=0;e<this.slider.realSlides.length;e++){var o=this.slider.realSlides[e],h=t('<div class=\"'+this.parameters.slideStyle+' n2-ow\" style=\"'+this.parameters.containerStyle+'\"><\/div>');if(this.parameters.invertGroupDirection?h.appendTo(this.$groups.eq(Math.floor(e\/s))):h.appendTo(this.$groups.eq(e%this.group)),h.data(\"slide\",o),o.$thumbnail=h,this.parameters.thumbnail!==i){var n=o.getThumbnailType(),a=r[n]!==i?r[n]:\"\";t('<div class=\"n2-ss-thumb-image n2-ow\" style=\"width:'+this.parameters.thumbnail.width+\"px; height:\"+this.parameters.thumbnail.height+\"px;\"+this.parameters.thumbnail.code+'\">'+a+\"<\/div>\").css(\"background-image\",\"url('\"+o.getThumbnail()+\"')\").appendTo(h)}if(this.parameters.caption!==i){var l=t('<div class=\"'+this.parameters.caption.styleClass+\"n2-ss-caption n2-ow n2-caption-\"+this.parameters.caption.placement+'\" style=\"'+this.parameters.caption.style+'\"><\/div>');switch(this.parameters.caption.placement){case\"before\":l.prependTo(h);break;default:l.appendTo(h)}if(this.parameters.title!==i&&l.append('<div class=\"n2-ow '+this.parameters.title.font+'\">'+o.getTitle()+\"<\/div>\"),this.parameters.description!==i){var d=o.getDescription();d&&l.append('<div class=\"n2-ow '+this.parameters.description.font+'\">'+d+\"<\/div>\")}}}},s.prototype.onTap=function(i){e||(t(i.target).trigger(\"n2click\"),e=!0,setTimeout(function(){e=!1},500))},s.prototype.onFirstSlideSet=function(t){this.activateDots(t.index),this.goToDot(t.index)},s.prototype.onReady=function(){this.slider.sliderElement.on(\"SliderResize\",t.proxy(this.onSliderResize,this)),this.onSliderResize()},s.prototype.onSliderResize=function(){null!==this.forceHiddenCB&&this.forceHiddenCB.call(this),this.adjustScrollerSize();var t=this.slider.currentSlide.index;this.activateDots(t),this.goToDot(t)},s.prototype.adjustScrollerSize=function(){var t=this[this.orientation].prop,i=Math.ceil(this.dots.length\/this.group)*this.thumbnailDimension[t]*this.ratio,s=this.scroller[\"outer\"+this[this.orientation].Prop]()-this.scroller[t](),e=this.slider.dimensions[\"thumbnail\"+t];e>=i+s?this.scroller[t](e-s):this.scroller[t](i),\"horizontal\"===this.orientation?this.scroller.height(this.dots.outerHeight(!0)*this.group):this.scroller.width(this.dots.outerWidth(!0)*this.group)};var o=!1;return s.prototype.onDotClick=function(i){o||(this.slider.directionalChangeToReal(t(i.currentTarget).data(\"slide\").index),o=!0),setTimeout(t.proxy(function(){o=!1},this),400)},s.prototype.onSlideSwitch=function(t,i,s){this.activateDots(i),this.goToDot(s)},s.prototype.activateDots=function(t){this.dots.removeClass(\"n2-active\");for(var i=this.slider.slides[t].slides,s=0;i.length>s;s++)i[s].$thumbnail.addClass(\"n2-active\")},s.prototype.resetPane=function(){this.goToDot(this.currentI)},s.prototype.previousPane=function(){this.goToDot(this.currentI-this.itemPerPane*this.group)},s.prototype.nextPane=function(){this.goToDot(this.currentI+this.itemPerPane*this.group)},s.prototype.goToDot=function(t){this.tween&&this.tween.progress()<1&&this.tween.pause();var i=this[this.orientation],s=1,e=this.slider.dimensions[\"thumbnail\"+i.prop],r=this.sideDimension,o=e-2*r,h=o\/this.thumbnailDimension[i.prop];if(this.parameters.minimumThumbnailCount>=h&&(r=.1*e,o=e-2*r,s=o\/(this.parameters.minimumThumbnailCount*this.thumbnailDimension[i.prop]),h=o\/(this.thumbnailDimension[i.prop]*s)),this.ratio!==s){var n={};n[i.prop]=parseInt(this.thumbnailDimension[i.prop]*s-this.thumbnailDimension[i.prop+\"Margin\"]-this.thumbnailDimension[i.prop+\"Border\"]),n[i.invProp]=parseInt((this.thumbnailDimension[i.invProp]-this.parameters.captionSize)*s-this.thumbnailDimension[i.prop+\"Margin\"]+this.parameters.captionSize-this.thumbnailDimension[i.invProp+\"Border\"]),this.dots.css(n);var a=this.dots.width()\/this.thumbnailDimension.widthLocal;n={},n[i.prop]=Math.ceil(this.imageDimension[i.prop]*a),n[i.invProp]=Math.ceil(this.imageDimension[i.invProp]*a),this.images.css(n),this.bar.css(i.invProp,\"auto\"),this.ratio=s,this.slider.responsive.doNormalizedResize(),this.adjustScrollerSize()}h=Math.floor(h),t=Math.max(0,Math.min(this.dots.length-1,t));var l,d={};l=this.parameters.invertGroupDirection?Math.floor(t%Math.ceil(this.dots.length\/this.group)\/h):Math.floor(t\/this.group\/h);var p=-(this.scroller[\"outer\"+i.Prop]()-e);l===Math.floor((this.dots.length-1)\/this.group\/h)?(d[i.sideProp]=-(l*h*this.thumbnailDimension[i.prop]*s),0===l?this.previous.removeClass(\"n2-active\"):this.previous.addClass(\"n2-active\"),this.next.removeClass(\"n2-active\")):l>0?(d[i.sideProp]=-(l*h*this.thumbnailDimension[i.prop]*s-r),this.previous.addClass(\"n2-active\"),this.next.addClass(\"n2-active\")):(d[i.sideProp]=0,this.previous.removeClass(\"n2-active\"),this.next.addClass(\"n2-active\")),p>=d[i.sideProp]&&(d[i.sideProp]=p,this.next.removeClass(\"n2-active\")),this.tween=NextendTween.to(this.scroller,.5,d),this.currentI=t,this.itemPerPane=h},s.prototype._goToDot=function(i){if(!this.forceHidden){this.tween&&this.tween.progress()<1&&this.tween.pause();var s=this[this.orientation],e=this.slider.dimensions[\"thumbnail\"+s.prop],r=(e-2*this.sideDimension)\/this.thumbnailDimension[s.prop];if(0===e||0!==e&&this.parameters.minimumThumbnailCount-.5>r?this.hidden||(\"horizontal\"===this.orientation?this.outerBar.css(\"height\",0):this.outerBar.css(\"width\",0),this.hidden=!0,this.forceHidden=!0,setTimeout(t.proxy(function(){this.forceHiddenCB=function(){this.forceHiddenCB=null,this.forceHidden=!1}},this),300),this.slider.responsive.doNormalizedResize()):this.hidden&&r>=this.parameters.minimumThumbnailCount+.5&&(this.hidden=!1,\"horizontal\"===this.orientation?this.outerBar.css(\"height\",\"\"):this.outerBar.css(\"width\",\"\"),this.slider.responsive.doNormalizedResize()),!this.hidden){r=Math.floor(r),i=Math.max(0,Math.min(this.dots.length-1,i));var o,h={};o=this.parameters.invertGroupDirection?Math.floor(i%Math.ceil(this.dots.length\/this.group)\/r):Math.floor(i\/this.group\/r);var n=-(this.scroller[\"outer\"+s.Prop]()-e);o===Math.floor((this.dots.length-1)\/this.group\/r)?(h[s.sideProp]=-(o*r*this.thumbnailDimension[s.prop]),0===o?this.previous.removeClass(\"n2-active\"):this.previous.addClass(\"n2-active\"),this.next.removeClass(\"n2-active\")):o>0?(h[s.sideProp]=-(o*r*this.thumbnailDimension[s.prop]-this.sideDimension),this.previous.addClass(\"n2-active\"),this.next.addClass(\"n2-active\")):(h[s.sideProp]=0,this.previous.removeClass(\"n2-active\"),this.next.addClass(\"n2-active\")),n>=h[s.sideProp]&&(h[s.sideProp]=n,this.next.removeClass(\"n2-active\")),this.tween=NextendTween.to(this.scroller,.5,h)}this.currentI=i,this.itemPerPane=r}},s.prototype.isVisible=function(){return this.outerBar.is(\":visible\")},s.prototype.getSize=function(){return\"horizontal\"===this.orientation?this.outerBar.height()+this.offset:this.outerBar.width()+this.offset},s});","new N2Classes.SmartSliderWidgetThumbnailDefault(this, {\"overlay\":1,\"area\":12,\"action\":\"click\",\"minimumThumbnailCount\":1.5,\"group\":1,\"invertGroupDirection\":0,\"captionSize\":0,\"orientation\":\"horizontal\",\"slideStyle\":\"n2-style-2c79cb76dcbb33394d01b9bc92c49672-dot \",\"containerStyle\":\"width: 160px; height: 100px;\",\"thumbnail\":{\"width\":160,\"height\":100,\"code\":\"background-size: cover;\"}});"],"allowBGImageAttachmentFixed":false,"bgAnimationsColor":"RGBA(51,51,51,1)","bgAnimations":0,"mainanimation":{"type":"horizontal","duration":800,"delay":0,"ease":"easeOutQuad","parallax":0,"shiftedBackgroundAnimation":0},"carousel":1,"dynamicHeight":0})})});</script></head>
<body class="home page-template page-template-elementor_header_footer page page-id-11 wp-custom-logo wp-embed-responsive oceanwp-theme sidebar-mobile no-header-border default-breakpoint has-sidebar content-right-sidebar page-header-disabled has-breadcrumbs elementor-default elementor-template-full-width elementor-page elementor-page-11">
<div id="outer-wrap" class="site clr">
<div id="wrap" class="clr">
<header id="site-header" class="minimal-header clr" data-height="74" itemscope="itemscope" itemtype="http://schema.org/WPHeader">
<div id="site-header-inner" class="clr container">
<div id="site-logo" class="clr" itemscope itemtype="http://schema.org/Brand">
<div id="site-logo-inner" class="clr">
<a href="http://127.0.0.1:81/wordpress/" class="custom-logo-link" rel="home"><img width="400" height="85" src="http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/LogoMakr_3MMyyW.png" class="custom-logo" alt="Felix Fieseler" srcset="http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/LogoMakr_3MMyyW.png 400w, http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/LogoMakr_3MMyyW-300x64.png 300w" sizes="(max-width: 400px) 100vw, 400px" /></a>
</div><!-- #site-logo-inner -->
</div><!-- #site-logo -->
<div id="site-navigation-wrap" class="clr">
<nav id="site-navigation" class="navigation main-navigation clr" itemscope="itemscope" itemtype="http://schema.org/SiteNavigationElement">
<ul id="menu-primary-menu" class="main-menu dropdown-menu sf-menu"><li id="menu-item-87" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-87"><a href="#main" class="menu-link"><span class="text-wrap">Home</span></a></li><li id="menu-item-59" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-59"><a href="#about" class="menu-link"><span class="text-wrap">About</span></a></li><li id="menu-item-60" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-60"><a href="#services" class="menu-link"><span class="text-wrap">Services</span></a></li><li id="menu-item-61" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-61"><a href="#gallery" class="menu-link"><span class="text-wrap">Gallery</span></a></li><li id="menu-item-62" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-62"><a href="#fiverr" class="menu-link"><span class="text-wrap">Fiverr</span></a></li><li id="menu-item-63" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-63"><a href="#contact" class="menu-link"><span class="text-wrap">Contact</span></a></li><li class="search-toggle-li"><a href="#" class="site-search-toggle search-dropdown-toggle"><span class="icon-magnifier"></span></a></li></ul>
<div id="searchform-dropdown" class="header-searchform-wrap clr">
<form method="get" class="searchform" id="searchform" action="http://127.0.0.1:81/wordpress/">
<input type="text" class="field" name="s" id="s" placeholder="Search">
</form></div><!-- #searchform-dropdown -->
</nav><!-- #site-navigation -->
</div><!-- #site-navigation-wrap -->
<div class="oceanwp-mobile-menu-icon clr mobile-right">
<a href="#" class="mobile-menu">
<i class="fa fa-bars"></i>
<span class="oceanwp-text">Menu</span>
</a>
</div><!-- #oceanwp-mobile-menu-navbar -->
</div><!-- #site-header-inner -->
</header><!-- #site-header -->
<main id="main" class="site-main clr" >
<div data-elementor-type="wp-page" data-elementor-id="11" class="elementor elementor-11" data-elementor-settings="[]">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section class="elementor-element elementor-element-58a2c0be elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section" data-id="58a2c0be" data-element_type="section" data-settings="{"background_background":"classic","shape_divider_bottom":"triangle","shape_divider_bottom_negative":"yes"}">
<div class="elementor-background-overlay"></div>
<div class="elementor-shape elementor-shape-bottom" data-negative="true">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none">
<path class="elementor-shape-fill" d="M500.2,94.7L0,0v100h1000V0L500.2,94.7z"/>
</svg> </div>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-element elementor-element-7d511294 elementor-column elementor-col-100 elementor-top-column" data-id="7d511294" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-608be5b8 elementor-invisible elementor-widget elementor-widget-heading" data-id="608be5b8" data-element_type="widget" data-settings="{"_animation":"fadeIn"}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-default">FELIX FIESELER</h1> </div>
</div>
<div class="elementor-element elementor-element-57ccbc72 animated-fast elementor-invisible elementor-widget elementor-widget-heading" data-id="57ccbc72" data-element_type="widget" data-settings="{"_animation":"fadeIn"}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">MODERN WEBDESIGN AND VIDEO EDITING</h5> </div>
</div>
<div class="elementor-element elementor-element-5be8377c elementor-align-center animated-slow elementor-invisible elementor-widget elementor-widget-button" data-id="5be8377c" data-element_type="widget" data-settings="{"_animation":"fadeIn"}" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="#" class="elementor-button-link elementor-button elementor-size-xs elementor-animation-grow" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">CONTACT ME</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-611102d1 elementor-view-default elementor-widget elementor-widget-icon" data-id="611102d1" data-element_type="widget" data-widget_type="icon.default">
<div class="elementor-widget-container">
<div class="elementor-icon-wrapper">
<a class="elementor-icon" href="#about">
<i aria-hidden="true" class="fas fa-angle-down"></i> </a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-element elementor-element-45302b01 elementor-section-content-middle elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle elementor-section elementor-top-section" data-id="45302b01" data-element_type="section" id="about" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-element elementor-element-3e0ce8dc elementor-invisible elementor-column elementor-col-100 elementor-top-column" data-id="3e0ce8dc" data-element_type="column" data-settings="{"animation":"fadeIn"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-4721d1c elementor-shape-rounded elementor-widget elementor-widget-profile-card-elementor-widget" data-id="4721d1c" data-element_type="widget" data-widget_type="profile-card-elementor-widget.default">
<div class="elementor-widget-container">
<!-- Start Profile Card 4 -->
<div class="profile-card-style-4 text-center" style="background-image:url(http://127.0.0.1:81/wordpress/wp-content/plugins/elementor/assets/images/placeholder.png);">
<img src="http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/background-board-brown-326311.jpg" style="width: 300px; height: px" class="img img-responsive">
<div class="profile-content elementor-content-background-color-wrapper">
<div class="profile-bg elementor-content-background-color-wrapper"></div>
<div class="profile-name elementor-profile-name-wrapper">Felix Fieseler <p class="profile-position elementor-profile-position-wrapper">Developer & Post Production</p>
</div>
<p class="profile-description elementor-profile-description-wrapper">Hey, Ich bin Felix FIeseler 16 Jahre alt.</p>
<div class="profile-icons">
<!-- social icon -->
<div class="elementor-social-icons-wrapper">
<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook" href="" target="_blank">
<span class="elementor-screen-only">Facebook</span>
<i class="fab fa-facebook"></i>
</a>
<a class="elementor-icon elementor-social-icon elementor-social-icon-reddit" href="" target="_blank">
<span class="elementor-screen-only">Reddit</span>
<i class="fab fa-reddit"></i>
</a>
<a class="elementor-icon elementor-social-icon elementor-social-icon-snapchat" href="" target="_blank">
<span class="elementor-screen-only">Snapchat</span>
<i class="fab fa-snapchat"></i>
</a>
<a class="elementor-icon elementor-social-icon elementor-social-icon-youtube" href="" target="_blank">
<span class="elementor-screen-only">Youtube</span>
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
</div>
<!-- End Profile Card --> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-element elementor-element-1538d991 elementor-section-content-middle elementor-section-height-min-height elementor-section-full_width elementor-section-height-default elementor-section-items-middle elementor-section elementor-top-section" data-id="1538d991" data-element_type="section" id="services" data-settings="{"background_background":"classic","shape_divider_bottom":"triangle"}">
<div class="elementor-background-overlay"></div>
<div class="elementor-shape elementor-shape-bottom" data-negative="false">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none">
<path class="elementor-shape-fill" d="M500,98.9L0,6.1V0h1000v6.1L500,98.9z"/>
</svg> </div>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-element elementor-element-3cca3c32 elementor-column elementor-col-100 elementor-top-column" data-id="3cca3c32" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-3e31eb05 elementor-widget elementor-widget-heading" data-id="3e31eb05" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Services</h5> </div>
</div>
<div class="elementor-element elementor-element-32143f5 elementor-widget elementor-widget-divider" data-id="32143f5" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
<section class="elementor-element elementor-element-5005c65e elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible elementor-section elementor-inner-section" data-id="5005c65e" data-element_type="section" data-settings="{"animation":"none"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-element elementor-element-ea7661f elementor-column elementor-col-33 elementor-inner-column" data-id="ea7661f" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-27fbfdd4 animated-slow elementor-view-default elementor-position-top elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-icon-box" data-id="27fbfdd4" data-element_type="widget" data-settings="{"_animation":"fadeInUp"}" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-grow" >
<i aria-hidden="true" class="fas fa-desktop"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span >Webpräsenz</span>
</h3>
<p class="elementor-icon-box-description">Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-7908591 elementor-align-center elementor-widget elementor-widget-button" data-id="7908591" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="#" class="elementor-button-link elementor-button elementor-size-sm elementor-animation-grow" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Mehr Erfahren</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-bdb2f38 elementor-column elementor-col-33 elementor-inner-column" data-id="bdb2f38" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-410f41ec animated-slow elementor-view-default elementor-position-top elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-icon-box" data-id="410f41ec" data-element_type="widget" data-settings="{"_animation":"fadeInUp"}" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-grow" >
<i aria-hidden="true" class="fas fa-video"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span >Filmproduktion</span>
</h3>
<p class="elementor-icon-box-description">Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-9bc18f2 elementor-align-center elementor-widget elementor-widget-button" data-id="9bc18f2" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="#" class="elementor-button-link elementor-button elementor-size-sm elementor-animation-grow" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Mehr Erfahren</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-36360189 elementor-column elementor-col-33 elementor-inner-column" data-id="36360189" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-40bcaa4e animated-slow elementor-view-default elementor-position-top elementor-vertical-align-top elementor-invisible elementor-widget elementor-widget-icon-box" data-id="40bcaa4e" data-element_type="widget" data-settings="{"_animation":"fadeInUp"}" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-grow" >
<i aria-hidden="true" class="fas fa-camera"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span >Fotografie</span>
</h3>
<p class="elementor-icon-box-description">Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-9ef06d9 elementor-align-center elementor-widget elementor-widget-button" data-id="9ef06d9" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="#" class="elementor-button-link elementor-button elementor-size-sm elementor-animation-grow" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Mehr Erfahren</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-element elementor-element-7b61059a elementor-section-full_width elementor-section-height-default elementor-section-height-default elementor-section elementor-inner-section" data-id="7b61059a" data-element_type="section" id="gallery" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-element elementor-element-2e220ad elementor-column elementor-col-100 elementor-inner-column" data-id="2e220ad" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-background-overlay"></div>
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-15a947e8 elementor-widget elementor-widget-heading" data-id="15a947e8" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Instagram</h5> </div>
</div>
<div class="elementor-element elementor-element-7d1b87b0 elementor-widget elementor-widget-divider" data-id="7d1b87b0" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
<div class="elementor-element elementor-element-6447d1e1 elementor-invisible elementor-widget elementor-widget-shortcode" data-id="6447d1e1" data-element_type="widget" data-settings="{"_animation":"fadeInUp"}" data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode">
<div id="sb_instagram" class="sbi sbi_col_4 sbi_width_resp" style="padding-bottom: 10px;width: 100%;" data-feedid="sbi_4069483093#20" data-res="auto" data-cols="4" data-num="20" data-shortcode-atts="{}" >
<div class="sb_instagram_header " style="padding: 5px; margin-bottom: 10px;padding-bottom: 0;">
<a href="https://www.instagram.com/felix.fslr" target="_blank" rel="noopener" title="@felix.fslr" class="sbi_header_link">
<div class="sbi_header_text sbi_no_bio">
<h3 style="color: rgb(255,255,255);">felix.fslr</h3>
</div>
<div class="sbi_header_img" data-avatar-url="https://scontent.cdninstagram.com/vp/10f736b4acdc69dd9f6a35b2a2d9faf0/5E594990/t51.2885-19/s150x150/66704453_364887737523363_691045342979817472_n.jpg?_nc_ht=scontent.cdninstagram.com">
<div class="sbi_header_img_hover"><svg class="sbi_new_logo fa-instagram fa-w-14" aria-hidden="true" data-fa-processed="" data-prefix="fab" data-icon="instagram" role="img" viewBox="0 0 448 512">
<path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path>
</svg></div>
<img src="https://scontent.cdninstagram.com/vp/10f736b4acdc69dd9f6a35b2a2d9faf0/5E594990/t51.2885-19/s150x150/66704453_364887737523363_691045342979817472_n.jpg?_nc_ht=scontent.cdninstagram.com" alt="" width="50" height="50">
</div>
</a>
</div>
<div id="sbi_images" style="padding: 5px;">
<div class="sbi_item sbi_type_image sbi_new sbi_transition" id="sbi_2102570446949383587_4069483093" data-date="1564865950">
<div class="sbi_photo_wrap">
<a class="sbi_photo" href="https://www.instagram.com/p/B0t1K59pv2jextRGEAsOTsX-VYOugqW4LtmgSQ0/" target="_blank" rel="noopener" data-full-res="https://scontent.cdninstagram.com/vp/d9c70202f474cbe673aee3bc2fe4e8ef/5E471837/t51.2885-15/sh0.08/e35/s640x640/67063378_411245746404071_2204615645395202696_n.jpg?_nc_ht=scontent.cdninstagram.com" data-img-src-set="{"150":"https:\/\/scontent.cdninstagram.com\/vp\/cad06c180b02451757fdd0088d595805\/5E503F96\/t51.2885-15\/e35\/c241.0.958.958a\/s150x150\/67063378_411245746404071_2204615645395202696_n.jpg?_nc_ht=scontent.cdninstagram.com","320":"https:\/\/scontent.cdninstagram.com\/vp\/5298b742981b2561353dd75dfdab18fe\/5E5C1860\/t51.2885-15\/e35\/s320x320\/67063378_411245746404071_2204615645395202696_n.jpg?_nc_ht=scontent.cdninstagram.com","640":"https:\/\/scontent.cdninstagram.com\/vp\/d9c70202f474cbe673aee3bc2fe4e8ef\/5E471837\/t51.2885-15\/sh0.08\/e35\/s640x640\/67063378_411245746404071_2204615645395202696_n.jpg?_nc_ht=scontent.cdninstagram.com"}">
<span class="sbi-screenreader">Instagram post 2102570446949383587_4069483093</span>
<img src="http://127.0.0.1:81/wordpress/wp-content/plugins/instagram-feed/img/placeholder.png" alt="🐝 🐝🐝" width="200" height="200">
</a>
</div>
</div><div class="sbi_item sbi_type_video sbi_new sbi_transition" id="sbi_2044069526697457670_4069483093" data-date="1557892406">
<div class="sbi_photo_wrap">
<a class="sbi_photo" href="https://www.instagram.com/p/Bxd_meTALgG_7fe4W1HtU8G0pie5OLrvy-xiSo0/" target="_blank" rel="noopener" data-full-res="https://scontent.cdninstagram.com/vp/9dc34af68448169ae291f4663f0a5dfe/5DBD45C5/t51.2885-15/sh0.08/e35/s640x640/60750570_376147506442237_1214593504501721828_n.jpg?_nc_ht=scontent.cdninstagram.com" data-img-src-set="{"150":"https:\/\/scontent.cdninstagram.com\/vp\/b46dd74624dec1381ad0011f3fb9b146\/5DBD4CD2\/t51.2885-15\/e35\/c157.0.405.405a\/s150x150\/60750570_376147506442237_1214593504501721828_n.jpg?_nc_ht=scontent.cdninstagram.com","320":"https:\/\/scontent.cdninstagram.com\/vp\/d8547c65919431f1cbe2742d563ac20a\/5DBD1252\/t51.2885-15\/e35\/s320x320\/60750570_376147506442237_1214593504501721828_n.jpg?_nc_ht=scontent.cdninstagram.com","640":"https:\/\/scontent.cdninstagram.com\/vp\/9dc34af68448169ae291f4663f0a5dfe\/5DBD45C5\/t51.2885-15\/sh0.08\/e35\/s640x640\/60750570_376147506442237_1214593504501721828_n.jpg?_nc_ht=scontent.cdninstagram.com"}">
<span class="sbi-screenreader">Instagram post 2044069526697457670_4069483093</span>
<svg style="color: rgba(255,255,255,1)" class="svg-inline--fa fa-play fa-w-14 sbi_playbtn" aria-hidden="true" data-fa-processed="" data-prefix="fa" data-icon="play" role="presentation" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="currentColor" d="M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"></path></svg> <img src="http://127.0.0.1:81/wordpress/wp-content/plugins/instagram-feed/img/placeholder.png" alt="It was such a nice last trip with the ODC to Main Lake" width="200" height="200">
</a>
</div>
</div><div class="sbi_item sbi_type_image sbi_new sbi_transition" id="sbi_1889358576121361419_4069483093" data-date="1539449115">
<div class="sbi_photo_wrap">
<a class="sbi_photo" href="https://www.instagram.com/p/Bo4WZ1fDTQLr3VGJVcuN9RGSv61Q_I5BPq80Vc0/" target="_blank" rel="noopener" data-full-res="https://scontent.cdninstagram.com/vp/ad8bb3e12d8651cd1ea4f7bad9c8b878/5E4F84AC/t51.2885-15/sh0.08/e35/s640x640/41772933_1218052918332657_5577721789788681180_n.jpg?_nc_ht=scontent.cdninstagram.com" data-img-src-set="{"150":"https:\/\/scontent.cdninstagram.com\/vp\/f173e1a9e217d4f68701c320170e9cbe\/5E4AA7BA\/t51.2885-15\/e35\/c221.0.637.637a\/s150x150\/41772933_1218052918332657_5577721789788681180_n.jpg?_nc_ht=scontent.cdninstagram.com","320":"https:\/\/scontent.cdninstagram.com\/vp\/ecdd98d10d5df13c3a9100c04ce2eb90\/5E3FDD51\/t51.2885-15\/e35\/s320x320\/41772933_1218052918332657_5577721789788681180_n.jpg?_nc_ht=scontent.cdninstagram.com","640":"https:\/\/scontent.cdninstagram.com\/vp\/ad8bb3e12d8651cd1ea4f7bad9c8b878\/5E4F84AC\/t51.2885-15\/sh0.08\/e35\/s640x640\/41772933_1218052918332657_5577721789788681180_n.jpg?_nc_ht=scontent.cdninstagram.com"}">
<span class="sbi-screenreader">Instagram post 1889358576121361419_4069483093</span>
<img src="http://127.0.0.1:81/wordpress/wp-content/plugins/instagram-feed/img/placeholder.png" alt="„NEVER STOP EXPLORING“ 🧐 @thenorthface" width="200" height="200">
</a>
</div>
</div><div class="sbi_item sbi_type_image sbi_new sbi_transition" id="sbi_1851618821275492423_4069483093" data-date="1534950185">
<div class="sbi_photo_wrap">
<a class="sbi_photo" href="https://www.instagram.com/p/BmyRYH1jaBHXiP2AqAJzL6Xzn_HQSSdTNNmJSU0/" target="_blank" rel="noopener" data-full-res="https://scontent.cdninstagram.com/vp/1b009fc6f69ddf85402ce29582244a33/5E5382CD/t51.2885-15/sh0.08/e35/s640x640/39509635_596947164036912_6461048006362791936_n.jpg?_nc_ht=scontent.cdninstagram.com" data-img-src-set="{"150":"https:\/\/scontent.cdninstagram.com\/vp\/7dfa12d1928278121680d6483d450ac0\/5E5D366A\/t51.2885-15\/e35\/s150x150\/39509635_596947164036912_6461048006362791936_n.jpg?_nc_ht=scontent.cdninstagram.com","320":"https:\/\/scontent.cdninstagram.com\/vp\/f004546443e24352f067d8d44e461c24\/5E59779A\/t51.2885-15\/e35\/s320x320\/39509635_596947164036912_6461048006362791936_n.jpg?_nc_ht=scontent.cdninstagram.com","640":"https:\/\/scontent.cdninstagram.com\/vp\/1b009fc6f69ddf85402ce29582244a33\/5E5382CD\/t51.2885-15\/sh0.08\/e35\/s640x640\/39509635_596947164036912_6461048006362791936_n.jpg?_nc_ht=scontent.cdninstagram.com"}">
<span class="sbi-screenreader">Instagram post 1851618821275492423_4069483093</span>
<img src="http://127.0.0.1:81/wordpress/wp-content/plugins/instagram-feed/img/placeholder.png" alt="Image for post 1851618821275492423_4069483093" width="200" height="200">
</a>
</div>
</div><div class="sbi_item sbi_type_image sbi_new sbi_transition" id="sbi_1731366246722738899_4069483093" data-date="1520614961">
<div class="sbi_photo_wrap">
<a class="sbi_photo" href="https://www.instagram.com/p/BgHDG2gAprTjL0dNwkRpIEcYgnysZr-rmvHpMo0/" target="_blank" rel="noopener" data-full-res="https://scontent.cdninstagram.com/vp/50300b2209c3bbd7dfbeee345ccb1a28/5E53D9AC/t51.2885-15/sh0.08/e35/s640x640/28433536_966758573480904_4491969680566648832_n.jpg?_nc_ht=scontent.cdninstagram.com" data-img-src-set="{"150":"https:\/\/scontent.cdninstagram.com\/vp\/a4de691d2c1f0d2773e27b74ff3f2f69\/5E48E70B\/t51.2885-15\/e35\/s150x150\/28433536_966758573480904_4491969680566648832_n.jpg?_nc_ht=scontent.cdninstagram.com","320":"https:\/\/scontent.cdninstagram.com\/vp\/e1bbe2a46a216ecca380d2826f40f3e6\/5E4124FB\/t51.2885-15\/e35\/s320x320\/28433536_966758573480904_4491969680566648832_n.jpg?_nc_ht=scontent.cdninstagram.com","640":"https:\/\/scontent.cdninstagram.com\/vp\/50300b2209c3bbd7dfbeee345ccb1a28\/5E53D9AC\/t51.2885-15\/sh0.08\/e35\/s640x640\/28433536_966758573480904_4491969680566648832_n.jpg?_nc_ht=scontent.cdninstagram.com"}">
<span class="sbi-screenreader">Instagram post 1731366246722738899_4069483093</span>
<img src="http://127.0.0.1:81/wordpress/wp-content/plugins/instagram-feed/img/placeholder.png" alt="Was a Nice Last day @mats__mueller 🤟" width="200" height="200">
</a>
</div>
</div><div class="sbi_item sbi_type_image sbi_new sbi_transition" id="sbi_1579169647093459848_4069483093" data-date="1502471713">
<div class="sbi_photo_wrap">
<a class="sbi_photo" href="https://www.instagram.com/p/BXqVm1fFauIunWq2JRxOX93fzlbmKda9SNXy8w0/" target="_blank" rel="noopener" data-full-res="https://scontent.cdninstagram.com/vp/5de6772bb9a9045fa2b0d33ab78ef902/5E4AFE36/t51.2885-15/sh0.08/e35/s640x640/20759669_1159389307539256_3557447026738200576_n.jpg?_nc_ht=scontent.cdninstagram.com" data-img-src-set="{"150":"https:\/\/scontent.cdninstagram.com\/vp\/0325e90141a62710b45e2c4c3ef83c3c\/5E62E4B3\/t51.2885-15\/e35\/s150x150\/20759669_1159389307539256_3557447026738200576_n.jpg?_nc_ht=scontent.cdninstagram.com","320":"https:\/\/scontent.cdninstagram.com\/vp\/9f687ba993acae26d4e27726b661c3dd\/5E5273CB\/t51.2885-15\/e35\/s320x320\/20759669_1159389307539256_3557447026738200576_n.jpg?_nc_ht=scontent.cdninstagram.com","640":"https:\/\/scontent.cdninstagram.com\/vp\/5de6772bb9a9045fa2b0d33ab78ef902\/5E4AFE36\/t51.2885-15\/sh0.08\/e35\/s640x640\/20759669_1159389307539256_3557447026738200576_n.jpg?_nc_ht=scontent.cdninstagram.com"}">
<span class="sbi-screenreader">Instagram post 1579169647093459848_4069483093</span>
<img src="http://127.0.0.1:81/wordpress/wp-content/plugins/instagram-feed/img/placeholder.png" alt="Image for post 1579169647093459848_4069483093" width="200" height="200">
</a>
</div>
</div><div class="sbi_item sbi_type_image sbi_new sbi_transition" id="sbi_1469758443653430555_4069483093" data-date="1489428881">
<div class="sbi_photo_wrap">
<a class="sbi_photo" href="https://www.instagram.com/p/BRloYRzl_0bDJiPASN66xZZrQQCtPKZ6AnnKSo0/" target="_blank" rel="noopener" data-full-res="https://scontent.cdninstagram.com/vp/e47f48167258e1c2e0491507f62fff51/5E5A1CDE/t51.2885-15/sh0.08/e35/s640x640/17268098_1880464258898983_7746470677980381184_n.jpg?_nc_ht=scontent.cdninstagram.com" data-img-src-set="{"150":"https:\/\/scontent.cdninstagram.com\/vp\/5fb6880c5edbb244ba82b45d9781d928\/5E47755B\/t51.2885-15\/e35\/s150x150\/17268098_1880464258898983_7746470677980381184_n.jpg?_nc_ht=scontent.cdninstagram.com","320":"https:\/\/scontent.cdninstagram.com\/vp\/672a3138a26299b74225c0da860c41c1\/5E44D023\/t51.2885-15\/e35\/s320x320\/17268098_1880464258898983_7746470677980381184_n.jpg?_nc_ht=scontent.cdninstagram.com","640":"https:\/\/scontent.cdninstagram.com\/vp\/e47f48167258e1c2e0491507f62fff51\/5E5A1CDE\/t51.2885-15\/sh0.08\/e35\/s640x640\/17268098_1880464258898983_7746470677980381184_n.jpg?_nc_ht=scontent.cdninstagram.com"}">
<span class="sbi-screenreader">Instagram post 1469758443653430555_4069483093</span>
<img src="http://127.0.0.1:81/wordpress/wp-content/plugins/instagram-feed/img/placeholder.png" alt="Image for post 1469758443653430555_4069483093" width="200" height="200">
</a>
</div>
</div><div class="sbi_item sbi_type_image sbi_new sbi_transition" id="sbi_1466684604413152911_4069483093" data-date="1489062451">
<div class="sbi_photo_wrap">
<a class="sbi_photo" href="https://www.instagram.com/p/BRateB7lI6PLV2Q4NGqYfcupys0k-2Yzx_PcqI0/" target="_blank" rel="noopener" data-full-res="https://scontent.cdninstagram.com/vp/bb661ada2fc067a345361796640e07e8/5E62B43E/t51.2885-15/sh0.08/e35/s640x640/17126273_1803205389944899_7213465159237369856_n.jpg?_nc_ht=scontent.cdninstagram.com" data-img-src-set="{"150":"https:\/\/scontent.cdninstagram.com\/vp\/cbbfe26089bd627270937c968f9a31fe\/5E5FB7BB\/t51.2885-15\/e35\/s150x150\/17126273_1803205389944899_7213465159237369856_n.jpg?_nc_ht=scontent.cdninstagram.com","320":"https:\/\/scontent.cdninstagram.com\/vp\/bda4d0e9ac1b07fac57a6db2abcfbec3\/5E43F2C3\/t51.2885-15\/e35\/s320x320\/17126273_1803205389944899_7213465159237369856_n.jpg?_nc_ht=scontent.cdninstagram.com","640":"https:\/\/scontent.cdninstagram.com\/vp\/bb661ada2fc067a345361796640e07e8\/5E62B43E\/t51.2885-15\/sh0.08\/e35\/s640x640\/17126273_1803205389944899_7213465159237369856_n.jpg?_nc_ht=scontent.cdninstagram.com"}">
<span class="sbi-screenreader">Instagram post 1466684604413152911_4069483093</span>
<img src="http://127.0.0.1:81/wordpress/wp-content/plugins/instagram-feed/img/placeholder.png" alt="Image for post 1466684604413152911_4069483093" width="200" height="200">
</a>
</div>
</div> </div>
<div id="sbi_load">
<span class="sbi_follow_btn">
<a href="https://www.instagram.com/felix.fslr" target="_blank" rel="noopener"><svg class="svg-inline--fa fa-instagram fa-w-14" aria-hidden="true" data-fa-processed="" data-prefix="fab" data-icon="instagram" role="img" viewBox="0 0 448 512">
<path fill="currentColor" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path>
</svg>Follow on Instagram</a>
</span>
</div>
<span class="sbi_resized_image_data" data-feed-id="sbi_4069483093#20" data-resized="{"2102570446949383587_4069483093":{"id":"2102570446949383587_4069483093","ratio":"1.51","sizes":{"low":320}},"2044069526697457670_4069483093":{"id":"2044069526697457670_4069483093","ratio":"1.78","sizes":{"low":320}},"1889358576121361419_4069483093":{"id":"1889358576121361419_4069483093","ratio":"1.69","sizes":{"low":320}},"1851618821275492423_4069483093":{"id":"1851618821275492423_4069483093","ratio":"1.00","sizes":{"low":320}},"1731366246722738899_4069483093":{"id":"1731366246722738899_4069483093","ratio":"1.00","sizes":{"low":320}},"1579169647093459848_4069483093":{"id":"1579169647093459848_4069483093","ratio":"1.00","sizes":{"low":320}},"1469758443653430555_4069483093":{"id":"1469758443653430555_4069483093","ratio":"1.00","sizes":{"low":320}},"1466684604413152911_4069483093":{"id":"1466684604413152911_4069483093","ratio":"1.00","sizes":{"low":320}}}">
</span>
<div id="sbi_mod_error">
<span>This error message is only visible to WordPress admins</span><br />
<p><b>Error: API requests are being delayed for this account. New posts will not be retrieved.</b><p>There may be an issue with the Instagram Access Token that you are using. Your server might also be unable to connect to Instagram at this time. </div>
</div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-element elementor-element-730e9801 elementor-section-full_width elementor-section-height-default elementor-section-height-default elementor-section elementor-inner-section" data-id="730e9801" data-element_type="section" id="testimonials">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-element elementor-element-132de6c5 elementor-column elementor-col-100 elementor-inner-column" data-id="132de6c5" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-background-overlay"></div>
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-49c44f1c elementor-widget elementor-widget-heading" data-id="49c44f1c" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">My Skills</h5> </div>
</div>
<div class="elementor-element elementor-element-2ebddf95 elementor-widget elementor-widget-divider" data-id="2ebddf95" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-element elementor-element-1592c13 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-inner-section" data-id="1592c13" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-element elementor-element-e0b924e elementor-column elementor-col-100 elementor-inner-column" data-id="e0b924e" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5a3f1bf elementor-widget elementor-widget-progress" data-id="5a3f1bf" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">My Skill</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="50" aria-valuetext="Web Designer">
<div class="elementor-progress-bar" data-max="50">
<span class="elementor-progress-text">Web Designer</span>
<span class="elementor-progress-percentage">50%</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-element elementor-element-465116bc elementor-section-full_width elementor-section-height-default elementor-section-height-default elementor-section elementor-inner-section" data-id="465116bc" data-element_type="section" id="video" data-settings="{"background_background":"classic"}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-element elementor-element-19b747b7 elementor-column elementor-col-100 elementor-inner-column" data-id="19b747b7" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-background-overlay"></div>
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-0a33368 elementor-widget elementor-widget-shortcode" data-id="0a33368" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode"><div class="n2-section-smartslider " role="region" aria-label="Slider"><style>div#n2-ss-2{width:1200px;float:left;margin:0px 0px 0px 0px;}html[dir="rtl"] div#n2-ss-2{float:right;}div#n2-ss-2 .n2-ss-slider-1{position:relative;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;height:600px;border-style:solid;border-width:0px;border-color:#3e3e3e;border-color:RGBA(62,62,62,1);border-radius:0px;background-clip:padding-box;background-repeat:repeat;background-position:50% 50%;background-size:cover;background-attachment:scroll;}div#n2-ss-2 .n2-ss-slider-background-video-container{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;}div#n2-ss-2 .n2-ss-slider-2{position:relative;width:100%;height:100%;}.x-firefox div#n2-ss-2 .n2-ss-slider-2{opacity:0.99999;}div#n2-ss-2 .n2-ss-slider-3{position:relative;width:100%;height:100%;overflow:hidden;outline:1px solid rgba(0,0,0,0);z-index:10;}div#n2-ss-2 .n2-ss-slide-backgrounds,div#n2-ss-2 .n2-ss-slider-3 > .n-particles-js-canvas-el,div#n2-ss-2 .n2-ss-slider-3 > .n2-ss-divider{position:absolute;left:0;top:0;width:100%;height:100%;}div#n2-ss-2 .n2-ss-slide-backgrounds{z-index:10;}div#n2-ss-2 .n2-ss-slider-3 > .n-particles-js-canvas-el{z-index:12;}div#n2-ss-2 .n2-ss-slide-backgrounds > *{overflow:hidden;}div#n2-ss-2 .n2-ss-slide{position:absolute;top:0;left:0;width:100%;height:100%;z-index:20;display:block;-webkit-backface-visibility:hidden;}div#n2-ss-2 .n2-ss-layers-container{position:relative;width:1200px;height:600px;}div#n2-ss-2 .n2-ss-parallax-clip > .n2-ss-layers-container{position:absolute;right:0;}div#n2-ss-2 .n2-ss-slide{perspective:1500px;}div#n2-ss-2[data-ie] .n2-ss-slide{perspective:none;transform:perspective(1500px);}div#n2-ss-2 .n2-ss-slide-active{z-index:21;}div#n2-ss-2 .nextend-arrow{cursor:pointer;overflow:hidden;line-height:0 !important;z-index:20;}div#n2-ss-2 .nextend-arrow img{position:relative;min-height:0;min-width:0;vertical-align:top;width:auto;height:auto;max-width:100%;max-height:100%;display:inline;}div#n2-ss-2 .nextend-arrow img.n2-arrow-hover-img{display:none;}div#n2-ss-2 .nextend-arrow:HOVER img.n2-arrow-hover-img{display:inline;}div#n2-ss-2 .nextend-arrow:HOVER img.n2-arrow-normal-img{display:none;}div#n2-ss-2 .nextend-arrow-animated{overflow:hidden;}div#n2-ss-2 .nextend-arrow-animated > div{position:relative;}div#n2-ss-2 .nextend-arrow-animated .n2-active{position:absolute;}div#n2-ss-2 .nextend-arrow-animated-fade{transition:background 0.3s, opacity 0.4s;}div#n2-ss-2 .nextend-arrow-animated-horizontal > div{transition:all 0.4s;left:0;}div#n2-ss-2 .nextend-arrow-animated-horizontal .n2-active{top:0;}div#n2-ss-2 .nextend-arrow-previous.nextend-arrow-animated-horizontal:HOVER > div,div#n2-ss-2 .nextend-arrow-next.nextend-arrow-animated-horizontal .n2-active{left:-100%;}div#n2-ss-2 .nextend-arrow-previous.nextend-arrow-animated-horizontal .n2-active,div#n2-ss-2 .nextend-arrow-next.nextend-arrow-animated-horizontal:HOVER > div{left:100%;}div#n2-ss-2 .nextend-arrow.nextend-arrow-animated-horizontal:HOVER .n2-active{left:0;}div#n2-ss-2 .nextend-arrow-animated-vertical > div{transition:all 0.4s;top:0;}div#n2-ss-2 .nextend-arrow-animated-vertical .n2-active{left:0;}div#n2-ss-2 .nextend-arrow-animated-vertical .n2-active{top:-100%;}div#n2-ss-2 .nextend-arrow-animated-vertical:HOVER > div{top:100%;}div#n2-ss-2 .nextend-arrow-animated-vertical:HOVER .n2-active{top:0;}div#n2-ss-2 .nextend-thumbnail-default,div#n2-ss-2 .nextend-thumbnail-inner{overflow:hidden;}div#n2-ss-2 .n2-ss-thumb-image{display:flex;flex:0 0 auto;align-items:center;justify-content:center;background-position:center center;background-size:cover;}div#n2-ss-2 .nextend-thumbnail-inner{width:100%;height:100%;}div#n2-ss-2 .nextend-thumbnail-button{position:absolute;z-index:2;transition:all 0.4s;opacity:0;cursor:pointer;}div#n2-ss-2 .nextend-thumbnail-vertical .nextend-thumbnail-button{left:50%;margin-left:-13px !important;}div#n2-ss-2 .nextend-thumbnail-vertical .nextend-thumbnail-previous{top:-26px;}div#n2-ss-2 .nextend-thumbnail-vertical .nextend-thumbnail-previous.n2-active{top:10px;opacity:1;}div#n2-ss-2 .nextend-thumbnail-vertical .nextend-thumbnail-next{bottom:-26px;}div#n2-ss-2 .nextend-thumbnail-vertical .nextend-thumbnail-next.n2-active{bottom:10px;opacity:1;}div#n2-ss-2 .nextend-thumbnail-horizontal .nextend-thumbnail-button{top:50%;margin-top:-13px !important;transform:rotateZ(-90deg);}div#n2-ss-2 .nextend-thumbnail-horizontal .nextend-thumbnail-previous{left:-26px;}div#n2-ss-2 .nextend-thumbnail-horizontal .nextend-thumbnail-previous.n2-active{left:10px;opacity:1;}div#n2-ss-2 .nextend-thumbnail-horizontal .nextend-thumbnail-next{right:-26px;}div#n2-ss-2 .nextend-thumbnail-horizontal .nextend-thumbnail-next.n2-active{right:10px;opacity:1;}div#n2-ss-2 .nextend-thumbnail-default .nextend-thumbnail-scroller{position:relative;box-sizing:border-box !important;white-space:nowrap;display:flex;flex-direction:column;}div#n2-ss-2 .nextend-thumbnail-horizontal .nextend-thumbnail-scroller{flex-direction:column;}div#n2-ss-2 .nextend-thumbnail-vertical .nextend-thumbnail-scroller{flex-direction:row;}div#n2-ss-2 .nextend-thumbnail-scroller.n2-align-content-start .nextend-thumbnail-scroller-group{justify-content:flex-start;}div#n2-ss-2 .nextend-thumbnail-scroller.n2-align-content-center .nextend-thumbnail-scroller-group{justify-content:center;}div#n2-ss-2 .nextend-thumbnail-scroller.n2-align-content-end .nextend-thumbnail-scroller-group{justify-content:flex-end;}div#n2-ss-2 .nextend-thumbnail-scroller.n2-align-content-space-around .nextend-thumbnail-scroller-group{justify-content:space-around;}div#n2-ss-2 .nextend-thumbnail-scroller.n2-align-content-space-between .nextend-thumbnail-scroller-group{justify-content:space-between;}html[dir="rtl"] div#n2-ss-2 .nextend-thumbnail-default .nextend-thumbnail-scroller{position:relative;float:right;}div#n2-ss-2 .nextend-thumbnail-scroller-group{display:flex;flex-flow:column;}div#n2-ss-2 .nextend-thumbnail-horizontal .nextend-thumbnail-scroller-group{display:flex;flex-flow:row;}div#n2-ss-2 .nextend-thumbnail-default .nextend-thumbnail-scroller .nextend-thumbnail-scroller-group > div{display:flex;position:relative;flex:0 0 auto;box-sizing:content-box !important;cursor:pointer;overflow:hidden;}div#n2-ss-2 .nextend-thumbnail-horizontal .nextend-thumbnail-scroller .nextend-thumbnail-scroller-group > div{flex-flow:column;}div#n2-ss-2 .nextend-thumbnail-default .nextend-thumbnail-scroller .nextend-thumbnail-scroller-group > div.n2-active{cursor:default;}div#n2-ss-2 .nextend-thumbnail-default .n2-ss-caption{display:inline-block;white-space:normal;box-sizing:border-box !important;overflow:hidden;}div#n2-ss-2 .nextend-thumbnail-default .n2-caption-overlay{position:absolute;}div#n2-ss-2 .nextend-thumbnail-default .n2-caption-overlay div{float:left;clear:left;}div#n2-ss-2 .nextend-thumbnail-horizontal .n2-ss-caption{display:block;}div#n2-ss-2 .nextend-thumbnail-vertical .n2-caption-after,div#n2-ss-2 .nextend-thumbnail-vertical .n2-caption-before{height:100%;}div#n2-ss-2 .n2-style-2ee3a5d7b9a0ae21443689c054f9aeed-simple{background: #242424;background: RGBA(36,36,36,0);opacity:1;padding:5px 5px 5px 5px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-2 .n2-style-2c79cb76dcbb33394d01b9bc92c49672-dot{background: #000000;background: RGBA(0,0,0,0);opacity:1;padding:0px 0px 0px 0px ;box-shadow: none;border-width: 4px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,0.1);border-radius:5px;opacity: 0.4;
margin: 10px;
transition: all 0.4s;
background-size: cover;}div#n2-ss-2 .n2-style-2c79cb76dcbb33394d01b9bc92c49672-dot.n2-active, div#n2-ss-2 .n2-style-2c79cb76dcbb33394d01b9bc92c49672-dot:HOVER, div#n2-ss-2 .n2-style-2c79cb76dcbb33394d01b9bc92c49672-dot:FOCUS{border-width: 4px;border-style: solid;border-color: #0c8bed; border-color: RGBA(12,139,237,1);opacity: 1;}</style><div id="n2-ss-2-align" class="n2-ss-align"><div class="n2-padding"><div id="n2-ss-2" data-creator="Smart Slider 3" class="n2-ss-slider n2-ow n2-has-hover n2notransition n2-ss-load-fade " data-minFontSizedesktopPortrait="4" data-minFontSizedesktopLandscape="4" data-minFontSizetabletPortrait="4" data-minFontSizetabletLandscape="4" data-minFontSizemobilePortrait="4" data-minFontSizemobileLandscape="4" style="font-size: 1rem;" data-fontsize="16">
<div class="n2-ss-slider-1 n2-ss-swipe-element n2-ow" style="">
<div class="n2-ss-slider-2 n2-ow">
<div class="n2-ss-slider-3 n2-ow" style="">
<div class="n2-ss-slide-backgrounds"></div><div data-first="1" data-slide-duration="0" data-id="9" data-thumbnail="https://i.ytimg.com/vi/XCvFp6YRdjM/maxresdefault.jpg" data-thumbnail-type="videoDark" style="" class=" n2-ss-slide n2-ss-canvas n2-ow n2-ss-slide-9"><div class="n2-ss-slide-background n2-ow" data-mode="fill"></div><div class="n2-ss-layers-container n2-ow" data-csstextalign="center" style=""><div class="n2-ss-layer n2-ow n2-ss-layer-needsize" style="left:0px;top:0px;width:100%;height:100%;overflow:visible;" data-pm="absolute" data-responsiveposition="1" data-desktopportraitleft="0" data-desktopportraittop="0" data-responsivesize="1" data-desktopportraitwidth="100%" data-desktopportraitheight="100%" data-desktopportraitalign="left" data-desktopportraitvalign="top" data-parentid="" data-desktopportraitparentalign="center" data-desktopportraitparentvalign="middle" data-sstype="layer" data-rotation="0" data-desktopportrait="1" data-desktoplandscape="1" data-tabletportrait="1" data-tabletlandscape="1" data-mobileportrait="1" data-mobilelandscape="1" data-adaptivefont="0" data-desktopportraitfontsize="100" data-plugin="rendered"><div id="n2-ss-2item1" class="n2-ss-layer-player n2-ss-item-content n2-ow-all"><div id="n2-ss-2item1-frame"></div><div class="n2-ss-layer-player n2-ss-layer-player-cover" style="cursor:pointer; background: URL(https://i.ytimg.com/vi/XCvFp6YRdjM/maxresdefault.jpg) no-repeat 50% 50%; background-size: cover"><img style="width:48px;height:48px;margin-left:-24px;margin-top:-24px;" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyNCIgY3k9IjI0IiByPSIyNCIgZmlsbD0iIzAwMCIgb3BhY2l0eT0iLjYiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMTkuOCAzMmMtLjEyNCAwLS4yNDctLjAyOC0uMzYtLjA4LS4yNjQtLjExNi0uNDM2LS4zNzUtLjQ0LS42NjRWMTYuNzQ0Yy4wMDUtLjI5LjE3Ni0uNTUuNDQtLjY2Ni4yNzMtLjEyNi41OTItLjEuODQuMDdsMTAuNCA3LjI1N2MuMi4xMzIuMzIuMzU1LjMyLjU5NXMtLjEyLjQ2My0uMzIuNTk1bC0xMC40IDcuMjU2Yy0uMTQuMS0uMzEuMTUtLjQ4LjE1eiIvPjwvZz48L3N2Zz4=" alt="Play" /></div></div></div></div></div><div data-slide-duration="0" data-id="10" data-thumbnail="https://i.ytimg.com/vi/XiD_2uMtxHE/maxresdefault.jpg" data-thumbnail-type="videoDark" style="" class=" n2-ss-slide n2-ss-canvas n2-ow n2-ss-slide-10"><div class="n2-ss-slide-background n2-ow" data-mode="fill"></div><div class="n2-ss-layers-container n2-ow" data-csstextalign="center" style=""><div class="n2-ss-layer n2-ow n2-ss-layer-needsize" style="left:0px;top:0px;width:100%;height:100%;overflow:visible;" data-pm="absolute" data-responsiveposition="1" data-desktopportraitleft="0" data-desktopportraittop="0" data-responsivesize="1" data-desktopportraitwidth="100%" data-desktopportraitheight="100%" data-desktopportraitalign="left" data-desktopportraitvalign="top" data-parentid="" data-desktopportraitparentalign="center" data-desktopportraitparentvalign="middle" data-sstype="layer" data-rotation="0" data-desktopportrait="1" data-desktoplandscape="1" data-tabletportrait="1" data-tabletlandscape="1" data-mobileportrait="1" data-mobilelandscape="1" data-adaptivefont="0" data-desktopportraitfontsize="100" data-plugin="rendered"><div id="n2-ss-2item2" class="n2-ss-layer-player n2-ss-item-content n2-ow-all"><div id="n2-ss-2item2-frame"></div><div class="n2-ss-layer-player n2-ss-layer-player-cover" style="cursor:pointer; background: URL(https://i.ytimg.com/vi/XiD_2uMtxHE/maxresdefault.jpg) no-repeat 50% 50%; background-size: cover"><img style="width:48px;height:48px;margin-left:-24px;margin-top:-24px;" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyNCIgY3k9IjI0IiByPSIyNCIgZmlsbD0iIzAwMCIgb3BhY2l0eT0iLjYiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMTkuOCAzMmMtLjEyNCAwLS4yNDctLjAyOC0uMzYtLjA4LS4yNjQtLjExNi0uNDM2LS4zNzUtLjQ0LS42NjRWMTYuNzQ0Yy4wMDUtLjI5LjE3Ni0uNTUuNDQtLjY2Ni4yNzMtLjEyNi41OTItLjEuODQuMDdsMTAuNCA3LjI1N2MuMi4xMzIuMzIuMzU1LjMyLjU5NXMtLjEyLjQ2My0uMzIuNTk1bC0xMC40IDcuMjU2Yy0uMTQuMS0uMzEuMTUtLjQ4LjE1eiIvPjwvZz48L3N2Zz4=" alt="Play" /></div></div></div></div></div><div data-slide-duration="0" data-id="11" data-thumbnail="https://i.ytimg.com/vi/JNupVvvHbU0/maxresdefault.jpg" data-thumbnail-type="videoDark" style="" class=" n2-ss-slide n2-ss-canvas n2-ow n2-ss-slide-11"><div class="n2-ss-slide-background n2-ow" data-mode="fill"></div><div class="n2-ss-layers-container n2-ow" data-csstextalign="center" style=""><div class="n2-ss-layer n2-ow n2-ss-layer-needsize" style="left:0px;top:0px;width:100%;height:100%;overflow:visible;" data-pm="absolute" data-responsiveposition="1" data-desktopportraitleft="0" data-desktopportraittop="0" data-responsivesize="1" data-desktopportraitwidth="100%" data-desktopportraitheight="100%" data-desktopportraitalign="left" data-desktopportraitvalign="top" data-parentid="" data-desktopportraitparentalign="center" data-desktopportraitparentvalign="middle" data-sstype="layer" data-rotation="0" data-desktopportrait="1" data-desktoplandscape="1" data-tabletportrait="1" data-tabletlandscape="1" data-mobileportrait="1" data-mobilelandscape="1" data-adaptivefont="0" data-desktopportraitfontsize="100" data-plugin="rendered"><div id="n2-ss-2item3" class="n2-ss-layer-player n2-ss-item-content n2-ow-all"><div id="n2-ss-2item3-frame"></div><div class="n2-ss-layer-player n2-ss-layer-player-cover" style="cursor:pointer; background: URL(https://i.ytimg.com/vi/JNupVvvHbU0/maxresdefault.jpg) no-repeat 50% 50%; background-size: cover"><img style="width:48px;height:48px;margin-left:-24px;margin-top:-24px;" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyNCIgY3k9IjI0IiByPSIyNCIgZmlsbD0iIzAwMCIgb3BhY2l0eT0iLjYiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMTkuOCAzMmMtLjEyNCAwLS4yNDctLjAyOC0uMzYtLjA4LS4yNjQtLjExNi0uNDM2LS4zNzUtLjQ0LS42NjRWMTYuNzQ0Yy4wMDUtLjI5LjE3Ni0uNTUuNDQtLjY2Ni4yNzMtLjEyNi41OTItLjEuODQuMDdsMTAuNCA3LjI1N2MuMi4xMzIuMzIuMzU1LjMyLjU5NXMtLjEyLjQ2My0uMzIuNTk1bC0xMC40IDcuMjU2Yy0uMTQuMS0uMzEuMTUtLjQ4LjE1eiIvPjwvZz48L3N2Zz4=" alt="Play" /></div></div></div></div></div><div data-slide-duration="0" data-id="12" data-thumbnail="https://i.ytimg.com/vi/0Q85KsZ18Fo/maxresdefault.jpg" data-thumbnail-type="videoDark" style="" class=" n2-ss-slide n2-ss-canvas n2-ow n2-ss-slide-12"><div class="n2-ss-slide-background n2-ow" data-mode="fill"></div><div class="n2-ss-layers-container n2-ow" data-csstextalign="center" style=""><div class="n2-ss-layer n2-ow n2-ss-layer-needsize" style="left:0px;top:0px;width:100%;height:100%;overflow:visible;" data-pm="absolute" data-responsiveposition="1" data-desktopportraitleft="0" data-desktopportraittop="0" data-responsivesize="1" data-desktopportraitwidth="100%" data-desktopportraitheight="100%" data-desktopportraitalign="left" data-desktopportraitvalign="top" data-parentid="" data-desktopportraitparentalign="center" data-desktopportraitparentvalign="middle" data-sstype="layer" data-rotation="0" data-desktopportrait="1" data-desktoplandscape="1" data-tabletportrait="1" data-tabletlandscape="1" data-mobileportrait="1" data-mobilelandscape="1" data-adaptivefont="0" data-desktopportraitfontsize="100" data-plugin="rendered"><div id="n2-ss-2item4" class="n2-ss-layer-player n2-ss-item-content n2-ow-all"><div id="n2-ss-2item4-frame"></div><div class="n2-ss-layer-player n2-ss-layer-player-cover" style="cursor:pointer; background: URL(https://i.ytimg.com/vi/0Q85KsZ18Fo/maxresdefault.jpg) no-repeat 50% 50%; background-size: cover"><img style="width:48px;height:48px;margin-left:-24px;margin-top:-24px;" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyNCIgY3k9IjI0IiByPSIyNCIgZmlsbD0iIzAwMCIgb3BhY2l0eT0iLjYiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMTkuOCAzMmMtLjEyNCAwLS4yNDctLjAyOC0uMzYtLjA4LS4yNjQtLjExNi0uNDM2LS4zNzUtLjQ0LS42NjRWMTYuNzQ0Yy4wMDUtLjI5LjE3Ni0uNTUuNDQtLjY2Ni4yNzMtLjEyNi41OTItLjEuODQuMDdsMTAuNCA3LjI1N2MuMi4xMzIuMzIuMzU1LjMyLjU5NXMtLjEyLjQ2My0uMzIuNTk1bC0xMC40IDcuMjU2Yy0uMTQuMS0uMzEuMTUtLjQ4LjE1eiIvPjwvZz48L3N2Zz4=" alt="Play" /></div></div></div></div></div><div data-slide-duration="0" data-id="13" data-thumbnail="https://i.ytimg.com/vi/GbKPr-HYvas/hqdefault.jpg" data-thumbnail-type="videoDark" style="" class=" n2-ss-slide n2-ss-canvas n2-ow n2-ss-slide-13"><div class="n2-ss-slide-background n2-ow" data-mode="fill"></div><div class="n2-ss-layers-container n2-ow" data-csstextalign="center" style=""><div class="n2-ss-layer n2-ow n2-ss-layer-needsize" style="left:0px;top:0px;width:100%;height:100%;overflow:visible;" data-pm="absolute" data-responsiveposition="1" data-desktopportraitleft="0" data-desktopportraittop="0" data-responsivesize="1" data-desktopportraitwidth="100%" data-desktopportraitheight="100%" data-desktopportraitalign="left" data-desktopportraitvalign="top" data-parentid="" data-desktopportraitparentalign="center" data-desktopportraitparentvalign="middle" data-sstype="layer" data-rotation="0" data-desktopportrait="1" data-desktoplandscape="1" data-tabletportrait="1" data-tabletlandscape="1" data-mobileportrait="1" data-mobilelandscape="1" data-adaptivefont="0" data-desktopportraitfontsize="100" data-plugin="rendered"><div id="n2-ss-2item5" class="n2-ss-layer-player n2-ss-item-content n2-ow-all"><div id="n2-ss-2item5-frame"></div><div class="n2-ss-layer-player n2-ss-layer-player-cover" style="cursor:pointer; background: URL(https://i.ytimg.com/vi/GbKPr-HYvas/hqdefault.jpg) no-repeat 50% 50%; background-size: cover"><img style="width:48px;height:48px;margin-left:-24px;margin-top:-24px;" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyNCIgY3k9IjI0IiByPSIyNCIgZmlsbD0iIzAwMCIgb3BhY2l0eT0iLjYiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMTkuOCAzMmMtLjEyNCAwLS4yNDctLjAyOC0uMzYtLjA4LS4yNjQtLjExNi0uNDM2LS4zNzUtLjQ0LS42NjRWMTYuNzQ0Yy4wMDUtLjI5LjE3Ni0uNTUuNDQtLjY2Ni4yNzMtLjEyNi41OTItLjEuODQuMDdsMTAuNCA3LjI1N2MuMi4xMzIuMzIuMzU1LjMyLjU5NXMtLjEyLjQ2My0uMzIuNTk1bC0xMC40IDcuMjU2Yy0uMTQuMS0uMzEuMTUtLjQ4LjE1eiIvPjwvZz48L3N2Zz4=" alt="Play" /></div></div></div></div></div><div data-slide-duration="0" data-id="14" data-thumbnail="https://i.ytimg.com/vi/zpQrwsIGAKM/maxresdefault.jpg" data-thumbnail-type="videoDark" style="" class=" n2-ss-slide n2-ss-canvas n2-ow n2-ss-slide-14"><div class="n2-ss-slide-background n2-ow" data-mode="fill"></div><div class="n2-ss-layers-container n2-ow" data-csstextalign="center" style=""><div class="n2-ss-layer n2-ow n2-ss-layer-needsize" style="left:0px;top:0px;width:100%;height:100%;overflow:visible;" data-pm="absolute" data-responsiveposition="1" data-desktopportraitleft="0" data-desktopportraittop="0" data-responsivesize="1" data-desktopportraitwidth="100%" data-desktopportraitheight="100%" data-desktopportraitalign="left" data-desktopportraitvalign="top" data-parentid="" data-desktopportraitparentalign="center" data-desktopportraitparentvalign="middle" data-sstype="layer" data-rotation="0" data-desktopportrait="1" data-desktoplandscape="1" data-tabletportrait="1" data-tabletlandscape="1" data-mobileportrait="1" data-mobilelandscape="1" data-adaptivefont="0" data-desktopportraitfontsize="100" data-plugin="rendered"><div id="n2-ss-2item6" class="n2-ss-layer-player n2-ss-item-content n2-ow-all"><div id="n2-ss-2item6-frame"></div><div class="n2-ss-layer-player n2-ss-layer-player-cover" style="cursor:pointer; background: URL(https://i.ytimg.com/vi/zpQrwsIGAKM/maxresdefault.jpg) no-repeat 50% 50%; background-size: cover"><img style="width:48px;height:48px;margin-left:-24px;margin-top:-24px;" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyNCIgY3k9IjI0IiByPSIyNCIgZmlsbD0iIzAwMCIgb3BhY2l0eT0iLjYiLz48cGF0aCBmaWxsPSIjRkZGIiBkPSJNMTkuOCAzMmMtLjEyNCAwLS4yNDctLjAyOC0uMzYtLjA4LS4yNjQtLjExNi0uNDM2LS4zNzUtLjQ0LS42NjRWMTYuNzQ0Yy4wMDUtLjI5LjE3Ni0uNTUuNDQtLjY2Ni4yNzMtLjEyNi41OTItLjEuODQuMDdsMTAuNCA3LjI1N2MuMi4xMzIuMzIuMzU1LjMyLjU5NXMtLjEyLjQ2My0uMzIuNTk1bC0xMC40IDcuMjU2Yy0uMTQuMS0uMzEuMTUtLjQ4LjE1eiIvPjwvZz48L3N2Zz4=" alt="Play" /></div></div></div></div></div> </div>
</div>
<div data-ssleft="0+15" data-sstop="height/2-previousheight/2" id="n2-ss-2-arrow-previous" class="n2-ss-widget n2-ss-widget-display-desktop n2-ss-widget-display-tablet n2-ss-widget-display-mobile nextend-arrow n2-ow nextend-arrow-previous nextend-arrow-animated-fade n2-ib" style="position: absolute;" role="button" aria-label="previous arrow" tabindex="0"><img class="n2-ow" data-no-lazy="1" data-hack="data-lazy-src" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTEuNDMzIDE1Ljk5MkwyMi42OSA1LjcxMmMuMzkzLS4zOS4zOTMtMS4wMyAwLTEuNDItLjM5My0uMzktMS4wMy0uMzktMS40MjMgMGwtMTEuOTggMTAuOTRjLS4yMS4yMS0uMy40OS0uMjg1Ljc2LS4wMTUuMjguMDc1LjU2LjI4NC43N2wxMS45OCAxMC45NGMuMzkzLjM5IDEuMDMuMzkgMS40MjQgMCAuMzkzLS40LjM5My0xLjAzIDAtMS40MmwtMTEuMjU3LTEwLjI5IiBmaWxsPSIjZmZmZmZmIiBvcGFjaXR5PSIwLjgiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==" alt="previous arrow" /></div>
<div data-ssright="0+15" data-sstop="height/2-nextheight/2" id="n2-ss-2-arrow-next" class="n2-ss-widget n2-ss-widget-display-desktop n2-ss-widget-display-tablet n2-ss-widget-display-mobile nextend-arrow n2-ow nextend-arrow-next nextend-arrow-animated-fade n2-ib" style="position: absolute;" role="button" aria-label="next arrow" tabindex="0"><img class="n2-ow" data-no-lazy="1" data-hack="data-lazy-src" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuNzIyIDQuMjkzYy0uMzk0LS4zOS0xLjAzMi0uMzktMS40MjcgMC0uMzkzLjM5LS4zOTMgMS4wMyAwIDEuNDJsMTEuMjgzIDEwLjI4LTExLjI4MyAxMC4yOWMtLjM5My4zOS0uMzkzIDEuMDIgMCAxLjQyLjM5NS4zOSAxLjAzMy4zOSAxLjQyNyAwbDEyLjAwNy0xMC45NGMuMjEtLjIxLjMtLjQ5LjI4NC0uNzcuMDE0LS4yNy0uMDc2LS41NS0uMjg2LS43NkwxMC43MiA0LjI5M3oiIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuOCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+" alt="next arrow" /></div>
</div>
<div data-position="below" data-offset="0" class="n2-ss-widget n2-ss-widget-display-desktop n2-ss-widget-display-tablet n2-ss-widget-display-mobile nextend-thumbnail nextend-thumbnail-default n2-ow nextend-thumbnail-horizontal" style="margin-top:0px;width:100%;"><img class="nextend-thumbnail-button nextend-thumbnail-previous n2-ow" style="width:26px;margin-top:-13px!important;" src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxjaXJjbGUgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIG9wYWNpdHk9Ii41IiBmaWxsPSIjMDAwIiBjeD0iMTMiIGN5PSIxMyIgcj0iMTIiLz4KICAgICAgICA8cGF0aCBkPSJNMTMuNDM1IDkuMTc4Yy0uMTI2LS4xMjEtLjI3LS4xODItLjQzNi0uMTgyLS4xNjQgMC0uMzA2LjA2MS0uNDI4LjE4MmwtNC4zOCA0LjE3NWMtLjEyNi4xMjEtLjE4OC4yNjItLjE4OC40MjQgMCAuMTYxLjA2Mi4zMDIuMTg4LjQyM2wuNjUuNjIyYy4xMjYuMTIxLjI3My4xODIuNDQxLjE4Mi4xNyAwIC4zMTQtLjA2MS40MzYtLjE4MmwzLjMxNC0zLjE2MSAzLjI0OSAzLjE2MWMuMTI2LjEyMS4yNjkuMTgyLjQzMi4xODIuMTY0IDAgLjMwNy0uMDYxLjQzMy0uMTgybC42NjItLjYyMmMuMTI2LS4xMjEuMTg5LS4yNjIuMTg5LS40MjMgMC0uMTYyLS4wNjMtLjMwMy0uMTg5LS40MjRsLTQuMzczLTQuMTc1eiIgZmlsbD0iI2ZmZiIvPgogICAgPC9nPgo8L3N2Zz4=" alt="previous arrow" /><img class="nextend-thumbnail-button nextend-thumbnail-next n2-ow n2-active" style="width:26px;margin-top:-13px!important;" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiI+CiAgICA8ZyBmaWxsPSJub25lIj4KICAgICAgICA8Y2lyY2xlIGN4PSIxMyIgY3k9IjEzIiByPSIxMiIgZmlsbD0iIzAwMCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIG9wYWNpdHk9Ii41Ii8+CiAgICAgICAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTEyLjU2NSAxNi44MjJjLjEyNi4xMi4yNy4xODIuNDM2LjE4Mi4xNjggMCAuMzEtLjA2LjQzLS4xODJsNC4zOC00LjE3NWMuMTI4LS4xMi4xOS0uMjYyLjE5LS40MjQgMC0uMTYtLjA2Mi0uMzAyLS4xOS0uNDIzbC0uNjUtLjYyMmMtLjEyNS0uMTItLjI3Mi0uMTgyLS40NC0uMTgyLS4xNyAwLS4zMTQuMDYtLjQzNi4xODJsLTMuMzE0IDMuMTYtMy4yNS0zLjE2Yy0uMTI2LS4xMi0uMjctLjE4Mi0uNDMtLjE4Mi0uMTY2IDAtLjMxLjA2LS40MzUuMTgybC0uNjYyLjYyMmMtLjEyNi4xMi0uMTkuMjYyLS4xOS40MjMgMCAuMTYyLjA2NC4zMDMuMTkuNDI0bDQuMzczIDQuMTc1eiIvPgogICAgPC9nPgo8L3N2Zz4=" alt="next arrow" /><div class="nextend-thumbnail-inner n2-ow"><div class="n2-style-2ee3a5d7b9a0ae21443689c054f9aeed-simple nextend-thumbnail-scroller n2-ow n2-align-content-center"></div></div></div>
</div><div class="n2-clear"></div><div id="n2-ss-2-spinner" style="display: none;"><div><div class="n2-ss-spinner-simple-white-container"><div class="n2-ss-spinner-simple-white"></div></div></div></div></div></div><div id="n2-ss-2-placeholder" style="position: relative;z-index:2;background-color:RGBA(0,0,0,0);max-height:700px; background-color:RGBA(255,255,255,0);"><img style="width: 100%; max-width:3000px; display: block;opacity:0;margin:0px;" class="n2-ow" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMCIgd2lkdGg9IjEyMDAiIGhlaWdodD0iNjAwIiA+PC9zdmc+" alt="Slider" /></div></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-42757aa elementor-widget elementor-widget-spacer" data-id="42757aa" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-6ed0d861 elementor-widget elementor-widget-heading" data-id="6ed0d861" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Like what you see? CHECKOUT my Youtube!</h5> </div>
</div>
<div class="elementor-element elementor-element-8801590 elementor-align-center animated-slow elementor-invisible elementor-widget elementor-widget-button" data-id="8801590" data-element_type="widget" data-settings="{"_animation":"fadeIn"}" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="http://youtube.com/createaprowebsite?sub_confirmation=1" class="elementor-button-link elementor-button elementor-size-xs" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-left">
<i aria-hidden="true" class="fab fa-youtube"></i> </span>
<span class="elementor-button-text">Subscribe</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-element elementor-element-4e0940f2 elementor-section-full_width elementor-section-height-default elementor-section-height-default elementor-section elementor-inner-section" data-id="4e0940f2" data-element_type="section" id="fiverr" data-settings="{"background_background":"classic"}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-element elementor-element-373dfcad elementor-column elementor-col-100 elementor-inner-column" data-id="373dfcad" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-background-overlay"></div>
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-18717fa3 elementor-widget elementor-widget-heading" data-id="18717fa3" data-element_type="widget" id="fiverr" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Fiverr</h5> </div>
</div>
<div class="elementor-element elementor-element-5a37f550 elementor-widget elementor-widget-divider" data-id="5a37f550" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
<div class="elementor-element elementor-element-0b9dcaa elementor-invisible elementor-widget elementor-widget-eael-image-accordion" data-id="0b9dcaa" data-element_type="widget" data-settings="{"_animation":"none"}" data-widget_type="eael-image-accordion.default">
<div class="elementor-widget-container">
<div class="eael-img-accordion" data-img-accordion-id="0b9dcaa" data-img-accordion-type="on-hover" id="eael-img-accordion-0b9dcaa"><a href="#" style="background-image: url(http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/Lightroom-cover.png);">
<div class="overlay">
<div class="overlay-inner">
<h2>Accordion item title</h2>
<p><p>Accordion content goes here!</p></p>
</div>
</div>
</a><a href="#" style="background-image: url(http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/cover-of-cover.png);">
<div class="overlay">
<div class="overlay-inner">
<h2>Accordion item title</h2>
<p><p>Accordion content goes here!</p></p>
</div>
</div>
</a><a href="#" style="background-image: url(http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/websitemockupcover.png);">
<div class="overlay">
<div class="overlay-inner">
<h2>Accordion item title</h2>
<p><p>Accordion content goes here!</p></p>
</div>
</div>
</a></div><style>
#eael-img-accordion-0b9dcaa a:hover {
flex: 3;
}
#eael-img-accordion-0b9dcaa a:hover .overlay-inner * {
opacity: 1;
visibility: visible;
transform: none;
transition: all .3s .3s;
}
</style> </div>
</div>
<div class="elementor-element elementor-element-269d82f elementor-widget elementor-widget-eael-image-accordion" data-id="269d82f" data-element_type="widget" data-widget_type="eael-image-accordion.default">
<div class="elementor-widget-container">
<div class="eael-img-accordion" data-img-accordion-id="269d82f" data-img-accordion-type="on-hover" id="eael-img-accordion-269d82f"><a href="#" style="background-image: url(http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/PowerPoint-to-PDF-cover.png);">
<div class="overlay">
<div class="overlay-inner">
<h2>Accordion item title</h2>
<p>Accordion content goes here!</p>
</div>
</div>
</a><a href="#" style="background-image: url(http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/pdf-convert-to-file-fiverr-cover.png);">
<div class="overlay">
<div class="overlay-inner">
<h2>Accordion item title</h2>
<p>Accordion content goes here!</p>
</div>
</div>
</a><a href="#" style="background-image: url(http://127.0.0.1:81/wordpress/wp-content/uploads/2019/10/proofread-cover.png);">
<div class="overlay">
<div class="overlay-inner">
<h2>Accordion item title</h2>
<p>Accordion content goes here!</p>
</div>
</div>
</a></div><style>
#eael-img-accordion-269d82f a:hover {
flex: 3;
}
#eael-img-accordion-269d82f a:hover .overlay-inner * {
opacity: 1;
visibility: visible;
transform: none;
transition: all .3s .3s;
}
</style> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-element elementor-element-3bba7402 elementor-section-full_width elementor-section-height-default elementor-section-height-default elementor-section elementor-inner-section" data-id="3bba7402" data-element_type="section" id="contact" data-settings="{"background_background":"classic"}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-element elementor-element-11a6b8a5 animated-slow elementor-invisible elementor-column elementor-col-50 elementor-inner-column" data-id="11a6b8a5" data-element_type="column" data-settings="{"background_background":"classic","animation":"fadeIn"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-background-overlay"></div>
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-2481365c elementor-widget elementor-widget-heading" data-id="2481365c" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Contact</h5> </div>
</div>
<div class="elementor-element elementor-element-74e9e441 eael-wpforms-labels-yes eael-wpforms-form-button-custom elementor-widget elementor-widget-eael-wpforms" data-id="74e9e441" data-element_type="widget" data-widget_type="eael-wpforms.default">
<div class="elementor-widget-container">
<div class="eael-contact-form eael-wpforms eael-contact-form-align-default">
<div class="wpforms-container wpforms-container-full" id="wpforms-47"><form id="wpforms-form-47" class="wpforms-validate wpforms-form" data-formid="47" method="post" enctype="multipart/form-data" action="/wordpress/"><div class="wpforms-head-container"></div><div class="wpforms-field-container"><div id="wpforms-47-field_0-container" class="wpforms-field wpforms-field-name" data-field-id="0"><label class="wpforms-field-label" for="wpforms-47-field_0">Name <span class="wpforms-required-label">*</span></label><div class="wpforms-field-row wpforms-field-medium"><div class="wpforms-field-row-block wpforms-first wpforms-one-half"><input type="text" id="wpforms-47-field_0" class="wpforms-field-name-first wpforms-field-required" name="wpforms[fields][0][first]" required><label for="wpforms-47-field_0" class="wpforms-field-sublabel after ">First</label></div><div class="wpforms-field-row-block wpforms-one-half"><input type="text" id="wpforms-47-field_0-last" class="wpforms-field-name-last wpforms-field-required" name="wpforms[fields][0][last]" required><label for="wpforms-47-field_0-last" class="wpforms-field-sublabel after ">Last</label></div></div></div><div id="wpforms-47-field_1-container" class="wpforms-field wpforms-field-email" data-field-id="1"><label class="wpforms-field-label" for="wpforms-47-field_1">Email <span class="wpforms-required-label">*</span></label><input type="email" id="wpforms-47-field_1" class="wpforms-field-medium wpforms-field-required" name="wpforms[fields][1]" required></div><div id="wpforms-47-field_2-container" class="wpforms-field wpforms-field-textarea" data-field-id="2"><label class="wpforms-field-label" for="wpforms-47-field_2">Comment or Message <span class="wpforms-required-label">*</span></label><textarea id="wpforms-47-field_2" class="wpforms-field-medium wpforms-field-required" name="wpforms[fields][2]" required></textarea></div></div><div class="wpforms-field wpforms-field-hp"><label for="wpforms-47-field-hp" class="wpforms-field-label">Phone</label><input type="text" name="wpforms[hp]" id="wpforms-47-field-hp" class="wpforms-field-medium"></div><div class="wpforms-submit-container" ><input type="hidden" name="wpforms[id]" value="47"><input type="hidden" name="wpforms[author]" value="1"><input type="hidden" name="wpforms[post_id]" value="11"><button type="submit" name="wpforms[submit]" class="wpforms-submit " id="wpforms-submit-47" value="wpforms-submit" aria-live="assertive" data-alt-text="wird gesendet..." data-submit-text="Senden">Senden</button></div></form></div> <!-- .wpforms-container --> </div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-60197075 animated-slow elementor-invisible elementor-column elementor-col-50 elementor-inner-column" data-id="60197075" data-element_type="column" data-settings="{"background_background":"classic","animation":"fadeIn"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-background-overlay"></div>
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-559da83d elementor-widget elementor-widget-heading" data-id="559da83d" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Let's chat!</h5> </div>
</div>
<div class="elementor-element elementor-element-4fc7db33 elementor-widget elementor-widget-divider" data-id="4fc7db33" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
<div class="elementor-element elementor-element-447d6441 elementor-widget elementor-widget-text-editor" data-id="447d6441" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="elementor-text-editor elementor-clearfix"><p>You can also contact me here:</p></div>
</div>
</div>
<div class="elementor-element elementor-element-4378c52f elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list" data-id="4378c52f" data-element_type="widget" data-widget_type="icon-list.default">
<div class="elementor-widget-container">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item" >
<a href="mailto:[email protected]"> <span class="elementor-icon-list-icon">
<i aria-hidden="true" class="far fa-envelope"></i> </span>
<span class="elementor-icon-list-text">[email protected]</span>
</a>
</li>
<li class="elementor-icon-list-item" >
<a href="https://www.instagram.com/felix.fslr"> <span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fab fa-instagram"></i> </span>
<span class="elementor-icon-list-text">Instagram</span>
</a>
</li>
<li class="elementor-icon-list-item" >
<a href="https://www.facebook.com/felix.fslr"> <span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fab fa-facebook"></i> </span>
<span class="elementor-icon-list-text">facebook</span>
</a>
</li>
<li class="elementor-icon-list-item" >
<a href="https://www.youtube.com/channel/UCKCXwlbJ4EewFoigeOKd8YA"> <span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fab fa-youtube"></i> </span>
<span class="elementor-icon-list-text">YouTube</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</main><!-- #main -->
<footer id="footer" class="site-footer" itemscope="itemscope" itemtype="http://schema.org/WPFooter">
<div id="footer-inner" class="clr">
<div id="footer-widgets" class="oceanwp-row clr">
<div class="footer-widgets-inner">
<div data-elementor-type="wp-post" data-elementor-id="51" class="elementor elementor-51" data-elementor-settings="[]">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section class="elementor-element elementor-element-608316e9 elementor-section-content-top elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-top-section" data-id="608316e9" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-element elementor-element-37307191 elementor-column elementor-col-100 elementor-top-column" data-id="37307191" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<section class="elementor-element elementor-element-4adafd13 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-inner-section" data-id="4adafd13" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-element elementor-element-21ae0782 elementor-column elementor-col-33 elementor-inner-column" data-id="21ae0782" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-525eccd6 elementor-widget elementor-widget-heading" data-id="525eccd6" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Follow</h5> </div>
</div>
<div class="elementor-element elementor-element-41bee507 elementor-icon-list--layout-inline elementor-widget elementor-widget-icon-list" data-id="41bee507" data-element_type="widget" data-widget_type="icon-list.default">
<div class="elementor-widget-container">
<ul class="elementor-icon-list-items elementor-inline-items">
<li class="elementor-icon-list-item" >
<a href="https://www.youtube.com/channel/UCKCXwlbJ4EewFoigeOKd8YA?view_as=subscriber"> <span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fab fa-youtube"></i> </span>
<span class="elementor-icon-list-text"></span>
</a>
</li>
<li class="elementor-icon-list-item" >
<a href="https://www.instagram.com/felix.fslr"> <span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fab fa-instagram"></i> </span>
<span class="elementor-icon-list-text"></span>
</a>
</li>
<li class="elementor-icon-list-item" >
<a href="https://www.facebook.com/felix.fslr"> <span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fab fa-facebook"></i> </span>
<span class="elementor-icon-list-text"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-18e992bb elementor-column elementor-col-33 elementor-inner-column" data-id="18e992bb" data-element_type="column">
<div class="elementor-column-wrap">
<div class="elementor-widget-wrap">
</div>
</div>
</div>
<div class="elementor-element elementor-element-6187e281 elementor-column elementor-col-33 elementor-inner-column" data-id="6187e281" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5d43f35c elementor-widget elementor-widget-heading" data-id="5d43f35c" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Rechtliches</h5> </div>
</div>
<div class="elementor-element elementor-element-47b383bb elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list" data-id="47b383bb" data-element_type="widget" data-widget_type="icon-list.default">
<div class="elementor-widget-container">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item" >
<a href="mprssm"> <span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-info"></i> </span>
<span class="elementor-icon-list-text">Impressum</span>
</a>
</li>
<li class="elementor-icon-list-item" >
<a href="dtnschtz"> <span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-lock"></i> </span>
<span class="elementor-icon-list-text">Datenschutzerklärung</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-element elementor-element-4d387383 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-section elementor-inner-section" data-id="4d387383" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-element elementor-element-6cda552f elementor-column elementor-col-100 elementor-inner-column" data-id="6cda552f" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-4fdda94a elementor-widget elementor-widget-text-editor" data-id="4fdda94a" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="elementor-text-editor elementor-clearfix"><p>Copyright © 2019 Felix Fieseler</p></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div><!-- .container -->