-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1314 lines (1252 loc) · 58.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Schulze // IT :: Wirtschaft :: Recht">
<meta name="author" content="Marketify">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Home</title>
<!-- STYLES -->
<link href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/plugins.css" />
<link rel="stylesheet" type="text/css" href="css/dark.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!--[if lt IE 9]> <script type="text/javascript" src="js/modernizr.custom.js"></script> <![endif]-->
<!-- /STYLES -->
<link rel="apple-touch-icon" sizes="57x57" href="/img/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/img/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/img/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/img/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/img/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/img/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/img/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/img/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/img/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/img/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon/favicon-16x16.png">
<link rel="manifest" href="/img/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/img/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<!-- PRELOADER -->
<div id="preloader">
<div class="loader_line"></div>
</div>
<!-- /PRELOADER -->
<!-- WRAPPER ALL -->
<div class="tokyo_tm_all_wrap" data-magic-cursor="show" data-enter="fadeInLeft" data-exit="">
<!-- MOBILE MENU -->
<div class="tokyo_tm_topbar">
<div class="topbar_inner">
<div class="logo" data-type="text"> <!-- You can use image or text as logo. data-type values are "image" and "text" -->
<a href="#">
<img src="img/logo/dark.png" alt="" />
<h3>IT :: Business :: Law</h3>
</a>
</div>
<div class="trigger">
<div class="hamburger hamburger--slider">
<div class="hamburger-box">
<div class="hamburger-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="tokyo_tm_mobile_menu">
<div class="menu_list">
<ul class="transition_link">
<li class="active"><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#service">Service</a></li>
<!--<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#news">News</a></li>-->
<li><a href="#contact">Contact</a></li>
<li><a href="#legal">Legal Notice</a></li>
</ul>
</div>
</div>
<!-- /MOBILE MENU -->
<!-- LEFTPART -->
<div class="leftpart">
<div class="leftpart_inner">
<div class="logo" data-type="text"> <!-- You can use image or text as logo. data-type values are: "image" and "text" -->
<a href="#">
<img src="img/logo/dark.png" alt="" />
<h3>IT <br>Business <br> Law</h3>
</a>
</div>
<div class="menu">
<ul class="transition_link">
<li class="active"><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#service">Service</a></li>
<!--<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#news">News</a></li>-->
<li><a href="#contact">Contact</a></li>
<li><a href="#legal">Legal Notice</a></li>
</ul>
</div>
<!--<div class="social">5
63
<ul>
<li><a href="#"><i class="emo-coffee"></i></a></li>
</ul>
</div>-->
</div>
</div>
<!-- /LEFTPART -->
<!-- RIGHTPART -->
<div class="rightpart">
<div class="rightpart_in">
<!-- HOME -->
<div id="home" class="tokyo_tm_section animated">
<div class="container">
<div class="tokyo_tm_home">
<div class="home_content">
<div class="avatar" data-type="square"> <!-- data-type values are: "wave", "circle", "square"-->
<div class="image" data-img-url="img/portfolio/1.png"></div>
</div>
<div class="details">
<h3 class="name">Mark <span>Schulze, LL.M.</span></h3>
<p class="job">Our heart beeps binary, our brain processes serial, our senses work analogue and our mind links everything digital.
My work is about connecting <b>digital solutions</b> with corporate law & tax.</p>
<div class="social">
<ul>
<li><a href="https://twitter.com/mkschulze"><i class="icon-twitter-squared"></i></a></li>
<li><a href="https://www.linkedin.com/in/mkschulze/"><i class="icon-linkedin-squared"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /HOME -->
<!-- ABOUT -->
<div id="about" class="tokyo_tm_section">
<div class="container">
<div class="tokyo_tm_about">
<div class="tokyo_tm_title">
<div class="title_flex">
<div class="left">
<span>About</span>
<h3>About Me</h3>
</div>
</div>
</div>
<div class="top_author_image">
<img src="img/slider/1.jpg" alt="" />
</div>
<div class="about_title">
<h3>Mark Schulze, LL.M.</h3>
<span>Wirtschaftsjurist / Commercial Lawyer</span>
</div>
<div class="about_text">
<p>Hi, my name is Mark Schulze. I’ve spent most of my waking hours for the last 20 years practising law and technology.</p>
<p>One of my specialties is solving problems and helping people applying the best solutions with the right tools. I go beyond the given paths and often find the interconnection between disciplines that really help getting forward in the process. With extensive knowledge of web mechanics, I’m able to give consultation about the right tool for the job at hand, usually combining different approaches to custom needs in tax & accounting.</p>
</div>
<div class="tokyo_tm_short_info">
<div class="left">
<div class="tokyo_tm_info">
<ul>
<li><span>Born:</span><span>1984</span></li>
<li><span>Age:</span><span>38</span></li>
<li><span>Zodiac:</span><span>Cancer</span></li>
<li><span>Email:</span><span><a href="mailto:[email protected]">[email protected]</a></span></li>
<li><span>Phone:</span><span><a href="tel:+49 15156379753">+49 156 788 776 10</a></span></li>
</ul>
</div>
</div>
<div class="right">
<div class="tokyo_tm_info">
<ul>
<li><span>Nationality:</span><span>German</span></li>
<li><span>Study:</span><span>University of Potsdam</span></li>
<li><span>Degree:</span><span>Master of Laws</span></li>
<li><span>Interest:</span><span>Music & Technology</span></li>
<li><span>Freelance:</span><span>Available</span></li>
</ul>
</div>
</div>
</div>
<!-- <div class="tokyo_tm_button" data-position="left">
<a href="img/cv/Lebenslauf-MarkSchulze.pdf" download>
<span>Download CV</span>
</a>
</div> -->
</div>
</div>
<div class="tokyo_tm_progressbox">
<div class="container">
<div class="in">
<div class="left">
<div class="tokyo_section_title">
<h3>Legal & Technical Skills</h3>
</div>
<div class="tokyo_progress">
<div class="progress_inner" data-value="95">
<span><span class="label">Corporate Law & Tax</span><span class="number">95%</span></span>
<div class="background"><div class="bar"><div class="bar_in"></div></div></div>
</div>
<div class="progress_inner" data-value="80" >
<span><span class="label">Sound- & Webdesign</span><span class="number">80%</span></span>
<div class="background"><div class="bar"><div class="bar_in"></div></div></div>
</div>
<div class="progress_inner" data-value="90">
<span><span class="label">Training & Consulting</span><span class="number">90%</span></span>
<div class="background"><div class="bar"><div class="bar_in"></div></div></div>
</div>
</div>
</div>
<div class="right">
<div class="tokyo_section_title">
<h3>Language Skills</h3>
</div>
<div class="tokyo_progress">
<div class="progress_inner" data-value="95">
<span><span class="label">German</span><span class="number">95%</span></span>
<div class="background"><div class="bar"><div class="bar_in"></div></div></div>
</div>
<div class="progress_inner" data-value="90" >
<span><span class="label">English</span><span class="number">90%</span></span>
<div class="background"><div class="bar"><div class="bar_in"></div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tokyo_tm_skillbox">
<div class="container">
<div class="in">
<div class="left">
<div class="tokyo_section_title">
<h3>Knowledge</h3>
</div>
<div class="tokyo_tm_skill_list">
<ul>
<li>
<span><img class="svg" src="img/svg/rightarrow.svg" alt="" />Corporate Law & Tax</span>
</li>
<li>
<span><img class="svg" src="img/svg/rightarrow.svg" alt="" />Commercial Law & Intellectual Property</span>
</li>
<li>
<span><img class="svg" src="img/svg/rightarrow.svg" alt="" />DATEV Application</span>
</li>
<li>
<span><img class="svg" src="img/svg/rightarrow.svg" alt="" />Microsoft 365</span>
</li>
<li>
<span><img class="svg" src="img/svg/rightarrow.svg" alt="" />Web- & Audiotechnology</span>
</li>
</ul>
</div>
</div>
<div class="right">
<div class="tokyo_section_title">
<h3>Interests</h3>
</div>
<div class="tokyo_tm_skill_list">
<ul>
<li>
<span><img class="svg" src="img/svg/rightarrow.svg" alt="" />Legal Opinions</span>
</li>
<li>
<span><img class="svg" src="img/svg/rightarrow.svg" alt="" />Financial Accounting & Reporting</span>
</li>
<li>
<span><img class="svg" src="img/svg/rightarrow.svg" alt="" />Legal Tech</span>
</li>
<li>
<span><img class="svg" src="img/svg/rightarrow.svg" alt="" />Sound Design & 3D Audio</span>
</li>
<li>
<span><img class="svg" src="img/svg/rightarrow.svg" alt="" />IT Projects</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="tokyo_tm_resumebox">
<div class="container">
<div class="in">
<div class="left">
<div class="tokyo_section_title">
<h3>Education</h3>
</div>
<div class="tokyo_tm_resume_list">
<ul>
<li>
<div class="list_inner">
<div class="time">
<span>2015 - 2017</span>
</div>
<div class="place">
<h3>University of Potsdam</h3>
<span>Master of Laws</span>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="time">
<span>2011 - 2015</span>
</div>
<div class="place">
<h3>FH Westküste</h3>
<span>Bachelor of Laws</span>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="time">
<span>2009 - 2011</span>
</div>
<div class="place">
<h3>HAW Hamburg</h3>
<span>Information and Electrical Engineering</span>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="time">
<span>2006 - 2007</span>
</div>
<div class="place">
<h3>SAE Hamburg</h3>
<span>Audio Engineering</span>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="right">
<div class="tokyo_section_title">
<h3>Experience</h3>
</div>
<div class="tokyo_tm_resume_list">
<ul>
<li>
<div class="list_inner">
<div class="time">
<span>2023 - Now</span>
</div>
<div class="place">
<h3>Deloitte WP GmbH</h3>
<span>Consultant | Tax Technology Consulting</span>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="time">
<span>2022 - 2024</span>
</div>
<div class="place">
<h3>A3 Audio UG (haftungsbeschränkt)</h3>
<span>CFO / Shareholder</span>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="time">
<span>2023 - 2023</span>
</div>
<div class="place">
<h3>Wagemann + Partner PartmbB</h3>
<span>Tax Assistant</span>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="time">
<span>2020 - 2023</span>
</div>
<div class="place">
<h3>audalis Seidler StB / WP</h3>
<span>Management Assistant</span>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="time">
<span>2016 - 2018</span>
</div>
<div class="place">
<h3>Müller Radack Schultz Law Firm</h3>
<span>Bankruptcy clerk</span>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="time">
<span>2010 - 2018</span>
</div>
<div class="place">
<h3>Web- , Media & Audio Service</h3>
<span>Freelancer</span>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="tokyo_tm_testimonials">
<div class="container">
<div class="tokyo_section_title">
<h3>Testimonials</h3>
</div>
<div class="list">
<ul class="owl-carousel">
<li>
<div class="list_inner">
<div class="text">
<p>Beautiful minimalist design and great, fast response with support. Highly recommend. Thanks Marketify!</p>
</div>
<div class="details">
<div class="image">
<div class="main" data-img-url="img/testimonials/1.jpg"></div>
</div>
<div class="info">
<h3>Alexander Walker</h3>
<span>Graphic Designer</span>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="text">
<p>These people really know what they are doing! Great customer support availability and supperb kindness.</p>
</div>
<div class="details">
<div class="image">
<div class="main" data-img-url="img/testimonials/2.jpg"></div>
</div>
<div class="info">
<h3>Isabelle Smith</h3>
<span>Content Manager</span>
</div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="text">
<p>I had a little problem and the support was just awesome to quickly solve the situation. And keep going on.</p>
</div>
<div class="details">
<div class="image">
<div class="main" data-img-url="img/testimonials/3.jpg"></div>
</div>
<div class="info">
<h3>Baraka Clinton</h3>
<span>English Teacher</span>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div> -->
</div>
<!-- /ABOUT -->
<!-- SERVICE -->
<div id="service" class="tokyo_tm_section">
<div class="container">
<div class="tokyo_tm_services">
<div class="tokyo_tm_title">
<div class="title_flex">
<div class="left">
<span>Services</span>
<h3>What I Do</h3>
</div>
</div>
</div>
<div class="list">
<ul>
<li>
<div class="list_inner">
<span class="number">01</span>
<h3 class="title">Consultation & Advisory</h3>
<p class="text">Wether it is an IT, legal or business project, I can give advice on strategy and operation, or know which specialists can help out in my network. </p>
<!-- <div class="tokyo_tm_read_more">
<a href="#"><span>Read More</span></a>
</div>
<a class="tokyo_tm_full_link" href="#"></a> -->
<!-- Service Popup Start -->
<!-- <img class="popup_service_image" src="img/news/1.jpg" alt="" />
<div class="service_hidden_details">
<div class="service_popup_informations">
<div class="descriptions">
<p>Tokyo is a leading web design agency with an award-winning design team that creates innovative, effective websites that capture your brand, improve your conversion rates, and maximize your revenue to help grow your business and achieve your goals.</p>
<p>In today’s digital world, your website is the first interaction consumers have with your business. That's why almost 95 percent of a user’s first impression relates to web design. It’s also why web design services can have an immense impact on your company’s bottom line.</p>
<p>That’s why more companies are not only reevaluating their website’s design but also partnering with Tokyo, the web design agency that’s driven more than $2.4 billion in revenue for its clients. With over 50 web design awards under our belt, we're confident we can design a custom website that drives sales for your unique business.</p>
</div>
</div>
</div> -->
<!-- /Service Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<span class="number">02</span>
<h3 class="title">Process Digitalization</h3>
<p class="text">Relying on paper is not what it should be, in the 21 century. I can lead and operate process transformation in business operation, especially in accounting.</p>
<!-- <div class="tokyo_tm_read_more">
<a href="#"><span>Read More</span></a>
</div>
<a class="tokyo_tm_full_link" href="#"></a> -->
<!-- Service Popup Start -->
<!-- <img class="popup_service_image" src="img/news/2.jpg" alt="" />
<div class="service_hidden_details">
<div class="service_popup_informations">
<div class="descriptions">
<p>Tokyo is a leading web design agency with an award-winning design team that creates innovative, effective websites that capture your brand, improve your conversion rates, and maximize your revenue to help grow your business and achieve your goals.</p>
<p>In today’s digital world, your website is the first interaction consumers have with your business. That's why almost 95 percent of a user’s first impression relates to web design. It’s also why web design services can have an immense impact on your company’s bottom line.</p>
<p>That’s why more companies are not only reevaluating their website’s design but also partnering with Tokyo, the web design agency that’s driven more than $2.4 billion in revenue for its clients. With over 50 web design awards under our belt, we're confident we can design a custom website that drives sales for your unique business.</p>
</div>
</div>
</div> -->
<!-- /Service Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<span class="number">03</span>
<h3 class="title">Document Automation</h3>
<p class="text">By using modern tools, I can assist in the automation of legal or general office documents, using guided interviews online.</p>
<!-- <div class="tokyo_tm_read_more">
<a href="#"><span>Read More</span></a>
</div>
<a class="tokyo_tm_full_link" href="#"></a> -->
<!-- Service Popup Start -->
<!-- <img class="popup_service_image" src="img/news/3.jpg" alt="" />
<div class="service_hidden_details">
<div class="service_popup_informations">
<div class="descriptions">
<p>Tokyo is a leading web design agency with an award-winning design team that creates innovative, effective websites that capture your brand, improve your conversion rates, and maximize your revenue to help grow your business and achieve your goals.</p>
<p>In today’s digital world, your website is the first interaction consumers have with your business. That's why almost 95 percent of a user’s first impression relates to web design. It’s also why web design services can have an immense impact on your company’s bottom line.</p>
<p>That’s why more companies are not only reevaluating their website’s design but also partnering with Tokyo, the web design agency that’s driven more than $2.4 billion in revenue for its clients. With over 50 web design awards under our belt, we're confident we can design a custom website that drives sales for your unique business.</p>
</div>
</div>
</div> -->
<!-- /Service Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<span class="number">04</span>
<h3 class="title">Financial Accounting</h3>
<p class="text">I can offer accounting services for mid size companies, including the optimization of accounting processes.</p>
<!-- <div class="tokyo_tm_read_more">
<a href="#"><span>Read More</span></a>
</div>
<a class="tokyo_tm_full_link" href="#"></a> -->
<!-- Service Popup Start -->
<!-- <img class="popup_service_image" src="img/news/4.jpg" alt="" />
<div class="service_hidden_details">
<div class="service_popup_informations">
<div class="descriptions">
<p>Tokyo is a leading web design agency with an award-winning design team that creates innovative, effective websites that capture your brand, improve your conversion rates, and maximize your revenue to help grow your business and achieve your goals.</p>
<p>In today’s digital world, your website is the first interaction consumers have with your business. That's why almost 95 percent of a user’s first impression relates to web design. It’s also why web design services can have an immense impact on your company’s bottom line.</p>
<p>That’s why more companies are not only reevaluating their website’s design but also partnering with Tokyo, the web design agency that’s driven more than $2.4 billion in revenue for its clients. With over 50 web design awards under our belt, we're confident we can design a custom website that drives sales for your unique business.</p>
</div>
</div>
</div> -->
<!-- /Service Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<span class="number">05</span>
<h3 class="title">Tax & Legal</h3>
<p class="text">Together with my network of professionals, I can provide different services in tax & legal operations & management.</p>
<!-- <div class="tokyo_tm_read_more">
<a href="#"><span>Read More</span></a>
</div>
<a class="tokyo_tm_full_link" href="#"></a> -->
<!-- Service Popup Start -->
<!-- <img class="popup_service_image" src="img/news/1.jpg" alt="" />
<div class="service_hidden_details">
<div class="service_popup_informations">
<div class="descriptions">
<p>Tokyo is a leading web design agency with an award-winning design team that creates innovative, effective websites that capture your brand, improve your conversion rates, and maximize your revenue to help grow your business and achieve your goals.</p>
<p>In today’s digital world, your website is the first interaction consumers have with your business. That's why almost 95 percent of a user’s first impression relates to web design. It’s also why web design services can have an immense impact on your company’s bottom line.</p>
<p>That’s why more companies are not only reevaluating their website’s design but also partnering with Tokyo, the web design agency that’s driven more than $2.4 billion in revenue for its clients. With over 50 web design awards under our belt, we're confident we can design a custom website that drives sales for your unique business.</p>
</div>
</div>
</div> -->
<!-- /Service Popup End -->
</div>
</li>
<li>
<div class="list_inner">
<span class="number">06</span>
<h3 class="title">Audio & Media</h3>
<p class="text">One part of my work and private life is audio and media, here I can offer technical advisory, audio mixing and basic webdesign services.</p>
<!-- <div class="tokyo_tm_read_more">
<a href="#"><span>Read More</span></a>
</div>
<a class="tokyo_tm_full_link" href="#"></a> -->
<!-- Service Popup Start -->
<!-- <img class="popup_service_image" src="img/news/2.jpg" alt="" />
<div class="service_hidden_details">
<div class="service_popup_informations">
<div class="descriptions">
<p>Tokyo is a leading web design agency with an award-winning design team that creates innovative, effective websites that capture your brand, improve your conversion rates, and maximize your revenue to help grow your business and achieve your goals.</p>
<p>In today’s digital world, your website is the first interaction consumers have with your business. That's why almost 95 percent of a user’s first impression relates to web design. It’s also why web design services can have an immense impact on your company’s bottom line.</p>
<p>That’s why more companies are not only reevaluating their website’s design but also partnering with Tokyo, the web design agency that’s driven more than $2.4 billion in revenue for its clients. With over 50 web design awards under our belt, we're confident we can design a custom website that drives sales for your unique business.</p>
</div>
</div>
</div> -->
<!-- /Service Popup End -->
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- <div class="tokyo_tm_partners">
<div class="container">
<div class="tokyo_section_title">
<h3>Partners</h3>
</div>
<div class="partners_inner">
<ul>
<li>
<div class="list_inner">
<img src="img/partners/dark/1.png" alt="" />
</div>
</li>
<li>
<div class="list_inner">
<img src="img/partners/dark/2.png" alt="" />
</div>
</li>
<li>
<div class="list_inner">
<img src="img/partners/dark/3.png" alt="" />
</div>
</li>
<li>
<div class="list_inner">
<img src="img/partners/dark/4.png" alt="" />
</div>
</li>
<li>
<div class="list_inner">
<img src="img/partners/dark/5.png" alt="" />
</div>
</li>
<li>
<div class="list_inner">
<img src="img/partners/dark/6.png" alt="" />
</div>
</li>
<li>
<div class="list_inner">
<img src="img/partners/dark/7.png" alt="" />
</div>
</li>
<li>
<div class="list_inner">
<img src="img/partners/dark/8.png" alt="" />
</div>
</li>
</ul>
</div>
</div>
</div> -->
<!-- <div class="tokyo_tm_facts">
<div class="container">
<div class="tokyo_section_title">
<h3>Fun Facts</h3>
</div>
<div class="list">
<ul>
<li>
<div class="list_inner">
<h3>777+</h3>
<span>Projects Completed</span>
</div>
</li>
<li>
<div class="list_inner">
<h3>3K</h3>
<span>Happy Clients</span>
</div>
</li>
<li>
<div class="list_inner">
<h3>9K+</h3>
<span>Lines of Code</span>
</div>
</li>
</ul>
</div>
</div>
</div> -->
<!-- <div class="tokyo_tm_pricing">
<div class="container">
<div class="tokyo_section_title">
<h3>Pricing</h3>
</div>
<div class="list">
<ul>
<li>
<div class="list_inner">
<div class="price">
<h3><span>0<span class="currency">$</span></span></h3>
</div>
<div class="plan">
<h3>Free</h3>
</div>
<ul class="item">
<li class="active"><p>Premium Icons</p></li>
<li><p>Quality Logo</p></li>
<li><p>Stock Images</p></li>
<li><p>Free Support</p></li>
</ul>
<div class="tokyo_tm_button" data-position="left">
<a href="#">
<span>Purchase</span>
</a>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="price">
<h3><span>30<span class="currency">$</span></span></h3>
</div>
<div class="plan">
<h3>Basic</h3>
</div>
<ul class="item">
<li class="active"><p>Premium Icons</p></li>
<li class="active"><p>Quality Logo</p></li>
<li><p>Stock Images</p></li>
<li><p>Free Support</p></li>
</ul>
<div class="tokyo_tm_button" data-position="left">
<a href="#">
<span>Purchase</span>
</a>
</div>
<span class="popular">Popular</span>
</div>
</li>
<li>
<div class="list_inner">
<div class="price">
<h3><span>70<span class="currency">$</span></span></h3>
</div>
<div class="plan">
<h3>Premium</h3>
</div>
<ul class="item">
<li class="active"><p>Premium Icons</p></li>
<li class="active"><p>Quality Logo</p></li>
<li class="active"><p>Stock Images</p></li>
<li class="active"><p>Free Support</p></li>
</ul>
<div class="tokyo_tm_button" data-position="left">
<a href="#">
<span>Purchase</span>
</a>
</div>
</div>
</li>
</ul>
</div>
</div>
</div> -->
</div>
<!-- /SERVICE -->
<!-- <div class="tokyo_tm_portfolio_titles"></div> -->
<!-- PORTFOLIO -->
<!-- <div id="portfolio" class="tokyo_tm_section">
<div class="container">
<div class="tokyo_tm_portfolio">
<div class="tokyo_tm_title">
<div class="title_flex">
<div class="left">
<span>Portfolio</span>
<h3>Creative Portfolio</h3>
</div>
<div class="portfolio_filter">
<ul>
<li><a href="#" class="current" data-filter="*">All</a></li>
<li><a href="#" data-filter=".vimeo">Vimeo</a></li>
<li><a href="#" data-filter=".youtube">Youtube</a></li>
<li><a href="#" data-filter=".soundcloud">Soundcloud</a></li>
<li><a href="#" data-filter=".image">Image</a></li>
<li><a href="#" data-filter=".detail">Detail</a></li>
</ul>
</div>
</div>
</div>
<div class="list_wrapper">
<ul class="portfolio_list gallery_zoom">
<li class="vimeo">
<div class="inner">
<div class="entry tokyo_tm_portfolio_animation_wrap" data-title="Teresa Butler" data-category="Vimeo">
<a class="popup-vimeo" href="https://vimeo.com/337293658">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="abs_image" data-img-url="img/portfolio/5.jpg"></div>
</a>
</div>
</div>
</li>
<li class="youtube">
<div class="inner">
<div class="entry tokyo_tm_portfolio_animation_wrap" data-title="Ashley Flores" data-category="Youtube">
<a class="popup-youtube" href="https://www.youtube.com/watch?v=7e90gBu4pas">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="abs_image" data-img-url="img/portfolio/6.jpg"></div>
</a>
</div>
</div>
</li>
<li class="soundcloud">
<div class="inner">
<div class="entry tokyo_tm_portfolio_animation_wrap" data-title="Derek Smith" data-category="Soundcloud">
<a class="soundcloude_link mfp-iframe audio" href="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/471954807&color=%23ff5500&auto_play=true&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="abs_image" data-img-url="img/portfolio/4.jpg"></div>
</a>
</div>
</div>
</li>
<li class="image">
<div class="inner">
<div class="entry tokyo_tm_portfolio_animation_wrap" data-title="Gloria Jenkins" data-category="Image">
<a class="zoom" href="img/portfolio/3.jpg">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="abs_image" data-img-url="img/portfolio/3.jpg"></div>
</a>
</div>
</div>
</li>
<li class="detail">
<div class="inner">
<div class="entry tokyo_tm_portfolio_animation_wrap" data-title="Selena Gomez" data-category="Detail">
<a class="popup_info" href="#">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="abs_image" data-img-url="img/portfolio/7.jpg"></div>
</a>
</div>
</div> -->
<!-- Portfolio Popup Start -->
<!-- <div class="details_all_wrap">
<div class="popup_details">
<div class="main_details">
<div class="textbox">
<p>We live in a world where we need to move quickly and iterate on our ideas as flexibly as possible. Building mockups strikes the ideal balance between true-life representation of the end product and ease of modification.</p>
<p>Mockups are useful both for the creative phase of the project - for instance when you're trying to figure out your user flows or the proper visual hierarchy - and the production phase when they will represent the target product. Making mockups a part of your creative and development process allows you to quickly and easily ideate.</p>
</div>
<div class="detailbox">
<ul>
<li>
<span class="first">Client</span>
<span>Alvaro Morata</span>
</li>
<li>
<span class="first">Category</span>
<span><a href="#">Detail</a></span>
</li>
<li>
<span class="first">Date</span>
<span>October 22, 2022</span>
</li>
<li>
<span class="first">Share</span>
<ul class="share">
<li><a href="#"><i class="icon-facebook-squared"></i></a></li>
<li><a href="#"><i class="icon-twitter-squared"></i></a></li>
<li><a href="#"><i class="icon-behance-squared"></i></a></li>
<li><a href="#"><i class="icon-linkedin-squared"></i></a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="additional_images">
<ul>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/1.jpg"></div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/2.jpg"></div>
</div>
</div>
</li>
<li>
<div class="list_inner">
<div class="my_image">
<img src="img/thumbs/4-2.jpg" alt="" />
<div class="main" data-img-url="img/portfolio/3.jpg"></div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div> -->
<!-- /Portfolio Popup End -->
<!-- </li> -->
<!-- <li class="detail">
<div class="inner">
<div class="entry tokyo_tm_portfolio_animation_wrap" data-title="Ave Simone" data-category="Detail">
<a class="popup_info" href="#">
<img src="img/thumbs/1-1.jpg" alt="" />
<div class="abs_image" data-img-url="img/portfolio/8.jpg"></div>
</a>
</div>
</div> -->
<!-- Portfolio Popup Start -->
<!-- <div class="details_all_wrap">
<div class="popup_details">
<div class="main_details">
<div class="textbox">
<p>We live in a world where we need to move quickly and iterate on our ideas as flexibly as possible. Building mockups strikes the ideal balance between true-life representation of the end product and ease of modification.</p>
<p>Mockups are useful both for the creative phase of the project - for instance when you're trying to figure out your user flows or the proper visual hierarchy - and the production phase when they will represent the target product. Making mockups a part of your creative and development process allows you to quickly and easily ideate.</p>
</div>
<div class="detailbox">
<ul>
<li>
<span class="first">Client</span>
<span>Alvaro Morata</span>
</li>
<li>
<span class="first">Category</span>
<span><a href="#">Detail</a></span>
</li>
<li>
<span class="first">Date</span>
<span>October 22, 2022</span>
</li>
<li>
<span class="first">Share</span>
<ul class="share">
<li><a href="#"><i class="icon-facebook-squared"></i></a></li>