-
Notifications
You must be signed in to change notification settings - Fork 0
/
hetu-resume.html
1796 lines (1627 loc) · 124 KB
/
hetu-resume.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
<html lang="en-US" class=" js no-touch cssanimations csstransforms csstransforms3d csstransitions"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="profile" href="//gmpg.org/xfn/11">
<title>BreezyCV WordPress Theme Demo Dark 7 – Best Resume CV vCard Portfolio WordPress Theme</title>
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="dns-prefetch" href="//s.w.org">
<link rel="alternate" type="application/rss+xml" title="BreezyCV WordPress Theme Demo Dark 7 » Feed" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/feed/">
<link rel="alternate" type="application/rss+xml" title="BreezyCV WordPress Theme Demo Dark 7 » Comments Feed" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/comments/feed/">
<script type="text/javascript" async="" src="https://www.gstatic.com/recaptcha/releases/UFwvoDBMjc8LiYc1DKXiAomK/recaptcha__en_gb.js" crossorigin="anonymous" integrity="sha384-txa9bTabWt56ejmvoOGJxQ2LqJea0VHcCS0wQ1L6Ofo0ru8MKiEXYgi3dqiopUoL"></script><script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/lmpixels.com\/wp\/breezycv-wp-lin\/demo7-dark\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.5.3"}};
!function(e,a,t){var r,n,o,i,p=a.createElement("canvas"),s=p.getContext&&p.getContext("2d");function c(e,t){var a=String.fromCharCode;s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,e),0,0);var r=p.toDataURL();return s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,t),0,0),r===p.toDataURL()}function l(e){if(!s||!s.fillText)return!1;switch(s.textBaseline="top",s.font="600 32px Arial",e){case"flag":return!c([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])&&(!c([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!c([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]));case"emoji":return!c([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}function d(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(i=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},o=0;o<i.length;o++)t.supports[i[o]]=l(i[o]),t.supports.everything=t.supports.everything&&t.supports[i[o]],"flag"!==i[o]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[i[o]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(r=t.source||{}).concatemoji?d(r.concatemoji):r.wpemoji&&r.twemoji&&(d(r.twemoji),d(r.wpemoji)))}(window,document,window._wpemojiSettings);
</script><script src="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-includes/js/wp-emoji-release.min.js?ver=5.5.3" type="text/javascript" defer=""></script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel="stylesheet" id="wp-block-library-css" href="css/style.min.css" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-css" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css?ver=4.7.0" type="text/css" media="all">
<link rel="stylesheet" id="bootstrap-css" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/themes/breezycv/css/bootstrap.min.css?ver=4.0.0" type="text/css" media="all">
<link rel="stylesheet" id="normalize-css" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/themes/breezycv/css/normalize.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="owl-carousel-css" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/themes/breezycv/css/owl.carousel.css?ver=2.0" type="text/css" media="all">
<link rel="stylesheet" id="perfect-scrollbar-css" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/themes/breezycv/css/perfect-scrollbar.css?ver=2.0" type="text/css" media="all">
<link rel="stylesheet" id="animations-css" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/themes/breezycv/css/animations.css?ver=1.0" type="text/css" media="all">
<link rel="stylesheet" id="magnific-popup-css" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/themes/breezycv/css/magnific-popup.css?ver=1.3.0" type="text/css" media="all">
<link rel="stylesheet" id="fw-option-type-icon-v2-pack-linear-icons-css" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/themes/breezycv/css/linearicons/style.css?ver=2.7.24" type="text/css" media="all">
<link rel="stylesheet" id="fw-option-type-icon-v2-pack-font-awesomefw-css" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/themes/breezycv/css/font-awesome/css/font-awesome.min.css?ver=2.7.24" type="text/css" media="all">
<link rel="stylesheet" id="breezycv-main-styles-css" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/themes/breezycv/css/main.css?ver=1.4.0" type="text/css" media="all">
<link rel="stylesheet" id="breezycv-dark-styles-css" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/themes/breezycv/css/dark-styles.css?ver=1.4.0" type="text/css" media="all">
<link rel="stylesheet" id="breezycv-customization-css" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/themes/breezycv/css/customization.css?ver=1.4.0" type="text/css" media="all">
<style id="breezycv-customization-inline-css" type="text/css">
.page-content {
max-width: 1380px;
}
@media only screen and (min-width: 1024px){
.page-content {
border-radius: 32px;
}
.animated-section,
.section-content,
.single-page-content,
.content-wrapper {
border-radius: 30px;
}
}
/* =============================================================================
2. Typography
============================================================================= */
body,
p,
.elementor .elementor-widget-icon-box .elementor-icon-box-content .elementor-icon-box-description {
font-family: "Poppins", Helvetica, sans-serif;
font-size: 15px;
font-weight: 400;
font-style: normal;
line-height: 1.75em;
color: #d5d5d5;
}
.form-control,
.form-control:focus,
.has-error .form-control,
.has-error .form-control:focus {
font-family: "Poppins", Helvetica, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Poppins", Helvetica, sans-serif;
font-weight: 600;
font-style: normal;
color: #f5f5f5;
}
.logo-text, .logo-symbol {
font-family: "Poppins", Helvetica, sans-serif;
}
h1 {
font-size: 32px;
color: #f5f5f5;
}
h2 {
font-size: 24px;
color: #f5f5f5;
}
h3 {
font-size: 18px;
color: #f5f5f5;
}
h4 {
font-size: 16px;
color: #f5f5f5;
}
h5 {
font-size: 14px;
color: #f5f5f5;
}
h6 {
font-size: 12px;
color: #f5f5f5;
}
.testimonial-author {
font-family: "Poppins", Helvetica, sans-serif;
font-weight: 600;
font-style: normal;
color: #f5f5f5;
}
.timeline-item .item-period,
.mobile-site-title {
font-family: "Poppins", Helvetica, sans-serif;
}
.form-control,
.form-control:focus,
.has-error .form-control,
.has-error .form-control:focus,
input[type="search"],
input[type="password"],
input[type="text"],
.header-search input.form-control {
font-family: "Poppins", Helvetica, sans-serif;
font-weight: 400;
font-style: normal;
}
.btn-primary, .btn-secondary, button, input[type="button"], input[type="submit"] {
font-family: "Poppins", Helvetica, sans-serif;
}
/* =============================================================================
3. Logo
============================================================================= */
.header-photo,
.header-photo img {
height: auto;
max-height: 150px;
width: auto;
max-width: 150px;
}
.logo-text {
line-height: 150px;
margin-left: 10px;
}
/* =============================================================================
4. Backgrounds
============================================================================= */
html {
background: -webkit-gradient(linear, left top, left bottom, from(#09aeea), to(#09aeea));
background: linear-gradient(#09aeea, #09aeea);
}
body {
background-color: transparent;
}
.lm-animated-bg {
position: absolute;
width: auto;
height: auto;
top: -18px;
left: -18px;
right: -18px;
bottom: -18px;
background-image: url(https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/uploads/sites/17/2020/06/main_bg.png);
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
z-index: -1;
}
.animated-section > .section-content,
.single-page-content > .content-wrapper,
.page-portfolio-loaded,
.single-post .site-content .post-content {
background-color: #222;
}
.btn-primary:hover,
.btn-primary:focus,
.elementor .btn-primary:hover,
.elementor .btn-primary:focus,
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.elementor .skill-percentage,
.elementor .service-icon,
.lm-pricing .lm-package-wrap.highlight-col .lm-heading-row span:after,
.portfolio-page-nav > div.nav-item a:hover,
.elementor .testimonials.owl-carousel .owl-nav .owl-prev:hover,
.elementor .testimonials.owl-carousel .owl-nav .owl-next:hover,
.elementor .clients.owl-carousel .owl-nav .owl-prev:hover,
.elementor .clients.owl-carousel .owl-nav .owl-next:hover,
.elementor .fw-pricing .fw-package-wrap.highlight-col .fw-heading-row span:after,
.cat-links li a,
.cat-links li a:hover,
.calendar_wrap td#today,
.nothing-found p,
.elementor .portfolio-grid figure .portfolio-preview-desc h5:after,
.preloader-spinner,
.elementor .info-list li .title:after,
.elementor .clients.owl-carousel .owl-dot.active span,
.elementor .clients.owl-carousel .owl-dot:hover span,
.elementor .testimonials.owl-carousel .owl-dot.active span,
.elementor .testimonials.owl-carousel .owl-dot:hover span,
.logo-symbol,
.elementor .fw-pricing .fw-package.highlight .fw-heading-row span:after,
.ps:hover>.ps__scrollbar-y-rail:hover>.ps__scrollbar-y,
.elementor .knowledges li,
.elementor .timeline .divider:before {
background-color: #09aeea;
}
@media only screen and (min-width: 1025px) {
ul.main-menu .link-text {
background-color: #09aeea;
}
}
@media only screen and (max-width: 1024px) {
.menu-toggle {
background-color: #09aeea;
}
}
.blog-sidebar .sidebar-item {
background-color: #333;
}
.block-title:after, h3.comment-reply-title:after {
background-image: -webkit-repeating-radial-gradient(center center, #09aeea, #09aeea 1px, transparent 0px, transparent 100%);
background-image: -moz-repeating-radial-gradient(center center, #09aeea, #09aeea 1px, transparent 0px, transparent 100%);
background-image: -ms-repeating-radial-gradient(center center, #09aeea, #09aeea 1px, transparent 0px, transparent 100%);
}
/* =============================================================================
5. Colors
============================================================================= */
a,
.form-group-with-icon.form-group-focus i,
.site-title span,
.header-search button:hover,
.header-search button:focus,
.block-title h3 span,
.header-search button:hover,
.header-search button:focus,
.ajax-page-nav > div.nav-item a:hover,
.project-general-info .fa,
.comment-author a:hover,
.comment-list .pingback a:hover,
.comment-list .trackback a:hover,
.comment-metadata a:hover,
.comment-reply-title small a:hover,
.entry-title a:hover,
.entry-content .edit-link a:hover,
.post-navigation a:hover,
.image-navigation a:hover,
.elementor .portfolio-grid figure i,
.share-buttons a:hover,
.elementor .info-block-w-icon i,
.elementor .lm-info-block i,
.lmpixels-arrows-nav div:hover,
.block-title h2 span, h3.comment-reply-title span,
ul.main-menu .current-menu-item a,
.elementor .block-title h2 span,
.elementor .fun-fact i,
.elementor .testimonial .author-info .icon,
.elementor .header-buttons .btn-primary:hover,
.elementor .form-group:not(.form-group-checkbox) .form-control:focus ~ label,
.elementor .form-group.form-group-focus:not(.form-group-checkbox) .form-control ~ label,
.elementor .info-list li .title,
.header-buttons .btn-primary:hover {
color: #09aeea;
}
a,
.entry-meta:not(.entry-tags-share) a:hover {
color: #0099cc;
}
a:hover,
.post-navigation .meta-nav:hover {
color: #006699;
}
.wp-block-pullquote.is-style-solid-color {
background-color: #09aeea;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background),
.wp-block-button.is-style-outline .wp-block-button__link:active,
.wp-block-button.is-style-outline .wp-block-button__link:focus,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
background-color: #09aeea;
}
@media only screen and (min-width: 1025px) {
ul.main-menu a.active,
ul.main-menu a:focus,
ul.main-menu a:hover {
color: #09aeea;
}
}
@media only screen and (max-width: 1024px) {
.header {
background-color: #09aeea;
}
}
/* =============================================================================
6. Borders
============================================================================= */
.logo-symbol,
.btn-primary,
.elementor .btn-primary,
button,
input[type="button"],
input[type="submit"],
.btn-primary:hover,
.btn-primary:focus,
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.form-control + .form-control-border,
.elementor .timeline-item,
.elementor .timeline-item:before,
.page-links a:hover,
.paging-navigation .page-numbers.current,
.paging-navigation .page-numbers:hover,
.paging-navigation .page-numbers:focus,
.portfolio-grid figure .portfolio-preview-desc h5:after,
.paging-navigation a:hover,
.skill-container,
.btn-primary, button, input[type="button"], input[type="submit"],
.blog-sidebar ul li:before,
.elementor .share-buttons a:hover,
.elementor .testimonials.owl-carousel .owl-nav .owl-prev:hover,
.elementor .testimonials.owl-carousel .owl-nav .owl-next:hover,
.elementor .clients.owl-carousel .owl-nav .owl-prev:hover,
.elementor .clients.owl-carousel .owl-nav .owl-next:hover,
.wp-block-pullquote,
.wp-block-button .wp-block-button__link,
.elementor .timeline-item h5.item-period,
.form-control ~ .form-control-border,
.elementor .form-control ~ .form-control-border,
.elementor .timeline .divider:after {
border-color: #09aeea;
}
@media only screen and (max-width: 1024px) {
.lmpixels-arrows-nav {
border-color: #09aeea;
}
}
/* =============================================================================
7. Page Titles and Page Content Area
============================================================================= */
.page-title:after {
background-image: -webkit-repeating-radial-gradient(center center, #09aeea, #09aeea 1px, transparent 0px, transparent 100%);
background-image: -moz-repeating-radial-gradient(center center, #09aeea, #09aeea 1px, transparent 0px, transparent 100%);
background-image: -ms-repeating-radial-gradient(center center, #09aeea, #09aeea 1px, transparent 0px, transparent 100%);
}
.page-title h1 {
color: #eeeeee;
font-size: 32px;
font-family: Poppins, Helvetica, sans-serif;
font-weight: 600;
font-style: normal;
letter-spacing: 0px;
}
@media only screen and (max-width: 1024px) {
.page-title h1 {
font-size: 25.6px;
}
}
.page-content {
background: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#444444));
background: linear-gradient(#444444, #444444);
}
/* =============================================================================
8. Custom Styles
============================================================================= */
</style>
<link rel="stylesheet" id="breezycv-google-fonts-css" href="https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic" type="text/css" media="all">
<script type="text/javascript" src="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp" id="jquery-core-js"></script>
<link rel="https://api.w.org/" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-json/"><link rel="alternate" type="application/json" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-json/wp/v2/pages/6"><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-includes/wlwmanifest.xml">
<meta name="generator" content="WordPress 5.5.3">
<link rel="canonical" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/">
<link rel="shortlink" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/">
<link rel="alternate" type="application/json+oembed" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-json/oembed/1.0/embed?url=https%3A%2F%2Flmpixels.com%2Fwp%2Fbreezycv-wp-lin%2Fdemo7-dark%2F">
<link rel="alternate" type="text/xml+oembed" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-json/oembed/1.0/embed?url=https%3A%2F%2Flmpixels.com%2Fwp%2Fbreezycv-wp-lin%2Fdemo7-dark%2F&format=xml">
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style><link rel="icon" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/uploads/sites/17/2020/07/favicon.ico" sizes="32x32">
<link rel="icon" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/uploads/sites/17/2020/07/favicon.ico" sizes="192x192">
<link rel="apple-touch-icon" href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/uploads/sites/17/2020/07/favicon.ico">
<meta name="msapplication-TileImage" content="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/uploads/sites/17/2020/07/favicon.ico">
<style data-styles="breezycv-theme-skills-css" type="text/css">#skill-skills5fc361dda6023 .skill-percentage { width: 90%; background-color: #04B4E0; } #skill-skills5fc361dda6023.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda6029 .skill-percentage { width: 65%; background-color: #04B4E0; } #skill-skills5fc361dda6029.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda602d .skill-percentage { width: 80%; background-color: #04B4E0; } #skill-skills5fc361dda602d.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda6031 .skill-percentage { width: 90%; background-color: #04B4E0; } #skill-skills5fc361dda6031.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda63b6 .skill-percentage { width: 95%; background-color: #04B4E0; } #skill-skills5fc361dda63b6.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda63bc .skill-percentage { width: 85%; background-color: #04B4E0; } #skill-skills5fc361dda63bc.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda63c0 .skill-percentage { width: 100%; background-color: #04B4E0; } #skill-skills5fc361dda63c0.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda63c4 .skill-percentage { width: 75%; background-color: #04B4E0; } #skill-skills5fc361dda63c4.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda63c8 .skill-percentage { width: 90%; background-color: #04B4E0; } #skill-skills5fc361dda63c8.skill-container { border-color: #04B4E0; } </style><style data-styles="breezycv-theme-skills-css" type="text/css">#skill-skills5fc361dda6023 .skill-percentage { width: 90%; background-color: #04B4E0; } #skill-skills5fc361dda6023.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda6029 .skill-percentage { width: 65%; background-color: #04B4E0; } #skill-skills5fc361dda6029.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda602d .skill-percentage { width: 80%; background-color: #04B4E0; } #skill-skills5fc361dda602d.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda6031 .skill-percentage { width: 90%; background-color: #04B4E0; } #skill-skills5fc361dda6031.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda63b6 .skill-percentage { width: 95%; background-color: #04B4E0; } #skill-skills5fc361dda63b6.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda63bc .skill-percentage { width: 85%; background-color: #04B4E0; } #skill-skills5fc361dda63bc.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda63c0 .skill-percentage { width: 100%; background-color: #04B4E0; } #skill-skills5fc361dda63c0.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda63c4 .skill-percentage { width: 75%; background-color: #04B4E0; } #skill-skills5fc361dda63c4.skill-container { border-color: #04B4E0; } #skill-skills5fc361dda63c8 .skill-percentage { width: 90%; background-color: #04B4E0; } #skill-skills5fc361dda63c8.skill-container { border-color: #04B4E0; } </style></head>
<body data-rsssl="1" class="home page-template page-template-page-templates page-template-template-breezycv-vcard page-template-page-templatestemplate-breezycv-vcard-php page page-id-6 wp-embed-responsive masthead-fixed full-width grid elementor-default elementor-kit-13" data-elementor-device-mode="desktop">
<div class="lm-animated-bg" style="background-position: calc(50% + 3.77168px) calc(50% + -3.98889px);"></div>
<!-- Loading animation -->
<div class="preloader" style="display: none;">
<div class="preloader-animation">
<div class="preloader-spinner">
</div>
</div>
</div>
<!-- /Loading animation -->
<div class="page-wrapper bg-move-effect">
<div class="page-content site-content">
<header id="site_header" class="header mobile-menu-hide">
<div class="header-content">
<div class="header-photo">
<a href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/">
<img src="//lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/uploads/sites/17/2020/10/cesar-rincon-e1603450241900.jpg" alt="image">
</a>
</div>
<div class="header-titles">
<a href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/">
<h2>Alex Smith</h2>
</a>
<h4>Web Designer</h4>
</div>
</div>
<ul id="menu-vcard-menu" class="breezycv-classic-menu main-menu"><li id="menu-item-30" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-icon"><a class="nav-anim active" href="#about-me" data-object="page"><span class="menu-icon lnr lnr-user"></span> <span class="link-text">About Me</span></a></li>
<li id="menu-item-61" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-icon"><a class="nav-anim" href="#resume" data-object="page"><span class="menu-icon lnr lnr-graduation-hat"></span> <span class="link-text">Resume</span></a></li>
<li id="menu-item-78" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-icon"><a class="nav-anim" href="#portfolio" data-object="page"><span class="menu-icon lnr lnr-briefcase"></span> <span class="link-text">Portfolio</span></a></li>
<li id="menu-item-107" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-icon"><a class="nav-anim" href="#blog" data-object="page"><span class="menu-icon lnr lnr-book"></span> <span class="link-text">Blog</span></a></li>
<li id="menu-item-111" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-icon"><a class="nav-anim" href="#contact" data-object="page"><span class="menu-icon lnr lnr-envelope"></span> <span class="link-text">Contact</span></a></li>
<li id="menu-item-203" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-icon"><a class="nav-anim nav-custom" target="_blank" href="https://themeforest.net/item/breezycv-vcard-wordpress-theme/27548163" data-object="custom"><span class="menu-icon lnr lnr-download"></span> <span class="link-text">Get it Now!</span></a></li>
</ul>
<!-- Social Links -->
<div class="social-links">
<ul>
<li>
<a href="#" target="_blank">
<i class="fafw fafw-linkedin"></i>
</a>
</li>
<li>
<a href="#" target="_blank">
<i class="fafw fafw-facebook-f"></i>
</a>
</li>
<li>
<a href="#" target="_blank">
<i class="fafw fafw-twitter"></i>
</a>
</li>
</ul>
</div>
<!-- /Social Links -->
<!-- Buttons -->
<div class="header-buttons">
<a href="#" target="_self" class="btn btn-primary">Download CV</a>
</div>
<!-- /Buttons -->
<!-- Copyrights -->
<div class="copyrights">© 2020 All rights reserved.</div>
<!-- /Copyrights -->
</header>
<div class="mobile-site-title mobile-visible">
<a href="https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/">
Alex Smith </a>
</div>
<!-- Mobile Navigation -->
<div class="menu-toggle">
<span></span>
<span></span>
<span></span>
</div>
<!-- End Mobile Navigation -->
<!-- Arrows Nav -->
<div class="lmpixels-arrows-nav">
<div class="lmpixels-arrow-right"><i class="lnr lnr-chevron-right"></i></div>
<div class="lmpixels-arrow-left"><i class="lnr lnr-chevron-left"></i></div>
</div>
<!-- End Arrows Nav -->
<div class="content-area">
<div class="animated-sections">
<section data-id="about-me" class="animated-section ps ps--theme_default ps--active-y section-active" data-ps-id="df4270f0-36fb-39ae-3a71-def5dd254251">
<div class="section-content">
<div data-elementor-type="wp-page" data-elementor-id="25" class="elementor elementor-25" data-elementor-settings="[]">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section class="elementor-section elementor-top-section elementor-element elementor-element-88efb68 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="88efb68" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-36d0fc2" data-id="36d0fc2" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-54d1827 elementor-widget elementor-widget-breezycv-home-page-second" data-id="54d1827" data-element_type="widget" data-widget_type="breezycv-home-page-second.default">
<div class="elementor-widget-container">
<div class="section-content vcentered home-page-second-style">
<div id="home_content_54d1827" class="home-content">
<div class="row flex-v-align">
<div class="col-sm-12 col-md-5 col-lg-5">
<div class="home-photo">
<div class="hp-inner" style="background-image: url("https://lmpixels.com/wp/breezycv-wp-lin/demo7-dark/wp-content/uploads/sites/17/2020/10/cesar-rincon-e1582792394202-1.jpg"); background-position: calc(50% + 3.77168px) calc(50% + -3.98889px);"></div>
</div>
<div class="hp-dots"></div>
</div>
<div class="col-sm-12 col-md-7 col-lg-7">
<div class="home-text">
<div class="owl-carousel text-rotation owl-loaded owl-drag">
<div class="owl-stage-outer"><div class="owl-stage" style="transform: translate3d(-1161px, 0px, 0px); transition: all 0s ease 0s; width: 2322px;"><div class="owl-item cloned" style="width: 377px; margin-right: 10px;"><div class="item">
<h4>Web Designer</h4>
</div></div><div class="owl-item cloned" style="width: 377px; margin-right: 10px;"><div class="item">
<h4>Frontend-developer</h4>
</div></div><div class="owl-item" style="width: 377px; margin-right: 10px;"><div class="item">
<h4>Web Designer</h4>
</div></div><div class="owl-item active" style="width: 377px; margin-right: 10px;"><div class="item">
<h4>Frontend-developer</h4>
</div></div><div class="owl-item cloned" style="width: 377px; margin-right: 10px;"><div class="item">
<h4>Web Designer</h4>
</div></div><div class="owl-item cloned" style="width: 377px; margin-right: 10px;"><div class="item">
<h4>Frontend-developer</h4>
</div></div></div></div><div class="owl-nav disabled"><div class="owl-prev">prev</div><div class="owl-next">next</div></div><div class="owl-dots disabled"></div></div>
<h1>Alex Smith</h1>
<p>I am a Full-Stack Web Developer & Web Designer based in The USA, but working Worldwide. I am passionate about designing and developing user-friendly websites. I have all the skills to create a new high quality website or improve existing websites for individuals and organisations, using the latest techniques and trends.</p>
<div class="home-buttons">
<a href="http://example.com" target="yes" class="btn btn-primary">Download CV</a>
<a href="http://example.com" target="yes" class="btn btn-secondary">Contact</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-6353276 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6353276" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4f5cebd" data-id="4f5cebd" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-dfaa64a elementor-widget elementor-widget-spacer" data-id="dfaa64a" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-925db9c elementor-widget elementor-widget-breezycv-block-title" data-id="925db9c" data-element_type="widget" data-widget_type="breezycv-block-title.default">
<div class="elementor-widget-container">
<div class="block-title"><h2>What <span>I Do</span></h2></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-2810c44 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2810c44" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-742ee06" data-id="742ee06" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-31d9f34 elementor-widget elementor-widget-breezycv-service" data-id="31d9f34" data-element_type="widget" data-widget_type="breezycv-service.default">
<div class="elementor-widget-container">
<div class="info-list-w-icon">
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-store"></i>
</div>
<div class="ci-text">
<h4>Ecommerce</h4>
<p>Pellentesque pellentesque, ipsum sit amet auctor accumsan, odio tortor bibendum massa, sit amet ultricies ex lectus scelerisque nibh. Ut non sodales.</p>
</div>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-5fb44c4 elementor-widget elementor-widget-breezycv-service" data-id="5fb44c4" data-element_type="widget" data-widget_type="breezycv-service.default">
<div class="elementor-widget-container">
<div class="info-list-w-icon">
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-laptop-phone"></i>
</div>
<div class="ci-text">
<h4>Web Design</h4>
<p>Pellentesque pellentesque, ipsum sit amet auctor accumsan, odio tortor bibendum massa, sit amet ultricies ex lectus scelerisque nibh. Ut non sodales.</p>
</div>
</div>
</div> </div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-09a986a" data-id="09a986a" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-aadc7bf elementor-widget elementor-widget-breezycv-service" data-id="aadc7bf" data-element_type="widget" data-widget_type="breezycv-service.default">
<div class="elementor-widget-container">
<div class="info-list-w-icon">
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-pencil"></i>
</div>
<div class="ci-text">
<h4>Copywriting</h4>
<p>Pellentesque pellentesque, ipsum sit amet auctor accumsan, odio tortor bibendum massa, sit amet ultricies ex lectus scelerisque nibh. Ut non sodales.</p>
</div>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-3c86a6e elementor-widget elementor-widget-breezycv-service" data-id="3c86a6e" data-element_type="widget" data-widget_type="breezycv-service.default">
<div class="elementor-widget-container">
<div class="info-list-w-icon">
<div class="info-block-w-icon">
<div class="ci-icon">
<i class="lnr lnr-flag"></i>
</div>
<div class="ci-text">
<h4>Management</h4>
<p>Pellentesque pellentesque, ipsum sit amet auctor accumsan, odio tortor bibendum massa, sit amet ultricies ex lectus scelerisque nibh. Ut non sodales.</p>
</div>
</div>
</div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-b8bd4fe elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b8bd4fe" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-981c762" data-id="981c762" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-be6bf74 elementor-widget elementor-widget-breezycv-testimonials" data-id="be6bf74" data-element_type="widget" data-widget_type="breezycv-testimonials.default">
<div class="elementor-widget-container">
<div class="block-title element-title"><h2>Testimonials</h2></div>
<div id="testimonials_be6bf74" class="testimonials owl-carousel loop-off autoplay-off owl-loaded owl-drag" data-mobile-items="1" data-tablet-items="2" data-items="2"><div class="owl-stage-outer"><div class="owl-stage" style="transform: translate3d(0px, 0px, 0px); transition: all 0s ease 0s; width: 1086px;"><div class="owl-item active" style="width: 352px; margin-right: 10px;"><div class="testimonial">
<div class="img">
<img src="https://lmpixels.com/wp/breezycv-wp-lin/wp-content/uploads/2020/07/testimonial-1.jpg" alt="Alex Smith">
</div>
<div class="text">
<p>Vivamus at molestie dui, eu ornare orci. Curabitur vel egestas dolor. Nulla condimentum nunc sit amet urna tempus finibus. Duis mollis leo id ligula pellentesque, at vehicula dui ultrices.</p>
</div>
<div class="author-info">
<h4 class="author">Julia Hickman</h4>
<h5 class="company"><a href="http://example.com" target="_blank">Omni Source</a></h5>
<div class="icon">
<i class="fa fa-quote-right"></i>
</div>
</div>
</div></div><div class="owl-item active" style="width: 352px; margin-right: 10px;"><div class="testimonial">
<div class="img">
<img src="https://lmpixels.com/wp/breezycv-wp-lin/wp-content/uploads/2020/07/testimonial-2.jpg" alt="Alex Smith">
</div>
<div class="text">
<p>Vivamus at molestie dui, eu ornare orci. Curabitur vel egestas dolor. Nulla condimentum nunc sit amet urna tempus finibus. Duis mollis leo id ligula pellentesque, at vehicula dui ultrices.</p>
</div>
<div class="author-info">
<h4 class="author">Robert Watkins</h4>
<h5 class="company"><a href="http://example.com" target="_blank">Endicott Shoes</a></h5>
<div class="icon">
<i class="fa fa-quote-right"></i>
</div>
</div>
</div></div><div class="owl-item" style="width: 352px; margin-right: 10px;"><div class="testimonial">
<div class="img">
<img src="https://lmpixels.com/wp/breezycv-wp-lin/wp-content/uploads/2020/07/testimonial-3.jpg" alt="Alex Smith">
</div>
<div class="text">
<p>Vivamus at molestie dui, eu ornare orci. Curabitur vel egestas dolor. Nulla condimentum nunc sit amet urna tempus finibus. Duis mollis leo id ligula pellentesque, at vehicula dui ultrices.</p>
</div>
<div class="author-info">
<h4 class="author">Kristin Carroll</h4>
<h5 class="company"><a href="http://example.com" target="_blank">Helping Hand</a></h5>
<div class="icon">
<i class="fa fa-quote-right"></i>
</div>
</div>
</div></div></div></div><div class="owl-nav"><div class="owl-prev disabled"></div><div class="owl-next"></div></div><div class="owl-dots disabled"></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-5673654 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5673654" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c310cfa" data-id="c310cfa" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-4687c3c elementor-widget elementor-widget-spacer" data-id="4687c3c" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-a1adde6 elementor-widget elementor-widget-breezycv-clients" data-id="a1adde6" data-element_type="widget" data-widget_type="breezycv-clients.default">
<div class="elementor-widget-container">
<div class="block-title element-title"><h2>Clients</h2></div>
<div id="clients_a1adde6" class="clients owl-carousel loop-off autoplay-off owl-loaded owl-drag" data-mobile-items="2" data-tablet-items="4" data-items="5"><div class="owl-stage-outer"><div class="owl-stage" style="transform: translate3d(0px, 0px, 0px); transition: all 0s ease 0s; width: 1014px;"><div class="owl-item active" style="width: 134.8px; margin-right: 10px;"><div class="client-block"><a href="http://example.com" target="_blank" title="Company 1"><img src="https://lmpixels.com/wp/breezycv-wp-lin/wp-content/uploads/2020/07/client-1.png" alt="Company 1"></a></div></div><div class="owl-item active" style="width: 134.8px; margin-right: 10px;"><div class="client-block"><a href="http://example.com" target="_blank" title="Company 2"><img src="https://lmpixels.com/wp/breezycv-wp-lin/wp-content/uploads/2020/07/client-2.png" alt="Company 2"></a></div></div><div class="owl-item active" style="width: 134.8px; margin-right: 10px;"><div class="client-block"><a href="http://example.com" target="_blank" title="Company 3"><img src="https://lmpixels.com/wp/breezycv-wp-lin/wp-content/uploads/2020/07/client-3.png" alt="Company 3"></a></div></div><div class="owl-item active" style="width: 134.8px; margin-right: 10px;"><div class="client-block"><a href="http://example.com" target="_blank" title="Company 4"><img src="https://lmpixels.com/wp/breezycv-wp-lin/wp-content/uploads/2020/07/client-4.png" alt="Company 4"></a></div></div><div class="owl-item active" style="width: 134.8px; margin-right: 10px;"><div class="client-block"><a href="http://example.com" target="_blank" title="Company 5"><img src="https://lmpixels.com/wp/breezycv-wp-lin/wp-content/uploads/2020/07/client-5.png" alt="Company 5"></a></div></div><div class="owl-item" style="width: 134.8px; margin-right: 10px;"><div class="client-block"><a href="http://example.com" target="_blank" title="Company 6"><img src="https://lmpixels.com/wp/breezycv-wp-lin/wp-content/uploads/2020/07/client-6.png" alt="Company 6"></a></div></div><div class="owl-item" style="width: 134.8px; margin-right: 10px;"><div class="client-block"><a href="http://example.com" target="_blank" title="Company 7"><img src="https://lmpixels.com/wp/breezycv-wp-lin/wp-content/uploads/2020/07/client-7.png" alt="Company 7"></a></div></div></div></div><div class="owl-nav"><div class="owl-prev disabled"></div><div class="owl-next"></div></div><div class="owl-dots"><div class="owl-dot active"><span></span></div><div class="owl-dot"><span></span></div></div></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-4af1044 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4af1044" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4174134" data-id="4174134" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-e319793 elementor-widget elementor-widget-spacer" data-id="e319793" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-5c75bca elementor-widget elementor-widget-breezycv-block-title" data-id="5c75bca" data-element_type="widget" data-widget_type="breezycv-block-title.default">
<div class="elementor-widget-container">
<div class="block-title"><h2>Pricing</h2></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-4e8095a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4e8095a" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-1c0363a" data-id="1c0363a" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-8665419 elementor-widget elementor-widget-breezycv-pricing" data-id="8665419" data-element_type="widget" data-widget_type="breezycv-pricing.default">
<div class="elementor-widget-container">
<div class="fw-pricing">
<div class="fw-package ">
<div class="fw-heading-row">
<span>Silver</span>
</div>
<div class="fw-pricing-row">
<span>$64</span>
<small>per month</small>
</div>
<div class="fw-button-row">
<a href="http://example.com" target="_self" class="btn btn-secondary">Free Trial</a>
</div>
<div class="fw-default-row">Lorem ipsum dolor</div>
<div class="fw-default-row">Pellentesque scelerisque</div>
<div class="fw-default-row">Morbi eu sagittis</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-3a6194d" data-id="3a6194d" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-9147377 elementor-widget elementor-widget-breezycv-pricing" data-id="9147377" data-element_type="widget" data-widget_type="breezycv-pricing.default">
<div class="elementor-widget-container">
<div class="fw-pricing">
<div class="fw-package highlight">
<div class="fw-heading-row">
<span>Gold</span>
</div>
<div class="fw-pricing-row">
<span>$128</span>
<small>per month</small>
</div>
<div class="fw-button-row">
<a href="http://example.com" target="_self" class="btn btn-primary">Free Trial</a>
</div>
<div class="fw-default-row">Lorem ipsum dolor</div>
<div class="fw-default-row">Pellentesque scelerisque</div>
<div class="fw-default-row">Morbi eu sagittis</div>
<div class="fw-default-row">Donec non diam</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-caccc95 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="caccc95" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0374f68" data-id="0374f68" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5e14bc5 elementor-widget elementor-widget-spacer" data-id="5e14bc5" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-ec4e7c4 elementor-widget elementor-widget-breezycv-block-title" data-id="ec4e7c4" data-element_type="widget" data-widget_type="breezycv-block-title.default">
<div class="elementor-widget-container">
<div class="block-title"><h2>Fun <span>Facts</span></h2></div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-e517537 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e517537" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-ae7d39d" data-id="ae7d39d" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-eaad9c2 elementor-widget elementor-widget-breezycv-fun-fact" data-id="eaad9c2" data-element_type="widget" data-widget_type="breezycv-fun-fact.default">
<div class="elementor-widget-container">
<div class="fun-fact">
<i class="lnr lnr-heart"></i>
<h4>Happy Clients</h4>
<span class="fun-fact-block-value">578</span>
</div> </div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-c9e7710" data-id="c9e7710" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-3ba6211 elementor-widget elementor-widget-breezycv-fun-fact" data-id="3ba6211" data-element_type="widget" data-widget_type="breezycv-fun-fact.default">
<div class="elementor-widget-container">
<div class="fun-fact">
<i class="lnr lnr-clock"></i>
<h4>Working Hours</h4>
<span class="fun-fact-block-value">4,780</span>
</div> </div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-a349f18" data-id="a349f18" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-1eb7487 elementor-widget elementor-widget-breezycv-fun-fact" data-id="1eb7487" data-element_type="widget" data-widget_type="breezycv-fun-fact.default">
<div class="elementor-widget-container">
<div class="fun-fact">
<i class="lnr lnr-star"></i>
<h4>Awards Won</h4>
<span class="fun-fact-block-value">15</span>
</div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
<div class="ps__scrollbar-x-rail" style="left: 0px; bottom: 0px;"><div class="ps__scrollbar-x" tabindex="0" style="left: 0px; width: 0px;"></div></div><div class="ps__scrollbar-y-rail" style="top: 0px; height: 270px; right: 0px;"><div class="ps__scrollbar-y" tabindex="0" style="top: 0px; height: 35px;"></div></div></section>
<section data-id="resume" class="animated-section ps ps--theme_default ps--active-y" data-ps-id="2a7fa22c-6960-cacc-21a4-661c5b50ed43">
<div class="section-content">
<div class="page-title">
<h1>Resume</h1> </div>
<div data-elementor-type="wp-page" data-elementor-id="59" class="elementor elementor-59" data-elementor-settings="[]">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section class="elementor-section elementor-top-section elementor-element elementor-element-8853760 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="8853760" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-13ef529" data-id="13ef529" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-21642d9 elementor-widget elementor-widget-breezycv-timeline" data-id="21642d9" data-element_type="widget" data-widget_type="breezycv-timeline.default">
<div class="elementor-widget-container">
<div class="timeline clearfix"><div class="block-title element-title"><h2>Education</h2></div><div class="timeline-item clearfix">
<div class="left-part">
<h5 class="item-period">2008</h5>
<span class="item-company">University of Studies</span>
</div>
<div class="divider"></div>