-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1057 lines (1040 loc) · 76.2 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 charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#153CB9">
<title>CSJ&Co. 🤓 | Christian San Jose</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<link rel="shortcut icon" href="./favicon.png" sizes="16x16" type="image/x-icon">
<link rel="icon" href="./favicon.png" sizes="16x16" type="image/x-icon">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="backdrop"> </div>
<div class="popup" data-popup-target="freeConsultation">
<div class="popup__inner">
<div class="popup__content">
<i class="fas fa-times popup__close" data-popup-trigger="freeConsultation"></i>
<div class="popup__main">
<div class="popup__to-hide">
<div class="text-center u-padding-horizontal-med-2 popup__main-intro">
<h2 class="u-margin-bottom-med">Schedule a free 15-min.<span class="d-none d-md-inline"> </span><br class="d-block d-md-none">consultation</h2>
<p>In a short voice or video call, we’ll discuss your needs, whether it's fixing your website, app, brand, or growing your business. I’ll give my expert POV & possible solutions, so you can finally focus on what matters most: <b>your company & customers</b>.</p>
</div>
<form action="#" method="post" class="form">
<div class="row form__row">
<div class="col-6 form__column">
<input type="text" name="freeConsultation-first-name" placeholder="First name" required>
</div>
<div class="col-6 form__column">
<input type="text" name="freeConsultation-last-name" placeholder="Last name" required>
</div>
<div class="col-6 form__column">
<input type="email" name="freeConsultation-email" placeholder="Email" required>
</div>
<div class="col-6 form__column">
<input type="tel" name="freeConsultation-mobile-number" placeholder="Mobile number" required>
</div>
<div class="col-12 form__column">
<input type="text" name="freeConsultation-company-name" placeholder="Your Company's name" required>
</div>
<div class="col-12 form__column">
<input type="text" name="freeConsultation-hours-reach" placeholder="When are the best hours to reach you? (Ex. Mon-Wed 3pm)" required>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="form__cta">
<p class="paragraph--md u-color-error u-margin-bottom-smallest form__message"><b>All fields are required.</b></p>
<p class="paragraph--alt">By submitting this form, you opt-in for<br>occasional updates & UX freebies via email.</p>
<button class="btn" type="submit"><span class="u-weight-reg">Get your</span> free consultation</button>
<p class="paragraph--alt u-color-gray-lgt-2">Your information will never be shared with anybody else. I’m just<span class="d-md-none"> </span><br class="d-none d-md-block">making sure you’re not a robot, and the info submitted isn’t bogus.</p>
</div>
</div>
</div>
</form>
</div>
<div class="popup__message u-padding-horizontal-med-2">
<h2 class="u-margin-bottom-med">That was quick!<span class="d-none d-md-inline"> </span><br class="d-block d-md-none">Thank you!</h2>
<p class="paragraph--alt">I’m <b>looking forward to working with you</b>. I make sure to read all my emails daily—you’ll receive a response as soon as I get to yours.</p>
</div>
</div>
<div class="popup__sub">
<div class="popup__to-hide">
<p class="paragraph--md">You can also email me directly:<span class="d-none d-md-inline"> </span><br class="d-block d-md-none"><a href="mailto:[email protected]" class="u-color-dark u-underline"><b>[email protected]</b></a></p>
</div>
<div class="popup__message">
<p class="paragraph--md">Just in case you missed it, <br class="d-none d-md-block">here’s <br class="d-md-none">my email: <a href="mailto:[email protected]" class="u-color-dark u-underline"><b>[email protected]</b></a></p>
</div>
</div>
<div class="popup__extra popup__to-hide">
<div class="u-padding-horizontal-med-2 u-margin-bottom-small">
<h2>Book a 2-hour<span class="d-none d-md-inline"> </span><br class="d-block d-md-none">consultation</h2>
<p class="paragraph--md u-margin-vertical-med">In a span of 2 hours, we’ll solve your most pressing problems.</p>
<p class="paragraph--alt u-color-gray-lgt">I can advise you on design, user experience, branding, marketing, hiring, career or anything digital. We can even brainstorm or design at your office. This can be done in-person, or via video call, depending on availability, & we can plan beforehand as well. 😃</p>
</div>
<div class="d-md-flex align-items-center justify-content-center">
<div class="u-margin-bottom-small u-margin-md-bottom-null u-margin-md-right-med-3">
<h4 class="heading-quaternary--md u-color-primary"><b>USD 399</b></h4>
<p class="paragraph--md">approx. PhP 20K+</p>
</div>
<a href="#" class="btn btn--ghost">🔒 <span class="u-weight-reg">Book a</span> 2-hour consultation</a>
</div>
</div>
</div>
</div>
</div>
<div class="popup" data-popup-target="downloadProfile">
<div class="popup__inner">
<div class="popup__content">
<i class="fas fa-times popup__close" data-popup-trigger="downloadProfile"></i>
<div class="popup__main">
<div class="popup__to-hide">
<div class="text-center u-padding-horizontal-med-2 popup__main-intro">
<h2 class="u-margin-bottom-med">Download my profile</h2>
<p>My profile will be sent to you via email, after filling up this form.<span class="d-md-none"> </span><br class="d-none d-md-block">I’ll also send to you a PDF, containing <b>5 case studies</b> of my best work.</p>
</div>
<form action="#" method="post" class="form">
<div class="row form__row">
<div class="col-6 form__column">
<input type="text" name="downloadProfile-first-name" placeholder="First name" required>
</div>
<div class="col-6 form__column">
<input type="text" name="downloadProfile-last-name" placeholder="Last name" required>
</div>
<div class="col-6 form__column">
<input type="email" name="downloadProfile-email" placeholder="Email" required>
</div>
<div class="col-6 form__column">
<input type="tel" name="downloadProfile-mobile-number" placeholder="Mobile number" required>
</div>
<div class="col-12 form__column">
<input type="text" name="downloadProfile-company-name" placeholder="Your Company's name" required>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="form__cta">
<p class="paragraph--md u-color-error u-margin-bottom-smallest form__message"><b>All fields are required.</b></p>
<p class="paragraph--alt">By submitting this form, you opt-in for<br>occasional updates & UX freebies via email.</p>
<button class="btn" type="submit"><span class="u-weight-reg">Request for</span> my profile</button>
<p class="paragraph--alt u-color-gray-lgt-2">Your information will never be shared with anybody else. I’m just<span class="d-md-none"> </span><br class="d-none d-md-block">making sure you’re not a robot, and the info submitted isn’t bogus.</p>
</div>
</div>
</div>
</form>
</div>
<div class="popup__message u-padding-horizontal-med-2">
<h2 class="u-margin-bottom-med">That was quick!<span class="d-none d-md-inline"> </span><br class="d-block d-md-none">Thank you!</h2>
<p class="paragraph--alt">I’m <b>looking forward to working with you</b>. I make sure to read all my emails daily—you’ll receive a response as soon as I get to yours.</p>
</div>
</div>
<div class="popup__sub">
<div class="popup__to-hide">
<p class="paragraph--md">You can also email me directly:<span class="d-none d-md-inline"> </span><br class="d-block d-md-none"><a href="mailto:[email protected]" class="u-color-dark u-underline"><b>[email protected]</b></a></p>
</div>
<div class="popup__message">
<p class="paragraph--md">Just in case you missed it, <br class="d-none d-md-block">here’s <br class="d-md-none">my email: <a href="mailto:[email protected]" class="u-color-dark u-underline"><b>[email protected]</b></a></p>
</div>
</div>
</div>
</div>
</div>
<div class="popup" data-popup-target="workTogether">
<div class="popup__inner">
<div class="popup__content">
<i class="fas fa-times popup__close" data-popup-trigger="workTogether"></i>
<div class="popup__main">
<div class="popup__to-hide">
<div class="text-center u-padding-horizontal-med-2 popup__main-intro">
<h2 class="u-margin-bottom-med">Let’s work together</h2>
<p>Fill up the form below, & let’s discuss your needs, whether its fixing your website, app,
brand, or growing your business. I’ll give my expert POV & possible solutions, so you can
finally focus on what matters most: <b>your company & customers</b>.</p>
</div>
<form action="#" method="post" class="form">
<div class="row form__row">
<div class="col-6 form__column">
<input type="text" name="workTogether-first-name" placeholder="First name" required>
</div>
<div class="col-6 form__column">
<input type="text" name="workTogether-last-name" placeholder="Last name" required>
</div>
<div class="col-6 form__column">
<input type="email" name="workTogether-email" placeholder="Email" required>
</div>
<div class="col-6 form__column">
<input type="tel" name="workTogether-mobile-number" placeholder="Mobile number"
required>
</div>
<div class="col-12 form__column">
<input type="text" name="workTogether-company-name" placeholder="Your Company's name"
required>
</div>
<div class="col-12 form__column">
<input type="text" name="workTogether-budget" placeholder="Do you have a budget in mind? *"
required>
</div>
<div class="col-12 form__column">
<input type="text" name="workTogether-hours-reach" placeholder="When are the best hours to reach you? (Ex. Mon-Wed 3pm)"
required>
</div>
<div class="col-12 form__column">
<textarea name="workTogether-description" placeholder="Describe your problem or need. What’s your most pressing issue that, if solved, will allow you to succeed?" required></textarea>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="form__cta">
<p class="paragraph--md u-color-error u-margin-bottom-smallest form__message"><b>All fields are required.</b></p>
<p class="paragraph--alt">By submitting this form, you opt-in for<br>occasional
updates & UX freebies via email.</p>
<button class="btn" type="submit">Submit your inquiry</button>
<p class="paragraph--alt u-color-gray-lgt-2">Your information will never be
shared with anybody else. I’m just<span class="d-md-none"> </span><br
class="d-none d-md-block">making sure you’re not a robot, and the info
submitted isn’t bogus.</p>
</div>
</div>
</div>
</form>
</div>
<div class="popup__message u-padding-horizontal-med-2">
<h2 class="u-margin-bottom-med">That was quick!<span class="d-none d-md-inline"> </span><br
class="d-block d-md-none">Thank you!</h2>
<p class="paragraph--alt">I’m <b>looking forward to working with you</b>. I make sure to read all
my emails daily—you’ll receive a response as soon as I get to yours.</p>
</div>
</div>
<div class="popup__sub">
<div class="popup__to-hide">
<p class="paragraph--md">You can also email me directly:<span class="d-none d-md-inline"> </span><br
class="d-block d-md-none"><a href="mailto:[email protected]" class="u-color-dark u-underline"><b>[email protected]</b></a></p>
</div>
<div class="popup__message">
<p class="paragraph--md">Just in case you missed it, <br class="d-none d-md-block">here’s <br class="d-md-none">my
email: <a href="mailto:[email protected]" class="u-color-dark u-underline"><b>[email protected]</b></a></p>
</div>
</div>
<div class="popup__extra popup__to-hide">
<div class="u-padding-horizontal-med-2">
<p class="paragraph--md u-margin-bottom-small-3"><b>*Why ask</b> for budget?</p>
<p class="paragraph--alt u-color-gray-lgt">Let’s say you have only $2,000 to work with. We won’t
shoot ourselves in the foot by making a full-blown app or website, built by rushed &
unmotivated workers (based on industry data & rates). Instead, that amount would be more than
enough to get you 2x-3x more customers via effective Facebook Ads.<br><br>Let’s grow your
business, in the most efficient way possible.</p>
</div>
</div>
</div>
</div>
</div>
<!--
samples: "1175aacc5c",
workTogether: "25cd0c56dd",
freeConsultation: "72f28e8bb6",
downloadProfiles: "6fa324f2ef"
-->
<div class="popup" data-popup-target="samples">
<div class="popup__inner">
<div class="popup__content">
<i class="fas fa-times popup__close" data-popup-trigger="samples"></i>
<div class="popup__main">
<div class="popup__to-hide">
<div class="text-center u-padding-horizontal-med-2 popup__main-intro">
<h2 class="u-margin-bottom-med">Request to view samples of my work</h2>
<p>Due to the confidentiality, case studies of my work can only be sent privately via email, <b>upon request</b>.</p>
</div>
<form action="./forms/samples.php" method="post" class="form">
<div class="row form__row">
<div class="col-6 form__column">
<input type="text" name="firstName" placeholder="First name" required>
</div>
<div class="col-6 form__column">
<input type="text" name="lastName" placeholder="Last name" required>
</div>
<div class="col-6 form__column">
<input type="email" name="email" placeholder="Email" required>
</div>
<div class="col-6 form__column">
<input type="tel" name="mobileNumber" placeholder="Mobile number"
required>
</div>
<div class="col-12 form__column">
<input type="text" name="companyName" placeholder="Your Company's name"
required>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="form__cta">
<p class="paragraph--md u-color-error u-margin-bottom-smallest form__message"><b>All fields are required.</b></p>
<p class="u-lh-lg u-margin-bottom-med">What you’ll receive via email: a PDF containing <b>5 case studies</b><span class="d-sm-none"> </span><br
class="d-none d-sm-block">of my best work, & a short profile about me.</p>
<p class="paragraph--alt">By submitting this form, you opt-in for<br>occasional
updates & UX freebies via email.</p>
<button class="btn" type="submit"><span class="u-weight-reg">Request to</span> view work samples</button>
<p class="paragraph--alt u-color-gray-lgt-2">Your information will never be
shared with anybody else. I’m just<span class="d-md-none"> </span><br
class="d-none d-md-block">making sure you’re not a robot, and the info
submitted isn’t bogus.</p>
</div>
</div>
</div>
</form>
</div>
<div class="popup__message u-padding-horizontal-med-2">
<h2 class="u-margin-bottom-med">That was quick!<span class="d-none d-md-inline"> </span><br
class="d-block d-md-none">Thank you!</h2>
<p class="paragraph--alt">I’m <b>looking forward to working with you</b>. I make sure to read all
my emails daily—you’ll receive a response as soon as I get to yours.</p>
</div>
</div>
<div class="popup__extra popup__to-hide">
<div class="u-padding-horizontal-med-2">
<h2>Request for specific work</h2>
<p class="paragraph--md-3 u-margin-vertical-med">You can also request for specific types of work, if it’s available.<span class="d-sm-none"> </span><br
class="d-none d-sm-block">Send an email directly: <a href="mailto:[email protected]" class="u-color-dark u-underline"><b>[email protected]</b></a></p>
<div class="row">
<div class="col-12 col-md-10 offset-md-1 col-lg-8 offset-lg-2">
<p class="paragraph--alt u-color-gray-lgt">I’ve done 150+ logos, 250+ websites, 100+ full-blown digital campaigns, among others. I can curate samples of work specifically for you, depending on confidentiality & availability.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="menu">
<div class="menu__main">
<div class="container">
<div class="row">
<div class="col-12">
<div class="menu__header">
<a href="#" class="header__logo">C<span class="header__logo-name">hristian </span>S<span class="header__logo-name">an </span>J<span class="header__logo-name">ose </span><span class="header__logo-company">&Co.</span></a>
<i class="fas fa-times menu__close" menu-trigger></i>
</div>
<ul class="menu__list">
<li><h4 class="u-color-white heading-quaternary--lg menu__item">Download my <b class="u-weight-dem" data-popup-trigger="downloadProfile">profile</b></h4></li>
<li><h4 class="u-color-white heading-quaternary--lg menu__item" data-scroll-to="services">How can I <b class="u-weight-dem">help</b>?</h4></li>
<li><h4 class="u-color-white heading-quaternary--lg menu__item" data-scroll-to="work">View samples of <b class="u-weight-dem">my work</b></h4></li>
<li><h4 class="u-color-white heading-quaternary--lg menu__item" data-scroll-to="workshops">Join my upcoming <b class="u-weight-dem">workshops</b></h4></li>
</ul>
</div>
</div>
</div>
</div>
<div class="menu__contact">
<div class="container">
<div class="row">
<div class="col-12">
<h5 class="u-font-main-mono u-weight-reg u-margin-bottom-smallest-3"><a href="mailto:[email protected]" class="u-color-white">💌 [email protected]</a></h5>
<h5 class="u-font-main-mono u-weight-reg u-margin-bottom-smallest"><a href="tel:639178170500" class="u-color-white">📱 +639178170500</a></h5>
<a href="#" class="btn btn--drk menu__btn" data-popup-trigger="freeConsultation"><span class="u-weight-reg">Book a</span> free consultation</a>
</div>
</div>
</div>
</div>
</div>
<header class="header">
<div class="header__headline">
<div class="container">
<div class="row">
<div class="col-12">
<p class="paragraph--md u-color-white">📲 <a href="#" class="u-color-white u-underline u-weight-med" data-popup-trigger="freeConsultation">Book a free 15-min. consultation</a><span class="d-none d-md-inline">, & let’s chat about fixing your site, app, or brand.</span> ⏳ Few slots left!<span class="d-none d-md-inline">, <a href="#" class="u-weight-med u-color-white u-underline" data-popup-trigger="freeConsultation">schedule now</a>! →</span></p>
</div>
</div>
</div>
</div>
<div class="header__main">
<div class="container">
<div class="row">
<div class="col-12">
<div class="header__content">
<div class="header__logo-wrapper">
<a href="#" class="header__logo header__logo--trigger">CSJ&Co <span class="d-none d-md-inline">🤓</span></a>
<a href="#" class="header__logo header__logo--hover">Christian San Jose <span class="d-none d-md-inline">🤓</span></a>
</div>
<div class="header__content-actions">
<a href="#" class="header__btn btn btn--ghost" data-popup-trigger="downloadProfile">Download my profile</a>
<button class="header__trigger" menu-trigger>
<div class="header__trigger-lines">
<span class="header__trigger-line"></span>
<span class="header__trigger-line"></span>
<span class="header__trigger-line"></span>
</div>
<small class="header__trigger-label">Menu</small>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<main>
<section class="hero">
<div class="container">
<div class="row">
<div class="col-6 col-sm-7 hero__main">
<h4 class="hero__subtitle wow animated fadeInUp">Hi there! My name is</h4>
<h1 class="wow animated fadeInUp">Christian San Jose, <br class="d-none d-md-block">& I'm a UX expert.</h1>
<div class="d-none d-md-block">
<p class="paragraph--xl hero__copy wow animated fadeInUp">I help leaders, owners, & brands grow their <span class="d-none d-lg-block"></span>business 10x, by advising on <b>user experience</b> & <span class="d-none d-lg-block"></span><b>marketing</b>. I also love coaching young professionals <span class="d-none d-lg-block"></span>so that they can maximize their <b>digital careers</b>.</p>
<div class="hero__btns">
<a href="#" class="btn wow animated fadeInUp hero__btn-hover-trigger" data-wow-delay=".5s" data-popup-trigger="freeConsultation"><span class="u-weight-reg">Book a</span> free consultation</a>
<a href="#" class="btn btn--ghost wow animated fadeInUp" data-scroll-to="services" data-wow-delay=".75s"><span class="u-weight-reg">How can I</span> help<span class="u-weight-reg">? 👇</span></a>
</div>
<p class="paragraph--md u-color-gray-lgt hero__btn-hover-message">If you’re interested, we can discuss how your business can grow by improving UX, <br class="d-none d-lg-block">in a <b>short 15-min call</b>. We’ll quickly see if we’re a good fit, & if not, we’ll move on 😊</p>
</div>
</div>
<div class="col-6 col-sm-5 text-right u-position-relative">
<img src="images/profile-image.png" alt="Image of Christian San Jose" class="hero__profile" title="It's me, Christian!">
<img src="images/hero-shapes.png" alt="Shapes" class="hero__profile-shapes">
</div>
<div class="col-12 d-md-none text-center">
<p class="paragraph--xl hero__copy wow animated fadeInUp">I help leaders, owners, & brands grow their business 10x, by advising on <b>user experience</b> & <b>marketing</b>. I also love coaching young professionals so that they can maximize their <b>digital careers</b>.</p>
<div class="hero__btns">
<a href="#" class="btn wow animated fadeInUp" data-wow-delay=".5s" data-popup-trigger="freeConsultation"><span class="u-weight-reg">Book a</span> free consultation</a>
<a href="#" class="btn btn--ghost wow animated fadeInUp" data-scroll-to="services" data-wow-delay=".75s"><span class="u-weight-reg">How can I</span> help<span class="u-weight-reg">? 👇</span></a>
</div>
</div>
</div>
</div>
</section>
<section class="services" data-scroll-target="services">
<img src="images/services-shapes-1.png" alt="Shapes" class="services__shapes services__shapes--top">
<img src="images/services-shapes-2.png" alt="Shapes" class="services__shapes services__shapes--bottom">
<div class="container">
<div class="row">
<div class="col-12 text-center text-md-left services__title">
<h5>What problem do you need to solve?</h5>
</div>
</div>
<div class="row services__items">
<div class="col-12 col-md-6 col-lg-4 services__item">
<a href="#" class="services__item-inner">
<i class="services__item-icon">💻</i>
<p class="services__item-text">Need an experienced designer, or design team, that will help you refresh your website, to differentiate you from the competition?</p>
<h2 class="services__item-title">Website Planning, <br class="d-none d-md-block">Design & <br class="d-none d-md-block">Development</h2>
<p class="paragraph--alt u-weight-med u-color-primary">Learn more →</p>
</a>
</div>
<div class="col-12 col-md-6 col-lg-4 services__item">
<a href="#" class="services__item-inner">
<i class="services__item-icon">📆</i>
<p class="services__item-text">Need to *quickly* solve your company or product’s pain points as a team, so you can be pointed in the right direction, & save months of possible headaches?</p>
<h2 class="services__item-title">UX Workshops, Training, & <br class="d-none d-md-block">Consultation</h2>
<p class="paragraph--alt u-weight-med u-color-primary">Learn more →</p>
</a>
</div>
<div class="col-12 col-md-6 col-lg-4 services__item">
<a href="#" class="services__item-inner">
<i class="services__item-icon">🎭</i>
<p class="services__item-text">Having problems with your new platform, with users not interacting with your app or website as well as you have hoped?</p>
<h2 class="services__item-title">User Experience <br class="d-none d-md-block">& Expert UX <br class="d-none d-md-block">Evaluations</h2>
<p class="paragraph--alt u-weight-med u-color-primary">Learn more →</p>
</a>
</div>
<div class="col-12 col-md-6 col-lg-4 services__item d-none d-md-block">
<a href="#" class="services__item-inner">
<i class="services__item-icon">🛠</i>
<p class="services__item-text">Having a hard time hiring? Or, do you already have a team, but can’t figure out how to motivate them, so that they can produce their best work?</p>
<h2 class="services__item-title">Building UX & Development <br class="d-none d-md-block">Teams</h2>
<p class="paragraph--alt u-weight-med u-color-primary">Learn more →</p>
</a>
</div>
<div class="col-12 col-md-6 col-lg-4 services__item d-none d-md-block">
<a href="#" class="services__item-inner">
<i class="services__item-icon">🎨</i>
<p class="services__item-text">Need help to refresh your business’ branding, and make your logo, printed materials, typography, tone & voice of your messaging all cohesive?</p>
<h2 class="services__item-title">Branding <br class="d-none d-md-block">& Creative <br class="d-none d-md-block">Direction</h2>
<p class="paragraph--alt u-weight-med u-color-primary">Learn more →</p>
</a>
</div>
<div class="col-12 col-md-6 col-lg-4 services__item d-none d-md-block">
<a href="#" class="services__item-inner">
<i class="services__item-icon">📱</i>
<p class="services__item-text">Need a second opinion on your product’s UI design library, if it’s consistent, usable, & aesthetically congruent with the rest of your brand?</p>
<h2 class="services__item-title">UI for Apps <br class="d-none d-md-block">& Product <br class="d-none d-md-block">Design</h2>
<p class="paragraph--alt u-weight-med u-color-primary">Learn more →</p>
</a>
</div>
<div class="col-12 col-md-6 col-lg-4 services__item d-none d-md-block">
<a href="#" class="services__item-inner">
<i class="services__item-icon services__item-icon--alt">⚡️</i>
<p class="paragraph--alt services__item-text services__item-text--alt">Tired of long development cycles that take forever, before your app is even seen & tested by actual users?</p>
<h2 class="services__item-title">Design Sprints</h2>
<p class="paragraph--alt u-weight-med u-color-primary">Learn more →</p>
</a>
</div>
<div class="col-12 col-md-6 col-lg-4 services__item d-none d-md-block">
<a href="#" class="services__item-inner">
<i class="services__item-icon services__item-icon--alt">🎯</i>
<p class="paragraph--alt services__item-text services__item-text--alt">Are you selling digital or physical products online, but not enough people visit your site or convert?</p>
<h2 class="services__item-title">Facebook Strategy</h2>
<p class="paragraph--alt u-weight-med u-color-primary">Learn more →</p>
</a>
</div>
<div class="col-12 col-md-6 offset-md-3 col-lg-4 offset-lg-0 services__item d-none d-md-block">
<a href="#" class="services__item-inner">
<i class="services__item-icon services__item-icon--alt">🤖</i>
<p class="paragraph--alt services__item-text services__item-text--alt">Are you leaving money on the table by missing out on opportunities with your brand’s digital presence?</p>
<h2 class="services__item-title">Growth Hacking</h2>
<p class="paragraph--alt u-weight-med u-color-primary">Learn more →</p>
</a>
</div>
</div>
<div class="row services__others">
<div class="col-12">
<p class="paragraph--md u-color-dark services__others-title">I’ve can also help solve issues related to:</p>
<div class="services__others-links">
<p class="u-weight-med"><a href="#" class="u-color-primary">Building UX & Development Teams →</a></p>
<p class="u-weight-med"><a href="#" class="u-color-primary">Branding & Creative Direction →</a></p>
<p class="u-weight-med"><a href="#" class="u-color-primary">UI for Apps & Product Design →</a></p>
<p class="u-weight-med"><a href="#" class="u-color-primary">Digital Illustration →</a></p>
<p class="u-weight-med"><a href="#" class="u-color-primary">Facebook Strategy →</a></p>
<p class="u-weight-med"><a href="#" class="u-color-primary">Growth Hacking →</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="why">
<div class="container">
<div class="row">
<div class="col-12 col-md-10 col-lg-9 text-center text-md-left">
<h5 class="why__title wow animated fadeInUp">Why I do this</h5>
<h2 class="wow animated fadeInUp" data-wow-delay=".25s">I love learning. For me, the best way to learn is when I <span class="u-color-accent-2">teach</span>, <span
class="u-color-accent-3">guide</span>, & <span class="u-color-primary">lead</span> digitally-enabled
professionals, young & old alike, so that they can reach their <br class="d-none d-lg-block">maximum
potential.</h2>
</div>
</div>
</div>
</section>
<section class="work" data-scroll-target="work">
<img src="images/works-shapes-mobile.png" alt="Shapes" class="work__shapes d-md-none">
<div class="container">
<div class="row">
<div class="col-12">
<div class="text-center text-md-left work__title">
<h5>View samples of my work</h5>
</div>
<div class="work__intro">
<div class="row">
<div class="col-12 col-md-10 col-lg-9">
<div class="row align-items-center">
<div class="col-12 col-md-6">
<p class="paragraph--alt">Due to the confidentiality, case studies of my work can only be sent privately via email, <b>upon request</b>.</p>
</div>
<div class="col-12 col-md-6">
<button class="btn work__intro-btn" data-popup-trigger="samples"><span class="u-weight-reg">Request to</span> view work samples</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row align-items-stretch work__samples">
<img src="images/works-shapes-desktop.png" alt="Shapes" class="d-none d-md-block work__shapes">
<div class="col-12 col-md-6 work__sample work__sample--big">
<div class="work__sample-inner">
<div class="work__sample-banner" style="background-image:url('images/work-kobe.png');"> </div>
<div class="work__sample-content">
<img src="images/logo-kobe.svg" alt="Logo for this work sample" class="work__sample-logo">
<p><b>Kobe Bryant</b> is a 5x NBA Champ. A 2x Olympic Gold Medalist. A lethal scorer. The fiercest competitor. Early in my career, I was lucky to work with him directly, taking his digital brand to a whole new level.</p>
<p class="paragraph--md d-none d-md-block work__sample-subtitle"><b>Services rendered</b> for Kobe Bryant</p>
<p class="paragraph--md u-font-main-mono u-color-gray-lgt u-lh-lg d-none d-md-block">CREATIVE DIRECTION, DIGITAL STRATEGY, OFFICIAL PLAYER & FOUNDATION BRANDING, OFFICIAL PLAYER WEB DESIGN, OFFICIAL FOUNDATION WEB DESIGN, WORDPRESS DEV, SHOPIFY DESIGN & DEV, SOCIAL MEDIA, MERCHANDISE, ILLUSTRATION</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 work__sample work__sample--big">
<div class="work__sample-inner">
<div class="work__sample-banner" style="background-image:url('images/work-cebu-pacific.png');"> </div>
<div class="work__sample-content">
<img src="images/logo-cebu-pacific.svg" alt="Logo for this work sample" class="work__sample-logo">
<p><b>Cebu Pacific</b> is the largest airlines in the Philippines. My team at Make provided various UX & UI solutions that helped them grow their user base, which helped maximize their e-commerce operation.</p>
<p class="paragraph--md d-none d-md-block work__sample-subtitle"><b>Services rendered</b> for Cebu Pacific</p>
<p class="paragraph--md u-font-main-mono u-color-gray-lgt u-lh-lg d-none d-md-block u-uppercase">USER EXPERIENCE, low fidelity prototyping, high fidelity prototyping, ui design, visual design, interaction design, usability testing</p>
</div>
</div>
</div>
<div class="col-12 col-md-4 work__sample">
<div class="work__sample-inner">
<div class="work__sample-content">
<img src="images/logo-adobe.svg" alt="Logo for this work sample" class="work__sample-logo">
<p class="paragraph--alt"><b>Adobe Inc.</b> commissioned me for a digital illustration. My art was featured in the global launch of Adobe CS, and included in every commercially released copy of their software.</p>
</div>
</div>
</div>
<div class="col-12 col-md-4 work__sample">
<div class="work__sample-inner">
<div class="work__sample-content">
<img src="images/logo-carrier.svg" alt="Logo for this work sample" class="work__sample-logo">
<p class="paragraph--alt"><b>Carrier Air Conditioning</b> developed Smart+Cool, a smart plug that can control, monitor, and schedule AC units, through a mobile app. My team did customer journey mapping, marketing automation, UI & UX.</p>
</div>
</div>
</div>
<div class="col-12 col-md-4 work__sample">
<div class="work__sample-inner">
<div class="work__sample-content">
<img src="images/logo-usain-bolt.svg" alt="Logo for this work sample" class="work__sample-logo">
<p class="paragraph--alt"><b>Usain Bolt</b>. Widely regarded as the fastest person, ever. A 3x World Record holder, 8x Olympic Gold Medalist, & 11x World Champion. In his prime, my company created his official website & branding.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="workshops" data-scroll-target="workshops">
<div class="workshops__main">
<div class="container">
<div class="row">
<div class="col-12">
<div class="workshops__intro">
<div class="text-center text-md-left workshops__title">
<h5>Join my upcoming workshops 📆</h5>
</div>
<p class="paragraph--alt">All my workshops come with an in-person, 30-min. <b>brand, design, or UX consultation</b>, for <b>FREE</b>!</p>
<p class="paragraph--alt">I’ve done 70+ talks since 2007. These include the Facebook Digital Youth Summit (2017 & 2018), Graphika Manila, & Canva Creatives Conference.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-6">
<div class="workshops__next">
<div class="workshops__next-tag u-uppercase"><p class="paragraph--alt-2">career shifters</p></div>
<div class="workshops__next-title-wrapper">
<h2 class="workshops__next-title"><a href="#" class="u-color-dark">How to Shift Careers from Graphic Design to UX Design in 2019</a></h2>
<div class="workshops__next-date">
<p class="paragraph--alt-2 u-color-dark"><b>Jan 25</b></p>
<p class="paragraph--alt-2 u-color-gray-lgt u-font-main-mono u-uppercase">Sat<br>1pm -5pm<br>BGC</p>
</div>
</div>
<p class="paragraph--alt-2 u-font-main-mono u-uppercase u-color-gray-lgt workshops__next-label">EARLY BIRD ENDS Jan. 12! LIMITED TO 20 seats</p>
<p class="paragrpah--lg"><b class="u-color-primary">PhP 4,990</b> <span class="u-line-through u-color-gray-lgt-2">PhP 5,990</span></p>
<div class="workshops__next-cta">
<a href="#" class="btn">Book a seat now</a>
<p class="paragraph--md-2 u-weight-med"><a href="#">Learn more →</a></p>
</div>
</div>
</div>
<div class="col-12 col-md-6">
<div class="workshops__upcomings">
<a href="#" class="workshops__upcoming">
<div class="workshops__upcoming-date">
<p class="paragraph--sm u-color-dark"><b>Feb 5</b></p>
<p class="paragraph--sm u-uppercase u-color-gray-lgt">TUE</p>
</div>
<div class="workshops__upcoming-copy">
<p class="paragraph--md-2"><b class="u-color-dark">UX for Marketers</b>: How to Step Up Your Marketing Using UX Techniques for Acquisition, Retention, & Monetization</p>
</div>
<p class="paragraph--md-2 u-weight-med workshops__upcoming-link">Book a seat now →</p>
</a>
<a href="#" class="workshops__upcoming">
<div class="workshops__upcoming-date">
<p class="paragraph--sm u-color-dark"><b>Feb 12</b></p>
<p class="paragraph--sm u-uppercase u-color-gray-lgt">TUE</p>
</div>
<div class="workshops__upcoming-copy">
<p class="paragraph--md-2">Custom Shopify Website Design & FB Ads <b class="u-color-dark">Workshop for Small Businesses</b></p>
</div>
<p class="paragraph--md-2 u-weight-med workshops__upcoming-link">Book a seat now →</p>
</a>
<a href="#" class="workshops__upcoming">
<div class="workshops__upcoming-date">
<p class="paragraph--sm u-color-dark"><b>Feb 19</b></p>
<p class="paragraph--sm u-uppercase u-color-gray-lgt">TUE</p>
</div>
<div class="workshops__upcoming-copy">
<p class="paragraph--md-2"><b class="u-color-dark">UX for Leaders</b>: How to Inject Innovation in Your Organization & Thrive in 2019</p>
</div>
<p class="paragraph--md-2 u-weight-med workshops__upcoming-link">Book a seat now →</p>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="workshops__cta">
<div class="container">
<div class="row">
<div class="col-12">
<p class="paragraph--alt u-weight-med">Use the coupon code <span class="workshops__cta-code"><b>CSJ10</b></span> to get an <b>extra 10%</b> discount from the ticket price, upon checkout.</p>
</div>
</div>
</div>
</div>
</section>
<section class="testimonials">
<img src="images/testimonials-shapes-mobile.png" alt="Shapes" class=" testimonials__shapes testimonials__shapes--top d-md-none">
<img src="images/testimonials-shapes-desktop.png" alt="Shapes" class="testimonials__shapes testimonials__shapes--top d-none d-md-block">
<img src="images/testimoinals-dots.png" alt="Dots" class="testimonials__shapes testimonials__shapes--bottom d-none d-md-block">
<div class="container">
<div class="row">
<div class="col-12">
<div class="text-center text-md-left testimonials__title">
<h5>What some friends had to say</h5>
</div>
</div>
</div>
<div class="row align-items-stretch testimonials__items">
<div class="col-12 col-md-6 col-lg-4 testimonials__item">
<div class="testimonials__item-inner">
<p>“From the land of jeepneys, balut, and adobo comes some of the coolest designs & illustrations. Who would have thought?”</p>
<div class="testimonials__item-profile">
<div class="testimonials__item-profile-img" style="background-image:url('images/guy-kawasaki.png');"> </div>
<h3 class="testimonials__item-profile-name">Guy Kawasaki</h3>
<p class="paragraph--alt-2 u-uppercase u-color-gray-lgt u-font-main-mono">Former Chief Evangelist,<br>Apple inc.</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 testimonials__item">
<div class="testimonials__item-inner">
<p>“One man creative powerhouse. Well-versed in technology & feasibility, it's been a pleasure to mentor Christian. Looking forward to great things from him.”</p>
<div class="testimonials__item-profile">
<div class="testimonials__item-profile-img" style="background-image:url('images/harshal-sisodia.png');"> </div>
<h3 class="testimonials__item-profile-name">Harshal Sisodia</h3>
<p class="paragraph--alt-2 u-uppercase u-color-gray-lgt u-font-main-mono">Former Global Digital<br>Director, Nike & Jordan Brand</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 offset-md-3 col-lg-4 offset-lg-0 testimonials__item">
<div class="testimonials__item-inner">
<p class="paragraph--alt">“Christian has incredible subject matter expertise on digital. All the projects we co-authored with his company have been successful in meeting key objectives, to say the least. His strategic recommendations have contributed well to the projects' success, & all details are always above expectations.”</p>
<div class="testimonials__item-profile">
<div class="testimonials__item-profile-img" style="background-image:url('images/brian-sebial.png');"> </div>
<h3 class="testimonials__item-profile-name">Brian Sebial</h3>
<p class="paragraph--alt-2 u-uppercase u-color-gray-lgt u-font-main-mono">Business Development, National<br>Basketball Association (NBA)</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="clients">
<div class="container">
<div class="row">
<div class="col-12">
<div class="text-center text-md-left clients__title">
<h5>For 12+ yrs, I’ve helped these clients, using good design & UX</h5>
</div>
</div>
</div>
<div class="row d-md-none">
<div class="col-6">
<ul class="clients__list">
<li class="clients__item">USAIN BOLT (OLYMPICS) 💨</li>
<li class="clients__item">KOBE BRYANT (NBA) 🏀</li>
<li class="clients__item">DWYANE WADE (NBA)</li>
<li class="clients__item">JAMES HARDEN (NBA)</li>
<li class="clients__item">SAMUEL ETO’O (FIFA)</li>
<li class="clients__item">ALBERT PUJOLS (MLB)</li>
<li class="clients__item">JOSE BAUTISTA (MLB) ⚾️</li>
<li class="clients__item">BRIAN WILSON (MLB)</li>
<li class="clients__item">JIMMY ROLLINS (MLB)</li>
<li class="clients__item">BARRY ZITO (MLB)</li>
<li class="clients__item">JOEY VOTTO (MLB)</li>
<li class="clients__item">CAMERON MAYBIN (MLB)</li>
<li class="clients__item">JAMAAL CHARLES (NFL) 🏈</li>
<li class="clients__item">JON METERPAREL (NCAA)</li>
<li class="clients__item">FOREVER THE SICKEST KIDS</li>
<li class="clients__item">FUELED BY RAMEN</li>
<li class="clients__item">SLAPSHOCK</li>
<li class="clients__item">CHICOSCI</li>
<li class="clients__item">USHER RAYMOND III</li>
<li class="clients__item">BIG SEAN 🎤</li>
<li class="clients__item">COBRA STARSHIP</li>
<li class="clients__item">QUIKSILVER INC.</li>
<li class="clients__item">CANVA 🎨</li>
<li class="clients__item">ADOBE SYSTEMS INC.</li>
<li class="clients__item">TRITON PRODUCTIONS</li>
<li class="clients__item">MITSUBISHI PHILIPPINES</li>
<li class="clients__item">HYUNDAI PHILIPPINES</li>
<li class="clients__item">FRISO PHILIPPINES</li>
<li class="clients__item">NIKE PHILIPPINES</li>
<li class="clients__item">KFC PHILIPPINES 🍗</li>
<li class="clients__item">AXE PHILIPPINES</li>
<li class="clients__item">SOLAIRE RESORT & CASINO</li>
<li class="clients__item">MANO AMIGA PHILIPPINES </li>
<li class="clients__item">DLSU-MANILA</li>
<li class="clients__item">JASON MAGBANUA</li>
<li class="clients__item">PIANDRE SALON</li>
</ul>
</div>
<div class="col-6">
<ul class="clients__list">
<li class="clients__item">ABENSON INC. </li>
<li class="clients__item">S.B. FURNITURE</li>
<li class="clients__item">VISTA LAND</li>
<li class="clients__item">LUMINA RESIDENCES</li>
<li class="clients__item">ETON PROPERTIES</li>
<li class="clients__item">DIGITAL WALKER 🤖</li>
<li class="clients__item">OCTOARTS FILMS</li>
<li class="clients__item">GRAPHIKA MANILA</li>
<li class="clients__item">SPYDER EYEWEAR</li>
<li class="clients__item">SHOE SALON</li>
<li class="clients__item">CHURRERIA LA LOLA 🍫</li>
<li class="clients__item">KERATIN COMPLEX</li>
<li class="clients__item">FRANCISM CLOTHING</li>
<li class="clients__item">TBWA\SMP</li>
<li class="clients__item">OGILVYONE</li>
<li class="clients__item">HAVAS ORTEGA</li>
<li class="clients__item">MULLENLOWE GROUP</li>
<li class="clients__item">ACE SAATCHI & SAATCHI ❤</li>
<li class="clients__item">NBA ASIA</li>
<li class="clients__item">CEBU PACIFIC AIR ✈️</li>
<li class="clients__item">BPI 💳</li>
<li class="clients__item">METROBANK </li>
<li class="clients__item">SECURITY BANK</li>
<li class="clients__item">SUN CELLULAR</li>
<li class="clients__item">PLDT GROUP</li>
<li class="clients__item">SM DEVELOPMENT CORP.</li>
<li class="clients__item">SM CYBERZONE</li>
<li class="clients__item">SM TICKETS 🎟</li>
<li class="clients__item">ABOITIZLAND</li>
<li class="clients__item">CONCEPCION-CARRIER</li>
<li class="clients__item">7-ELEVEN PHILIPPINES 🌭</li>
<li class="clients__item">NIKE FOUNDATION</li>
<li class="clients__item">VIMEO / LIVESTREAM </li>
<li class="clients__item">MAILMAN GROUP</li>
<li class="clients__item">NATURAL GAS WORLD</li>
<li class="clients__item">DENOVO DIAMONDS</li>
</ul>
</div>
</div>
<div class="row d-none d-md-flex">
<div class="col-12 col-md-6 col-lg-3">
<ul class="clients__list">
<li class="clients__item">USAIN BOLT (OLYMPICS) 💨</li>
<li class="clients__item">KOBE BRYANT (NBA) 🏀</li>
<li class="clients__item">DWYANE WADE (NBA)</li>
<li class="clients__item">JAMES HARDEN (NBA)</li>
<li class="clients__item">SAMUEL ETO’O (FIFA)</li>
<li class="clients__item">ALBERT PUJOLS (MLB)</li>
<li class="clients__item">JOSE BAUTISTA (MLB) ⚾️</li>
<li class="clients__item">BRIAN WILSON (MLB)</li>
<li class="clients__item">JIMMY ROLLINS (MLB)</li>
<li class="clients__item">BARRY ZITO (MLB)</li>
<li class="clients__item">JOEY VOTTO (MLB)</li>
<li class="clients__item">CAMERON MAYBIN (MLB)</li>
<li class="clients__item">JAMAAL CHARLES (NFL) 🏈</li>
<li class="clients__item">JON METERPAREL (NCAA)</li>
<li class="clients__item">FOREVER THE SICKEST KIDS</li>
<li class="clients__item">FUELED BY RAMEN</li>
<li class="clients__item">SLAPSHOCK</li>
<li class="clients__item">CHICOSCI</li>
</ul>
</div>
<div class="col-12 col-md-6 col-lg-3">
<ul class="clients__list">
<li class="clients__item">USHER RAYMOND III </li>
<li class="clients__item">BIG SEAN 🎤</li>
<li class="clients__item">COBRA STARSHIP</li>
<li class="clients__item">QUIKSILVER INC.</li>
<li class="clients__item">CANVA 🎨</li>
<li class="clients__item">ADOBE SYSTEMS INC. </li>
<li class="clients__item">TRITON PRODUCTIONS</li>
<li class="clients__item">MITSUBISHI PHILIPPINES</li>
<li class="clients__item">HYUNDAI PHILIPPINES</li>
<li class="clients__item">FRISO PHILIPPINES</li>
<li class="clients__item">NIKE PHILIPPINES</li>
<li class="clients__item">KFC PHILIPPINES 🍗</li>
<li class="clients__item">AXE PHILIPPINES</li>
<li class="clients__item">SOLAIRE RESORT & CASINO</li>
<li class="clients__item">MANO AMIGA PHILIPPINES </li>
<li class="clients__item">DLSU-MANILA</li>
<li class="clients__item">JASON MAGBANUA</li>
<li class="clients__item">PIANDRE SALON</li>
</ul>
</div>
<div class="col-12 col-md-6 col-lg-3">
<ul class="clients__list">
<li class="clients__item">ABENSON INC. </li>
<li class="clients__item">S.B. FURNITURE</li>
<li class="clients__item">VISTA LAND</li>
<li class="clients__item">LUMINA RESIDENCES</li>
<li class="clients__item">ETON PROPERTIES</li>
<li class="clients__item">DIGITAL WALKER 🤖</li>
<li class="clients__item">OCTOARTS FILMS</li>
<li class="clients__item">GRAPHIKA MANILA</li>
<li class="clients__item">SPYDER EYEWEAR</li>
<li class="clients__item">SHOE SALON</li>
<li class="clients__item">CHURRERIA LA LOLA 🍫</li>
<li class="clients__item">KERATIN COMPLEX</li>
<li class="clients__item">FRANCISM CLOTHING</li>
<li class="clients__item">TBWA\SMP</li>
<li class="clients__item">OGILVYONE</li>
<li class="clients__item">HAVAS ORTEGA</li>
<li class="clients__item">MULLENLOWE GROUP</li>
<li class="clients__item">ACE SAATCHI & SAATCHI ❤</li>
</ul>
</div>
<div class="col-12 col-md-6 col-lg-3">
<ul class="clients__list">
<li class="clients__item">NBA ASIA</li>
<li class="clients__item">CEBU PACIFIC AIR ✈️</li>
<li class="clients__item">BPI 💳</li>
<li class="clients__item">METROBANK </li>
<li class="clients__item">SECURITY BANK</li>
<li class="clients__item">SUN CELLULAR</li>
<li class="clients__item">PLDT GROUP</li>
<li class="clients__item">SM DEVELOPMENT CORP.</li>
<li class="clients__item">SM CYBERZONE</li>
<li class="clients__item">SM TICKETS 🎟</li>
<li class="clients__item">ABOITIZLAND</li>
<li class="clients__item">CONCEPCION-CARRIER</li>
<li class="clients__item">7-ELEVEN PHILIPPINES 🌭</li>
<li class="clients__item">NIKE FOUNDATION</li>
<li class="clients__item">VIMEO / LIVESTREAM </li>
<li class="clients__item">MAILMAN GROUP</li>
<li class="clients__item">NATURAL GAS WORLD</li>
<li class="clients__item">DENOVO DIAMONDS</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="clients__cta">
<a href="#" class="btn" data-popup-trigger="freeConsultation"><span class="u-weight-reg">Get a</span> free consultation</a>
<p class="paragraph--alt u-color-gray-lgt">I’ve helped <b>over 300+</b> clients in design <br class="d-md-none">& digital since 2007.</p>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<img src="images/footer-shapes.png" alt="Shapes" class="footer__shapes">
<div class="footer__main">
<div class="container">
<div class="row">
<div class="col-12 col-md-7 col-lg-6">
<div class="footer__group">
<h5>How to get in touch with me</h5>
<div class="footer__group-main">
<table>
<tbody>
<tr>
<td>
<h2 class="u-color-white">My e-mail</h2>
</td>
<td class="align-bottom">
<h5 class="heading-quinary--alt u-font-main-mono u-weight-reg"><a href="mailto:[email protected]"
class="u-color-accent-4">[email protected]</a></h5>
</td>
</tr>
<tr>
<td>
<h2 class="u-color-white">My mobile</h2>
</td>
<td class="align-bottom">
<h5 class="heading-quinary--alt u-font-main-mono u-weight-reg"><a href="tel:639178170500"
class="u-color-accent-3">+639178170500</a></h5>
</td>
</tr>
</tbody>
</table>
</div>
<a href="#" class="btn btn--ghost btn--ghost-drk footer__btn">Add me to your phone's contact list</a>
</div>
<div class="footer__group">
<h5 class="u-margin-bottom-small">You should follow me...</h5>
<div class="d-flex align-items-center justify-content-start">
<h2 class="u-color-white">on Instagram</h2>
<a href="#" class="social-btn"><i class="fab fa-instagram social-btn__icon"></i></a>
</div>
<div class="footer__group-main">
<table>
<tbody>
<tr>
<td>
<p class="paragraph--sm u-uppercase u-font-main-mono"><a href="#" class="u-color-accent-4">@christian_sanjose</a></p>
</td>
<td>
<p class="paragraph--xs u-color-white">Where I post about my life 🌏</p>
</td>
</tr>
<tr>
<td>
<p class="paragraph--sm u-uppercase u-font-main-mono"><a href="#" class="u-color-accent-3">@CSJ.CONSULTING</a></p>
</td>
<td>
<p class="paragraph--xs u-color-white">Where I post about my work 💼</p>
</td>
</tr>
<tr>
<td>
<p class="paragraph--sm u-uppercase u-font-main-mono"><a href="#" class="u-color-accent-5">@busythecorgi</a></p>
</td>
<td>
<p class="paragraph--xs u-color-white">Making my 🐕🐕 famous so I can retire</p>
</td>
</tr>
<tr>
</tbody>
</table>
</div>
<div class="d-flex align-items-center justify-content-start">
<h2 class="u-color-white">Elsewhere</h2>
<a href="#" class="social-btn"><i class="fab fa-facebook-f social-btn__icon"></i></a>
<a href="#" class="social-btn"><i class="fab fa-facebook-messenger social-btn__icon"></i></a>