-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1225 lines (1070 loc) · 76.1 KB
/
index.html
File metadata and controls
1225 lines (1070 loc) · 76.1 KB
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
<!-------------------
210402_1448 - Trying to see this publicly in GH Pages.
------------------->
<!doctype html>
<html class="no-js" lang="en">
<head>
<!-- title -->
<title>Michelle M. Muñoz-Dorna, Designer</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1" />
<!-- description -->
<meta name="description" content=" ">
<!-- keywords -->
<meta name="keywords" content=" ">
<!-- favicon -->
<link rel="shortcut icon" href="images-m3/favicon.png">
<link rel="apple-touch-icon" href="images-m3/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="72x72" href="images-m3/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images-m3/apple-touch-icon-114x114.png">
<!-- animation -->
<link rel="stylesheet" href="css/animate.css" />
<!-- bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<!-- et line icon -->
<link rel="stylesheet" href="css/et-line-icons.css" />
<!-- font-awesome icon -->
<link rel="stylesheet" href="css/font-awesome.min.css" />
<!-- themify icon -->
<link rel="stylesheet" href="css/themify-icons.css">
<!-- swiper carousel -->
<link rel="stylesheet" href="css/swiper.min.css">
<!-- justified gallery -->
<link rel="stylesheet" href="css/justified-gallery.min.css">
<!-- magnific popup -->
<link rel="stylesheet" href="css/magnific-popup.css" />
<!-- revolution slider -->
<link rel="stylesheet" type="text/css" href="revolution/css/settings.css" media="screen" />
<link rel="stylesheet" type="text/css" href="revolution/css/layers.css">
<link rel="stylesheet" type="text/css" href="revolution/css/navigation.css">
<!-- bootsnav -->
<link rel="stylesheet" href="css/bootsnav.css">
<!-- style -->
<link rel="stylesheet" href="css/style.css" />
<!-- responsive css -->
<link rel="stylesheet" href="css/responsive.css" />
<!--[if IE]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<!-- Added by Michelle
<link rel="stylesheet" href="css/litho-style.css" />
<link rel="stylesheet" href="css/litho-responsive.css" />
-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="_style-overwrites.css" />
</head>
<body class="">
<!-- start header --------// hamburger-menu-modern.html -->
<header>
<!-- start navigation -->
<nav class="navbar navbar-default bootsnav bg-transparent white-link navbar-top navbar-transparent-no-sticky">
<div class="container-fluid nav-header-container height-100px padding-three-half-lr sm-height-70px sm-padding-15px-lr">
<!-- start logo -->
<div class="logo-area col text-md-left pl-md-3">
<a class="logo" href="index.html">
<img src="images-m3/logo-m3orange-long-white.png" alt="M3Orange.Design">
</a>
</div>
<!-- end logo -->
</div>
<!-- End Header Navigation -->
</nav>
<!-- end navigation -->
</header>
<!-- end header ----------// hamburger-menu-modern.html -->
<!-- start video style 04 section
<section class="position-relative wow fadeIn">
<div class="opacity-medium bg-extra-dark-gray z-index-0"></div>
<video loop="" autoplay="" controls="" muted class="html-video" poster="http://placehold.it/1920x1280">
<source type="video/mp4" src="video/190515_1117 - Homepage Slider.mp4">
<source type="video/ogg" src="video/video.ogg">
<source type="video/webm" src="video/video.webm">
</video>
</section>
from video.html ------>
<!-- start hero section ---- from home-classic-one-page.html---->
<section id="section-home" class="p-0 parallax mobile-height wow fadeIn" data-stellar-background-ratio="0.5" style="">
<div class="opacity-extra-medium bg-extra-dark-gray"></div>
<div class="down-section text-center scroll-down-arrow">
<a href="#section-00" class="inner-link"><i class="ti-arrow-down icon-extra-small text-white-2 bg-deep-pink padding-15px-all sm-padding-10px-all rounded-circle"></i></a>
</div>
<div class="hero-orange-box"> Designer looking to work in experiential graphic design</div>
<!-- start HTML5 video --->
<video loop="" autoplay="" controls="" muted class="html-video" poster="http://placehold.it/1920x1280">
<source type="video/mp4" src="video/190524_1631 - PCepa - Recepcion.mp4">
<source type="video/ogg" src="video/video.ogg">
<source type="video/webm" src="video/video.webm">
</video>
<!-- end HTML5 video-->
</section>
<!-- end hero section ---- from home-classic-one-page.html---->
<!-- start parallax hero section ------ // home-classic-innovation-agency.html
<section id="section-intro" class="wow fadeIn p-0 parallax sm-background-image-center" data-stellar-background-ratio="0.5" style="" style="">
<div class="opacity-extra-medium bg-black"></div>
<div class="container-fluid position-relative full-screen">
<div class="slider-typography">
<div class="slider-text-middle-main">
<div class="slider-text-bottom">
<div class="down-section text-center scroll-down-arrow">
<a href="#section-00" class="inner-link"><i class="ti-arrow-down icon-extra-small text-white-2 bg-deep-pink padding-15px-all sm-padding-10px-all rounded-circle"></i></a>
</div>
<div class="col-12 col-xl-6 col-lg-7 float-right bg-deep-pink-opacity padding-six-lr lg-padding-seven-lr padding-five-tb sm-padding-30px-all last-paragraph-no-margin hero-header-text-box">
<div class="box-separator-line width-180px bg-white lg-width-120px md-width-90px d-none d-lg-block"></div>
<h2 class="text-white-2 width-95 md-width-100 hero-header-text">
Designer looking to work in experiential graphic design.
</h2>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<section id="section-00" class="wow fadeIn added-section-padding"> <!---- Section 00 --Degrees & Intro --->
<!------ start degree snippet ------------ home-creative-business.html-->
<div class="container" style="margin-bottom: 60px;">
<div class="row">
<!-- start feature box item -->
<div class="col-12 col-md-8 feature-box-1 sm-margin-30px-bottom wow fadeIn">
<!--
<div class="margin-5px-bottom alt-font">
<h3 class="char-value letter-spacing-minus-1 text-medium-gray font-weight-300">01.</h3>
<span class="text-large line-height-22 md-padding-15px w-100 d-table-cell align-middle">EDUCATION</span>
</div>
--->
<p class=""> <!-- <p class="width-90 lg-width-100"> -->
<ul class="education-bullets">
<li>1996, B. Arch & M. Arch / Tulane University, New Orleans</li>
<li>1998, M.S. Visual Communication / Pratt Institute (One year), NYC</li>
<li>2000, MFA Design / School of Visual Arts (SVA), NYC</li>
</ul>
</p>
<div class="separator-line-horrizontal-medium-light3 bg-deep-pink margin-5px-top float-left"></div>
</div>
<!-- end feature box item -->
</div>
</div>
<!------ end degree snippet ------------ home-creative-business.html-->
<div class="container" style="margin-bottom: 40px;">
<div class="row">
<div class="col-12 wow fadeIn" style="margin-bottom: 40px;">
<!-- <span class="text-deep-pink position-absolute left-0 top-0 alt-font special-char-extra-large d-none d-lg-block">*</span> -->
<span class="head-text text-extra-dark-gray font-weight-300 width-100 d-block line-height-90 lg-width-100">
Ever since I can remember, I have been fascinated with
<span class="under-line-01">design and functionality</span>.
</span>
</div>
</div>
</div>
<div id="section-01" class="container"> <!---- Section 01 ----->
<span class="text-extra-large text-dark-gray d-block margin-five-bottom md-margin-15px-bottom font-weight-300 number-add strike-it-line-01">01</span> <!-- This is the correct code. -->
<div class="container">
<div class="row text-center text-lg-left wow fadeInUp zoomed-paragraph">
<h4 class="text-extra-dark-gray d-inline-block font-weight-300 md-width-80 sm-width-100">
<span class="highlighted-text-01">I have always been connected to the concept of form and function, and how design is informed and shaped by how humans interact with spaces, products and processes.</span>It has always been in my nature to be curious about how things look and work, and how they can always be improved. </span></h4>
</div>
<!-- start about section ------------------// home-creative-studio.html-->
<div class="row align-items-top redesigns-area">
<div class="col-12 col-xl-1"></div>
<div class="col-12 col-xl-5 p-0 text-center text-lg-left sm-no-margin-top wow fadeInUp" data-wow-delay="0.5s" style=" ">
<div class="padding-twelve-r lsm-padding-five-top w-100">
<p class="caption-paragraph alt-font-03">Whether it be how a car radio can be intuitively operated while you're driving, to bathroom stalls latches that won't breakdown with heavy usage, or to how an elevator's interface makes it easier to determine functions in seconds...
<span class="highlighted-text-03">my architect head is always looking for ways in which to improve objects and spaces.</span>
</p>
<div class="caption-paragraph alt-font-02 redesign-text">
Things I have always been interested in re-designing
</div>
</div>
</div>
<div class="col-12 col-xl-6 wow fadeInUp" data-wow-delay="">
<div class="row wow fadeInUp" data-wow-delay="1s">
<div class="redesign-collage"><img src="images-m3/redesign-collage.jpg" class=""></div>
</div>
</div>
</div>
<!-- end about section ------------------// home-creative-studio.html-->
</div>
</div> <!--- <div id="section-01" class="container"> ---->
</section>
<!-- end about section ------------------// home-creative-simple-portfolio.html-->
<section id="section-02" class="wow fadeIn section-bg-01 added-section-padding"> <!---- Section 02 --- Adding another lightbox grid ----- SVA ----->
<div class="container">
<div class="row fadeIn">
<div class="col-12 col-lg-12 text-center text-lg-left wow fadeInUp zoomed-paragraph">
<span class="text-extra-large text-dark-gray d-block margin-five-bottom md-margin-15px-bottom font-weight-300 number-add strike-it-line-01">02</span> <!-- This is the correct code. -->
<h4 class="text-extra-dark-gray d-inline-block font-weight-300 md-width-80 sm-width-100">
<span class="highlighted-text-01">During my last year of architecture school (Tulane University), I realized that I was also passionate about visual communication, an decided to complete a Masters in Graphic Design (Pratt Institute & SVA, NYC), to properly prepare myself for environments were both disciplines would intersect.</span>
Additionally, I did an internship in the MoMA’s Exhibition Design and Planning department. With time, I would come to realize that I might prefer to work in more fluid, multidisciplinary environments with shorter lifespans, rather than working for months on end in a single building. My medium then ceased being about “making buildings” and instead became about exploring visual communication in different applications, mostly through branding, editorial (magazines & books) and interactive.
</h4>
</div>
</div>
</div>
<div class="container">
<!-- start about section ------------------// home-creative-studio.html-->
<div class="row align-items-center redesigns-area" style="">
<div class="col-12 col-xl-10 p-0 text-center text-lg-left sm-no-margin-top wow fadeInRight" data-wow-delay=".3s">
<div class="padding-five-lr lg-padding-15px-lr sm-padding-five-lr sm-padding-five-top w-100">
<!-- <h4 class="font-weight-600 alt-font text-extra-dark-gray letter-spacing-minus-1">We combine design, thinking and craft.</h4>-->
<div class="caption-paragraph-emphasis alt-font-02">Aquaviva: a 360º experiential design concept for a bar & multimedia space in San Juan, Puerto Rico</div>
<p class="caption-paragraph alt-font-03 ">
For my thesis at SVA, I combined my main areas of interests (architecture, graphic design, music and video projections) into the development of the unique experience of a space intertwined with its brand, and one that would be informed by its unique physical and cultural surroundings... its genius loci.
</p>
</div>
</div>
<div class="col-12 col-xl-2 p-0 text-center text-lg-left sm-no-margin-top wow fadeInRight" data-wow-delay=".5s">
<div class="aquaviva-cta">
<img src="images-m3/icon-cross.svg" class="project-img-gallery"/>
Click images to enlarge
</div>
<!---
<div class="aquaviva-logo-area">
<img src="images-m3/dig-anim-small-small-01.gif" alt="">
</div>
-->
<div class="aquaviva-logo-area">
<img src="images-m3/logo-aquaviva-blue.svg">
</div>
</div>
</div>
<!-- end about section ------------------// home-creative-studio.html-->
<!-- start about section ------------------// zoom-gallery.html------->
<div class="row zoom-gallery wow fadeIn aquaviva-grid" data-wow-delay="0s">
<ul class="portfolio-grid work-3col hover-option2 gutter-small w-100">
<li class="grid-sizer"></li>
<!-- start image gallery item -->
<li class="grid-item wow fadeInUp" data-wow-delay="0.7s"> <!-- grid-item-double -->
<a href="images-m3/aqua-01-large.jpg">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/aqua-01-sq.jpg" class="project-img-gallery"/></div>
<figcaption>
<div class="portfolio-hover-main text-center">
<div class="portfolio-hover-box vertical-align-middle">
<div class="portfolio-hover-content position-relative">
<i class="ti-zoom-in text-white-2 fa-2x"></i>
</div>
</div>
</div>
</figcaption>
</figure>
</a>
</li>
<!-- end image gallery item -->
<!-- start image gallery item -->
<li class="grid-item wow fadeInUp" data-wow-delay="0.8s">
<a href="images-m3/aqua-02-large.jpg">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/aqua-02-sq.jpg" class="project-img-gallery"/></div>
<figcaption>
<div class="portfolio-hover-main text-center">
<div class="portfolio-hover-box vertical-align-middle">
<div class="portfolio-hover-content position-relative">
<i class="ti-zoom-in text-white-2 fa-2x"></i>
</div>
</div>
</div>
</figcaption>
</figure>
</a>
</li>
<!-- end image gallery item -->
<!-- start image gallery item -->
<li class="grid-item wow fadeInUp" data-wow-delay="0.9s">
<a href="images-m3/aqua-03-large.jpg">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/aqua-03b-sq.jpg" class="project-img-gallery"/></div>
<figcaption>
<div class="portfolio-hover-main text-center">
<div class="portfolio-hover-box vertical-align-middle">
<div class="portfolio-hover-content position-relative">
<i class="ti-zoom-in text-white-2 fa-2x"></i>
</div>
</div>
</div>
</figcaption>
</figure>
</a>
</li>
<!-- end image gallery item -->
<!-- start image gallery item -->
<li class="grid-item wow fadeInUp" data-wow-delay="1s">
<a href="images-m3/aqua-04-large.jpg">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/aqua-04-sq.jpg"class="project-img-gallery"/></div>
<figcaption>
<div class="portfolio-hover-main text-center">
<div class="portfolio-hover-box vertical-align-middle">
<div class="portfolio-hover-content position-relative">
<i class="ti-zoom-in text-white-2 fa-2x"></i>
</div>
</div>
</div>
</figcaption>
</figure>
</a>
</li>
<!-- end image gallery item -->
<!-- start image gallery item -->
<li class="grid-item wow fadeInUp" data-wow-delay="1.1s">
<a href="images-m3/aqua-05-large.jpg">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/aqua-05-sq.jpg" class="project-img-gallery"/></div>
<figcaption>
<div class="portfolio-hover-main text-center">
<div class="portfolio-hover-box vertical-align-middle">
<div class="portfolio-hover-content position-relative">
<i class="ti-zoom-in text-white-2 fa-2x"></i>
</div>
</div>
</div>
</figcaption>
</figure>
</a>
</li>
<!-- end image gallery item -->
</ul>
</div>
<!-- end about section ------------------// zoom-gallery.html------->
</div>
</section>
<section id="section-03" class="wow fadeIn added-section-padding"> <!---- Section 03 ----- Pixelmedia Carousel ----->
<div class="container">
<div class="row fadeIn">
<div class="floating-accent-01">
</div>
<div class="col-12 col-lg-12 text-center text-lg-left wow fadeInUp zoomed-paragraph">
<span class="text-extra-large text-dark-gray d-block margin-five-bottom md-margin-15px-bottom font-weight-300 number-add-02 strike-it-line-02">03</span> <!-- This is the correct code. -->
<h4 class="text-extra-dark-gray d-inline-block font-weight-300 md-width-80 sm-width-100">
After graduating, and amid an “Internet boom”, I was presented with opportunities in interactive design and <span class="highlighted-text-01">my professional trajectory detoured from my original goal of mixing architecture with graphic design, to one of many years in advertising and marketing.</span> I had my own company Pixelmedia Inc. for five years and later worked in various global advertising agencies such as BBDO, TBWA, J Walter Thompson, Rapp NYC/Omnicom and Young & Rubicam.
<!-- During this time, I was recognized with many awards in the web and advertising industries. -->
</h4>
</div>
</div>
</div>
<!---- Begin: Carousel in single-project-page-02.html ----->
<div class="container-fluid">
<div class="swiper-arrow-right"><img src="images-m3/arrow-01.svg"></div>
<div class="row">
<div class="col-12">
<div class="swiper-carousel-01 black-move">
<div class="swiper-wrapper">
<!-- start slider item -->
<div class="swiper-slide width-55 md-width-80 sm-width-100"> <!--- width-55 was width-50 // sm-width-125 was sm-width-100 ----->
<!-- <span class="swiper-project-name-01">Nombre de proyecto</span> -->
<img src="images-m3/slider-pixel/mbme.jpg" class="width-100" alt=""/>
<!-- <div class="carousel-project-name">Banco Popular de PR (via J.W. Thompson) / 2012</div>-->
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-55 md-width-80 sm-width-100"> <!--- width-55 was width-50 // sm-width-125 was sm-width-100 ----->
<img src="images-m3/slider-pixel/mapr.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-55 md-width-80 sm-width-100"> <!--- width-55 was width-50 // sm-width-125 was sm-width-100 ----->
<!-- <span class="swiper-project-name-01">Nombre de proyecto</span> -->
<img src="images-m3/slider-pixel/various-logos-anim-04.gif" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-55 md-width-80 sm-width-100"> <!--- width-55 was width-50 // sm-width-125 was sm-width-100 ----->
<img src="images-m3/slider-pixel/pmmexhibit.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-55 md-width-80 sm-width-100"> <!--- width-55 was width-50 // sm-width-125 was sm-width-100 ----->
<img src="images-m3/slider-pixel/inmueble.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-55 md-width-80 sm-width-100"> <!--- width-55 was width-50 // sm-width-125 was sm-width-100 ----->
<img src="images-m3/slider-pixel/mecenas.jpg" class="width-100" alt=""/>
</div>
<!-- start slider item -->
<!-- start slider item
<div class="swiper-slide width-55 md-width-80 sm-width-100"> <!--- width-55 was width-50 // sm-width-125 was sm-width-100
<img src="images-m3/slider-pixel/doritos.jpg" class="width-100" alt=""/>
</div>
<div class="swiper-slide width-55 md-width-80 sm-width-100">
<img src="images-m3/slider-pixel/heineken.jpg" class="width-100" alt=""/>
</div>
start slider item -->
<div class="swiper-slide width-55 md-width-80 sm-width-100"> <!--- width-55 was width-50 // sm-width-125 was sm-width-100 ----->
<img src="images-m3/slider-pixel/onoffexhibit.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-55 md-width-80 sm-width-100"> <!--- width-55 was width-50 // sm-width-125 was sm-width-100 ----->
<img src="images-m3/slider-pixel/v2a.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<style>
.swiper-wrapper {
transition-timing-function: linear!important;
}
</style>
</div>
</div>
</div>
</div>
</div>
<!---- End: Carousel in single-project-page-02.html ----->
</section>
<section id="section-04" class="wow fadeIn added-section-padding"> <!---- Section 04 ----->
<div class="container">
<div class="row fadeIn">
<div class="col-12 col-lg-12 text-center text-lg-left wow fadeInUp zoomed-paragraph">
<span class="text-extra-large text-dark-gray d-block margin-five-bottom md-margin-15px-bottom font-weight-300 number-add strike-it-line-01">04</span> <!-- This is the correct code. -->
<h4 class="text-extra-dark-gray d-inline-block font-weight-300 md-width-80 sm-width-100">
<span class="highlighted-text-01">Beyond mere visual communication, my interests in user-centered designed organically took me more to online usability and away from simply "selling products". </span> Always using my “architect head”, I became very proficient in the user optimzation of websites and mobile apps: from the minimum size of a button to be comfortably clicked in a mobile device, to how to better organize complex data in a bank’s website so that information retrieval is more intuitive.
<span class="highlighted-text-01">Since 2015, I have specialized myself in user experience and interface design (UX/UI) as a freelance designer, mostly in projects for V2A Consultants.</span>
</h4>
</div>
</div>
</div>
<div class="portfolio-grid-container container ">
<div class="row">
<div class="col-12 px-3 p-md-0">
<div class="filter-content overflow-hidden grid-portfolio">
<ul class="portfolio-grid portfolio-metro-grid work-4col metro-gallery hover-option2 gutter-medium lightbox-portfolio ux-portfolio-grid">
<li class="grid-sizer"></li>
<!-- start portfolio item -->
<li class="grid-item web design grid-item-double wow zoomIn">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/stack-01.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/stack-01-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item web design wow zoomIn">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/stack-02.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/stack-02-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item design branding wow zoomIn" data-wow-delay="0.4s">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/dmambo-01-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/dmambo-01-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item web branding wow zoomIn" data-wow-delay="0.2s">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/virtual-01-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/virtual-01-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i>
<div class="metro-grid-caption-01">
</div></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item web branding wow zoomIn" data-wow-delay="0.4s">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/virtual-02-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/virtual-02-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i>
<div class="metro-grid-caption-01">
</div></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item branding advertising wow zoomIn" data-wow-delay="0.2s">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/nissan-01-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/nissan-01-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item branding advertising wow zoomIn" data-wow-delay="0.2s">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/atec-02-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/atec-02-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item web design grid-item-double wow zoomIn">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/atec-01-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/atec-01-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!--
<li class="grid-item photography advertising wow zoomIn grid-item-double" data-wow-delay="0.4s">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/akc-01-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" title=" " href="images-m3/akc-01-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
-->
<!-- start portfolio item -->
<li class="grid-item photography advertising wow zoomIn" data-wow-delay="0.4s">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/akc-01-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/akc-01-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item photography advertising wow zoomIn" data-wow-delay="0.4s">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/akc-02-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/akc-02-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item photography advertising wow zoomIn" data-wow-delay="0.6s">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/akc-03-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/akc-03-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item web branding wow zoomIn" data-wow-delay="0.2s">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/cst-01-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/cst-01-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i>
<div class="metro-grid-caption-01">
</div></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item web branding wow zoomIn" data-wow-delay="0.2s">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/cst-02-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/cst-02-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i>
<div class="metro-grid-caption-01">
</div></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
<!-- start portfolio item -->
<li class="grid-item web branding wow zoomIn" data-wow-delay="0.2s">
<figure>
<div class="portfolio-img bg-deep-pink"><img src="images-m3/cst-03-sq.jpg" alt=""></div>
<figcaption>
<div class="portfolio-hover-main">
<div class="portfolio-hover-box align-middle">
<div class="portfolio-icon">
<a class="gallery-link" href="images-m3/cst-03-large.jpg"><i class="ti-zoom-in text-white-2 fa-2x" aria-hidden="true"></i>
<div class="metro-grid-caption-01">
</div></a>
</div>
</div>
</div>
</figcaption>
</figure>
</li>
<!-- end portfolio item -->
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="section-05" class="wow fadeIn added-section-padding"> <!---- Section 05 ----->
<div class="container">
<div class="row fadeIn">
<div class="floating-accent-01">
</div>
<div class="col-12 col-lg-12 text-center text-lg-left wow fadeInUp zoomed-paragraph">
<span class="text-extra-large text-dark-gray d-block margin-five-bottom md-margin-15px-bottom font-weight-300 number-add strike-it-line-01">05</span> <!-- This is the correct code. -->
<h4 class="text-extra-dark-gray d-inline-block font-weight-300 md-width-80 sm-width-100">
During this period I have realized that I have been able to excel as a UX/UI designer precisely because of my passion with functionality and
efficiency, and that I tend to naturally gravitate towards technology-related projects because I’m able to easily move around new mediums & technologies.
<span class="highlighted-text-03">But I miss doing so within the environment I’m most passionate about: architecture.</span>
</h4>
<div class="row">
<div class="col-8 col-xl-8 col-12 text-center text-lg-left sm-no-margin-top wow fadeInRight" data-wow-delay="1s">
<div class="padding-twelve-r lsm-padding-five-top w-100">
<p class="caption-paragraph alt-font-03">
In 2014 I started to leap into architecture and applied to places like IA Interior Architects and Gensler (where I interviewed twice for a position in either branding or in EGD). But I realized a move to another discipline while also moving out of PR was too big of a change at that moment, and I desisted all together and remained in my "UX/UI comfort zone".
</p>
</div>
</div>
<!--
<div class="col-6 col-xl-6 col-12 text-center text-lg-left sm-no-margin-top wow fadeInRight" data-wow-delay="1s">
<div class="padding-twelve-r lsm-padding-five-top w-100">
<p class="caption-paragraph alt-font-03">ARREGLAR: To this day, when someone asks “what do you do”, I cringe when I say “graphic designer”, because I’ve always considered myself an architect and I have yet to fully practice in this field.
</p>
</div>
</div>
-->
</div>
</div>
</div>
</div>
</section>
<!-- start parallax section -------- home-portfolio-parallax.html ----->
<section id="parallax-section-01" class="p-0 parallax sm-background-image-center cover-background" data-stellar-background-ratio="0.5" style="background-image:url('images-m3/puracepa-parallax.jpg');">
<div class="container-fluid position-relative lg-height-600px md-height-700px sm-height-450px">
<!-- one-third-screen ---->
<div class="parallax-text-row">
<div class="row fadeIn">
<div class="col-12 col-lg-5 wow flipInY zoomed-paragraph" data-wow-delay="0.5s">
<!-- start blockquote -->
<div class="bg-deep-pink text-left text-white-2 padding-eight-all position-relative z-index-5 sm-padding-twelve-tb sm-padding-five-lr">
<span class="special-char-medium text-white-2 absolute-middle-center position-absolute fas fa-quote-left"></span>
<h6 class="font-weight-300 mb-0">
I now want to focus on working in Experiential Graphic Design...
</h6>
</div>
<!-- end blockquote -->
</div><!-- col-12 col-lg-5 wow fadeInUp zoomed-paragraph -->
</div> <!--- row fadeIn -->
</div> <!--parallax-text-row-->
</div> <!--container-->
<div class="parallax-inline-title">
Pura Cepa • Cannabis dispensary in Old San Juan
</div>
</section>
<!-- end parallax section ----------- home-portfolio-parallax.html ----->
<section id="parallax-section-02" class="parallax sm-background-image-center cover-background" data-stellar-background-ratio="0.5">
<div class="container-fluid one-half-screen position-relative lg-height-1200px md-height-1200px">
<div class="parallax-text-row">
<div class="row">
<div class="wow fadeInUp" >
<!-- start blockquote -->
<div class="bg-deep-pink text-left text-white-2 padding-eight-all position-relative z-index-5 sm-padding-twelve-tb sm-padding-five-lr">
<span class="special-char-medium text-white-2 absolute-middle-center position-absolute fas fa-quote-left"></span>
<h6 class="font-weight-300 mb-0">
...in all instances in which space and graphics intersect.
</h6>
<div class="bullets-01 wow flipInY" data-wow-delay="0.8s">
<ul>
<li>Spatial Branding</li>
<li>Wayfinding/Signage</li>
<li>Museum Exhibitions</li>
<li>Retail & Hospitality</li>
<li>Custom Fabrics & Wall Covering</li>
</ul>
</div>
</div>
<!-- end blockquote -->
</div><!-- col-12 col-lg-5 wow fadeInUp zoomed-paragraph -->
</div>
</div>
</div> <!-- container-fluid one-half-screen --->
<!---- Begin: Carousel in single-project-page-02.html ----->
<div class="container">
<div class="parallax-project-name">
<span class="highlighted-text-03">Secco</span>Concept for a Dry Bar
</div>
<!--
<div class="swiper-arrow-right"><img src="images-m3/arrow-01.svg"></div>
-->
<div class="row">
<div class="col-12">
<div class="swiper-carousel-01 black-move">
<div class="swiper-wrapper">
<!-- start slider item -->
<div class="swiper-slide width-70 md-width-80 sm-width-95"> <!--- width-55 was width-50 // sm-width-125 was sm-width-100 ----->
<!-- <span class="swiper-project-name-01">Nombre de proyecto</span> -->
<img src="images-m3/slider-secco/01.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-70 md-width-80 sm-width-95">
<!-- <span class="swiper-project-name-01">Nombre de proyecto</span> -->
<img src="images-m3/slider-secco/02.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-70 md-width-80 sm-width-95">
<!-- <span class="swiper-project-name-01">Nombre de proyecto</span> -->
<img src="images-m3/slider-secco/03.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-70 md-width-80 sm-width-95">
<!-- <span class="swiper-project-name-01">Nombre de proyecto</span> -->
<img src="images-m3/slider-secco/06.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-70 md-width-80 sm-width-95">
<!-- <span class="swiper-project-name-01">Nombre de proyecto</span> -->
<img src="images-m3/slider-secco/04.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
</div>
</div>
</div>
</div>
</div>
<!---- End: Carousel in single-project-page-02.html ----->
</section>
<section id="parallax-section-03" class="parallax sm-background-image-center cover-background" data-stellar-background-ratio="0.5">
<div class="container-fluid one-half-screen position-relative lg-height-1200px md-height-1200px">
<div class="parallax-text-row">
<div class="row fadeIn">
<div class="wow flipInY" data-wow-delay="0.2s">
<!-- start blockquote -->
<div class="bg-deep-pink text-left text-white-2 padding-eight-all position-relative z-index-5 sm-padding-twelve-tb sm-padding-five-lr">
<span class="special-char-medium text-white-2 absolute-middle-center position-absolute fas fa-quote-left"></span>
<h6 class="font-weight-300 mb-0">
I want to put my talent and experience in the service of design with a higher role and impact on every day life...
</h6>
</div>
<!-- end blockquote -->
</div><!-- col-12 col-lg-5 wow fadeInUp zoomed-paragraph -->
</div>
</div>
</div> <!-- container-fluid one-half-screen --->
<!---- Begin: Carousel in single-project-page-02.html ----->
<div class="container">
<div class="parallax-project-name">
<span class="highlighted-text-03">Tropicalia</span>Concept for a Latin Restaurant & Coffee Bar located in the US
</div>
<div class="row">
<div class="col-12">
<div class="swiper-carousel-01 black-move">
<div class="swiper-wrapper">
<!-- start slider item -->
<div class="swiper-slide width-70 md-width-80 sm-width-95"> <!--- width-55 was width-50 // sm-width-125 was sm-width-100 ----->
<!-- <span class="swiper-project-name-01">Nombre de proyecto</span> -->
<img src="images-m3/slider-tropicalia/01b.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-70 md-width-80 sm-width-95">
<!-- <span class="swiper-project-name-01">Nombre de proyecto</span> -->
<img src="images-m3/slider-tropicalia/02b.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-70 md-width-80 sm-width-95">
<!-- <span class="swiper-project-name-01">Nombre de proyecto</span> -->
<img src="images-m3/slider-tropicalia/03.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
<!-- start slider item -->
<div class="swiper-slide width-70 md-width-80 sm-width-95">
<!-- <span class="swiper-project-name-01">Nombre de proyecto</span> -->
<img src="images-m3/slider-tropicalia/04.jpg" class="width-100" alt=""/>
</div>
<!-- end slider item -->
</div>
</div>
</div>
</div>
</div>
<!---- End: Carousel in single-project-page-02.html ----->
</section>
<section id="parallax-section-04" class="parallax sm-background-image-center cover-background" data-stellar-background-ratio="0.5">
<div class="container-fluid one-half-screen position-relative lg-height-1200px md-height-1200px">