-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1336 lines (1214 loc) · 88.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 class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="assets/img/logo-32x32.png" sizes="32x32" />
<link rel="icon" href="assets/img/logo-192x192.png" sizes="192x192" />
<title>Nefi Arroyo</title>
<link href="assets/css/plugins.css" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href='./assets/css/new_styles.css'>
<meta name="description" content="Nefi Arroyo - Profesional en tecnología y desarrollo de soluciones innovadoras. Contáctame para colaborar en proyectos tech.">
</head>
<body class="v-dark bg-dots dsn-ajax">
<div id="dsn_preloader" class="preloader">
<!-- <div class="dsnload p-absolute">
<span class="dsnload__row">
<span class="dsnload__img">
<img src="assets/img/logo-light.png" class="logo-dark" alt="Blackdsn" decoding="async"
loading="lazy" />
<img src="assets/img/logo.png" class="logo-light" alt="Blackdsn" decoding="async" loading="lazy" />
</span>
</span>
<span class="dsnload__row dsnload__row--sibling">
<span class="dsnload__img">
<img src="assets/img/logo-light.png" class="logo-dark" alt="Blackdsn" decoding="async"
loading="lazy" />
<img src="assets/img/logo.png" class="logo-light" alt="Blackdsn" decoding="async" loading="lazy" />
</span>
</span>
<span class="dsnload__row dsnload__row--sibling">
<span class="dsnload__img">
<img src="assets/img/logo-light.png" class="logo-dark" alt="Blackdsn" decoding="async"
loading="lazy" />
<img src="assets/img/logo.png" class="logo-light" alt="Blackdsn" decoding="async" loading="lazy" />
</span>
</span>
<span class="dsnload__row dsnload__row--sibling">
<span class="dsnload__img">
<img src="assets/img/logo-light.png" class="logo-dark" alt="Blackdsn" decoding="async"
loading="lazy" />
<img src="assets/img/logo.png" class="logo-light" alt="Blackdsn" decoding="async" loading="lazy" />
</span>
</span>
</div> -->
<svg width="100%" height="100%" viewBox="0 0 100 100" class="v-middle" preserveAspectRatio="xMinYMin meet"
fill="none">
<linearGradient id="linearColors" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="var(--theme-color)"></stop>
<stop offset="50%" stop-color="var(--border-color)"></stop>
<stop offset="100%" stop-color="var(--assistant-color)"></stop>
</linearGradient>
<path class="dsn-progress-path" d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
</svg>
<div class="loading-circle v-middle">
<p class="loading-count v-middle">0</p>
</div>
<span class="loading-text text-uppercase mt-30 dsn-container">Loading ...</span>
<div class="bg-load background-section d-flex align-items-end">
<svg class="dsn-separator-bottom dsn-icon-assistant-color" width="100%" height="100%" viewBox="0 0 100 10"
preserveAspectRatio="none">
<path class="path-anim separator__path" data-dsn-to="M 0 0 C 40 0 55 0 100 0 L 0 0 Z"
vector-effect="non-scaling-stroke" d="M 0 0 C 40 16 75 10 100 0 L 0 0 Z"></path>
</svg>
</div>
</div>
<main id="main_root" class="main-root">
<!-- ========== Menu ========== -->
<header id="site_menu_header" class="site-header dsn-container d-none dsn-hamburger">
<div class="main-logo">
<a href="index.html" data-dsn-text="Blackdsn" class="custom-logo-link main-brand effect-ajax" rel="home"
aria-current="page">
<img src="assets/img/logos/logo-light.png" class="custom-logo logo-light" alt="Blackdsn" />
<img src="assets/img/logos/logo-dark.png" class="custom-logo logo-dark" alt="Blackdsn" />
</a>
</div>
<nav class="main-navigation ">
<div class="menu-cover-title header-container dsn-container">MENU</div>
<ul id="dsn-primary-list" class="primary-nav h2">
<!-- <li class="nav-item has-sub-menu">
<a title="Home" href="#0">
<span class="overflow ">Blog</span>
</a>
<ul class="nav-item">
<li class="dsn-back">
<span>
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="30px"
viewBox="0 0 400.004 400.004" xml:space="preserve">
<g>
<path
d="M382.688,182.686H59.116l77.209-77.214c6.764-6.76,6.764-17.726,0-24.485c-6.764-6.764-17.73-6.764-24.484,0L5.073,187.757 c-6.764,6.76-6.764,17.727,0,24.485l106.768,106.775c3.381,3.383,7.812,5.072,12.242,5.072c4.43,0,8.861-1.689,12.242-5.072 c6.764-6.76,6.764-17.726,0-24.484l-77.209-77.218h323.572c9.562,0,17.316-7.753,17.316-17.315 C400.004,190.438,392.251,182.686,382.688,182.686z" />
</g>
</svg>
<span class="text-toggle-back">
<span class="text-name">Blog</span>
<span class="text-back">Back</span>
</span>
</span>
</li>
<li class="nav-item ">
<a title="Stories" href="stories.html" data-dsn-text="Stories">
<span class="overflow">Stories</span>
</a>
</li>
<li class="nav-item ">
<a title="Single Post" href="single-post.html" data-dsn-text="Single Post">
<span class="overflow">Single Post</span>
</a>
</li>
</ul>
</li> -->
<li class="nav-item ">
<!-- <a title="Home" href="contact.html">
<span class="overflow">Contact</span>
</a> -->
</li>
</ul>
<div class="container-content d-flex flex-column justify-content-center section-margin">
<div class="nav__info">
<div class="nav-content">
<h5 class="sm-title-block mb-10">Address</h5>
Lima, Peru
</div>
<div class="nav-content mt-30">
<h5 class="sm-title-block mb-10">Contact</h5>
<p class="links over-hidden mb-1">
<a class="link-hover" href="tel:+51 93113706" data-hover-text="+51 93113706"><strong>+51</strong> 93113706</a>
</p>
<p class="links over-hidden"><a class="link-hover" href="mailto:[email protected]"
data-hover-text="[email protected]">[email protected]</a></p>
</div>
</div>
<div class="nav-social nav-content mt-30">
<div class="nav-social-inner p-relative">
<h5 class="sm-title-block mb-10">Follow me</h5>
<ul style="--dsn-li-name: dsn6;">
<!-- <li style="--dsn-li-index: 0;"><a href="https://www.facebook.com/PyNef" target="_blank"
rel="nofollow noopener noreferrer">Facebook.</a></li>
<li style="--dsn-li-index: 1;"><a href="https://www.instagram.com/pynef42/" target="_blank"
rel="nofollow noopener noreferrer">Instagram.</a></li> -->
<li style="--dsn-li-index: 2;"><a href="https://www.linkedin.com/in/nefiarroyo/" target="_blank"
rel="nofollow noopener noreferrer">Linkedin.</a></li>
<li style="--dsn-li-index: 3;"><a href="https://twitter.com/PyNef" target="_blank"
rel="nofollow noopener noreferrer">Twitter.</a></li>
</ul>
</div>
</div>
</div>
</nav>
<div id="navbar_toggle" class="navbar-toggle">
<div class="toggle-icon">
<div class="toggle-line"></div>
<div class="toggle-line"></div>
<div class="toggle-line"></div>
</div>
<div class="toggle-text">
<div class="text-menu">Menu</div>
<div class="text-open">Open</div>
<div class="text-close">Close</div>
</div>
</div>
<div class="bg-load background-main"></div>
<svg width="100%" height="100%" viewBox="0 0 100 100" preserveAspectRatio="none"
class="bg-load dsn-svg-transition">
<path vector-effect="non-scaling-stroke" d="M 0 100 V 100 Q 50 100 100 100 V 100 z" />
</svg>
</header>
<!-- ========== End Menu ========== -->
<!-- ========== Header Personal ========== -->
<header class="p-relative header-personal d-grid grid-md-2 d-grid-no-space">
<div class="p-relative box-img ">
<div class="img-box-parallax before-z-index " data-dsn-triggerhook="top" data-dsn-grid="move-up"
data-overlay="4">
<img src='assets/img/personal/nef_black&white-modified.jpg' class=" cover-bg-img has-direction"
alt='' />
</div>
<ul class="dsn-socials box-social">
<!-- <li>
<a href="https://www.facebook.com/PyNef" target="_blank" rel="nofollow" class="move-circle border-color-default"
data-dsn="parallax">
<span class="dsn-icon"><i class="fab fa-facebook-f"></i></span>
<span>FB</span>
</a>
</li> -->
<li>
<a href="https://twitter.com/PyNef" target="_blank" rel="nofollow" class="move-circle border-color-default"
data-dsn="parallax">
<span class="dsn-icon">
<i class="fab fa-twitter"></i>
</span>
<span>TW</span>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/nefiarroyo/" target="_blank" rel="nofollow" class="move-circle border-color-default"
data-dsn="parallax">
<span class="dsn-icon">
<i class="fab fa-linkedin-in"></i>
</span>
<span>LN</span>
</a>
</li>
<!-- <li>
<a href="https://www.instagram.com/pynef42/" target="_blank" rel="nofollow" class="move-circle border-color-default"
data-dsn="parallax">
<span class="dsn-icon">
<i class="fab fa-instagram"></i>
</span>
<span>IN</span>
</a>
</li> -->
</ul>
</div>
<div class="box-content box-padding d-flex align-items-center">
<div class="box-content-inner">
<h1 class="title text-upper">
<span class="letter-stroke d-block">I'M</span>
<span class="p-10 background-theme heading-color">Nefi Arroyo</span>
</h1>
<h6 class="sm-title-block mt-30">
Technology advisor
</h6>
<p class="sm-title-block border-top border-bottom mt-30 pt-20 pb-20 max-w570">
“I started several years ago in the world of technology going through different roles and
supporting communities to spread knowledge ”
</p>
<div class="dsn-def-btn dsn-hover-icon dsn-icon-heading-color mt-30">
<a class="dsn-btn background-section move-circle has-icon-left" target="_blank"
href="https://medium.com/@PyNef" data-dsn="parallax">
<span class="dsn-icon dsn-bg-before btn-icon-left heading-color z-index-1">
<i class="fas fa-angle-right"></i>
</span>
<span class="title-btn p-relative z-index-1 ">About Me</span>
</a>
</div>
</div>
</div>
</header>
<!-- ========== End Header Personal ========== -->
<div id="page_wrapper" class="wrapper">
<!-- ========== About Section ========== -->
<div class="about-personal container section-margin">
<div class="box-content pt-section">
<div class="box-content-inner background-section">
<div class="section-title d-flex ">
<div class="sub-section-title ">
<p class="description d-inline-block p-relative mb-10">
My Core Tools
</p>
<h2 class="title-h2 p-10 background-theme">
Technologies
</h2>
</div>
</div>
<div class="d-grid grid-sm-3 mt-30 dsn-skills">
<div class="dsn-skills-item grid-item">
<div class="skills-inner">
<div class="bar-svg">
<div class="fill-bar p-relative background-theme">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-1 -1 34 34">
<circle cx="16" cy="16" r="15.9155" class="progress-bar__background" />
<circle cx="16" cy="16" r="15.9155"
class="progress-bar__progress js-progress-bar dsn-animate-skill"
data-dsn-progress="80" />
</svg>
<h4 class="dsn-number-award number sm-title-block v-middle">80%</h4>
</div>
<h5 class="dsn-title-award sm-title-block mt-30">Python</h5>
</div>
</div>
</div>
<div class="dsn-skills-item grid-item">
<div class="skills-inner">
<div class="bar-svg">
<div class="fill-bar p-relative background-theme">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-1 -1 34 34">
<circle cx="16" cy="16" r="15.9155" class="progress-bar__background" />
<circle cx="16" cy="16" r="15.9155"
class="progress-bar__progress js-progress-bar dsn-animate-skill"
data-dsn-progress="75" />
</svg>
<h4 class="dsn-number-award number sm-title-block v-middle">75%</h4>
</div>
<h5 class="dsn-title-award sm-title-block mt-30">Django</h5>
</div>
</div>
</div>
<div class="dsn-skills-item grid-item">
<div class="skills-inner">
<div class="bar-svg">
<div class="fill-bar p-relative background-theme">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-1 -1 34 34">
<circle cx="16" cy="16" r="15.9155" class="progress-bar__background" />
<circle cx="16" cy="16" r="15.9155"
class="progress-bar__progress js-progress-bar dsn-animate-skill"
data-dsn-progress="70" />
</svg>
<h4 class="dsn-number-award number sm-title-block v-middle">70%</h4>
</div>
<h5 class="dsn-title-award sm-title-block mt-30">Flask</h5>
</div>
</div>
</div>
<div class="dsn-skills-item grid-item">
<div class="skills-inner">
<div class="bar-svg">
<div class="fill-bar p-relative background-theme">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-1 -1 34 34">
<circle cx="16" cy="16" r="15.9155" class="progress-bar__background" />
<circle cx="16" cy="16" r="15.9155"
class="progress-bar__progress js-progress-bar dsn-animate-skill"
data-dsn-progress="80" />
</svg>
<h4 class="dsn-number-award number sm-title-block v-middle">80%</h4>
</div>
<h5 class="dsn-title-award sm-title-block mt-30">Javascript</h5>
</div>
</div>
</div>
<div class="dsn-skills-item grid-item">
<div class="skills-inner">
<div class="bar-svg">
<div class="fill-bar p-relative background-theme">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-1 -1 34 34">
<circle cx="16" cy="16" r="15.9155" class="progress-bar__background" />
<circle cx="16" cy="16" r="15.9155"
class="progress-bar__progress js-progress-bar dsn-animate-skill"
data-dsn-progress="75" />
</svg>
<h4 class="dsn-number-award number sm-title-block v-middle">75%</h4>
</div>
<h5 class="dsn-title-award sm-title-block mt-30">React</h5>
</div>
</div>
</div>
<div class="dsn-skills-item grid-item">
<div class="skills-inner">
<div class="bar-svg">
<div class="fill-bar p-relative background-theme">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-1 -1 34 34">
<circle cx="16" cy="16" r="15.9155" class="progress-bar__background" />
<circle cx="16" cy="16" r="15.9155"
class="progress-bar__progress js-progress-bar dsn-animate-skill"
data-dsn-progress="70" />
</svg>
<h4 class="dsn-number-award number sm-title-block v-middle">70%</h4>
</div>
<h5 class="dsn-title-award sm-title-block mt-30">Aws</h5>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="box-img p-relative">
<div class="img-box-parallax before-z-index" data-dsn="parallax" data-overlay="0">
<img src="assets/img/bakgrounds/side-nef_black.png" class="cover-bg-img" alt="" />
</div>
<!-- Capa adicional para el fondo negro -->
<div class="overlay"></div>
</div>
</div>
<!-- ========== End About Section ========== -->
<!-- ========== Service ========== -->
<div class="container section-margin">
<div class="section-title d-flex justify-content-center text-center mb-70">
<div class="sub-section-title ">
<p class="description d-inline-block p-relative mb-10">Explore My Skills</p>
<h2 class="title-h2 p-10 background-theme">I focus on designing and implementing solutions.</h2>
</div>
</div>
<div class="icon-top dsn-icon-theme-color text-center">
<div class="dsn-service d-grid grid-lg-3 grid-sm-2 dsn-masonry-grid dsn-masonry-grid-2 dsn-isotope "
data-dsn-iconsize="80px">
<div class="dsn-up service-item p-relative grid-item ">
<div class="service-item-inner background-section number-item h-100">
<div class="dsn-icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
id="Layer_1" x="0px" y="0px" width="50px" height="50px" viewBox="0 0 50 50"
xml:space="preserve">
<g>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M25.515,27.051c-0.371-0.159-0.756-0.298-1.117-0.483 c-6.626-3.398-13.254-6.794-19.865-10.221c-0.416-0.215-1.031-0.76-0.972-1.019c0.102-0.446,0.593-0.919,1.04-1.152 c6.651-3.461,13.312-6.904,20.007-10.279c0.516-0.259,1.414-0.177,1.955,0.099c3.589,1.828,7.11,3.788,10.689,5.634 c3.028,1.562,6.114,3.01,9.149,4.558c0.454,0.232,0.77,0.738,1.149,1.116c-0.358,0.331-0.665,0.76-1.082,0.977 c-6.629,3.457-13.272,6.887-19.914,10.319C26.234,26.765,25.895,26.888,25.515,27.051z M44.76,15.372 c-0.513-0.362-0.775-0.596-1.078-0.752c-5.791-2.994-11.577-5.999-17.402-8.927c-0.479-0.24-1.32-0.129-1.835,0.131 c-5.546,2.792-11.063,5.643-16.583,8.488c-0.508,0.262-0.983,0.59-1.696,1.021c6.433,3.309,12.539,6.471,18.68,9.562 c0.432,0.217,1.206,0.052,1.695-0.189c2.922-1.443,5.806-2.963,8.705-4.454C38.347,18.659,41.449,17.07,44.76,15.372z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd"
style="--dsn-color-icon : var(--heading-color)"
d="M6.153,25.292c1.245,0.667,2.225,1.209,3.22,1.722 c5.014,2.583,10.02,5.182,15.065,7.701c0.544,0.272,1.446,0.323,1.973,0.059c5.826-2.926,11.61-5.933,17.403-8.924 c0.257-0.133,0.479-0.329,0.912-0.632c-1.152-0.605-2.191-1.057-3.114-1.681c-0.401-0.271-0.563-0.897-0.833-1.363 c0.501-0.038,1.084-0.26,1.489-0.081c1.456,0.645,2.868,1.395,4.266,2.163c1.333,0.732,1.365,1.37,0.078,2.036 c-6.755,3.495-13.519,6.975-20.308,10.403c-0.455,0.229-1.24,0.185-1.71-0.053c-6.743-3.407-13.462-6.859-20.174-10.326 c-1.297-0.67-1.284-1.349,0.015-2.057c1.454-0.792,2.922-1.563,4.431-2.241c0.35-0.157,0.885,0.097,1.334,0.162 c-0.185,0.413-0.256,0.999-0.575,1.206C8.602,24.052,7.487,24.577,6.153,25.292z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M44.767,35.25c-1.224-0.643-2.298-1.123-3.27-1.759 c-0.362-0.237-0.485-0.838-0.718-1.272c0.493-0.05,1.072-0.29,1.465-0.115c1.51,0.674,2.977,1.452,4.43,2.247 c1.189,0.651,1.184,1.312-0.063,1.957c-6.71,3.476-13.429,6.936-20.176,10.341c-0.502,0.253-1.354,0.251-1.857-0.002 c-6.748-3.402-13.468-6.859-20.181-10.33c-1.246-0.645-1.257-1.307-0.06-1.968c1.496-0.824,3.012-1.618,4.566-2.322 c0.339-0.154,0.877,0.129,1.323,0.211c-0.203,0.407-0.299,0.974-0.627,1.189c-0.968,0.637-2.028,1.135-3.331,1.838 c0.666,0.42,1.023,0.683,1.412,0.884c5.565,2.872,11.125,5.757,16.72,8.57c0.548,0.275,1.453,0.354,1.977,0.091 c5.83-2.921,11.619-5.925,17.416-8.912C44.055,35.763,44.287,35.572,44.767,35.25z">
</path>
</g>
</svg>
</div>
<div class="service-content p-relative">
<h4 class="service_title title-block border-top pt-20 border-bottom pb-20 mb-20">
Frontend
</h4>
<div class="service_description mt-20 max-w570 dsn-auto ">
<p>
"I build secure and scalable systems to support robust functionality."
</p>
</div>
</div>
</div>
</div>
<div class="dsn-up service-item p-relative grid-item ">
<div class="service-item-inner background-section number-item h-100">
<div class="dsn-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50" height="50">
<g fill="none" stroke="currentColor" stroke-width="2">
<rect x="10" y="10" width="30" height="30" rx="3" />
<path d="M15 20h20M15 25h20M15 30h20" />
<circle cx="25" cy="35" r="2" fill="currentColor" />
</g>
</svg>
</div>
<div class="service-content p-relative">
<h4 class="service_title title-block border-top pt-20 border-bottom pb-20 mb-20">
Backend</h4>
<div class="service_description mt-20 max-w570 dsn-auto">
<p>
"Creating scalable and secure server systems is at the core of my work."
</p>
</div>
</div>
</div>
</div>
<div class="dsn-up service-item p-relative grid-item ">
<div class="service-item-inner background-section number-item h-100">
<div class="dsn-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50" height="50">
<g fill="none" stroke="currentColor" stroke-width="2">
<path d="M15 30a10 10 0 0 1 0-20 12 12 0 0 1 23 6 7 7 0 1 1-2 14H15z" />
</g>
</svg>
</div>
<div class="service-content p-relative">
<h4 class="service_title title-block border-top pt-20 border-bottom pb-20 mb-20">
Cloud</h4>
<div class="service_description mt-20 max-w570 dsn-auto">
<p>
"I improve workflows through tailored, cloud-powered solutions.
</p>
</div>
</div>
</div>
</div>
<div class="dsn-up service-item p-relative grid-item ">
<div class="service-item-inner background-section number-item h-100">
<div class="dsn-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50" height="50">
<g fill="none" stroke="currentColor" stroke-width="2">
<rect x="15" y="20" width="20" height="20" rx="3" />
<path d="M20 20v-5a5 5 0 1 1 10 0v5" />
<circle cx="25" cy="30" r="2" fill="currentColor" />
</g>
</svg>
</div>
<div class="service-content p-relative">
<h4 class="service_title title-block border-top pt-20 border-bottom pb-20 mb-20">
Cibersegurity
</h4>
<div class="service_description mt-20 max-w570 dsn-auto ">
<p>
"I ensure system integrity with advanced security practices."
</p>
</div>
</div>
</div>
</div>
<div class="dsn-up service-item p-relative grid-item ">
<div class="service-item-inner background-section number-item h-100">
<div class="dsn-icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
id="Layer_1" x="0px" y="0px" width="50px" height="50px" viewBox="0 0 50 50"
xml:space="preserve">
<g>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M20.944,14.012c-4.79,0-9.443,0-14.079,0c-0.452,1.854-1.236,2.1-4.715,1.769 c-1.399-0.134-1.274-1.091-1.086-1.813c0.312-1.194-1.164-3.078,1.064-3.523c3.126-0.625,4.292-0.086,4.752,1.688 c4.629,0,9.276,0,13.868,0c0.118-0.163,0.229-0.245,0.233-0.331c0.09-2.241-0.195-2.33,2.678-2.304 c0.658,0.006,1.317,0.002,1.977,0.001c2.706-0.002,2.706-0.002,3.098,2.574c4.658,0,9.343,0,14.028,0 c0.466-1.725,1.538-2.251,4.723-1.621c2.313,0.458,0.729,2.421,1.086,3.657c0.234,0.809,0.101,1.608-1.242,1.682 c-3.792,0.208-4.104,0.136-4.549-1.773c-4.639,0-9.293,0-13.927,0c-0.084,0.115-0.196,0.196-0.201,0.283 c-0.151,2.852-0.224,2.339-2.926,2.396c-0.933,0.02-1.873-0.059-2.8,0.018c-1.438,0.122-2.06-0.415-1.887-1.776 C21.072,14.691,20.992,14.435,20.944,14.012z M22.922,14.82c1.354,0,2.532,0,3.76,0c0-1.218,0-2.326,0-3.482 c-1.313,0-2.524,0-3.76,0C22.922,12.551,22.922,13.624,22.922,14.82z M2.87,13.928c0.7,0,1.222,0,1.799,0c0-0.619,0-1.152,0-1.81 c-0.681,0.039-1.241,0.071-1.799,0.104C2.87,12.868,2.87,13.322,2.87,13.928z M44.924,14.051c0.724-0.057,1.244-0.097,1.8-0.141 c0-0.62,0-1.11,0-1.667c-0.65,0-1.208,0-1.8,0C44.924,12.848,44.924,13.344,44.924,14.051z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M1.02,36.725c0.056-4.04-0.59-3.539,3.75-3.533 c4.271,0.006,3.804-0.574,3.787,3.667c-0.017,4.106,0.509,3.49-3.765,3.521C1.019,40.406,1.019,40.385,1.02,36.725z M6.617,38.565 c0-1.231,0-2.34,0-3.511c-1.272,0-2.45,0-3.699,0c0,1.21,0,2.318,0,3.511C4.168,38.565,5.308,38.565,6.617,38.565z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M48.61,36.829c-0.063,4.104,0.604,3.548-3.725,3.545 c-4.384-0.005-3.819,0.6-3.825-3.618c-0.005-4.118-0.47-3.565,3.739-3.564C49.19,33.191,48.553,32.618,48.61,36.829z M42.997,38.54 c1.304,0,2.48,0,3.705,0c0-1.218,0-2.325,0-3.477c-1.287,0-2.464,0-3.705,0C42.997,36.242,42.997,37.313,42.997,38.54z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd"
style="--dsn-color-icon : var(--heading-color)"
d="M3.907,30.129c0.707-4.828,2.875-8.57,6.166-11.771 c0.722-0.703,1.485-1.393,2.334-1.945c0.389-0.254,1.032-0.162,1.56-0.227c-0.164,0.507-0.158,1.205-0.519,1.491 c-3.182,2.508-5.611,5.502-6.952,9.222c-0.351,0.972-0.454,2.024-0.816,2.99c-0.182,0.484-0.693,0.857-1.055,1.282 C4.338,30.754,4.049,30.335,3.907,30.129z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd"
style="--dsn-color-icon : var(--heading-color)"
d="M45.727,30.116c-0.137,0.204-0.422,0.629-0.708,1.055 c-0.359-0.42-0.962-0.804-1.04-1.267c-0.854-5.004-3.428-8.997-7.643-12.118c-0.414-0.307-0.467-1.046-0.688-1.585 c0.575,0.087,1.295-0.005,1.704,0.287C42.037,19.831,44.871,24.229,45.727,30.116z">
</path>
</g>
</svg>
</div>
<div class="service-content p-relative">
<h4 class="service_title title-block border-top pt-20 border-bottom pb-20 mb-20">
Devops</h4>
<div class="service_description mt-20 max-w570 dsn-auto">
<p>
"Streamlining development processes and automating workflows drives my approach."
</p>
</div>
</div>
</div>
</div>
<div class="dsn-up service-item p-relative grid-item ">
<div class="service-item-inner background-section number-item h-100">
<div class="dsn-icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
id="Layer_1" x="0px" y="0px" width="50px" height="50px" viewBox="0 0 50 50"
xml:space="preserve">
<g>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M18.072,40.553c0-0.932-0.062-1.868,0.013-2.794 c0.146-1.81-0.475-3.234-1.633-4.647c-1.268-1.547-2.404-3.274-3.239-5.089c-2.214-4.811-1.168-9.314,1.994-13.308 c3.294-4.164,7.795-5.363,12.816-4.145c5.08,1.233,8.364,4.637,9.375,9.721c0.67,3.365,0.388,6.819-2.079,9.689 c-0.868,1.011-1.687,2.122-2.249,3.318c-0.621,1.318-1.179,2.764-1.305,4.193c-0.222,2.52-0.048,5.071-0.133,7.605 c-0.068,2.067-2.064,4.004-4.106,4.059c-1.696,0.045-3.395,0.022-5.093,0.01c-2.438-0.018-4.307-1.811-4.394-4.262 c-0.052-1.448-0.009-2.9-0.009-4.351C18.044,40.553,18.058,40.553,18.072,40.553z M29.94,41.686c0-1.752-0.168-3.318,0.051-4.828 c0.194-1.339,0.652-2.706,1.297-3.897c0.728-1.344,1.849-2.469,2.705-3.752c3.775-5.662,2.175-12.419-3.692-15.824 c-4.225-2.452-9.512-1.524-12.7,1.058c-2.954,2.392-5.222,7.669-3.05,12.026c0.78,1.565,1.752,3.034,2.618,4.558 c0.761,1.339,1.444,2.724,2.27,4.019c0.262,0.412,0.863,0.845,1.318,0.856c1.754,0.044,3.512-0.096,5.27-0.13 c0.693-0.015,1.626-0.207,1.623,0.894c-0.003,1.088-0.926,0.904-1.626,0.908c-2.005,0.013-4.01,0.005-6.139,0.005 c0,2.522-0.13,5.002,0.05,7.458c0.103,1.41,0.977,2.499,2.635,2.528c1.346,0.024,2.692,0.075,4.039,0.059 c2.395-0.029,3.558-1.525,3.075-4.293c-2.051,0-4.161,0.048-6.266-0.036c-0.464-0.018-0.91-0.496-1.364-0.763 c0.47-0.281,0.931-0.785,1.412-0.807C25.527,41.633,27.596,41.686,29.94,41.686z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd"
style="--dsn-color-icon : var(--heading-color)"
d="M12.989,10.347c-0.546,0.164-1.233,0.569-1.437,0.398 C10.38,9.76,9.294,8.665,8.257,7.536C8.094,7.359,8.201,6.679,8.414,6.484c0.216-0.197,0.87-0.252,1.07-0.074 c1.073,0.952,2.07,1.99,3.078,3.015C12.695,9.56,12.735,9.785,12.989,10.347z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd"
style="--dsn-color-icon : var(--heading-color)"
d="M37.373,10.994c-0.099-0.492-0.441-1.185-0.246-1.411 c1.004-1.159,2.125-2.219,3.264-3.25c0.158-0.143,0.743-0.042,0.94,0.146c0.202,0.194,0.346,0.792,0.214,0.937 c-1.069,1.167-2.205,2.273-3.336,3.383C38.117,10.89,37.918,10.873,37.373,10.994z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd"
style="--dsn-color-icon : var(--heading-color)"
d="M25.748,3.132c-0.001,0.618,0.112,1.265-0.041,1.842 c-0.103,0.389-0.58,0.678-0.889,1.013c-0.276-0.315-0.765-0.613-0.792-0.947c-0.096-1.227-0.11-2.473,0.001-3.697 c0.033-0.363,0.578-0.679,0.888-1.017c0.277,0.37,0.69,0.704,0.799,1.119C25.854,1.973,25.749,2.566,25.748,3.132z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd"
style="--dsn-color-icon : var(--heading-color)"
d="M43.725,23.819c-0.406-0.043-0.854,0.003-1.205-0.158 c-0.268-0.123-0.608-0.546-0.565-0.769c0.06-0.315,0.435-0.796,0.692-0.807c1.327-0.057,2.663-0.028,3.989,0.072 c0.305,0.022,0.58,0.445,0.869,0.684c-0.339,0.265-0.655,0.713-1.021,0.758c-0.905,0.11-1.835,0.036-2.755,0.036 C43.728,23.696,43.726,23.758,43.725,23.819z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd"
style="--dsn-color-icon : var(--heading-color)"
d="M3.5,24.01c-0.448-0.367-0.896-0.733-1.343-1.101 c0.493-0.293,0.963-0.779,1.482-0.837c0.958-0.106,1.954-0.026,2.915,0.112c0.416,0.061,0.783,0.457,1.172,0.701 c-0.37,0.255-0.72,0.687-1.113,0.731c-0.962,0.107-1.945,0.035-2.92,0.035C3.629,23.771,3.564,23.89,3.5,24.01z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd"
style="--dsn-color-icon : var(--heading-color)"
d="M25.306,16.083c3.552,0.405,6.106,2.751,6.305,6.291 c0.022,0.39-0.47,0.808-0.723,1.212c-0.27-0.31-0.708-0.583-0.783-0.935c-0.595-2.77-2.146-4.448-5.048-4.813 c-0.33-0.04-0.586-0.662-0.876-1.014C24.64,16.521,25.099,16.218,25.306,16.083z">
</path>
</g>
</svg>
</div>
<div class="service-content p-relative">
<h4 class="service_title title-block border-top pt-20 border-bottom pb-20 mb-20">
Innovation</h4>
<div class="service_description mt-20 max-w570 dsn-auto">
<p>
"Turning creative ideas into effective solutions is what I do best."
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ========== End Service ========== -->
<!-- ========== Portfolio ========== -->
<!-- <div class="p-relative pb-section over-hidden box-shadow-image box-image-transform dsn-style-cards ">
<div class="root-posts">
<div class="dsn-grid-layout dsn-grid dsn-posts dsn-post-type-cards use-horizontal-scroll box-image-normal"
data-dsn-option='{"speed":15,"start":"0"}'>
<article
class="dsn-item-post start-section grid-item p-relative">
<h2 class="dsn-animate-up letter-stroke">OUR</h2>
<h2 class="dsn-animate-down letter-stroke">WORK</h2>
</article>
<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image swiper-slide">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="project-6.html"
data-dsn-ajax="work" title="HEADPHONES">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="4">
<img class="cover-bg-img" src="assets/img/portfolio/project6/1.jpg"
alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator="&">Production</span>
</div>
</div>
<h2 class="post-title title-block">
<a href="project-6.html" class="effect-ajax"
data-dsn-ajax="work">
HEADPHONES
</a>
</h2>
<p class="section_description mt-15 max-w570 ">
ABOUT THE PROJECT Mode is an audio range designed to provide optimal
performance and comfort for every mode of use. The system utilises a
</p>
<a href="project-6.html"
class="effect-ajax dsn-post-link move-circle border-color-heading"
data-dsn="parallax" data-dsn-ajax="work">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
<path class="arrow-after"
d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/>
</svg>
</a>
</div>
</div>
</div>
</article>
<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image swiper-slide">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="project-5.html"
data-dsn-ajax="work" title="DOG CHOW">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="3">
<img class="cover-bg-img" src="assets/img/portfolio/project5/1.jpg"
alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator=" & ">Photography</span>
<span data-separator=" & ">Production</span>
</div>
</div>
<h2 class="post-title title-block">
<a href="project-5.html" class="effect-ajax"
data-dsn-ajax="work">
DOG CHOW
</a>
</h2>
<p class="section_description mt-15 max-w570 ">
This optional section is only applicable to posts. It is a space for you to
write a summary of the post. Depending on the
</p>
<a href="project-5.html"
class="effect-ajax dsn-post-link move-circle border-color-heading"
data-dsn="parallax" data-dsn-ajax="work">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
<path class="arrow-after"
d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/>
</svg>
</a>
</div>
</div>
</div>
</article>
<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image swiper-slide">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="project-4.html"
data-dsn-ajax="work" title="OPEN RUN">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="2">
<img class="cover-bg-img" src="assets/img/portfolio/project4/1.jpg"
alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator=" & ">Production</span>
</div>
</div>
<h2 class="post-title title-block">
<a href="project-4.html" class="effect-ajax"
data-dsn-ajax="work">
OPEN RUN
</a>
</h2>
<p class="section_description mt-15 max-w570 ">
ABOUT THE PROJECT Wondour™ was tasked with creating a pair of electronic
glasses that can help legally-blind and low-vision people see again. We’re
helping
</p>
<a href="project-4.html"
class="effect-ajax dsn-post-link move-circle border-color-heading"
data-dsn="parallax" data-dsn-ajax="work">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
<path class="arrow-after"
d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/>
</svg>
</a>
</div>
</div>
</div>
</article>
<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image swiper-slide">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="project-3.html"
data-dsn-ajax="work" title="AUDI RS">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="2">
<img class="cover-bg-img" src="assets/img/portfolio/project3/1.jpg"
alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator=" & ">Photography</span>
<span data-separator=" & ">Production</span>
</div>
</div>
<h2 class="post-title title-block">
<a href="project-3.html" class="effect-ajax"
data-dsn-ajax="work">
AUDI RS
</a>
</h2>
<p class="section_description mt-15 max-w570 ">
This optional section is only applicable to posts. It is a space for you to
write a summary of the post. Depending on the
</p>
<a href="project-3.html"
class="effect-ajax dsn-post-link move-circle border-color-heading"
data-dsn="parallax" data-dsn-ajax="work">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
<path class="arrow-after"
d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/>
</svg>
</a>
</div>
</div>
</div>
</article>
<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image swiper-slide">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="project-2.html"
data-dsn-ajax="work" title="MEN FASHION">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="4">
<img class="cover-bg-img" src="assets/img/portfolio/project2/1.jpg"
alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator=" & ">Photography</span>
</div>
</div>
<h2 class="post-title title-block">
<a href="project-2.html" class="effect-ajax"
data-dsn-ajax="work">
MEN FASHION
</a>
</h2>
<p class="section_description mt-15 max-w570 ">
Service Photographer Industry Daniel Jaramillo Published June 15th 2022
Caption #1 Caption #2 Caption #3 How is your visual identity? we give
fashion forward
</p>
<a href="project-2.html"
class="effect-ajax dsn-post-link move-circle border-color-heading"
data-dsn="parallax" data-dsn-ajax="work">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
<path class="arrow-after"
d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/>
</svg>
</a>
</div>
</div>
</div>
</article>
<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image swiper-slide">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="project-1.html"
data-dsn-ajax="work" title="VISIONAID">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="4">
<img class="cover-bg-img" src="assets/img/portfolio/project1/1.jpg"
alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator=" & ">Creative</span>
<span data-separator=" & ">Photography</span>
</div>
</div>
<h2 class="post-title title-block">
<a href="project-1.html" class="effect-ajax"
data-dsn-ajax="work">
VISIONAID
</a>
</h2>
<p class="section_description mt-15 max-w570 ">
Service Photographer Industry Daniel Jaramillo Published June 15th 2022
Caption #1 Caption #2 Caption #3 How is your visual identity? we give
fashion forward
</p>
<a href="project-1.html"
class="effect-ajax dsn-post-link move-circle border-color-heading"
data-dsn="parallax" data-dsn-ajax="work">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
<path class="arrow-after"
d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/>
</svg>
</a>
</div>
</div>
</div>
</article>
<article
class="dsn-item-post end-section grid-item p-relative">
<h2 class="dsn-animate-up letter-stroke">AWESOME</h2>
<h2 class="dsn-animate-down letter-stroke">DESIGNS</h2>
</article>
</div>
</div>
</div> -->
<!-- ========== End Portfolio ========== -->
<!-- ========== background Box Image ========== -->
<div class="p-relative mt-section section-padding hv-100">
<div class="container d-flex flex-column justify-content-center h-100">
<h3 class="title-h2 text-upper">
Need help developing or finding solutions?
</h3>
<p class="mt-30 max-w570">
Cloud computing also offers unique opportunities toWith years of experience in developing solutions, I am here to help take your business to the next level. My approach combines innovative strategies with advanced methodologies to optimize processes, improve efficiency, and unlock new growth opportunities.
<span class="mb-10 d-block"></span>
I have worked on projects ranging from creating functional platforms to implementing tailored solutions, always focused on delivering tangible results that drive your business forward.
<span class="mb-10 d-block"></span>
Whether you need strategic consulting, customized development, or seamless integration of modern tools, I am ready to collaborate with you to ensure the success of your project.
<br>
Let’s talk and build the future of your business together!
</p>
<div class="dsn-def-btn d-flex dsn-border-style dsn-icon-heading-color mt-30">
<!-- <a class="dsn-btn dsn-border border-color-default background-section move-circle has-icon-left"
href="contact.html" data-dsn-text="Contact Us" data-dsn="parallax">
<span class="dsn-icon dsn-bg-before btn-icon-left heading-color z-index-1">
<i class="far fa-envelope-open"></i>
</span>
<span class="title-btn p-relative z-index-1 ">CONTACT ME</span>
</a> -->
</div>
</div>
<!-- <div class="dsn-bg-section p-absolute w-100 h-100 over-hidden top-0 left-0" style="z-index: -1;">
<div class="h-100 img-box-parallax before-z-index " data-dsn-grid="move-up" data-overlay="4">
<img src="https://wallpapers.com/images/hd/dark-laptop-white-cordless-keyboard-fdtwdtsmuwgo6x0b.jpg"
class="cover-bg-img has-direction" alt="">
</div>
</div> -->
</div>
<!-- ========== End background Box Image ========== -->
<!-- ========== Stories ========== -->
<!-- <div class="p-relative container section-margin">
<div class="section-title d-flex justify-content-center text-center mb-70">
<div class="sub-section-title ">
<p class="description d-inline-block p-relative mb-10">Lasts post</p>
<h2 class="title-h2 p-10 background-theme">Latest And Greatest Post</h2>
</div>
</div>
<div class="p-relative box-image-transform dsn-style-cards">
<div class="root-posts ">
<div class="dsn-posts dsn-post-type-cards box-content-hover">
<div class="has-parallax-image dsn-swiper p-relative"
data-dsn-option='{"slidesPerView":1,"spaceBetween":30,"centeredSlides":false}'>
<div class="swiper-container ">
<div class="swiper-wrapper">
<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image v-dark-head background-section swiper-slide">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="single-post.html"
data-dsn-text="Our Stories">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="4">
<img src="assets/img/blog/1.jpg" class="cover-bg-img" alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="entry-date d-inline-block entry-meta mb-10">
June 12, 2022
</div>
<span class="mr-5 ml-5 separator-between"> ..</span>
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator=" & ">Uncategorized</span>
</div>
</div>
<h2 class="post-title dsn-bg title-block">
<a class="effect-ajax" href="single-post.html"
data-dsn-text="Our Stories">
Wildlife could be amazing, see why.
</a>
</h2>
</div>
<div class="post-description-info ">
<p class="section_description mt-15 max-w570 ">
qProin faucibus nec
mauris a sodales, sed elementum mi tincidunt. Sed eget viverra
egestas
</p>
<div class="d-flex mt-20 dsn-def-btn dsn-hover-icon">
<a href="single-post.html"
class="effect-ajax dsn-btn dsn-border border-color-default background-section has-icon-left">
<span class="dsn-icon dsn-bg-before btn-icon-left heading-color z-index-1"><i
class="fas fa-angle-right"></i></span>
<span class="title-btn p-relative z-index-1 heading-color">READ ARTICLE</span>