-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
598 lines (565 loc) · 31.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Franklin Méndez | Portfolio</title>
<link rel="stylesheet" href="./css/preloader.css">
<link rel="stylesheet" href="./css/style.css">
<script src="https://kit.fontawesome.com/f66ca2523d.js" crossorigin="anonymous"></script>
<script src="https://code.iconify.design/iconify-icon/1.0.0-beta.3/iconify-icon.min.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-87P4753W2Q"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-87P4753W2Q');
</script>
</head>
<body>
<!-- Preloader -->
<div id="preloader" class="preloader">
<h3>Preparing content, won't take a while 🥲</h3> <br>
</div>
<!-- Preloader -->
<div class="hero">
<div class="intro">
<div class="photo">
<img src="./img/franklin.png" alt="">
</div>
<div class="vertical-line">
</div>
<div class="name">
<h3>Welcome to my Portfolio! I'm</h3>
<h1 class=>Franklin Méndez</h1>
</div>
</div>
<div class="main-skills">
<div class="headline">
<h2>Front-End Developer & Graphic Designer</h2>
</div>
<div class="brands">
<h3>Work made for brands including:</h3>
<div class="brands-logos">
<a><img src="./img/logos/SVG/atexto.svg" width="100px" alt="Atexto"></a>
<a><img src="./img/logos/SVG/yobe.svg" width="100px" alt="Yobe"></a>
<a><img src="./img/logos/SVG/leadsales.svg" width="150px" class="logo2x" alt="Leadsales"></a> <br>
<a><img src="./img/logos/SVG/cala.svg" width="100px" alt="Cala"></a>
<a><img src="./img/logos/SVG/sm.svg" width="180px" class="logo2x" alt="StretchMED"></a>
</div>
</div>
</div>
<div class="inicial-cta">
<a href="https://www.linkedin.com/in/fjosue4/?locale=en_US" target="_blank" class="linkedin-button">Let's connect <i class="fa-brands fa-linkedin"></i> </a>
</div>
</div>
<main>
<div class="work-filter">
<h2>Projects</h2>
<span>Choose a category to find out what I do</span>
<div class="work-categories">
<a href="#web"> <div class="web box">
<div class="web-title">
<i class="fa-regular fa-keyboard"></i>
<h3>Web Development</h3>
</div>
</div></a>
<a href="#video"><div class="video box">
<div class="video-title">
<i class="fa-regular fa-circle-play"></i>
<h3>Video Production</h3>
</div>
</div></a>
<a href="#design"><div class="design box">
<div class="graphic-title">
<i class="fa-regular fa-object-ungroup"></i>
<h3>Graphic Design</h3>
</div>
</div></a>
<a href="#personal"><div class="personal box">
<div class="personal-title">
<i class="fa-regular fa-user"></i>
<h3>Personal Projects</h3>
</div>
</div></a>
</div>
</div>
<!-- Web section -->
<div class="web-projects" id="web">
<h2>Web Development</h2>
<p>Web design and development projects. Well, the title was pretty descriptive.</p>
<div class="work-icons">
<iconify-icon icon="simple-icons:html5" class="work-icon html5-icon"></iconify-icon>
<iconify-icon icon="simple-icons:css3" class="work-icon css-icon"></iconify-icon>
<iconify-icon icon="simple-icons:javascript" class="work-icon js-icon"></iconify-icon>
<iconify-icon icon="akar-icons:react-fill" class="work-icon react-icon"></iconify-icon>
<iconify-icon icon="simple-icons:github" class="work-icon gh-icon"></iconify-icon>
<iconify-icon icon="simple-icons:figma" class="work-icon figma-icon"></iconify-icon>
</div>
<div class="project-boxes">
<div id="shortqr" class="featured-project projectdiv">
<div class="project-texts div-text-and-button">
<h3 id="shortQr-title" class="box-title">Credit Card Checker</h3>
<nav id="shortQr-subtitle" class="view-button">View details</nav>
</div>
<div id="shortqr-bg">
</div>
</div>
</a>
<!-- Modal starts -->
<div id="shortQr-modal" class="project-modal">
<div class="modal-content">
<span id='close-shortQr' class="close">×</span>
<div class="modal-details-web">
<div class="modal-description">
<h3>Credit Card Checker</h3>
<div class="title-divider"></div>
<p>This tool helps you validate credit card numbers using the Luhn algorithm, also helps you generate random cards to test in case you don't have a card to test.
</p>
<div class="double-button">
<a href="https://www.figma.com/file/rnYSgEYMac9VTA0DKbEUca/shortQR" target="_blank" class="view-button multi">
Figma prototype <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
<a href="https://fjosue4.github.io/shortqr/" target="_blank" class="view-button multi">
React version <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
</div>
<div class="modal-preview">
<a href="https://fjosue4.github.io/shortqr/" target="_blank">
<img src="./img/qr-preview.jpg" alt="Credit Card Checker preview">
</a>
</div>
</div>
</div>
</div>
<!-- Modal ends -->
<div class="two-col-projects">
<div id='cc-checker' class="secondary-project atexto-landing projectdiv">
<div class="project-texts-secondary div-text-and-button">
<h3 id="cc-checker-title" class="box-title">Credit Card Checker</h3>
<nav id="cc-checker-subtitle" class="view-button">View details</nav>
</div>
<div id="ccchecker-bg">
</div>
</div>
<!-- Modal Starts -->
<div id="cc-checker-modal" class="project-modal">
<div class="modal-content">
<span id='close-cc-checker' class="close">×</span>
<div class="modal-details-web">
<div class="modal-description">
<h3>Credit Card Checker</h3>
<div class="title-divider"></div>
<p>This tool helps you validate credit card numbers using the Luhn algorithm, also helps you generate random cards to test in case you don't have a card to test.
</p>
<div class="double-button">
<a href="https://www.figma.com/file/gx1OntnxXen64lYRgscxPS/Card-checker" target="_blank" class="view-button multi">
Figma prototype <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
<a href="https://fjosue4.github.io/card-checker-react/" target="_blank" class="view-button multi">
React version <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
<a href="https://fjosue4.github.io/credit-card-checker/" target="_blank" class="view-button">
HTML version <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
</div>
<div class="modal-preview">
<a href="https://fjosue4.github.io/credit-card-checker/" target="_blank">
<img src="./img/cc-preview.jpg" alt="Credit Card Checker preview">
</a>
</div>
</div>
</div>
</div>
<!-- Modal ends -->
<div id="sematic-web" class="secondary-project sematic-web projectdiv">
<div class="project-texts-secondary div-text-and-button">
<h3 id="sematicweb-title" class="box-title">Sematic responsive page</h3>
<nav id="sematicweb-subtitle" class="view-button">View details</nav>
</div>
<div id="sematic-bg">
</div>
</div>
<!-- Modal Starts -->
<div id="sematicweb-modal" class="project-modal">
<div class="modal-content">
<span id='close-atextoweb' class="close">×</span>
<div class="modal-details-web">
<div class="modal-description">
<h3>Sematic responsive page</h3>
<div class="title-divider"></div>
<p>The open source project "Sematic" had a previous website,
based in this concept, it was remade from scratch to make it
responsive and more dinamic, fully created with HTML and
CSS.
</p>
<a href="https://fjosue4.github.io/codecademy/project6-company-home/" target="_blank" class="view-button">
View website <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
<div class="modal-preview">
<a href="https://fjosue4.github.io/codecademy/project6-company-home/" target="_blank">
<img src="./img/sematic-preview.jpg" alt="Sematic web preview">
</a>
</div>
</div>
</div>
</div>
<!-- Modal ends -->
</div>
</div>
</div>
<!-- Video Section -->
<div class="video-projects" id="video">
<h2>Video Production</h2>
<p>Audiovisual projects that included video editing and in some cases voice-over and or video recording were required.</p>
<div class="work-icons">
<iconify-icon icon="simple-icons:adobepremierepro" class="work-icon pr-icon"></iconify-icon>
<iconify-icon icon="simple-icons:adobeaudition" class="work-icon au-icon"></iconify-icon>
<iconify-icon icon="simple-icons:adobeaftereffects" class="work-icon ae-icon"></iconify-icon>
<iconify-icon icon="simple-icons:adobeillustrator" class="work-icon ai-icon"></iconify-icon>
<iconify-icon icon="simple-icons:adobephotoshop" class="work-icon ps-icon"></iconify-icon>
<iconify-icon icon="simple-icons:obsstudio" class="work-icon obs-icon"></iconify-icon>
</div>
<div class="project-boxes">
<div id="cala" class="featured-project projectdiv">
<div class="project-texts div-text-and-button">
<h3 id="cala-title" class="box-title">Cala Display menu</h3>
<nav id="cala-subtitle" class="view-button">View details</nav>
</div>
<div id="cala-bg">
</div>
</div>
<!-- Modal starts -->
<div id="sematic-modal" class="project-modal">
<div class="modal-content">
<span id='close-sematic' class="close">×</span>
<div class="modal-details-web">
<div class="modal-description">
<h3>Display menu (Motion Graphics)</h3>
<div class="title-divider"></div>
<p>The client required a 3 screen menu to show some of
their products. Software required for this project: Adobe
Photoshop to remove background from the products,
Adobe After Effects to animate the whole composition,
and Adobe Premiere to adapt to the client's delivery
requirements.
</p>
<a href="https://www.youtube.com/watch?v=GOf8-tD49dc" class="view-button" target="_blank">
Watch video <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
<div class="modal-preview">
<iframe width="300" height="250" src="https://www.youtube.com/embed/GOf8-tD49dc?controls=0&enablejsapi=1&html5=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="youtube-box"></iframe>
</div>
</div>
</div>
</div>
<!-- Modal ends -->
<div class="two-col-projects">
<div id='explanatory' class="secondary-project explanatory-videos projectdiv">
<div class="project-texts-secondary div-text-and-button">
<h3 id="explanatory-title" class="box-title">Explanatory videos</h3>
<nav id="explanatory-subtitle" class="view-button">View details</nav>
</div>
<div id="explanatory-bg">
</div>
</div>
<!-- Modal Starts -->
<div id="explanatory-modal" class="project-modal">
<div class="modal-content">
<span id='close-explanatory' class="close">×</span>
<div class="modal-details-web">
<div class="modal-description">
<h3>Explanatory videos (Animation)</h3>
<div class="title-divider"></div>
<p>The clients required some short videos to solve most
frequently asked questions or problems while using
their platforms. Software required for these projects: Adobe
Illustrator, to recreate the platform in vectors, Adobe After
Effects to animate the platform and texts for the video,
Adobe Audition to record and process the Voiceover, and
Adobe Premiere Pro to unify all the content and export.
</p>
<a href="https://www.youtube.com/playlist?list=PLKzkSZSE-eFw4Y_s0i6DbeabahLUX22pY" target="_blank" class="view-button">Watch playlist <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
<div class="modal-preview">
<iframe id="ytvideo" width="300" height="250" src="https://www.youtube.com/embed/videoseries?list=PLKzkSZSE-eFw4Y_s0i6DbeabahLUX22pY&enablejsapi=1&html5=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="youtube-box"></iframe>
</div>
</div>
</div>
</div>
<!-- Modal ends -->
<div id="live" class="secondary-project live projectdiv">
<div class="project-texts-secondary div-text-and-button">
<h3 id="live-title" class="box-title">Live streaming</h3>
<nav id="live-subtitle" class="view-button">View details</nav>
</div>
<div id="live-bg">
</div>
</div>
<!-- Modal Starts -->
<div id="live-modal" class="project-modal">
<div class="modal-content">
<span id='close-live' class="close">×</span>
<div class="modal-details-web">
<div class="modal-description">
<h3>Atexto + Yobe live</h3>
<div class="title-divider"></div>
<p>It was a partnership live streaming to demo the product
of both software companies, it was originally streamed
on LinkedIn, but for easy visualization, you can see the
recording on YouTube. In this project, it was used Adobe
Illustrator, Adobe After Effects, OBS, and OBS Ninja to
capture cameras and screens separately.
</p>
<a href="https://www.youtube.com/watch?v=gT2Cxgtsu0A" class="view-button" target="_blank">
Watch video <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
<div class="modal-preview">
<iframe width="300" height="250" src="https://www.youtube.com/embed/gT2Cxgtsu0A?controls=0&enablejsapi=1&html5=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="youtube-box"></iframe>
</div>
</div>
</div>
</div>
<!-- Modal ends -->
</div>
</div>
<!-- Graphic Section -->
<div class="design-projects" id="design">
<h2>Graphic Design</h2>
<p>Branding, social media, printing, and documentation.</p>
<div class="work-icons">
<iconify-icon icon="simple-icons:adobepremierepro" class="work-icon pr-icon"></iconify-icon>
<iconify-icon icon="simple-icons:adobeaftereffects" class="work-icon ae-icon"></iconify-icon>
<iconify-icon icon="simple-icons:adobeillustrator" class="work-icon ai-icon"></iconify-icon>
<iconify-icon icon="simple-icons:adobeindesign" class="work-icon id-icon"></iconify-icon>
<iconify-icon icon="simple-icons:adobephotoshop" class="work-icon ps-icon"></iconify-icon>
</div>
<div class="project-boxes">
<div id="wc" class="featured-project projectdiv">
<div class="project-texts div-text-and-button">
<h3 id="wc-title" class="box-title">Atexto World Championship</h3>
<nav id="wc-subtitle" class="view-button">View details</nav>
</div>
<div id="wc-bg">
</div>
</div>
<!-- Modal starts -->
<div id="wc-modal" class="project-modal">
<div class="modal-content">
<span id='close-sematic' class="close">×</span>
<div class="modal-details-web">
<div class="modal-description">
<h3>Atexto World Championship</h3>
<div class="title-divider"></div>
<p>All the branding was designed for the competition, 2 shows
have been produced in total, you can access the playlist by
clicking the image on the right or the buttom.
</p>
<a href="https://www.youtube.com/playlist?list=PLKzkSZSE-eFzdVmhgq9svAtj17662dOxA" target="_blank" class="view-button">
Take a look <i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
<div class="modal-preview">
<a href="https://www.youtube.com/playlist?list=PLKzkSZSE-eFzdVmhgq9svAtj17662dOxA" target="_blank">
<img src="./img/wc-preview.jpg" alt="World Championship Poster"></a>
</div>
</div>
</div>
</div>
<!-- Modal ends -->
<div class="two-col-projects">
<div id='yobe' class="secondary-project projectdiv">
<div class="project-texts-secondary div-text-and-button">
<h3 id="yobe-title" class="box-title">Document Layout</h3>
<nav id="yobe-subtitle" class="view-button">View details</nav>
</div>
<div id="yobe-bg">
</div>
</div>
<!-- Modal Starts -->
<div id="yobe-modal" class="project-modal">
<div class="modal-content">
<span id='close-yobe' class="close">×</span>
<div class="modal-details-web">
<div class="modal-description">
<h3>Document Layout</h3>
<div class="title-divider"></div>
<p>Yobe: Wanted to show the features and technical
details of their software in short documents <br>
Atexto: Produced several accuracy reports to measure
different Speech to Text engines in different languages.
</p>
<a href="https://drive.google.com/drive/folders/1TnR0XDPhmkFUc9uBmcFHxxiZpQrlZTvh?usp=sharing" target="_blank" class="view-button">
View documents <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
<div class="modal-preview">
<a href="https://drive.google.com/drive/folders/1TnR0XDPhmkFUc9uBmcFHxxiZpQrlZTvh?usp=sharing" target="_blank"><img src="./img/yobe-preview.jpg" alt="Yobe Document Preview"></a>
</div>
</div>
</div>
</div>
<!-- Modal ends -->
<div id="report" class="secondary-project report projectdiv">
<div class="project-texts-secondary div-text-and-button">
<h3 id="report-title" class="box-title">Printable banners</h3>
<nav id="report-subtitle" class="view-button">View details</nav>
</div>
<div id="banners-bg">
</div>
</div>
<!-- Modal Starts -->
<div id="report-modal" class="project-modal">
<div class="modal-content">
<span id='close-report' class="close">×</span>
<div class="modal-details-web">
<div class="modal-description">
<h3>Printable banners</h3>
<div class="title-divider"></div>
<p>Baners designed for specific events where the brands participated.
</p>
<a href="https://drive.google.com/drive/folders/1IhQiLo-mser_hRsra2DKWrdOG-fhtoRS?usp=sharing" target="_blank" class="view-button">
Check them out <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
<div class="modal-preview">
<a href="https://drive.google.com/drive/folders/1IhQiLo-mser_hRsra2DKWrdOG-fhtoRS?usp=sharing" target="_blank"><img src="./img/banner-preview.jpg" class="banner-preview" alt="StretchMED banner preview"></a>
</div>
</div>
</div>
</div>
<!-- Modal ends -->
</div>
</div>
<!-- Personal section -->
<div class="personal-projects" id="personal">
<h2>Personal Projects</h2>
<p>Well, you'll find mostly video content I create in my free time (When I had it 😅)</p>
<div class="work-icons">
<iconify-icon icon="simple-icons:adobepremierepro" class="work-icon pr-icon"></iconify-icon>
<iconify-icon icon="simple-icons:adobeaudition" class="work-icon au-icon"></iconify-icon>
<iconify-icon icon="simple-icons:adobeaftereffects" class="work-icon ae-icon"></iconify-icon>
<iconify-icon icon="simple-icons:adobeillustrator" class="work-icon ai-icon"></iconify-icon>
<iconify-icon icon="simple-icons:adobephotoshop" class="work-icon ps-icon"></iconify-icon>
</div>
<div class="project-boxes">
<div id="udemy" class="featured-project projectdiv">
<div class="project-texts div-text-and-button">
<h3 id="udemy-title" class="box-title">Graphic Design Free Course</h3>
<nav id="udemy-subtitle" class="view-button">View details</nav>
</div>
<div id="udemy-bg">
</div>
</div>
<!-- Modal starts -->
<div id="udemy-modal" class="project-modal">
<div class="modal-content">
<span id='close-udemy' class="close">×</span>
<div class="modal-details-web">
<div class="modal-description">
<h3>Graphic Design Free Course</h3>
<div class="title-divider"></div>
<p>I enjoy explaining and analyzing Graphic Design things, so I created a free course for beginners/people who don't know
if Graphic Design will be their match to study in college, that was my case, I wasn't sure which career to study.
</p>
<a href="https://www.udemy.com/course/fundamentos-del-diseno-grafico/" target="_blank" class="view-button">
Check course <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
<div class="modal-preview">
<iframe width="300" height="250" src="https://www.youtube.com/embed/7NOHy_kDAVk?controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="youtube-box"></iframe>
</div>
</div>
</div>
</div>
<!-- Modal ends -->
<div class="two-col-projects">
<div id='ucl-hl' class="secondary-project ucl-hl-videos projectdiv">
<div class="project-texts-secondary div-text-and-button">
<h3 id="ucl-hl-title" class="box-title">UEFA Champions League Highlights</h3>
<nav id="atextolanding-subtitle" class="view-button">View details</nav>
</div>
<div id="ucl-hl-bg">
</div>
</div>
<!-- Modal Starts -->
<div id="ucl-hl-modal" class="project-modal">
<div class="modal-content">
<span id='close-ucl-hl' class="close">×</span>
<div class="modal-details-web">
<div class="modal-description">
<h3>UEFA Champions League Content Delivery</h3>
<div class="title-divider"></div>
<p>This can be the beginning of my passion for Graphic Design and Video Editing. PROmedia was my initial brand where I
delivered UEFA Champions League content, previews, highlights, dubbing, and some more stuff for more than 2 years.
You can watch 3 samples of the work done.
</p>
<a href="https://fast.wistia.com/embed/medias/nt2t4zpxps" target="_blank" class="view-button">
Watch Highlights <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
<div class="modal-preview">
<script src="https://fast.wistia.com/embed/medias/nt2t4zpxps.jsonp" async></script><script src="https://fast.wistia.com/assets/external/E-v1.js" async></script><span class="wistia_embed wistia_async_nt2t4zpxps popover=true popoverAnimateThumbnail=true" style="display:inline-block;height:184px;position:relative;width:324px"> </span>
</div>
</div>
</div>
</div>
<!-- Modal ends -->
<div id="ucl-pv" class="secondary-project ucl-pv projectdiv">
<div class="project-texts-secondary div-text-and-button">
<h3 id="ucl-pv-title" class="box-title">UEFA Champions League Preview</h3>
<nav id="ucl-pv-subtitle" class="view-button">View details</nav>
</div>
<div id="ucl-pv-bg">
</div>
</div>
<!-- Modal Starts -->
<div id="ucl-pv-modal" class="project-modal">
<div class="modal-content">
<span id='close-ucl-pv' class="close">×</span>
<div class="modal-details-web">
<div class="modal-description">
<h3>UEFA Champions League Content Delivery</h3>
<div class="title-divider"></div>
<p>This can be the beginning of my passion for Graphic Design and Video Editing. PROmedia was my initial brand where I
delivered UEFA Champions League content, previews, highlights, dubbing, and some more stuff for more than 2 years.
You can watch 3 samples of the work done.
</p>
<a href="https://www.youtube.com/watch?v=6yEN0HW__GY" class="view-button">
Watch video <i class="fa-solid fa-arrow-up-right-from-square"></i></a>
</div>
<div class="modal-preview">
<iframe width="300" height="250" src="https://www.youtube.com/embed/6yEN0HW__GY?controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen class="youtube-box"></iframe>
</div>
</div>
</div>
</div>
<!-- Modal ends -->
</div>
<div class="contact-me" id="contact">
</div>
</main>
<footer>
<div class="cta">
<h2>Do you like my work?</h2>
<a href="https://www.linkedin.com/in/fjosue4/?locale=en_US" target="_blank" class="linkedin-button">Let's connect <i class="fa-brands fa-linkedin"></i> </a>
</div>
</footer>
</body>
<script src="./js/main.js"></script>
<script src="./js/preloader.js" defer></script>
<!-- Hotjar Tracking Code for https://fjosue4.github.io/portfolio/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:3161194,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
</html>