-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1062 lines (950 loc) · 49.6 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="description" content="Vinicius Libero's Resume Page">
<meta name="keywords" content="Vinicius, Libero, Vinicius Libero, resume, CV HTML template, personal Vcard, full stack developer, developer, full stack, html resume, personal portfolio, html portfolio">
<meta name="author" content="https://liberom.github.io/profile/">
<title>Vini Libero - Resume</title>
<!-- Web Fonts -->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,500,700' rel='stylesheet' type='text/css'>
<!-- Bootstrap core CSS -->
<link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
<!-- Font Awesome CSS -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet" media="screen">
<link href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" rel="stylesheet" media="screen">
<!-- Animate css -->
<link href="assets/css/animate.css" rel="stylesheet">
<!-- Magnific css -->
<link href="assets/css/magnific-popup.css" rel="stylesheet">
<!-- Custom styles CSS -->
<link href="assets/css/style.css" rel="stylesheet" media="screen">
<!-- Responsive CSS -->
<link href="assets/css/responsive.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" href="assets/images/ico/favicon.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/images/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/images/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/images/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="assets/images/ico/apple-touch-icon-57-precomposed.png">
</head>
<body>
<!-- Preloader -->
<!-- <div id="tt-preloader">
<div id="pre-status">
<div class="preload-placeholder"></div>
</div>
</div> -->
<!-- Home Section -->
<section id="home" class="tt-fullHeight" data-stellar-vertical-offset="50" data-stellar-background-ratio="0.2">
<div class="intro">
<div class="intro-sub">Vini Libero</div>
<h1>Full Stack <span>Developer</span></h1>
<p>I am a fully professional freelance Full Stack Developer <!-- & --> <br> Proficient in the use of the latest technologies <br> feel free to contact me.</p>
<div class="social-icons">
<ul class="list-inline">
<li><a href="https://github.com/liberom"><i class="fab fa-github"></i></a></li>
<li><a href="https://twitter.com/ViniciusLibero"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://www.linkedin.com/in/vinicius-libero/"><i class="fab fa-linkedin-in"></i></a></li>
<!-- <li><a href="#"><i class="fa fa-dribbble"></i></a></li> -->
<li><a href="https://keybase.io/liberom"><i class="fab fa-keybase"></i></a></li>
</ul>
</div> <!-- /.social-icons -->
</div>
<div class="mouse-icon">
<div class="wheel"></div>
</div>
</section><!-- End Home Section -->
<!-- Navigation -->
<header class="header">
<nav class="navbar navbar-custom" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#custom-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><!-- <img src="assets/images/logo.png" alt=""> --></a>
</div>
<div class="collapse navbar-collapse" id="custom-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#resume">Resume</a></li>
<li><a href="#skills">Skills</a></li>
<!-- <li><a href="#works">Works</a></li>
<li><a href="#blog">Blog</a></li> -->
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div><!-- .container -->
</nav>
</header><!-- End Navigation -->
<!-- About Section -->
<section id="about" class="about-section section-padding">
<div class="container">
<h2 class="section-title wow fadeInUp">About Me</h2>
<div class="row">
<div class="col-md-4 col-md-push-8">
<div class="biography">
<div class="myphoto">
<img src="assets/images/userpic_basic.jpg" alt="">
</div>
<ul>
<li><strong>Name:</strong> Vinicius Libero</li>
<li><strong>Date of birth:</strong> 16 Apr 1981</li>
<li><strong>Location:</strong> Belo Horizonte, MG, Brazil</li>
<li><strong>Nationality:</strong> Brazilian</li>
<!-- <li><strong>Phone:</strong> (000) 1234 56789</li> -->
<!-- <li><strong>Email:</strong> yourmail@iamx.com</li> -->
</ul>
</div>
</div> <!-- col-md-4 -->
<div class="col-md-8 col-md-pull-4">
<div class="short-info wow fadeInUp">
<h3>Objective</h3>
<p>An opportunity to work and upgrade oneself, as well as being involved in an organization that believes in gaining a competitive edge and giving back to the community. I'm presently expanding my solid experience in UI / UX design. I focus on using my interpersonal skills to build good user experience and create a strong interest in my employers. I hope to develop skills in motion design and my knowledge of the Web, and become an honest asset to the business. As an individual, I'm self-confident you’ll find me creative, funny and naturally passionate. I’m a forward thinker, which others may find inspiring when working as a team.</p>
</div>
<div class="short-info wow fadeInUp">
<h3>What I Do ?</h3>
<p>Highly motivated and adaptable individual, interested in blockchain technology, seeking a full-time position where I can apply my skills while further developing my technical abilities as a Full stack Developer. Former Project Management Exploration Geologist. Some of my strengths are:</p>
<ul class="list-check">
<li>Vision</li>
<li>Organization</li>
<li>Communication</li>
<li>Time Management</li>
</ul>
</div>
<div class="my-signature">
<img src="assets/images/vlm_signature.png" alt="">
</div>
<div class="download-button">
<a class="btn btn-info btn-lg" href="#contact"><i class="fa fa-paper-plane"></i>Send me message</a>
<a class="btn btn-primary btn-lg" href="#"><i class="fa fa-download"></i>download my cv</a>
</div>
</div>
</div> <!-- /.row -->
</div> <!-- /.container -->
</section><!-- End About Section -->
<!-- Video Section -->
<!-- <section id="video" class="video-section">
<div class="tf-bg-overlay">
<div class="container">
<div class="video-intro">
<a class="popup-video" href="https://www.youtube.com/watch?v=LGOjcu0HRec"> <i class="fa fa-play"></i> </a>
<h2>Video Introduction</h2>
</div> -->
<!-- </div> -->
<!--/.container-->
<!-- </div> -->
<!--/.overlay-->
<!-- </section> -->
<!-- /.Video Section -->
<!-- Resume Section -->
<section id="resume" class="resume-section section-padding">
<div class="container">
<h2 class="section-title wow fadeInUp">Resume</h2>
<div class="row">
<div class="col-md-12">
<div class="resume-title">
<h3>Recent Experience</h3>
</div>
<div class="resume">
<ul class="timeline">
<li>
<div class="posted-date">
<span class="month">Aug 2019 - today</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Writer & Translator</h3>
<span>BeInCrypto.com.br - Remote, Brazil</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>Writing and translation of crypto and blockchain related articles.</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
<li class="timeline-inverted">
<div class="posted-date">
<span class="month">Mar 2019 - today</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Chief Operation Officer</h3>
<span>HTMLBunker Crypto Exchange - Belo Horizonte, MG, Brazil</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>Networking, Marketing and Operations for Cryptoassets Exchange.</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div> <!-- /timeline-panel -->
</li>
<li>
<div class="posted-date">
<span class="month">Mar 2018 - today</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Writer & Translator</h3>
<span>Livecoins.com.br - Remote, Brazil</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>Writing and translation of crypto and blockchain related articles.</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
</ul>
</div>
</div>
</div><!-- /row -->
<div class="row">
<div class="col-md-12">
<div class="resume-title">
<h3>Previous Life</h3>
</div>
<div class="resume">
<ul class="timeline">
<li class="timeline-inverted">
<div class="posted-date">
<span class="month">2016</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Geology Manager</h3>
<span>Brazil Tungsten - Bodó, RN, Brazil</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>Recruited to provide geological contributions and manage the technical department for the tungsten mine. Collected, documented and assessed geological data. Observed and recorded geological features of all underground openings and drill core logs from exploration programs. Planned, designed and improved mine processes and systems. Developed and managed drilling programs and/or other contract work as necessary. Promoted a team environment, with excellent communications between all project and operations personnel. Implemented mine strategy sessions and personnel training programs. Ensured the safe, cost-effective and timely completion of all projects to meet or exceed client expectations.</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div> <!-- /timeline-panel -->
</li>
<li>
<div class="posted-date">
<span class="month">2010-2015</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Geology Manager</h3>
<span>Amazon Geoservices - Multiple locations, South America</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>Recruited to collaborate with clients, contractors and local/state agencies to resolve a myriad of geological and tenure issues. Developed solutions that safely and effectively addressed challenges including networking, personnel training, licenses and permitting. Generated new concepts and opportunities for regional exploration. Assured the implementation of safety, health and environmental protocols for all employees and supervised contractors.</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
<li class="timeline-inverted">
<div class="posted-date">
<span class="month">2008-2009</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Geoscientist</h3>
<span>BHP Billiton - Rio de Janeiro, RJ, Brazil</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>Recruited to provide leadership in exploration projects. Collaborated with contractors and local/state agencies to resolve different technical and administrative issues. Wrote, revised and assessed reports and documentation. Supported, instructed and directed other project members. Acted to facilitate networking and information gathering. Participated in site visits, data interpretation and liaison with teams.</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div> <!-- /timeline-panel -->
</li>
<li>
<div class="posted-date">
<span class="month">2007-2008</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Geologist</h3>
<span>Coffey Mining - Belo Horizonte, MG, Brazil</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>Recruited to provide leadership in exploration projects. Coordinated geological modeling, resource definition, database and QAQC management. Implemented geological mapping, georeferencing, map generation in GIS, drilling core and chip sample logging for exploration project.</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
<li class="timeline-inverted">
<div class="posted-date">
<span class="month">2005-2006</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Geology Trainee</h3>
<span>Vale - Carajás, PA, Brazil</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>Recruited to manage contracts and environmental projects for speleological surveys. Supported coordination in mineral exploration projects. Acted in geological mapping, georeferencing, map generation in GIS, drilling core and chip sample logging.</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div> <!-- /timeline-panel -->
</li>
</ul>
</div>
</div>
</div><!-- /row -->
</div><!-- /.container -->
</section><!-- End Resume Section -->
<!-- Skills Section -->
<section id="skills" class="skills-section section-padding">
<div class="container">
<h2 class="section-title wow fadeInUp">Skills</h2>
<div class="row">
<div class="col-md-6">
<div class="skill-progress">
<div class="skill-title"><h3>HTML</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" ><span>95%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>CSS</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" ><span>80%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>Bootstrap</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" ><span>75%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>JavaScript</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" ><span>75%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>ReactJS</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" ><span>75%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>Ruby</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" ><span>95%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>Ruby On Rails</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" ><span>80%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
</div><!-- /.col-md-6 -->
<div class="col-md-6">
<div class="skill-progress">
<div class="skill-title"><h3>SQL</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" ><span>75%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>PostgreSQL</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" ><span>75%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>Active Records</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" ><span>75%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>Blockchain</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" ><span>75%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>Solidity</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" ><span>75%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>Git / Github</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" ><span>75%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
<div class="skill-progress">
<div class="skill-title"><h3>Linux / Windows</h3></div>
<div class="progress">
<div class="progress-bar six-sec-ease-in-out" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" ><span>75%</span>
</div>
</div><!-- /.progress -->
</div><!-- /.skill-progress -->
</div><!-- /.col-md-6 -->
</div><!-- /.row -->
<div class="skill-chart text-center">
<h3>More skills</h3>
</div>
<div class="row more-skill text-center">
<div class="col-xs-12 col-sm-4 col-md-2">
<div class="chart" data-percent="85" data-color="e74c3c">
<span class="percent"></span>
<div class="chart-text">
<span>Leadership & Management</span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-md-2">
<div class="chart" data-percent="65" data-color="2ecc71">
<span class="percent"></span>
<div class="chart-text">
<span>Marketing & Branding</span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-md-2">
<div class="chart" data-percent="90" data-color="3498db">
<span class="percent"></span>
<div class="chart-text">
<span>Strategic Thinking</span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-md-2">
<div class="chart" data-percent="75" data-color="3498db">
<span class="percent"></span>
<div class="chart-text">
<span>Introverted Intuition</span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-md-2">
<div class="chart" data-percent="70" data-color="3498db">
<span class="percent"></span>
<div class="chart-text">
<span>Cognitive Empathy</span>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-md-2">
<div class="chart" data-percent="80" data-color="3498db">
<span class="percent"></span>
<div class="chart-text">
<span>Motivation</span>
</div>
</div>
</div>
</div>
</div><!-- /.container -->
</section><!-- End Skills Section -->
<!-- Resume Section -->
<section id="resume" class="resume-section section-padding">
<div class="container">
<h2 class="section-title wow fadeInUp">Education</h2>
<div class="row">
<div class="col-md-12">
<div class="resume-title">
<h3>Education</h3>
</div>
<div class="resume">
<ul class="timeline">
<li>
<div class="posted-date">
<span class="month">2019</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Full Stack Developer</h3>
<span>Le Wagon Coding Bootcamp - Belo Horizonte, MG, Brazil</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p> Le Wagon is an intensive 9-week coding bootcamp that teaches you how to code great tech products. It has been ranked as the best coding school in the world for the last 3 years.</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
<li class="timeline-inverted">
<div class="posted-date">
<span class="month">2000</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Second Lieutenant of the Brazilian Army</h3>
<span>Centro de Preparação de Oficiais da Reserva, CPOR/BH - Belo Horizonte, MG, Brazil</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>They are military educational establishments designed to train aspiring officers for the 2nd Class Reserve, enabling them to join the Army Reserve Corps and to contribute to their development in the area of competence.</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div> <!-- /timeline-panel -->
</li>
<li>
<div class="posted-date">
<span class="month">1999-2005</span>
</div><!-- /posted-date -->
<div class="timeline-panel wow fadeInUp">
<div class="timeline-content">
<div class="timeline-heading">
<h3>Bachelor of Science in Geology</h3>
<span>Universidade Federal de Minas Gerais, UFMG - Belo Horizonte, MG, Brazil</span>
</div><!-- /timeline-heading -->
<div class="timeline-body">
<p>The Geology course has initial focus on the areas of Mathematics, Physics and Chemistry, which are the basis for the specific knowledge of Geology. Later on in the course, students have applied geology classes with subjects such as mineralogy, hydrogeology, geochemistry and petrography.</p>
</div><!-- /timeline-body -->
</div> <!-- /timeline-content -->
</div><!-- /timeline-panel -->
</li>
</ul>
</div>
</div>
</div><!-- /row -->
</div><!-- /.container -->
</section><!-- End Resume Section -->
<!-- Works Section -->
<!-- <section id="works" class="works-section section-padding">
<div class="container">
<h2 class="section-title wow fadeInUp">Works</h2>
<ul class="list-inline" id="filter">
<li><a class="active" data-group="all">All</a></li>
<li><a data-group="design">Design</a></li>
<li><a data-group="web">Web</a></li>
<li><a data-group="interface">Interface</a></li>
<li><a data-group="identety">Identity</a></li>
</ul>
<div class="row">
<div id="grid">
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "identety", "interface"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a class="image-link" href="assets/images/works/portfolio-1.jpg"><i class="fa fa-search-plus"></i></a>
<a href="#"><i class="fa fa-link"></i></a>
</div>
<img src="assets/images/works/portfolio-1.jpg" alt="image">
<div class="portfolio-info">
<h3>Portfolio Title</h3>
</div>
</div>
</div>
</div>
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "identety", "web"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a class="image-link" href="assets/images/works/portfolio-2.jpg"><i class="fa fa-search-plus"></i></a>
<a href="#"><i class="fa fa-link"></i></a>
</div>
<img src="assets/images/works/portfolio-2.jpg" alt="image">
<div class="portfolio-info">
<h3>Portfolio Title</h3>
</div>
</div>
</div>
</div>
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "interface"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a class="image-link" href="assets/images/works/portfolio-3.jpg"><i class="fa fa-search-plus"></i></a>
<a href="#"><i class="fa fa-link"></i></a>
</div>
<img src="assets/images/works/portfolio-3.jpg" alt="image">
<div class="portfolio-info">
<h3>Portfolio Title</h3>
</div>
</div>
</div>
</div>
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "identety", "design"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a class="image-link" href="assets/images/works/portfolio-4.jpg"><i class="fa fa-search-plus"></i></a>
<a href="#"><i class="fa fa-link"></i></a>
</div>
<img src="assets/images/works/portfolio-4.jpg" alt="image">
<div class="portfolio-info">
<h3>Portfolio Title</h3>
</div>
</div>
</div>
</div>
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "identety", "design"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a class="image-link" href="assets/images/works/portfolio-5.jpg"><i class="fa fa-search-plus"></i></a>
<a href="#"><i class="fa fa-link"></i></a>
</div>
<img src="assets/images/works/portfolio-5.jpg" alt="image">
<div class="portfolio-info">
<h3>Portfolio Title</h3>
</div>
</div>
</div>
</div>
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "identety", "design"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a class="image-link" href="assets/images/works/portfolio-6.jpg"><i class="fa fa-search-plus"></i></a>
<a href="#"><i class="fa fa-link"></i></a>
</div>
<img src="assets/images/works/portfolio-6.jpg" alt="image">
<div class="portfolio-info">
<h3>Portfolio Title</h3>
</div>
</div>
</div>
</div>
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "identety", "web"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a class="image-link" href="assets/images/works/portfolio-7.jpg"><i class="fa fa-search-plus"></i></a>
<a href="#"><i class="fa fa-link"></i></a>
</div>
<img src="assets/images/works/portfolio-7.jpg" alt="image">
<div class="portfolio-info">
<h3>Portfolio Title</h3>
</div>
</div>
</div>
</div>
<div class="portfolio-item col-xs-12 col-sm-4 col-md-3" data-groups='["all", "design"]'>
<div class="portfolio-bg">
<div class="portfolio">
<div class="tt-overlay"></div>
<div class="links">
<a class="image-link" href="assets/images/works/portfolio-8.jpg"><i class="fa fa-search-plus"></i></a>
<a href="#"><i class="fa fa-link"></i></a>
</div>
<img src="assets/images/works/portfolio-8.jpg" alt="image">
<div class="portfolio-info">
<h3>Portfolio Title</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> --><!-- End Works Section -->
<!-- Facts Section -->
<!-- <section id="facts" class="facts-section text-center" data-stellar-vertical-offset="50" data-stellar-background-ratio="0.2">
<div class="tt-overlay-bg">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="count-wrap">
<div class="col-sm-3 col-xs-6">
<i class="fa fa-flask"></i>
<h3 class="timer">7</h3>
<p>Years of Experience</p>
</div>
<div class="col-sm-3 col-xs-6">
<i class="fa fa-thumbs-up"></i>
<h3 class="timer">651</h3>
<p>Projects Done</p>
</div>
<div class="col-sm-3 col-xs-6">
<i class="fa fa-users"></i>
<h3 class="timer">251</h3>
<p>Happy Clients</p>
</div>
<div class="col-sm-3 col-xs-6">
<i class="fa fa-trophy"></i>
<h3 class="timer">5</h3>
<p>Awards Won</p>
</div>
</div> --> <!-- /count-wrap -->
<!-- </div> --> <!-- /.col-md-12 -->
<!-- </div> --> <!-- /.row -->
<!-- </div> --> <!-- /.container -->
<!-- </div>
</section> -->
<!-- End Facts Section -->
<!-- Blog Section -->
<!-- <section id="blog" class="latest-blog-section section-padding">
<div class="container">
<h2 class="section-title wow fadeInUp">Latest Post</h2>
<div class="row">
<div class="col-sm-4">
<article class="blog-post-wrapper">
<div class="figure">
<div class="post-thumbnail">
<a href="#"><img src="assets/images/blog/01.jpg" class="img-responsive " alt=""></a>
</div>
<i class="fa fa-file-photo-o"></i>
</div>
<header class="entry-header">
<div class="post-meta">
<span class="the-category">
<a href="#">Print Design,</a> <a href="#">Photoshop</a>
</span>
</div>
<h2 class="entry-title"><a href="#" rel="">Common fonts used for newspaper template design</a></h2>
<hr>
<div class="entry-meta">
<ul class="list-inline">
<li>
<span class="the-author">
<a href="#">Admin</a>
</span>
</li>
<li>
<span class="the-time">
<a href="#">06 Jan 2015</a>
</span>
</li>
<li>
<span class="the-share">
<a href="#" title="share">30</a>
</span>
</li>
<li>
<span class="the-comments">
<a href="#" title="">05</a>
</span>
</li>
</ul>
</div>
</header>
</article>
</div>
<div class="col-sm-4">
<article class="blog-post-wrapper">
<div class="figure">
<div class="post-thumbnail">
<a href="#"><img src="assets/images/blog/02.jpg" class="img-responsive " alt=""></a>
</div>
<i class="fa fa-file-video-o"></i>
</div>
<header class="entry-header">
<div class="post-meta">
<span class="the-category">
<a href="#">Print Design,</a> <a href="#">Photoshop</a>
</span>
</div>
<h2 class="entry-title"><a href="#" rel="">What is the style of font called that is typically</a></h2>
<hr>
<div class="entry-meta">
<ul class="list-inline">
<li>
<span class="the-author">
<a href="#">Admin</a>
</span>
</li>
<li>
<span class="the-time">
<a href="#">06 Jan 2015</a>
</span>
</li>
<li>
<span class="the-share">
<a href="#" title="share">30</a>
</span>
</li>
<li>
<span class="the-comments">
<a href="#" title="">05</a>
</span>
</li>
</ul>
</div>
</header>
</article>
</div>
<div class="col-sm-4">
<article class="blog-post-wrapper">
<div class="figure">
<div class="post-thumbnail">
<a href="#"><img src="assets/images/blog/03.jpg" class="img-responsive " alt=""></a>
</div>
<i class="fa fa-quote-left"></i>
</div>
<header class="entry-header">
<div class="post-meta">
<span class="the-category">
<a href="#">Print Design,</a> <a href="#">Photoshop</a>
</span>
</div>
<h2 class="entry-title"><a href="#" rel="">How to create a print ready brochure using photoshop</a></h2>
<hr>
<div class="entry-meta">
<ul class="list-inline">
<li>
<span class="the-author">
<a href="#">Admin</a>
</span>
</li>
<li>
<span class="the-time">
<a href="#">06 Jan 2015</a>
</span>
</li>
<li>
<span class="the-share">
<a href="#" title="share">30</a>
</span>
</li>
<li>
<span class="the-comments">
<a href="#" title="">05</a>
</span>
</li>
</ul>
</div>
</header>
</article>
</div>
</div>
<div class="blog-more text-center">
<a href="#" class="btn btn-primary">View More</a>
</div>
</div>
</section> --><!-- End Blog Section -->
<!-- Hire Section -->
<section class="hire-section text-center" data-stellar-vertical-offset="50" data-stellar-background-ratio="0.2">
<div class="hire-section-bg">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>I'm available for freelance projects</h2>
<a href="#" class="btn btn-default">Get in Touch</a>
</div>
</div>
</div>
</div>
</section><!-- End Hire Section -->
<!-- Contact Section -->
<section id="contact" class="contact-section section-padding">
<div class="container">
<h2 class="section-title wow fadeInUp">Get in touch</h2>
<div class="row">
<div class="col-md-6">
<div class="contact-form">
<strong>Send me a message</strong>
<form action="https://formspree.io/libero.moreira@gmail.com" method="POST" name="contact-form" id="contactForm" />
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" class="form-control" id="name" required="">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" class="form-control" id="email" required="">
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" name="subject" class="form-control" id="subject">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea name="message" class="form-control" id="message" rows="5" required=""></textarea>
</div>
<button type="submit" name="submit" class="btn btn-primary" value="Send" >Send Message</button>
</form>
</div><!-- /.contact-form -->
</div><!-- /.col-md-6 -->
<div class="col-md-6">
<div class="row center-xs">
<!-- <div class="col-sm-6">
<i class="fa fa-map-marker"></i>
<address>
<strong>Address/Street</strong>
239/2 Awesome Street,<br>
Boston, USA<br>
</address>