-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1549 lines (1484 loc) · 107 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>« Cherry UX/UI design » Alessandra :: UX/UI designer :: graphic designer :: illustrator</title>
<meta name='description' property="og:description" content='I am a UX/UI designer who loves blending creativity with user-centered design. I create seamless digital experiences, from wireframes to captivating interfaces, to HTML/Scss coding, all while keeping empathy in mind.' />
<meta name="author" property="og:author" content="Alessandra">
<meta name="image" property="og:image" content="https://www.cherryweb-design.com/social-card.png">
<meta name="title" property="og:title" content="Alessandra :: UX/UI designer :: graphic designer">
<link rel="icon" href="favicon.png" type="image/png" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Anton&family=League+Spartan:wght@200;300;400;500;600;700&display=swap"
rel="stylesheet">
<link rel="preload"
href="https://cdn.jsdelivr.net/gh/andreknieriem/simplelightbox@master/dist/simple-lightbox.min.css?v2.13.0"
as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/andreknieriem/simplelightbox@master/dist/simple-lightbox.min.css?v2.13.0">
</noscript>
<script>
document.createElement('header');
document.createElement('footer');
document.createElement('section');
document.createElement('aside');
document.createElement('nav');
document.createElement('article');
</script>
<script src="assets/js/modernizr.custom.js"></script>
<link href="assets/style/css/style.min.css" rel="stylesheet" type="text/css" media="screen" />
<link rel="preload"
href="assets/style/css/style_hover_portfolio.css"
as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" type="text/css" href="assets/style/css/style_hover_portfolio.css" />
</noscript>
<!--[if IE]>
<link href="css/ie.css" rel="stylesheet" type="text/css" media="screen" />
<![endif]-->
</head>
<body id="top">
<nav>
<ul id="nav">
<li><a href="#top" id="nav_about" class="about active ease-scroll"><svg xmlns="http://www.w3.org/2000/svg"
width="30" height="30" fill="currentColor" class="bi bi-house-door-fill" viewBox="0 0 16 16">
<path
d="M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z" />
</svg> About</a></li>
<li><a href="#skills" id="nav_skills" class="skills ease-scroll"><svg xmlns="http://www.w3.org/2000/svg"
width="30" height="30" fill="currentColor" class="bi bi-tools" viewBox="0 0 16 16">
<path
d="M1 0 0 1l2.2 3.081a1 1 0 0 0 .815.419h.07a1 1 0 0 1 .708.293l2.675 2.675-2.617 2.654A3.003 3.003 0 0 0 0 13a3 3 0 1 0 5.878-.851l2.654-2.617.968.968-.305.914a1 1 0 0 0 .242 1.023l3.27 3.27a.997.997 0 0 0 1.414 0l1.586-1.586a.997.997 0 0 0 0-1.414l-3.27-3.27a1 1 0 0 0-1.023-.242L10.5 9.5l-.96-.96 2.68-2.643A3.005 3.005 0 0 0 16 3c0-.269-.035-.53-.102-.777l-2.14 2.141L12 4l-.364-1.757L13.777.102a3 3 0 0 0-3.675 3.68L7.462 6.46 4.793 3.793a1 1 0 0 1-.293-.707v-.071a1 1 0 0 0-.419-.814L1 0Zm9.646 10.646a.5.5 0 0 1 .708 0l2.914 2.915a.5.5 0 0 1-.707.707l-2.915-2.914a.5.5 0 0 1 0-.708ZM3 11l.471.242.529.026.287.445.445.287.026.529L5 13l-.242.471-.026.529-.445.287-.287.445-.529.026L3 15l-.471-.242L2 14.732l-.287-.445L1.268 14l-.026-.529L1 13l.242-.471.026-.529.445-.287.287-.445.529-.026L3 11Z" />
</svg>Skills</a></li>
<li><a href="#portfolio" id="nav_portfolio" class="portfolio ease-scroll"><svg xmlns="http://www.w3.org/2000/svg"
width="30" height="30" fill="currentColor" class="bi bi-file-richtext" viewBox="0 0 16 16">
<path
d="M7 4.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0zm-.861 1.542 1.33.886 1.854-1.855a.25.25 0 0 1 .289-.047l1.888.974V7.5a.5.5 0 0 1-.5.5H5a.5.5 0 0 1-.5-.5V7s1.54-1.274 1.639-1.208zM5 9a.5.5 0 0 0 0 1h6a.5.5 0 0 0 0-1H5zm0 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1H5z" />
<path
d="M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1z" />
</svg>Portfolio</a></li>
<li><a href="#hobbies" id="nav_hobbies" class="hobbies ease-scroll"><svg xmlns="http://www.w3.org/2000/svg"
width="30" height="30" fill="currentColor" class="bi bi-star-fill" viewBox="0 0 16 16">
<path
d="M3.612 15.443c-.386.198-.824-.149-.746-.592l.83-4.73L.173 6.765c-.329-.314-.158-.888.283-.95l4.898-.696L7.538.792c.197-.39.73-.39.927 0l2.184 4.327 4.898.696c.441.062.612.636.282.95l-3.522 3.356.83 4.73c.078.443-.36.79-.746.592L8 13.187l-4.389 2.256z" />
</svg>Hobbies</a></li>
<li><a href="#contacts" id="nav_contacts" class="contacts ease-scroll"><svg xmlns="http://www.w3.org/2000/svg"
width="30" height="30" fill="currentColor" class="bi bi-envelope-fill" viewBox="0 0 16 16">
<path
d="M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414.05 3.555ZM0 4.697v7.104l5.803-3.558L0 4.697ZM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586l-1.239-.757Zm3.436-.586L16 11.801V4.697l-5.803 3.546Z" />
</svg>Contacts</a></li>
</ul>
</nav>
<div id="wrapper">
<header id="top">
<ul id="header">
<li id="animation"><img width="100%" height="100%" loading="lazy"
src="assets/images/layout/icon_alessandra_trasp.gif" alt="Cherry WebDesign" /></li>
<li id="description">
<h1>Hi, I'm <span>Alessandra</span>!</h1>
<h3>I'm a <strong>UX/UI designer</strong> who loves blending creativity with user-centered design.
<br>I create seamless <strong>digital experiences</strong>, from <strong>wireframes</strong> to captivating
<strong>interfaces</strong>, to <strong>HTML/Scss coding</strong>, all while keeping empathy in mind.
<span class="social"> Find me on socials:
<a href="https://www.linkedin.com/in/alessandramineo/" target="_blank" title="LinkedIn profile"
alt="LinkedIn profile"><svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="#EA1C8B"
class="bi bi-linkedin" viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" />
</svg></a>
<a href="https://www.instagram.com/hellolen" target="_blank" title="Instagram profile"
alt="Instagram profile"><svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="#EA1C8B"
class="bi bi-instagram" viewBox="0 0 16 16">
<path
d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z" />
</svg></a>
</span>
</h3>
<a id="myButton" class="button btn btn-primary hover-effect glow-on-hover"><span class="hide">Put colors in my
life!</span><span class="show">My eyes are bleeding! Go back!</span></a>
<a class="button btn btn-primary ease-scroll hover-effect" href="#portfolio">Check my works</a>
</li>
</ul>
</header>
<section id="about" data-full="true" class="slide" name="about">
<div id="skills" class="clearfix">
<ul>
<li class="animation">
<h2>Hard Skills</h2>
<div class="pills"><span>UX/UI</span><span>User
Flow</span><span>Prototyping</span><span>Wireframing</span><span>Information
Architecture</span><span>HTML5/Scss coding</span><span>CMSs</span><span>Visual Design</span></div>
</li>
<li class="animation">
<h2>Soft Skills</h2>
<div class="pills"><span>Team Work</span><span>Problem Solving</span><span>Time
Management</span><span>Flexibility</span><span>Communication</span><span>Proactivity</span><span>Creativity</span>
</div>
</li>
<li class="animation">
<h2>Tools</h2>
<div class="pills"><span>Adobe CC suite</span><span>Figma</span><span>Visual Studio Code</span><span>Google
Workspace</span><span>Jira</span><span>Git</span><span>Miro</span><span>Freehand drawing</span></div>
</li>
</ul>
</div>
</section>
<section id="portfolio" data-full="true" class="slide" name="portfolio">
<div id="sortable-portfolio">
<div id="options" class="clearfix text-center">
<h1><span>My</span> Portfolio</h1>
<h3>I have worked in various environments, both large companies and small startups, gaining a significant
amount of experience and constantly learning something new! I have consistently aimed to stay updated,
acquiring new skills whenever I found them valuable or it was required.</h3>
<ul id="filters" class="option-set clearfix portfolio-list button-group">
<li><a href="#filter" class="selected button" data-filter=".web">{ UX/UI design }</a></li>
<li><a href="#filter" class="button" data-filter=".app">{ app }</a></li>
<li><a href="#filter" class="button" data-filter=".graphic">{ graphic design }</a></li>
<li><a href="#filter" class="button" data-filter=".logo">{ logo design }</a></li>
<li><a href="#filter" class="button" data-filter=".wordpress">{ wordpress }</a></li>
<li><a href="#filter" class="button" data-filter=".photo">{ photography }</a></li>
<li><a href="#filter" class="button" data-filter=".old">{ old }</a></li>
</ul>
</div>
<!-- #options -->
<div id="container" class="clearfix grid isotope portfolio">
<!-- <figure class="element app" data-category="app" style="display: none;">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/walltips_thumb.webp"
alt="Walltips"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Walltips</h3>
<span>App design</span>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?node-id=228-1970&node-type=frame&t=GQECJFPyWw22OaDH-1&scaling=min-zoom&content-scaling=fixed&page-id=227%3A2"
title="Walltips" target="_blank">Prototype</a>
</span>
</figcaption>
</figure> -->
<figure class="element app" data-category="app">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/brainsigns.webp"
alt="Brainsings"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Mindtooth</h3>
<span>App design</span>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?node-id=123-57&node-type=frame&t=pQeSsiBVHqKbHp2J-1&scaling=min-zoom&content-scaling=fixed&page-id=122%3A2&starting-point-node-id=123%3A57"
title="Mindtooth - Brainwaves scanner" target="_blank">Prototype</a>
<a href="https://www.brainsigns.com/en/mindtooth" target="_blank" title="Mindtooth by Brainsings">Website (for reference)</a>
</span>
</figcaption>
</figure>
<figure class="element logo" data-category="logo">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/wall-of-fame_logo_thumb.webp"
alt="Wall of Fame - Memorabilia"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Wall of Fame - Memorabilia</h3>
<span>Logo design</span>
<a href="assets/images/portfolio/wall-of-fame_logo.webp" rel="prettyPhoto[Wall of Fame - Memorabilia | E-commerce of celebrities' signed objects]" title="Wall of Fame - Memorabilia | E-commerce of celebrities' signed objects"
class="popup">Logo</a>
</span>
</figcaption>
</figure>
<figure class="element logo" data-category="logo">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/furio-divino_thumb.webp"
alt="Furio DiVino"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Furio diVino</h3>
<span>Logo design</span>
<a href="assets/images/portfolio/furio-divino.webp" rel="prettyPhoto[Furio DiVino | italian sommellier]" title="Furio DiVino | italian sommellier"
class="popup">Logo</a>
</span>
</figcaption>
</figure>
<figure class="element web app" data-category="web">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/econeth_thumb.webp"
alt="Econeth">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>Econeth - crowfunding platform</h3>
<span>UX/UI design & HTML5/SCSS coding</span>
<a href="https://www.econeth.com/gaming" title="Econeth website" target="_blank">Website</a>
<a href="https://www.figma.com/proto/lOMGS5UKOghUlw3JkFw4gy/Econeth-wireframe-%2B-mockup?type=design&node-id=223-2180&t=IXLflUqKjl4jwH6n-1&scaling=scale-down&page-id=218%3A2154&starting-point-node-id=223%3A2180&mode=design"
title="Econeth mockup and prototype" target="_blank">Desktop Prototype</a>
<a href="https://www.figma.com/proto/lOMGS5UKOghUlw3JkFw4gy/Econeth-wireframe-%2B-mockup?type=design&node-id=701-9217&t=ZgqCtIYjiL1Zct1k-1&scaling=scale-down&page-id=697%3A8846&starting-point-node-id=709%3A8884&mode=design"
title="Econeth mockup and prototype" target="_blank">Mobile Prototype</a>
</span>
</figcaption>
</figure>
<figure class="element web" data-category="web">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/fuix_thumb.webp"
alt="Fuix"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Fuix</h3>
<span>UX/UI design & HTML5/SCSS coding</span>
<a href="https://www.fuix.com/" title="Fuix website" target="_blank">Website</a>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?node-id=208-89&node-type=frame&t=ZWscmQI89QwpavTS-1&scaling=min-zoom&content-scaling=fixed&page-id=189%3A44&starting-point-node-id=208%3A89&show-proto-sidebar=1" title="Fuix mockup and prototype"
target="_blank">Prototype E-commerce</a>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?node-id=208-9&node-type=frame&t=NMFYT3UvBeNHfNIS-1&scaling=min-zoom&content-scaling=fixed&page-id=189%3A44&starting-point-node-id=208%3A9&show-proto-sidebar=1" title="Fuix mockup and prototype"
target="_blank">Prototype User Dashboard</a>
</span>
</figcaption>
</figure>
<figure class="element web" data-category="web">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/adalot_thumb.webp"
alt="Adalot">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>Adalot</h3>
<span>UX/UI design & HTML5/SCSS coding</span>
<a href="https://www.adalot.com/" title="Adalot website" target="_blank">Website</a>
</span>
</figcaption>
</figure>
<figure class="element web logo" data-category="web">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/libes/libes_thumb.webp"
alt="Libes"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Libes</h3>
<span>UX/UI design & HTML5/SCSS coding</span>
<a class="no-more" title="Libes website" target="_blank">Website no more online</a>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?node-id=248-401&node-type=frame&t=37PqHfDlWCDBOF1E-1&scaling=scale-down&content-scaling=fixed&page-id=189%3A46&starting-point-node-id=248%3A401" title="Prototype"
target="_blank">Prototype</a>
<a href="assets/images/portfolio/libes/libes_logo.webp" rel="prettyPhoto[Libes logo]" title="Libes logo"
class="popup">Logo</a>
</span>
</figcaption>
</figure>
<figure class="element web" data-category="web">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/yummo_thumb.webp"
alt="Yummo food delivery concept"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Concept fot Yummo food delivery</h3>
<span>UX/UI design</span>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?node-id=221-139&node-type=frame&t=3QhRKCbnnmMMXGnr-1&scaling=min-zoom&content-scaling=fixed&page-id=189%3A47&starting-point-node-id=221%3A139" title="Prototype" target="_blank">Prototype</a>
</span>
</figcaption>
</figure>
<figure class="element web" data-category="web">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/satan_thumb.webp"
alt="Satan jr videogame">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>Satan jr videogame</h3>
<span>UX/UI design & HTML5/SCSS coding</span>
<a href="https://www.satanjr.it/" title="Satan jr website" target="_blank">Website</a>
</span>
</figcaption>
</figure>
<figure class="element web" data-category="web">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/scritto_thumb.webp"
alt="Scritto">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>Scritto</h3>
<span>UX/UI design & HTML5/SCSS coding</span>
<a href="https://www.scritto.it/" title="Satan jr website" target="_blank">Website</a>
</span>
</figcaption>
</figure>
<figure class="element web logo" data-category="web">
<div><img width="auto" height="auto"
src="assets/images/portfolio/mioassicuratore/mioassicuratore_thumb.webp" alt="Mio Assicuratore">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>MioAssicuratore</h3>
<span>UX/UI design & HTML5/SCSS & PHP coding</span>
<a href="http://www.mioassicuratore.it/" title="MioAssicuratore website" target="_blank">Website</a>
<a title="MioAssicuratore Admin Area" target="_blank" class="no-more" tabindex="-1">Admin Area no more
online</a>
<a href="assets/images/portfolio/mioassicuratore/logo.webp" rel="prettyPhoto[MioAssicuratore logo]"
title="Mio Assicuratore logo" class="popup">Logo Restyle</a>
</span>
</figcaption>
</figure>
<figure class="element graphic" data-category="vector">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/vector/vector_thumb.webp"
alt="Vector Illustrations">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>Vector</h3>
<span>Vector Illustrations</span>
<a href="assets/images/portfolio/vector/vector_01.webp" rel="prettyPhoto[Vector Illustrations]"
title="Vector Illustrations" class="popup">Illustrations</a>
<a href="assets/images/portfolio/vector/vector_02.webp" rel="prettyPhoto[Vector Illustrations]"
title="Vector Illustrations" class="no-show popup">Vector Illustrations</a>
<a href="assets/images/portfolio/vector/vector_03.webp" rel="prettyPhoto[Vector Illustrations]"
title="Vector Illustrations" class="no-show popup">Vector Illustrations</a>
<a href="assets/images/portfolio/vector/vector_04.webp" rel="prettyPhoto[Vector Illustrations]"
title="Vector Illustrations" class="no-show popup">Vector Illustrations</a>
<a href="assets/images/portfolio/vector/vector_05.webp" rel="prettyPhoto[Vector Illustrations]"
title="Vector Illustrations" class="no-show popup">Vector Illustrations</a>
<a href="assets/images/portfolio/vector/vector_06.webp" rel="prettyPhoto[Vector Illustrations]"
title="Vector Illustrations" class="no-show popup">Vector Illustrations</a>
</span>
</figcaption>
</figure>
<figure class="element wordpress" data-category="wordpress">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/tokyotiger_thumb.webp"
alt="Tokyo Tiger website"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Tokyo Tiger</h3>
<span>Wordpress Customization</span>
<a href="http://www.tokyotiger.it/" target="_blank" title="Tokyo Tiger website">Website</a>
</span>
</figcaption>
</figure>
<figure class="element photo" data-category="photography">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/pcc18/pcc18_thumb.webp"
alt="Palermo Comic Convention 2018"></div>
<figcaption> <span class="figcaption-wrap">
<h3>PCC 2018</h3>
<span>Event Photography</span>
<a href="assets/images/portfolio/pcc18/tom-hopper-01.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Tom Hopper]"
title="Palermo Comic Convention 2018 Report - Tom Hopper" class="popup">Gallery</a>
<a href="assets/images/portfolio/pcc18/tom-hopper-02.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Tom Hopper]"
title="Palermo Comic Convention 2018 Report - Tom Hopper" class="no-show popup"></a>
<a href="assets/images/portfolio/pcc18/tom-hopper-03.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Tom Hopper]"
title="Palermo Comic Convention 2018 Report - Tom Hopper" class="no-show popup"></a>
<a href="assets/images/portfolio/pcc18/tom-hopper-04.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Tom Hopper]"
title="Palermo Comic Convention 2018 Report - Tom Hopper" class="no-show popup"></a>
<a href="assets/images/portfolio/pcc18/tom-hopper-05.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Tom Hopper]"
title="Palermo Comic Convention 2018 Report - Tom Hopper" class="no-show popup"></a>
<a href="assets/images/portfolio/pcc18/tom-hopper-06.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Tom Hopper]"
title="Palermo Comic Convention 2018 Report - Tom Hopper" class="no-show popup"></a>
<a href="assets/images/portfolio/pcc18/tom-hopper-07.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Tom Hopper]"
title="Palermo Comic Convention 2018 Report - Tom Hopper" class="no-show popup"></a>
<a href="assets/images/portfolio/pcc18/tom-hopper-08.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Tom Hopper]"
title="Palermo Comic Convention 2018 Report - Tom Hopper" class="no-show popup"></a>
<a href="assets/images/portfolio/pcc18/giorgio-vanni_01.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Giorgio Vanni]"
title="Palermo Comic Convention 2018 Report - Giorgio Vanni" class="no-show popup"></a>
<a href="assets/images/portfolio/pcc18/giorgio-vanni_02.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Giorgio Vanni]"
title="Palermo Comic Convention 2018 Report - Giorgio Vanni" class="no-show popup"></a>
<a href="assets/images/portfolio/pcc18/giorgio-vanni_03.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Giorgio Vanni]"
title="Palermo Comic Convention 2018 Report - Giorgio Vanni" class="no-show popup"></a>
<a href="assets/images/portfolio/pcc18/giorgio-vanni_04.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Giorgio Vanni]"
title="Palermo Comic Convention 2018 Report - Giorgio Vanni" class="no-show popup"></a>
<a href="assets/images/portfolio/pcc18/giorgio-vanni_05.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report - Giorgio Vanni]"
title="Palermo Comic Convention 2018 Report - Giorgio Vanni" class="no-show popup"></a>
<a href="assets/images/portfolio/pcc18/pcc18-01.webp"
rel="prettyPhoto[Palermo Comic Convention 2018 Report]" title="Palermo Comic Convention 2018 Report"
class="no-show popup"></a>
</span>
</figcaption>
</figure>
<figure class="element logo" data-category="logo">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/urbantrio_thumb.webp"
alt="UrbanTrio">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>Urban Trio</h3>
<span>Logo design</span>
<a href="assets/images/portfolio/urbantrio_logo.webp" rel="prettyPhoto[UrbanTrio]"
title="UrbanTrio LOGO" class="popup">Logo</a>
</span>
</figcaption>
</figure>
<figure class="element web wordpress" data-category="wordpress">
<div><img width="100%" height="100%" loading="lazy"
src="assets/images/portfolio/sunsetpoints/sunsetpoints_thumb.webp" alt="SunsetPoints"></div>
<figcaption> <span class="figcaption-wrap">
<h3>SunsetPoints website</h3>
<span>Wordpress customization</span>
<a title="SunsetPoints website" disabled target="_blank" class="no-more" tabindex="-1">Website no more
online</a>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=14-174&t=KCSQlTJzAMyU8FdG-1&scaling=scale-down&page-id=14%3A30&starting-point-node-id=14%3A174&mode=design"
target="_blank" title="SunsetPoints website">Desktop Mockup</a>
</span>
</figcaption>
</figure>
<figure class="element photo" data-category="photography">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/beb/beb_thumb.webp"
alt="B&B"></div>
<figcaption> <span class="figcaption-wrap">
<h3>B&B</h3>
<span>Interior Photography</span>
<a href="assets/images/portfolio/beb/beb_01.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="popup">Gallery</a>
<a href="assets/images/portfolio/beb/beb_02.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
<a href="assets/images/portfolio/beb/beb_03.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
<a href="assets/images/portfolio/beb/beb_04.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
<a href="assets/images/portfolio/beb/beb_05.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
<a href="assets/images/portfolio/beb/beb_06.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
<a href="assets/images/portfolio/beb/beb_07.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
<a href="assets/images/portfolio/beb/beb_08.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
<a href="assets/images/portfolio/beb/beb_09.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
<a href="assets/images/portfolio/beb/beb_10.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
<a href="assets/images/portfolio/beb/beb_11.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
<a href="assets/images/portfolio/beb/beb_12.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
<a href="assets/images/portfolio/beb/beb_13.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
<a href="assets/images/portfolio/beb/beb_14.webp" rel="prettyPhoto[B&B interior photography]"
title="B&B interior photography" class="no-show popup"></a>
</span>
</figcaption>
</figure>
<figure class="element web wordpress" data-category="wordpress">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/defenx_thumb.webp"
alt="Defenx">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>Defenx website</h3>
<span>UX/UI design & wordpress</span>
<a title="Defenx website" target="_blank" class="no-more" tabindex="-1">Website no more online</a>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=14-135&t=XcQJQPMq2hNueywW-1&scaling=scale-down&page-id=14%3A35&starting-point-node-id=14%3A135&mode=design"
target="_blank" title="Defenx website">Desktop Mockup</a>
</span>
</figcaption>
</figure>
<figure class="element web" data-category="web">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/voverc/voverc_thumb_1.webp"
alt="Voverc">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>Voverc marketing</h3>
<span>UX/UI design & HTML5/CSS coding</span>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Voverc?type=design&node-id=6-21&t=EE56yfUzNRqUKTD9-1&scaling=min-zoom&page-id=6%3A11&starting-point-node-id=6%3A21&mode=design"
title="Voverc landing page" target="_blank">Landing pages' prototype</a>
</span>
</figcaption>
</figure>
<figure class="element web" data-category="web">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/voverc/voverc_thumb.webp"
alt="Voverc">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>Voverc website</h3>
<span>UX/UI design & HTML5/CSS coding</span>
<a target="_blank" class="no-more" tabindex="-1">Website no more online</a>
<a title="Voverc onboarding" target="_blank" class="no-more" tabindex="-1">Onboarding no more online</a>
<a title="Voverc Admin Area" class="no-more" tabindex="-1">Admin
Area no more online</a>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Voverc-website?type=design&node-id=2-7&t=XTpwYUuZZC6HAWCr-1&scaling=scale-down&page-id=0%3A1&starting-point-node-id=2%3A5&mode=design"
title="Voverc website" target="_blank">Desktop Mockup</a>
</span>
</figcaption>
</figure>
<figure class="element logo wordpress" data-category="logo">
<div><img width="100%" height="100%" loading="lazy"
src="assets/images/portfolio/lele-beb/lele-beb_thumb.webp" alt="Lele b&b"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Lele b&b</h3>
<span>Logo design & wordpress</span>
<a href="http://www.beb-lele.com/" title="Lele b&b" target="_blank">Website</a>
<a href="assets/images/portfolio/lele-beb/lele-beb_logo.webp" rel="prettyPhoto[Lele b&b]"
title="Lele b&b LOGO" class="popup">Logo</a>
</span>
</figcaption>
</figure>
<figure class="element web" data-category="web">
<div><img width="100%" height="100%" loading="lazy"
src="assets/images/portfolio/sanremo_2016/sanremo_thumb.webp" alt="Sanremo 2016"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Sanremo 2016</h3>
<span>UX/UI design</span>
<a class="no-more" tabindex="-1">Website no more online</a>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=14-51&t=77hWAimZTX1JqdjL-1&scaling=scale-down&page-id=14%3A31&starting-point-node-id=14%3A51&mode=design"
title="Sanremo 2016 HOME" target="_blank">Desktop Mockup</a>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=14-101&t=eee4XcIpWDyXuhO7-1&scaling=scale-down&page-id=14%3A32&starting-point-node-id=14%3A101&mode=design"
title="Sanremo 2016 HOME" target="_blank">Mobile Mockup</a>
</span>
</figcaption>
</figure>
<figure class="element old" data-category="old">
<div><img width="100%" height="100%" loading="lazy"
src="assets/images/portfolio/thevoice/thevoice_thumb.webp" alt="The Voice of Italy"></div>
<figcaption> <span class="figcaption-wrap">
<h3>The Voice of Italy 2016</h3>
<span>UX/UI design</span>
<a class="no-more" tabindex="-1">Website no more online</a>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=14-246&t=AMLqeEVcAIHgQ6kW-1&scaling=scale-down&page-id=14%3A36&starting-point-node-id=14%3A246&mode=design"
target="_blank" title="The Voice of Italy HOME">Desktop Mockup</a>
</span>
</figcaption>
</figure>
<figure class="element old" data-category="old">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/osa/osa_thumb.webp"
alt="OnStage awards">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>OnStage Awards 2016</h3>
<span>UX/UI design</span>
<a href="http://www.rai.it/dl/siti/Page-06a615f2-2139-499d-831e-6a157a683346.html"
title="OnStage awards" target="_blank">Website</a>
<a href="14-479&t=OT3nOlCsXkKPQwSh-1&scaling=scale-down&page-id=14%3A390&starting-point-node-id=14%3A479&mode=design"
target="_blank" title="OnStage awards HOME">Desktop Mockup</a>
</span>
</figcaption>
</figure>
<figure class="element old" data-category="old">
<div><img width="100%" height="100%" loading="lazy"
src="assets/images/portfolio/rai-corporate_thumb.webp" alt="RAI corporate rai.it">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>RAI.it</h3>
<span>Webdesign</span>
<a class="no-more" tabindex="-1">Website no more online</a>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=79-103&t=KG2b4wQMfPFNvIMs-1&scaling=scale-down&page-id=79%3A97&starting-point-node-id=79%3A103&mode=design"
target="_blank" title="RAI.it: Home page">Mockup</a>
</span>
</figcaption>
</figure>
<figure class="element old" data-category="old">
<div><img width="100%" height="100%" loading="lazy"
src="assets/images/portfolio/hellolen_2015/hellolen2015_thumb.webp" alt="HelloLen cosplay"></div>
<figcaption> <span class="figcaption-wrap">
<h3>HelloLen* cosplay</h3>
<span>Webdesign & HTML+CSS</span> <a href="http://www.hellolen.com" title="HelloLen* cosplay"
target="_blank">Website</a> <a
href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=79-158&t=ESyW0k0AGXC6xugf-1&scaling=scale-down&page-id=79%3A153&starting-point-node-id=79%3A158&mode=design"
target="_blank" title="HelloLen cosplay: Home page">Desktop
Mockup</a>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=86-175&t=G84CY2WZsB9EYHlI-1&scaling=scale-down&page-id=79%3A154&starting-point-node-id=86%3A175&mode=design"
target="_blank" title="HelloLen cosplay: Home page">Mobile
Mockup</a>
</span>
</figcaption>
</figure>
<figure class="element old" data-category="old">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/sanremo/sanremo_thumb.webp"
alt="Sanremo2015 for RAI"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Sanremo2015</h3>
<span>Webdesign</span> <a class="no-more" tabindex="-1">Website no more online</a> <a
href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=66-74&t=JoicZOqJsIEJfTf9-1&scaling=scale-down&page-id=14%3A33&starting-point-node-id=66%3A74&show-proto-sidebar=1&mode=design"
target="_blank" title="Website layout: Home page">Desktop Mockup</a>
<a href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=66-171&t=UUR8CIHMR4WWMKz3-1&scaling=scale-down&page-id=14%3A34&starting-point-node-id=66%3A171&mode=design"
target="_blank" title="Website layout: Home page">Mobile
Mockup</a>
</span>
</figcaption>
</figure>
<figure class="element old" data-category="old">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/ballaro/ballaro_thumb.webp"
alt="Ballarò blog"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Ballarò blog</h3>
<span>Webdesign</span> <a title="Ballarò blog" target="_blank" class="no-more"
tabindex="-1">Website no more
online</a> <a
href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=92-236&t=VNzfIBvU8SXXL1uW-1&scaling=scale-down&page-id=92%3A233&starting-point-node-id=92%3A236&mode=design"
target="_blank" title="Ballarò blog: Home page">Mockup</a>
</span>
</figcaption>
</figure>
<figure class="element web" data-category="web">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/pechino/pechino_thumb.webp"
alt="Pechinoexpress for RAI"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Pechinoexpress 2014</h3>
<span>Webdesign</span> <a class="no-more" tabindex="-1">Website no more online</a> <a
href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=92-192&t=fiwYeO9CmfmuRTB5-1&scaling=scale-down&page-id=87%3A181&starting-point-node-id=92%3A192&mode=design"
target="_blank" title="Website layout">Mockup</a>
</span>
</figcaption>
</figure>
<figure class="element logo" data-category="logo">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/segway_thumb.webp"
alt="Segway Roma">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>Segway Roma</h3>
<span>Logo & Webdesign</span> <a href="http://www.segwayroma.net" target="_blank">Website</a> <a
href="assets/images/portfolio/graphic_segway_01.webp" rel="prettyPhoto[Segway Roma]" title="Logo"
class="popup">Logo</a>
</span>
</figcaption>
</figure>
<figure class="element logo" data-category="logo">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/turchia_thumb.webp"
alt="Turchia Oggi">
</div>
<figcaption> <span class="figcaption-wrap">
<h3>Turchia Oggi</h3>
<span>Logo design</span> <a target="_blank" class="no-more" tabindex="-1">Website no more online</a> <a
href="assets/images/portfolio/graphic_turchia_01.webp" rel="prettyPhoto[Turchia Oggi]" title="Logo"
class="popup">Logo</a>
</span>
</figcaption>
</figure>
<figure class="element logo" data-category="logo">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/osservatorio_thumb.webp"
alt="Osservatorio Artigianato"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Osservatorio Artigianato</h3>
<span>Logo & Webdesign</span>
<a class="no-more" tabindex="-1">Website no more online</a>
<a href="assets/images/portfolio/graphic_osservatorio_01.webp"
rel="prettyPhoto[Osservatorio Artigianato]" title="Logo" class="popup">Logo</a>
</span>
</figcaption>
</figure>
<figure class="element logo" data-category="logo">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/transmovie_thumb.webp"
alt="Transmovie">
</div>
<figcaption>
<span class="figcaption-wrap">
<h3>Transmovie</h3>
<span>Logo & Webdesign</span> <a class="no-more" tabindex="-1">Website no more online</a> <a
href="assets/images/portfolio/graphic_transmovie_01.webp" rel="prettyPhoto[Transmovie]" title="Logo"
class="popup">Logo</a> <a
href="https://www.figma.com/proto/a8cECADY5i2Aaiuu2sANJs/Cherryweb-portfolio?type=design&node-id=106-247&t=gs5O5kzGVzcq2EA3-1&scaling=scale-down&page-id=106%3A245&mode=design"
target="_blank" title="Website layout">Mockup</a>
</span>
</figcaption>
</figure>
<figure class="element graphic" data-category="graphic">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/barilla/barilla_thumb.webp"
alt="Barilla">
</div>
<figcaption>
<span class="figcaption-wrap">
<h3>Barilla</h3>
<span>Website & graphics</span> <a target="_blank" class="no-more" tabindex="-1">Website no more
online</a> <a href="assets/images/portfolio/barilla/web_barilla_01.webp" rel="prettyPhoto[Barilla]"
title="Barilla Infographic" class="popup">Infographic</a>
<a href="assets/images/portfolio/barilla/graphic_barilla_01.webp" rel="prettyPhoto[Barilla]"
title="Barilla Pdf" class="popup">Graphic</a>
<a href="assets/images/portfolio/barilla/graphic_barilla_02.webp" rel="prettyPhoto[Barilla]"
title="Barilla Pdf" class="no-show popup"></a>
</span>
</figcaption>
</figure>
<figure class="element graphic" data-category="graphic">
<div>
<img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/merk/merck_thumb.webp"
alt="Merck Serono">
</div>
<figcaption>
<span class="figcaption-wrap">
<h3>Merck Serono</h3>
<span>Graphic design</span> <a href="assets/images/portfolio/merk/graphic_merck_01.webp"
rel="prettyPhoto[Merck Serono]" title="Poster for Merck Serono" class="popup">Graphics</a> <a
href="assets/images/portfolio/merk/print_merck_01.webp" rel="prettyPhoto[Merck Serono]"
title="Brochure for Merck Serono" class="popup">Prints</a> <a
href="assets/images/portfolio/merk/print_merck_02.webp" rel="prettyPhoto[Merck Serono]"
title="Brochure for Merck Serono" class="no-show popup"></a>
</span>
</figcaption>
</figure>
<figure class="element old" data-category="old">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/clangroup_thumb.webp"
alt="Clan Group presentation"></div>
<figcaption>
<span class="figcaption-wrap">
<h3>ClanGroup presentation</h3>
<span>Webdesign & HTML+CSS</span> <a href="http://www.clan-group.com/presentazioni/CLANgroup/"
target="_blank">Website</a>
</span>
</figcaption>
</figure>
<figure class="element graphic" data-category="graphic">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/ricicliamoci_thumb.webp"
alt="Ricicliamoci Panels"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Ricicliamoci for Clan Group</h3>
<span>Graphic design</span> <a href="assets/images/portfolio/print_ricicliamoci_01.webp"
rel="prettyPhoto[Merck01]" title="Ricicliamoci Panels" class="popup">Graphics</a> <a
href="assets/images/portfolio/print_ricicliamoci_02.webp" rel="prettyPhoto[Merck01]"
title="Ricicliamoci Panels" class="no-show popup"></a> <a
href="assets/images/portfolio/print_ricicliamoci_03.webp" rel="prettyPhoto[Merck01]"
title="Ricicliamoci Panels" class="no-show popup"></a>
</span>
</figcaption>
</figure>
</div>
<!-- #container -->
</div>
</section>
<section id="hobbies" data-full="true" class="slide" name="hobbies">
<div class="container">
<h1>I have <span>Hobbies</span> too!</span></h1>
<h3>I genuinely enjoy my job, no doubt about it! <br>However, in my free time, I like to engage in various
activities. <br>While I can't share pictures of my workouts or TV show/movie binges, I'd love to present you
with a curated collection of my top travel and urbex photos!</h3>
</div>
<div id="container" class="clearfix flex grid hobbiesGallery">
<figure class="element ">
<div><img width="100%" height="100%" loading="lazy"
src="assets/images/portfolio/newyork/2023/new-york_thumb.webp" alt="New York"></div>
<figcaption> <span class="figcaption-wrap">
<h3>New York 2023</h3>
<span>Travel Photography</span>
<a href="assets/images/portfolio/newyork/2023/new-york_01.webp" rel="prettyPhoto[New York Travel Report]"
title="New York Travel Report" class="popup">Gallery<img title="New York Travel Report"
class="no-show"></a>
<a href="assets/images/portfolio/newyork/2023/new-york_02.webp" rel="prettyPhoto[New York Travel Report]"
title="New York Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2023/new-york_03.webp" rel="prettyPhoto[New York Travel Report]"
title="New York Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2023/new-york_04.webp" rel="prettyPhoto[New York Travel Report]"
title="New York Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2023/new-york_05.webp" rel="prettyPhoto[New York Travel Report]"
title="New York Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2023/new-york_06.webp" rel="prettyPhoto[New York Travel Report]"
title="New York Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2023/new-york_07.webp" rel="prettyPhoto[New York Travel Report]"
title="New York Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2023/new-york_08.webp" rel="prettyPhoto[New York Travel Report]"
title="New York Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2023/new-york_09.webp" rel="prettyPhoto[New York Travel Report]"
title="New York Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2023/new-york_10.webp" rel="prettyPhoto[New York Travel Report]"
title="New York Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2023/new-york_11.webp" rel="prettyPhoto[New York Travel Report]"
title="New York Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2023/new-york_12.webp" rel="prettyPhoto[New York Travel Report]"
title="New York Travel Report" class="no-show popup"></a>
</span>
</figcaption>
</figure>
<figure class="element ">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/spain/spain_thumb.webp"
alt="Spain"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Spain</h3>
<span>Travel Photography</span>
<a href="assets/images/portfolio/spain/spain_01.webp" rel="prettyPhoto[Spain Travel Report]"
title="Spain Travel Report" class="popup">Gallery<img title="Spain Travel Report" class="no-show"></a>
<a href="assets/images/portfolio/spain/spain_02.webp" rel="prettyPhoto[Spain Travel Report]"
title="Spain Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/spain/spain_03.webp" rel="prettyPhoto[Spain Travel Report]"
title="Spain Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/spain/spain_04.webp" rel="prettyPhoto[Spain Travel Report]"
title="Spain Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/spain/spain_05.webp" rel="prettyPhoto[Spain Travel Report]"
title="Spain Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/spain/spain_06.webp" rel="prettyPhoto[Spain Travel Report]"
title="Spain Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/spain/spain_07.webp" rel="prettyPhoto[Spain Travel Report]"
title="Spain Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/spain/spain_08.webp" rel="prettyPhoto[Spain Travel Report]"
title="Spain Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/spain/spain_09.webp" rel="prettyPhoto[Spain Travel Report]"
title="Spain Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/spain/spain_10.webp" rel="prettyPhoto[Spain Travel Report]"
title="Spain Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/spain/spain_11.webp" rel="prettyPhoto[Spain Travel Report]"
title="Spain Travel Report" class="no-show popup"></a>
</span>
</figcaption>
</figure>
<figure class="element ">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/rome/rome_thumb.webp"
alt="Rome"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Rome</h3>
<span>Travel Photography</span>
<a href="assets/images/portfolio/rome/rome_01.webp" rel="prettyPhoto[Rome Travel Report]"
title="Rome Travel Report" class="popup">Gallery<img title="Rome Travel Report" class="no-show"></a>
<a href="assets/images/portfolio/rome/rome_02.webp" rel="prettyPhoto[Rome Travel Report]"
title="Rome Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/rome/rome_03.webp" rel="prettyPhoto[Rome Travel Report]"
title="Rome Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/rome/rome_04.webp" rel="prettyPhoto[Rome Travel Report]"
title="Rome Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/rome/rome_05.webp" rel="prettyPhoto[Rome Travel Report]"
title="Rome Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/rome/rome_06.webp" rel="prettyPhoto[Rome Travel Report]"
title="Rome Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/rome/rome_07.webp" rel="prettyPhoto[Rome Travel Report]"
title="Rome Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/rome/rome_08.webp" rel="prettyPhoto[Rome Travel Report]"
title="Rome Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/rome/rome_09.webp" rel="prettyPhoto[Rome Travel Report]"
title="Rome Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/rome/rome_10.webp" rel="prettyPhoto[Rome Travel Report]"
title="Rome Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/rome/rome_11.webp" rel="prettyPhoto[Rome Travel Report]"
title="Rome Travel Report" class="no-show popup"></a>
<a href="assets/images/portfolio/rome/rome_12.webp" rel="prettyPhoto[Rome Travel Report]"
title="Rome Travel Report" class="no-show popup"></a>
</span>
</figcaption>
</figure>
<figure class="element ">
<div><img width="100%" height="100%" loading="lazy"
src="assets/images/portfolio/newyork/2022/newyork_thumb.webp" alt="New York"></div>
<figcaption> <span class="figcaption-wrap">
<h3>New York 2022</h3>
<span>Travel Photography</span>
<a href="assets/images/portfolio/newyork/2022/newyork_01.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="popup">Gallery<img title="New York Travel Report 2022" class="no-show"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_02.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_03.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_04.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_05.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_06.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_07.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_08.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_09.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_10.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_11.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_12.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_13.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_14.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_15.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_16.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_17.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_18.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_19.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_20.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_21.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_22.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_23.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_24.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_25.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_26.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_27.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_28.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_29.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_30.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_31.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_32.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_33.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_34.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_35.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_36.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_37.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
<a href="assets/images/portfolio/newyork/2022/newyork_38.webp"
rel="prettyPhoto[New York Travel Report 2022]" title="New York Travel Report 2022"
class="no-show popup"></a>
</span>
</figcaption>
</figure>
<figure class="element ">
<div><img width="100%" height="100%" loading="lazy" src="assets/images/portfolio/miami/miami_thumb.webp"
alt="Miami"></div>
<figcaption> <span class="figcaption-wrap">
<h3>Miami</h3>