-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
1476 lines (1427 loc) · 121 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
"gtm.start": new Date().getTime(),
event: "gtm.js",
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-THXQCMJ");
</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8" />
<!-- Primary Meta Tags -->
<meta name="title" content="About | Srikant Sahoo" />
<meta
name="description"
content="I am a self-taught UI/UX designer and coder. See my portfolio to know about me...😊"
/>
<meta
name="keywords"
content="Srikant Sahoo, srikant, sahoo, portfolio, profile, kiit, university, kiit university, ui, ux, design, designer, designing, coder, code, coding, xd, illustrator, adobe, self taught, repo, google, assistant, github, linkedin, self, taught, self-taught"
/>
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="English" />
<meta name="revisit-after" content="1 days" />
<meta name="author" content="Srikant Sahoo" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="thumbnail"
content="https://raw.githubusercontent.com/srikant-code/My-portfolio/master/images/profile.jpg"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://srikantsahoo.now.sh/" />
<meta property="og:title" content="About | Srikant Sahoo" />
<meta
property="og:description"
content="I am a self-taught UI/UX designer and coder. See my portfolio to know about me...😊"
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/srikant-code/My-portfolio/master/images/portfolio.jpg"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://srikantsahoo.now.sh/" />
<meta property="twitter:title" content="About | Srikant Sahoo" />
<meta
property="twitter:description"
content="I am a self-taught UI/UX designer and coder. See my portfolio to know about me...😊"
/>
<meta
property="twitter:image"
content="https://raw.githubusercontent.com/srikant-code/My-portfolio/master/images/portfolio.jpg"
/>
<title>About | Srikant Sahoo</title>
<link
rel="shortcut icon"
href="/images/profile.jpg"
type="image/x-icon"
async
/>
<link
href="https://unpkg.com/[email protected]/dist/aos.css"
rel="stylesheet"
async
/>
<link rel="stylesheet" href="/src/css/main.min.css" async />
<script src="https://unpkg.com/[email protected]/dist/aos.js" defer></script>
<!-- Facebook Pixel Code -->
<script>
!(function (f, b, e, v, n, t, s) {
if (f.fbq) return;
n = f.fbq = function () {
n.callMethod
? n.callMethod.apply(n, arguments)
: n.queue.push(arguments);
};
if (!f._fbq) f._fbq = n;
n.push = n;
n.loaded = !0;
n.version = "2.0";
n.queue = [];
t = b.createElement(e);
t.async = !0;
t.src = v;
s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s);
})(
window,
document,
"script",
"https://connect.facebook.net/en_US/fbevents.js"
);
fbq("init", "517388509169372");
fbq("track", "PageView");
</script>
<noscript
><img
height="1"
width="1"
style="display: none"
src="https://www.facebook.com/tr?id=517388509169372&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
<PageMap>
<DataObject type="thumbnail">
<Attribute
name="src"
value="https://raw.githubusercontent.com/srikant-code/My-portfolio/master/images/profile.jpg"
/>
<Attribute name="width" value="100" />
<Attribute name="height" value="100" />
</DataObject>
</PageMap>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-THXQCMJ"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<nav class="navbarhorizontal" style="background-color: white">
<ul class="navElementsULhorizontal" style="background-color: white">
<a href="/" class="logo tooltip">
<li>
<span class="tooltiptext">Srikant Sahoo</span>
<img
class="lazyload"
id="abcd"
class="logoImage"
src="images/profile.jpg"
alt="Srikant Sahoo"
/>
</li>
</a>
<div style="display: flex">
<a href="/" class="navItemhorizontal tooltip notOnPhone">
<li>
<span class="tooltiptext">Home</span>
<svg
xmlns="http://www.w3.org/2000/svg"
width="40.503"
height="31.496"
viewBox="0 0 40.503 31.496"
>
<path
id="Icon_awesome-home"
data-name="Icon awesome-home"
d="M19.714,10.425,6.75,21.1V32.625A1.125,1.125,0,0,0,7.875,33.75l7.879-.02A1.125,1.125,0,0,0,16.874,32.6v-6.73A1.125,1.125,0,0,1,18,24.75h4.5a1.125,1.125,0,0,1,1.125,1.125V32.6a1.125,1.125,0,0,0,1.125,1.129l7.876.022a1.125,1.125,0,0,0,1.125-1.125V21.094L20.789,10.425A.857.857,0,0,0,19.714,10.425Zm20.477,7.257-5.878-4.845V3.1a.844.844,0,0,0-.844-.844H29.531a.844.844,0,0,0-.844.844V8.2l-6.3-5.179a3.375,3.375,0,0,0-4.289,0L.305,17.681A.844.844,0,0,0,.193,18.87l1.793,2.18a.844.844,0,0,0,1.189.115L19.714,7.542a.857.857,0,0,1,1.076,0l16.54,13.622a.844.844,0,0,0,1.188-.112l1.793-2.18a.844.844,0,0,0-.12-1.19Z"
transform="translate(0.001 -2.254)"
/>
</svg>
</li>
</a>
<a
id="activeNav"
href="/about.html"
class="navItemhorizontal tooltip"
>
<li>
<span class="tooltiptext">About Me</span>
<svg
xmlns="http://www.w3.org/2000/svg"
width="36"
height="13.824"
viewBox="0 0 36 13.824"
>
<path
id="Icon_simple-aboutme"
data-name="Icon simple-aboutme"
d="M29.3,13.716a3.44,3.44,0,0,0-3.443,3.173h6.912A3.409,3.409,0,0,0,29.3,13.716m-3.389,5.422a3.68,3.68,0,0,0,3.8,2.954,5.322,5.322,0,0,0,3.578-1.357L35.05,22.77a7.854,7.854,0,0,1-5.609,2.142A6.789,6.789,0,0,1,22.392,18a6.757,6.757,0,0,1,6.858-6.912A6.673,6.673,0,0,1,36,18v1.139H25.916Zm-9.733,5.742V16.346c0-1.462-.648-2.3-2-2.3A3.5,3.5,0,0,0,11.6,15.536v9.347H8.078V16.346c0-1.462-.621-2.3-1.976-2.3a3.452,3.452,0,0,0-2.576,1.494v9.347H0V11.259H3.526v1.726A5.332,5.332,0,0,1,7.592,11.09,3.552,3.552,0,0,1,11.3,13.475a5.31,5.31,0,0,1,4.365-2.385c2.549,0,4.039,1.519,4.039,4.446v9.347h-3.53Z"
transform="translate(0 -11.088)"
/>
</svg>
</li>
</a>
<a href="/myprojects.html" class="navItemhorizontal tooltip">
<li>
<span class="tooltiptext">My Projects</span>
<svg
xmlns="http://www.w3.org/2000/svg"
width="30"
height="28.5"
viewBox="0 0 30 28.5"
>
<path
id="Icon_material-work"
data-name="Icon material-work"
d="M30,9H24V6a2.99,2.99,0,0,0-3-3H15a2.99,2.99,0,0,0-3,3V9H6a2.977,2.977,0,0,0-2.985,3L3,28.5a2.99,2.99,0,0,0,3,3H30a2.99,2.99,0,0,0,3-3V12A2.99,2.99,0,0,0,30,9ZM21,9H15V6h6Z"
transform="translate(-3 -3)"
/>
</svg>
</li>
</a>
<a
href="/about.html#skillsSection"
class="navItemhorizontal tooltip notOnPhone"
>
<li>
<span class="tooltiptext">Skills</span>
<svg
xmlns="http://www.w3.org/2000/svg"
width="28.995"
height="27.752"
viewBox="0 0 28.995 27.752"
>
<path
id="Icon_awesome-star"
data-name="Icon awesome-star"
d="M14.384.964,10.845,8.14,2.926,9.295a1.735,1.735,0,0,0-.959,2.959L7.7,17.836,6.341,25.722a1.733,1.733,0,0,0,2.515,1.826l7.084-3.723,7.084,3.723a1.735,1.735,0,0,0,2.515-1.826l-1.355-7.886,5.729-5.582a1.735,1.735,0,0,0-.959-2.959L21.034,8.14,17.495.964a1.736,1.736,0,0,0-3.111,0Z"
transform="translate(-1.441 0.001)"
/>
</svg>
</li>
</a>
<a
href="/about.html#myWorksSection"
class="navItemhorizontal tooltip notOnPhone"
>
<li>
<span class="tooltiptext">My Profiles</span>
<svg
xmlns="http://www.w3.org/2000/svg"
width="31.184"
height="24.948"
viewBox="0 0 31.184 24.948"
>
<path
id="Icon_awesome-project-diagram"
data-name="Icon awesome-project-diagram"
d="M18.711,15.592H12.474a1.559,1.559,0,0,0-1.559,1.559v6.237a1.559,1.559,0,0,0,1.559,1.559h6.237a1.559,1.559,0,0,0,1.559-1.559V17.151A1.559,1.559,0,0,0,18.711,15.592ZM9.355,1.559A1.559,1.559,0,0,0,7.8,0H1.559A1.559,1.559,0,0,0,0,1.559V7.8A1.559,1.559,0,0,0,1.559,9.355H6.223l3.565,6.239a3.108,3.108,0,0,1,2.686-1.561h.014L9.355,8.552V6.237H20.27V3.118H9.355ZM29.625,0H23.388a1.559,1.559,0,0,0-1.559,1.559V7.8a1.559,1.559,0,0,0,1.559,1.559h6.237A1.559,1.559,0,0,0,31.184,7.8V1.559A1.559,1.559,0,0,0,29.625,0Z"
/>
</svg>
</li>
</a>
<a
href="/about.html#contactSection"
class="navItemhorizontal tooltip"
>
<li>
<span class="tooltiptext lastfix">Contact Me</span>
<svg
xmlns="http://www.w3.org/2000/svg"
width="29.25"
height="29.25"
viewBox="0 0 29.25 29.25"
>
<path
id="Icon_ionic-md-contact"
data-name="Icon ionic-md-contact"
d="M18,3.375A14.625,14.625,0,1,0,32.625,18,14.668,14.668,0,0,0,18,3.375Zm0,4.387a4.387,4.387,0,1,1-4.387,4.387A4.4,4.4,0,0,1,18,7.762Zm0,21.122A10.654,10.654,0,0,1,9.225,24.2c.07-2.925,5.85-4.535,8.775-4.535s8.7,1.61,8.775,4.535A10.672,10.672,0,0,1,18,28.884Z"
transform="translate(-3.375 -3.375)"
/>
</svg>
</li>
</a>
</div>
</ul>
</nav>
<section id="aboutMe" data-aos="fade-right" data-aos-delay="100">
<!--<div style="display:flex;width: 100%;">
<a href="/" rel="noopener noreferrer" style="margin: 60px; position: absolute;" class="projectLinkWrapper" data-aos="fade-left" data-aos-delay="1000">
<div class="projectLink roundedButton">
<span>👈 Back to home</span>
</div>
</a>
</div>-->
<div class="heading">About Me</div>
<div class="aboutContent">
<div class="aboutText" data-aos="fade-up" data-aos-delay="100">
I am a self taught <b>UI/UX designer and Coder.</b> I am currently in
the 4th year of B.Tech. Pursuing it from KIIT University, Bhubaneswar,
India. <br />
Major in Computer Science and Communication Engineering, my expected
year of graduation is 2022. <br />
I have interest in startups, innovation, design, coding and
internet.<br />
I am currently working with different teams of sizes ranging from 5 to
50 and gaining practical experience by contributing and collaborating
with the design and code team. <br />
I started coding and designing from the age of 16 and till now
learning by doing and implementing. <br />Turning
<b>COFFEE ☕ to beautiful CODE 👩💻😅</b>
<br />
<br /><span data-aos="fade-right" data-aos-delay="1000">
<b>🎂 I am 19 Years Old 😊</b>
</span>
</div>
<div class="aboutImage" data-aos="fade-up" data-aos-delay="150">
<img
class="desimg"
src="/images/designer.svg"
alt="Designer Image"
data-aos="fade-right"
data-aos-delay="200"
/>
<img
class="codeimg"
src="/images/coder.svg"
alt="Coder Image"
data-aos="fade-left"
data-aos-delay="150"
/>
</div>
</div>
</section>
<section id="whyDID" data-aos="fade-left" data-aos-delay="100">
<div class="heading">Why I am doing this?</div>
<div class="whyDIDText" data-aos="fade-up" data-aos-delay="100">
I do <b>Designing</b> because I was always fascinated by graphics and
drawing, painting and art since childhood. I always try to analyze every
situation and its consequences. I usually try out new products from
Product Hunt and Play store in my free time to increase my exposure to
the creative ideas of the inventors, and analyse how and why it worked.
I create my own logic to every thing I see. Sometimes this leads to
overthinking too😛.. But I would say overthinking good as well, since it
kinda boost my creativity and helps me to make great things(specifically
helps in User Experience Design(UXD). <br />
<br />
I do <b>Coding</b> because the day I got connected to the massive
information on the internet I became curious to know how different
things works. In my childhood in the 2010 era I was using encyclopaedias
till then. I got the interest in coding when I had a computer subject in
my High school. <br />
<br />
My superpower is... I am doing the right use of internet by
<b
>networking with people of different niche to grow my knowledge,
learning from other people mistakes & gaining experience by doing.</b
>
Many people despite of having the access to information don't know how
utilise these resources. Thus, I believe I can create anything because I
see every problem as a challenge instead of a problem. That is what sets
me apart.<br />
<br />
I am becoming a go to person who knows both coding and designing.<br />
I am still gaining knowledge & mastering my skills so that I can
<b>bridge the gap between designers and developers</b> by helping them
to collaborate.<br />
<br />
This is what I believe in... <br />
<br />
<div class="myTagline" data-aos="fade-left" data-aos-delay="400">
With just a Pen, a Paper and a Laptop with access to Internet you can
change the world. You need nothing else.<br /><br />
<span data-aos="fade-up" data-aos-delay="1000">- Srikant Sahoo</span>
</div>
</div>
<div class="aboutVectorImage">
<img
class="lazyload"
src="/images/Group 17.svg"
alt="Man using Laptop"
/>
</div>
</section>
<section id="skillsSection" data-aos="fade-left" data-aos-delay="100">
<div class="heading">My Skills</div>
<div class="myskillsContainer">
<div
class="skillsCategoryContainer"
data-aos="fade-right"
data-aos-delay="300"
>
<div class="skillsCategoryHeading">
Coding Skills <small>Learnt well</small>
</div>
<div class="DesigningSection">
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="66.734"
height="77.856"
viewBox="0 0 66.734 77.856"
>
<path
id="Icon_awesome-css3-alt"
data-name="Icon awesome-css3-alt"
d="M0,2.25,6.065,71.034l27.3,9.072,27.3-9.072L66.734,2.25Zm54.412,13.9-.834,8.22L33.541,32.941l-.052.017H52.865L50.641,58.435,33.575,63.423l-17.17-5.075L15.293,45.505h8.5l.556,6.656,9.141,2.311L42.994,51.8l.643-10.705L14.737,41v-.017L14.7,41l-.626-8.046,19.481-8.116,1.13-.469H13.329l-1.008-8.22Z"
transform="translate(0 -2.25)"
/>
</svg>
<div class="skillDescription" data-aos="fade-up">
CSS 3<br />
<small>Advanced</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="66.734"
height="77.856"
viewBox="0 0 66.734 77.856"
>
<path
id="Icon_awesome-html5"
data-name="Icon awesome-html5"
d="M0,2.25,6.065,71.034,33.28,80.106l27.389-9.072L66.734,2.25ZM53.561,24.477H21.619l.713,8.585H52.848l-2.363,25.79L33.471,63.544V63.6H33.28L16.127,58.852,15.085,45.679h8.29l.608,6.621,9.3,2.52,9.332-2.52,1.043-10.809h-29l-2.224-25.3h41.9l-.765,8.29Z"
transform="translate(0 -2.25)"
/>
</svg>
<div class="skillDescription">
HTML 5<br />
<small>Advanced</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="77.712"
height="77.712"
viewBox="0 0 77.712 77.712"
>
<path
id="Icon_simple-javascript"
data-name="Icon simple-javascript"
d="M0,0H77.712V77.712H0ZM71.346,59.178c-.567-3.546-2.875-6.525-9.724-9.3-2.383-1.117-5.032-1.894-5.819-3.691a3.823,3.823,0,0,1-.149-2.283c.486-2.092,2.963-2.72,4.906-2.137a5.268,5.268,0,0,1,3.16,2.914c3.348-2.189,3.348-2.189,5.683-3.643a13.365,13.365,0,0,0-1.9-2.526c-2.04-2.283-4.757-3.448-9.176-3.348l-2.283.288A10.438,10.438,0,0,0,50.509,38.7c-3.691,4.18-2.626,11.466,1.842,14.477,4.42,3.3,10.883,4.028,11.709,7.14.777,3.788-2.817,5-6.366,4.566-2.626-.583-4.08-1.9-5.683-4.326l-5.926,3.4a13.094,13.094,0,0,0,2.623,3.591c5.634,5.686,19.719,5.395,22.248-3.251a10.959,10.959,0,0,0,.24-5.343l.149.217ZM42.259,35.718H34.98c0,6.275-.029,12.512-.029,18.8,0,3.989.2,7.651-.447,8.778-1.069,2.231-3.821,1.946-5.071,1.554a6.248,6.248,0,0,1-2.688-2.768,2.778,2.778,0,0,0-.411-.635l-5.909,3.643A11.453,11.453,0,0,0,24.712,70,14.25,14.25,0,0,0,35.1,71.31a9.1,9.1,0,0,0,5.864-4.569c1.651-3.011,1.3-6.7,1.285-10.834.039-6.651,0-13.3,0-20.008l.013-.181Z"
/>
</svg>
<div class="skillDescription">
JavaScript<br />
<small>Advanced</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="97.139"
height="72.861"
viewBox="0 0 97.139 72.861"
>
<path
id="Icon_awesome-sass"
data-name="Icon awesome-sass"
d="M45.813,56.209C45.768,56.3,45.722,56.373,45.813,56.209ZM83.627,43a19.908,19.908,0,0,0-8.8,2.049,18.694,18.694,0,0,1-1.973-4.569,12.2,12.2,0,0,1-.167-3.84,32.339,32.339,0,0,1,1.154-4.128c-.015-.167-.212-1-2.17-1.017s-3.643.379-3.839.9a18.643,18.643,0,0,0-.8,2.9c-.349,1.776-3.914,8.12-5.933,11.429a11.785,11.785,0,0,1-1.351-3.339,12.2,12.2,0,0,1-.167-3.84,32.339,32.339,0,0,1,1.154-4.128c-.015-.167-.212-1-2.169-1.017s-3.643.379-3.84.9-.41,1.73-.8,2.9-5.144,11.733-6.387,14.48c-.637,1.4-1.184,2.52-1.579,3.278-.061.121-.106.2-.137.258.046-.076.076-.152.076-.121-.334.653-.531,1.017-.531,1.017v.015c-.258.486-.546.926-.683.926a6.3,6.3,0,0,1,.046-3.02c.713-3.673,2.4-9.38,2.383-9.577-.015-.106.319-1.093-1.108-1.624a1.787,1.787,0,0,0-2,.334c-.121,0-.212.3-.212.3s1.533-6.436-2.943-6.436c-2.793,0-6.678,3.066-8.588,5.844-1.2.653-3.795,2.064-6.527,3.567-1.047.577-2.125,1.169-3.142,1.73-.076-.076-.137-.152-.212-.228-5.432-5.8-15.462-9.9-15.037-17.682.152-2.838,1.138-10.291,19.287-19.337,14.875-7.407,26.767-5.373,28.814-.85,2.945,6.451-6.358,18.457-21.8,20.187-5.888.653-8.982-1.624-9.756-2.474-.8-.9-.926-.941-1.229-.774-.5.273-.182,1.062,0,1.533.455,1.2,2.353,3.324,5.584,4.386,2.838.926,9.741,1.442,18.088-1.791,9.377-3.612,16.676-13.675,14.536-22.1-2.18-8.56-16.374-11.368-29.8-6.6-8,2.838-16.646,7.3-22.867,13.114C.792,23.47-.39,29.5.1,32.015c1.729,8.94,14.05,14.768,18.982,19.079-.243.137-.471.258-.683.379C15.922,52.7,6.528,57.621,4.177,62.812,1.521,68.7,4.617,72.92,6.649,73.5c6.343,1.761,12.838-1.412,16.327-6.618s3.066-12.006,1.457-15.1c-.015-.046-.046-.076-.061-.121.637-.379,1.29-.759,1.943-1.138,1.258-.744,2.488-1.427,3.565-2.019a23.575,23.575,0,0,0-1.275,6.466c-.273,3.339,1.108,7.665,2.9,9.365a3.185,3.185,0,0,0,2.336.759c2.095,0,3.036-1.73,4.081-3.795,1.29-2.52,2.428-5.449,2.428-5.449s-1.427,7.923,2.474,7.923c1.425,0,2.852-1.837,3.491-2.778v.015s.03-.061.106-.182c.152-.228.228-.364.228-.364v-.046c.577-.987,1.837-3.248,3.732-6.982,2.459-4.827,4.81-10.852,4.81-10.852a30.546,30.546,0,0,0,.941,3.916,36.663,36.663,0,0,0,2.034,4.553c-.577.789-.926,1.245-.926,1.245a.047.047,0,0,0,.015.03c-.455.607-.971,1.26-1.5,1.9-1.941,2.307-4.25,4.948-4.553,5.707a1.551,1.551,0,0,0,.425,2.079,3.689,3.689,0,0,0,2.381.379,10.525,10.525,0,0,0,3.567-.82,12.477,12.477,0,0,0,3.064-1.609,6.852,6.852,0,0,0,2.945-6.041,12.57,12.57,0,0,0-1.108-4.28c.167-.243.349-.5.516-.759a80.687,80.687,0,0,0,5.326-9.2,30.544,30.544,0,0,0,.941,3.916,26.774,26.774,0,0,0,1.729,3.9,16.684,16.684,0,0,0-5.174,6.694c-1.123,3.233-.243,4.69,1.412,5.024a5.093,5.093,0,0,0,2.6-.531A12.06,12.06,0,0,0,73.1,57c1.9-1.4,3.732-3.354,3.611-6.011a11.292,11.292,0,0,0-.82-3.552,18.526,18.526,0,0,1,9.424-1.093c8.451.987,10.106,6.269,9.787,8.469A5.612,5.612,0,0,1,92.412,58.6c-.592.364-.774.5-.729.774.076.395.349.379.85.288a6.594,6.594,0,0,0,4.6-5.874C97.373,48.632,92.412,42.956,83.622,43ZM18.485,64.967c-2.791,3.051-6.707,4.2-8.39,3.233C8.288,67.149,9,62.66,12.446,59.409a44.972,44.972,0,0,1,6.586-4.918c.41-.243,1-.607,1.73-1.047.121-.076.182-.106.182-.106.137-.091.288-.167.44-.258a12.115,12.115,0,0,1-2.9,11.884ZM38.878,51.094c-.971,2.383-3.019,8.454-4.264,8.135-1.062-.273-1.715-4.9-.212-9.456a20.934,20.934,0,0,1,3.324-6.086c1.531-1.715,3.216-2.262,3.611-1.579C41.869,43,39.486,49.607,38.878,51.094Zm16.848,8.044c-.41.212-.789.349-.971.243-.137-.076.167-.364.167-.364s2.11-2.262,2.945-3.294c.486-.607,1.047-1.32,1.653-2.11,0,.076.015.152.015.243-.02,2.717-2.629,4.553-3.813,5.282Zm12.989-2.96c-.3-.212-.258-.926.759-3.142a11.8,11.8,0,0,1,2.884-3.719,5.491,5.491,0,0,1,.288,1.639,5.351,5.351,0,0,1-3.93,5.221Z"
transform="translate(0 -1.125)"
/>
</svg>
<div class="skillDescription">
Sass<br />
<small>Advanced</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="77.712"
height="77.712"
viewBox="0 0 77.712 77.712"
>
<path
id="Icon_simple-bootstrap"
data-name="Icon simple-bootstrap"
d="M64.76,0H12.952A12.986,12.986,0,0,0,0,12.952V64.76A12.99,12.99,0,0,0,12.952,77.712H64.76A12.99,12.99,0,0,0,77.712,64.76V12.952A12.99,12.99,0,0,0,64.76,0ZM57.678,54.576a10.1,10.1,0,0,1-2.989,4,15.26,15.26,0,0,1-5.2,2.655,25.629,25.629,0,0,1-7.554.988H21.105V16.883H43.13c4.073,0,7.337.916,9.779,2.785,2.461,1.878,3.685,4.676,3.685,8.451a10.054,10.054,0,0,1-1.677,5.861,10.747,10.747,0,0,1-4.792,3.743v.149a9.794,9.794,0,0,1,6.314,3.934,13.3,13.3,0,0,1,2.131,7.729,12.959,12.959,0,0,1-.971,4.948l.081.087ZM48.69,43.405a7.991,7.991,0,0,0-5.6-1.807H29.093V55.742H43.127a7.845,7.845,0,0,0,5.6-1.878,6.95,6.95,0,0,0,2.008-5.31,6.647,6.647,0,0,0-2.008-5.148h-.055Zm-1.943-9.141a5.783,5.783,0,0,0,1.91-4.676c0-2.28-.567-3.9-1.716-4.825a7.692,7.692,0,0,0-4.948-1.4H29.042V35.871H41.994a7.136,7.136,0,0,0,4.74-1.606Z"
/>
</svg>
<div class="skillDescription">
Bootstrap<br />
<small>Advanced</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="77.563"
height="77.563"
viewBox="0 0 77.563 77.563"
>
<path
id="Icon_simple-typescript"
data-name="Icon simple-typescript"
d="M0,38.781V77.563H77.563V0H0Zm62.506-3.09a9.643,9.643,0,0,1,4.851,2.8,12.538,12.538,0,0,1,1.858,2.488c.026.1-3.348,2.359-5.391,3.629-.074.048-.372-.271-.7-.763a4.4,4.4,0,0,0-3.645-2.191c-2.353-.162-3.865,1.07-3.852,3.125a2.844,2.844,0,0,0,.33,1.454c.517,1.07,1.48,1.713,4.492,3.015,5.555,2.392,7.931,3.965,9.408,6.2a11.258,11.258,0,0,1,.9,9.456c-1.228,3.225-4.282,5.416-8.58,6.14a23.667,23.667,0,0,1-5.908-.058,14.262,14.262,0,0,1-7.892-4.114,13.66,13.66,0,0,1-2.02-2.989,5.109,5.109,0,0,1,.711-.456c.349-.2,1.651-.95,2.883-1.664l2.23-1.293.469.692a10.42,10.42,0,0,0,2.941,2.818c2.476,1.306,5.872,1.121,7.546-.381a3.365,3.365,0,0,0,.43-4.3c-.6-.86-1.832-1.584-5.329-3.1-4-1.723-5.723-2.792-7.3-4.492A10.228,10.228,0,0,1,48.8,47.83a15.6,15.6,0,0,1-.136-4.948c.824-3.868,3.742-6.56,7.953-7.362a19.631,19.631,0,0,1,5.885.171ZM44.3,38.93l.026,3.177h-10.1V70.792H27.082V42.107H16.993V38.991a31,31,0,0,1,.084-3.2c.039-.052,6.182-.078,13.628-.065l13.557.039Z"
/>
</svg>
<div class="skillDescription">
Typescript<br />
<small>Intermidiate</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="69.05"
height="77.71"
viewBox="0 0 69.05 77.71"
>
<path
id="Icon_simple-cplusplus"
data-name="Icon simple-cplusplus"
d="M70.185,19.428a6.116,6.116,0,0,0-2.111-2.234L39.527.712a6.639,6.639,0,0,0-5.981,0L4.994,17.193a6.631,6.631,0,0,0-2.989,5.181V55.337a6.127,6.127,0,0,0,.877,2.947,6.08,6.08,0,0,0,2.111,2.231L33.54,77a6.639,6.639,0,0,0,5.981,0L68.067,60.514a6.621,6.621,0,0,0,2.989-5.178V22.374a6.047,6.047,0,0,0-.871-2.947ZM36.532,61.874A23.019,23.019,0,1,1,56.465,27.338L46.505,33.1a11.509,11.509,0,1,0,0,11.5l9.963,5.764a23.1,23.1,0,0,1-19.936,11.5Z"
transform="translate(-2.005 0)"
/>
</svg>
<div class="skillDescription">
Objective - C<br />
<small>Intermidiate</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="69.05"
height="77.71"
viewBox="0 0 69.05 77.71"
>
<path
id="Icon_simple-cplusplus"
data-name="Icon simple-cplusplus"
d="M70.185,19.428a6.116,6.116,0,0,0-2.111-2.234L39.527.712a6.639,6.639,0,0,0-5.981,0L4.994,17.193a6.631,6.631,0,0,0-2.989,5.181V55.337a6.127,6.127,0,0,0,.877,2.947,6.08,6.08,0,0,0,2.111,2.231L33.54,77a6.639,6.639,0,0,0,5.981,0L68.067,60.514a6.621,6.621,0,0,0,2.989-5.178V22.374a6.047,6.047,0,0,0-.871-2.947ZM36.532,61.874A23.019,23.019,0,1,1,56.465,27.338L46.505,33.1a11.509,11.509,0,1,0,0,11.5l9.963,5.764a23.1,23.1,0,0,1-19.936,11.5Zm23.019-21.74H56.993v2.558H54.435V40.135H51.877V37.577h2.558V35.019h2.558v2.558h2.558Zm9.591,0H66.584v2.558H64.026V40.135H61.471V37.577h2.555V35.019h2.558v2.558h2.558Z"
transform="translate(-2.005 0)"
/>
</svg>
<div class="skillDescription">
C++<br />
<small>Intermidiate</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="57.295"
height="77.713"
viewBox="0 0 57.295 77.713"
>
<path
id="Icon_awesome-java"
data-name="Icon awesome-java"
d="M41.915,47.492a24.536,24.536,0,0,1,3.552-1.9s-5.874,1.062-11.717,1.548c-7.149.592-14.829.713-18.684.2-9.122-1.214,5.009-4.569,5.009-4.569A26.882,26.882,0,0,0,7.84,45.656C-.128,49.511,27.572,51.272,41.915,47.492ZM28.953,42.62c-2.884-6.481-12.613-12.173,0-22.13C44.686,8.075,36.618,0,36.618,0c3.263,12.826-11.475,16.711-16.8,24.68-3.628,5.449,1.776,11.293,9.137,17.941ZM46.347,15.876c.015,0-26.592,6.648-13.888,21.28,3.749,4.311-.987,8.2-.987,8.2s9.517-4.918,5.145-11.065c-4.083-5.737-7.21-8.591,9.729-18.411Zm-.926,41.057a1.85,1.85,0,0,1-.3.395c19.474-5.115,12.309-18.047,3.005-14.768a2.63,2.63,0,0,0-1.245.956,10.694,10.694,0,0,1,1.67-.455c4.705-.987,11.459,6.3-3.127,13.873Zm7.158,9.456s2.2,1.806-2.413,3.218c-8.788,2.656-36.549,3.461-44.259.106-2.778-1.2,2.428-2.884,4.068-3.233a11.011,11.011,0,0,1,2.687-.3c-3.081-2.17-19.929,4.265-8.56,6.1C35.1,77.317,60.623,70.017,52.579,66.389ZM18.647,60.105c-11.945,3.339,7.27,10.23,22.479,3.719a28.215,28.215,0,0,1-4.28-2.095,44.419,44.419,0,0,1-16.089.683c-5.085-.577-2.11-2.307-2.11-2.307Zm27.29,14.753a115.047,115.047,0,0,1-35.411.546c0-.015,1.791,1.472,10.989,2.064,13.994.9,35.486-.5,35.987-7.119,0,0-.971,2.5-11.566,4.508Zm-6.618-21.28a62.7,62.7,0,0,1-20.764,1c-5.085-.531-1.761-2.99-1.761-2.99-13.175,4.371,7.316,9.319,25.727,3.931a9.163,9.163,0,0,1-3.2-1.943Z"
transform="translate(-0.208)"
/>
</svg>
<div class="skillDescription">
Java<br />
<small>Intermidiate</small>
</div>
</div>
</div>
</div>
<div
class="skillsCategoryContainer"
data-aos="fade-left"
data-aos-delay="600"
>
<div class="skillsCategoryHeading">
Coding Skills <small>Learning ...</small>
</div>
<div class="DesigningSection">
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="67.321"
height="75.932"
viewBox="0 0 67.321 75.932"
>
<path
id="Icon_awesome-node-js"
data-name="Icon awesome-node-js"
d="M33.695,76.217a5.9,5.9,0,0,1-2.923-.784l-9.3-5.5c-1.386-.783-.708-1.055-.256-1.205a18.313,18.313,0,0,0,4.2-1.914.68.68,0,0,1,.693.06l7.142,4.234a.872.872,0,0,0,.859,0L61.946,55.047a.892.892,0,0,0,.422-.753V22.17a.9.9,0,0,0-.437-.768L34.116,5.355a.872.872,0,0,0-.859,0L5.458,21.417a.879.879,0,0,0-.437.768V54.294a.832.832,0,0,0,.437.738l7.624,4.4c4.144,2.064,6.675-.362,6.675-2.818v-31.7a.8.8,0,0,1,.814-.8H24.1a.807.807,0,0,1,.814.8V56.629c0,5.515-3.013,8.679-8.242,8.679-1.612,0-2.878,0-6.4-1.748l-7.293-4.2A5.859,5.859,0,0,1,.049,54.279V22.17a5.877,5.877,0,0,1,2.923-5.078l27.8-16.062a6.1,6.1,0,0,1,5.846,0L64.447,17.107a5.859,5.859,0,0,1,2.923,5.078V54.294a5.9,5.9,0,0,1-2.923,5.078L36.618,75.433a5.86,5.86,0,0,1-2.923.784ZM56.16,44.56c0-6.012-4.068-7.609-12.611-8.739-8.649-1.145-9.523-1.733-9.523-3.752,0-1.672.738-3.9,7.142-3.9,5.711,0,7.82,1.236,8.694,5.093a.807.807,0,0,0,.784.633h3.616a.787.787,0,0,0,.588-.256.839.839,0,0,0,.211-.618c-.557-6.645-4.972-9.733-13.892-9.733-7.94,0-12.672,3.345-12.672,8.965,0,6.087,4.716,7.775,12.325,8.528,9.116.889,9.824,2.23,9.824,4.023,0,3.1-2.5,4.43-8.362,4.43-7.368,0-8.98-1.853-9.523-5.515a.8.8,0,0,0-.8-.678h-3.6a.794.794,0,0,0-.8.8c0,4.686,2.546,10.276,14.736,10.276,8.8-.015,13.862-3.5,13.862-9.553Z"
transform="translate(-0.049 -0.285)"
/>
</svg>
<div class="skillDescription" data-aos="fade-up">
Node JS<br />
<small>Beginner</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="77.145"
height="67.505"
viewBox="0 0 77.145 67.505"
>
<path
id="Icon_awesome-react"
data-name="Icon awesome-react"
d="M63.012,24.127q-1.22-.407-2.441-.768c.136-.557.256-1.115.377-1.672,1.853-8.98.633-16.2-3.481-18.578C53.5.833,47.04,3.2,40.5,8.894c-.648.557-1.281,1.145-1.883,1.733-.407-.392-.829-.784-1.251-1.16C30.511,3.379,23.641.818,19.527,3.213,15.58,5.5,14.4,12.3,16.062,20.8c.166.844.347,1.672.557,2.516-.964.271-1.914.573-2.8.889C5.771,26.99,0,31.389,0,35.94c0,4.7,6.147,9.417,14.51,12.28.678.226,1.356.452,2.049.648-.226.9-.422,1.793-.6,2.712-1.582,8.362-.347,14.992,3.6,17.267,4.068,2.35,10.909-.06,17.569-5.891.527-.467,1.055-.949,1.582-1.462.663.648,1.356,1.266,2.049,1.868,6.449,5.545,12.822,7.79,16.755,5.515,4.068-2.351,5.394-9.477,3.676-18.156q-.2-.994-.452-2.034c.482-.136.949-.286,1.416-.437,8.694-2.878,14.992-7.534,14.992-12.31,0-4.565-5.937-9-14.133-11.813ZM42.625,11.335c5.605-4.882,10.833-6.8,13.214-5.424,2.546,1.462,3.526,7.368,1.929,15.128-.105.512-.211,1.01-.347,1.507a77.133,77.133,0,0,0-10.14-1.6,76.127,76.127,0,0,0-6.419-8c.588-.557,1.16-1.085,1.763-1.612ZM25.193,43.759c.768,1.311,1.552,2.622,2.381,3.9a68.228,68.228,0,0,1-6.991-1.13,70.385,70.385,0,0,1,2.456-6.7c.693,1.326,1.4,2.637,2.155,3.933ZM20.627,25.633c2.17-.482,4.475-.874,6.871-1.175-.8,1.251-1.582,2.531-2.32,3.827-.738,1.281-1.462,2.592-2.14,3.918-.949-2.245-1.748-4.445-2.411-6.569Zm4.128,10.381c.994-2.079,2.079-4.113,3.224-6.117s2.381-3.948,3.676-5.861c2.26-.166,4.565-.256,6.916-.256s4.671.09,6.916.256q1.921,2.848,3.661,5.831t3.27,6.087Q50.9,39.074,49.165,42.1c-1.145,2-2.366,3.948-3.646,5.876-2.245.166-4.58.241-6.946.241s-4.656-.075-6.871-.211Q29.735,45.138,28,42.132c-1.16-2-2.23-4.038-3.239-6.117Zm27.212,7.714c.768-1.326,1.492-2.667,2.2-4.023a69.944,69.944,0,0,1,2.546,6.675,66.182,66.182,0,0,1-7.082,1.205C50.445,46.321,51.214,45.025,51.967,43.729ZM54.137,32.2c-.708-1.326-1.431-2.652-2.185-3.948q-1.107-1.921-2.305-3.8a69.337,69.337,0,0,1,6.916,1.205A66.682,66.682,0,0,1,54.137,32.2ZM38.6,15.252a66.163,66.163,0,0,1,4.46,5.394c-2.983-.136-5.982-.136-8.965,0C35.574,18.7,37.1,16.894,38.6,15.252ZM21.124,6.016c2.531-1.477,8.151.633,14.073,5.876.377.331.753.693,1.145,1.055a76.55,76.55,0,0,0-6.464,8,79.425,79.425,0,0,0-10.125,1.567c-.2-.768-.362-1.552-.527-2.335-1.416-7.293-.482-12.792,1.9-14.163ZM17.433,45.733c-.633-.181-1.251-.377-1.868-.588a30.73,30.73,0,0,1-9.492-4.7A6.761,6.761,0,0,1,3.239,35.94c0-2.757,4.761-6.283,11.632-8.679.859-.3,1.733-.573,2.607-.829a80.12,80.12,0,0,0,3.691,9.583A82.361,82.361,0,0,0,17.433,45.733ZM35,60.5a27.578,27.578,0,0,1-8.5,5.319,6.669,6.669,0,0,1-5.319.2c-2.4-1.386-3.39-6.7-2.034-13.862.166-.844.347-1.688.557-2.516a75.376,75.376,0,0,0,10.231,1.477,79.514,79.514,0,0,0,6.509,8.046C35.966,59.625,35.484,60.077,35,60.5Zm3.691-3.661c-1.537-1.657-3.074-3.5-4.565-5.469,1.446.06,2.938.09,4.445.09,1.552,0,3.074-.03,4.58-.105a64.978,64.978,0,0,1-4.46,5.485Zm19.693,4.52A6.7,6.7,0,0,1,55.9,66.074c-2.4,1.386-7.5-.422-13.018-5.153-.633-.542-1.266-1.13-1.914-1.733a74.537,74.537,0,0,0,6.358-8.076A74.278,74.278,0,0,0,57.6,49.53c.151.618.286,1.236.407,1.838a27.467,27.467,0,0,1,.377,9.99Zm2.742-16.2c-.422.136-.844.271-1.281.392a76.541,76.541,0,0,0-3.842-9.613A76.16,76.16,0,0,0,59.7,26.462c.784.226,1.537.467,2.26.708,7.021,2.411,11.948,6,11.948,8.739,0,2.953-5.258,6.765-12.777,9.251ZM38.572,42.9a6.9,6.9,0,1,0-6.9-6.9A6.9,6.9,0,0,0,38.572,42.9Z"
transform="translate(0 -2.251)"
/>
</svg>
<div class="skillDescription">
React<br />
<small>Beginner</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="62.359"
height="77.142"
viewBox="0 0 62.359 77.142"
>
<path
id="Icon_simple-flutter"
data-name="Icon simple-flutter"
d="M42.067,0,3.45,38.572,15.343,50.465,65.757.039H42.109Zm.045,35.589-20.8,20.755,20.8,20.8h23.7L45.044,56.351,65.809,35.586H42.116Z"
transform="translate(-3.45)"
/>
</svg>
<div class="skillDescription">
Flutter<br />
<small>Beginner</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="64.287"
height="77.145"
viewBox="0 0 64.287 77.145"
>
<path
id="Icon_material-android"
data-name="Icon material-android"
d="M15.857,57.859a3.224,3.224,0,0,0,3.214,3.214h3.214v11.25a4.822,4.822,0,0,0,9.643,0V61.073h6.429v11.25a4.822,4.822,0,0,0,9.643,0V61.073h3.214a3.224,3.224,0,0,0,3.214-3.214V25.715H15.857ZM7.822,25.715A4.815,4.815,0,0,0,3,30.536v22.5a4.822,4.822,0,1,0,9.643,0v-22.5A4.815,4.815,0,0,0,7.822,25.715Zm54.644,0a4.815,4.815,0,0,0-4.822,4.822v22.5a4.822,4.822,0,1,0,9.643,0v-22.5A4.815,4.815,0,0,0,62.466,25.715ZM46.49,6.943l4.179-4.179a1.591,1.591,0,0,0,0-2.282,1.591,1.591,0,0,0-2.282,0L43.63,5.239a18.77,18.77,0,0,0-8.486-2.025,19.041,19.041,0,0,0-8.55,2.025L21.8.482a1.591,1.591,0,0,0-2.282,0,1.591,1.591,0,0,0,0,2.282l4.211,4.211A19.233,19.233,0,0,0,15.857,22.5H54.43A19.175,19.175,0,0,0,46.49,6.943ZM28.715,16.072H25.5V12.857h3.214Zm16.072,0H41.572V12.857h3.214Z"
transform="translate(-3)"
/>
</svg>
<div class="skillDescription">
Android<br />
<small>Intermidiate</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="66.106"
height="66.105"
viewBox="0 0 66.106 66.105"
>
<path
id="Icon_metro-database"
data-name="Icon metro-database"
d="M35.623,1.928c-18.255,0-33.053,4.624-33.053,10.329V20.52c0,5.7,14.8,10.329,33.053,10.329S68.676,26.225,68.676,20.52V12.257C68.676,6.552,53.878,1.928,35.623,1.928Zm0,35.119c-18.255,0-33.053-4.624-33.053-10.329V39.112c0,5.7,14.8,10.329,33.053,10.329s33.053-4.624,33.053-10.329V26.718C68.676,32.422,53.878,37.047,35.623,37.047Zm0,18.592c-18.255,0-33.053-4.624-33.053-10.329V57.7c0,5.7,14.8,10.329,33.053,10.329S68.676,63.409,68.676,57.7V45.31c0,5.7-14.8,10.329-33.053,10.329Z"
transform="translate(-2.571 -1.928)"
/>
</svg>
<div class="skillDescription">
No SQL Database<br />
<small>Beginner</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="55.833"
height="77.143"
viewBox="0 0 55.833 77.143"
>
<path
id="Icon_simple-firebase"
data-name="Icon simple-firebase"
d="M6.821,50.378l7.6-48.9A1.742,1.742,0,0,1,17.685.928l8.174,15.336ZM60.806,62.242l-7.239-45a1.745,1.745,0,0,0-2.951-.948L4.972,62.242,30.228,76.476a5.207,5.207,0,0,0,5.1,0L60.806,62.242ZM40.282,22.976l-5.85-11.192a1.742,1.742,0,0,0-3.086,0L5.664,57.807Z"
transform="translate(-4.973 0)"
/>
</svg>
<div class="skillDescription">
FireBase<br />
<small>Beginner</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="71.336"
height="77.143"
viewBox="0 0 71.336 77.143"
>
<path
id="Icon_simple-electron"
data-name="Icon simple-electron"
d="M6.934,37.528C3.59,31.7,2.91,26.239,5.287,22.125c3.183-5.516,11.173-7.442,21.276-5.6a1.037,1.037,0,1,1-.37,2.039c-9.343-1.7-16.466.016-19.111,4.6C5.133,26.535,5.719,31.245,8.731,36.5a1.037,1.037,0,1,1-1.8,1.031ZM55,17.975c5.912.077,10.168,1.92,12.085,5.239,2.642,4.572.58,11.582-5.535,18.805a1.037,1.037,0,1,0,1.579,1.34c6.617-7.816,8.927-15.677,5.751-21.183-2.339-4.05-7.281-6.186-13.85-6.273A1.037,1.037,0,1,0,55,17.975Zm-5.973,49.1a1.037,1.037,0,0,0-1.424.354c-3.009,5-6.7,7.729-10.5,7.729-5.29,0-10.335-5.306-13.531-14.234a1.037,1.037,0,1,0-1.952.7c3.457,9.659,9.117,15.606,15.477,15.606,4.639,0,8.934-3.164,12.284-8.731a1.037,1.037,0,0,0-.354-1.424Zm23.7-8.357a4.961,4.961,0,0,1-7.848,4.027C56.97,67.4,41.857,65.028,27.636,56.813A64.835,64.835,0,0,1,12.188,44.619a1.037,1.037,0,1,1,1.534-1.4A62.727,62.727,0,0,0,28.671,55.018C42.1,62.77,56.226,65.07,63.455,61.159a4.961,4.961,0,1,1,9.272-2.445Zm-61.412,0A4.961,4.961,0,1,1,3.954,54.38c-.751-9.269,8.989-21.7,23.712-30.194A64.6,64.6,0,0,1,46.129,16.87a1.037,1.037,0,0,1,.435,2.023A62.733,62.733,0,0,0,28.7,25.981C14.833,33.987,5.671,45.527,5.993,53.775c.122-.01.242-.019.364-.019a4.964,4.964,0,0,1,4.961,4.961ZM32.14,4.866a4.961,4.961,0,0,1,9.916,0c0,.074-.006.145-.01.216C50.259,9.325,55.965,23.8,55.965,40.53a65.031,65.031,0,0,1-2.751,19.2,1.037,1.037,0,1,1-1.978-.619A62.978,62.978,0,0,0,53.893,40.53c0-15.754-5.239-29.3-12.394-33.387A4.955,4.955,0,0,1,32.14,4.866Zm4.2,32.156a3.589,3.589,0,1,0,4.266,2.751A3.589,3.589,0,0,0,36.342,37.022Z"
transform="translate(-1.392 -0.083)"
/>
</svg>
<div class="skillDescription">
Electron<br />
<small>Beginner</small>
</div>
</div>
<!-- <div class="designSkill skillBox" data-aos="fade-up">
<div class="skillDescription">
Java<br>
<small>Intermidiate</small>
</div>
</div> -->
</div>
</div>
<!-- <div class="skillsCategoryContainer">
<div class="skillsCategoryHeading">
Design Skills <small>Learning</small>
</div>
<div class="DesigningSection">
<div class="designSkill skillBox" data-aos="fade-up">
<div class="skillDescription">
Java<br>
<small>Intermidiate</small>
</div>
</div>
</div>
</div> -->
<div
class="skillsCategoryContainer"
data-aos="fade-right"
data-aos-delay="900"
>
<div class="skillsCategoryHeading">
Designing Skills <small>Learnt well</small>
</div>
<div class="DesigningSection">
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="75.072"
height="73.194"
viewBox="0 0 75.072 73.194"
>
<path
id="Icon_simple-adobephotoshop"
data-name="Icon simple-adobephotoshop"
d="M0,.45V73.645H75.072V.45ZM3.128,3.578H71.944V70.517H3.128ZM18.142,17.591c0-.21.438-.363.7-.363,2.014-.1,4.967-.156,8.064-.156,8.671,0,12.043,4.755,12.043,10.842,0,7.945-5.762,11.355-12.831,11.355-1.189,0-1.6-.053-2.424-.053V51.233c0,.26-.1.363-.36.363h-4.83c-.26,0-.36-.094-.36-.353V17.591Zm5.552,16.616c.719.05,1.289.05,2.534.05,3.66,0,7.1-1.289,7.1-6.243,0-3.973-2.459-5.987-6.638-5.987-1.239,0-2.424.05-2.993.1V34.216Zm26.923-3.716c-2.477,0-3.3,1.239-3.3,2.271,0,1.135.563,1.908,3.869,3.613,4.9,2.377,6.45,4.645,6.45,8,0,5-3.816,7.695-8.977,7.695a13.666,13.666,0,0,1-6.412-1.345c-.2-.1-.25-.256-.25-.516V45.618c0-.313.15-.416.357-.263a11.523,11.523,0,0,0,6.294,1.858c2.477,0,3.51-1.032,3.51-2.427,0-1.135-.719-2.118-3.869-3.769-4.442-2.127-6.3-4.285-6.3-7.9,0-4.026,3.147-7.382,8.618-7.382a14.58,14.58,0,0,1,5.612.876.682.682,0,0,1,.313.619v4.285c0,.26-.156.416-.469.313A11.2,11.2,0,0,0,50.6,30.479Z"
transform="translate(0 -0.45)"
/>
</svg>
<div class="skillDescription">
PhotoShop<br />
<small>Advanced</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="75.072"
height="73.194"
viewBox="0 0 75.072 73.194"
>
<path
id="Icon_simple-adobexd"
data-name="Icon simple-adobexd"
d="M61.778.45H13.294A13.283,13.283,0,0,0,0,13.744V60.351A13.283,13.283,0,0,0,13.294,73.645H61.778A13.283,13.283,0,0,0,75.072,60.351V13.744A13.283,13.283,0,0,0,61.778.45ZM71.913,59.131A11.333,11.333,0,0,1,60.589,70.517H14.483A11.374,11.374,0,0,1,3.128,59.162V14.933A11.374,11.374,0,0,1,14.483,3.578H60.558A11.355,11.355,0,0,1,71.913,14.933ZM29.685,34.7,38.443,51.53c.156.25.063.5-.188.5H32.813a.614.614,0,0,1-.657-.407c-2-4.129-4.035-8.258-6.131-12.7h-.063c-1.877,4.191-3.941,8.6-5.943,12.731a.6.6,0,0,1-.563.344H14.295c-.313,0-.344-.25-.188-.438l8.571-16.328L14.389,18.717a.253.253,0,0,1,.188-.438h5.38a.493.493,0,0,1,.563.344c1.971,4.129,3.973,8.383,5.849,12.543h.063c1.814-4.129,3.816-8.414,5.756-12.512.156-.25.25-.407.563-.407h5.036c.25,0,.344.188.188.438Zm10.291,5.1c0-7.288,4.848-12.981,12.543-12.981a13.871,13.871,0,0,1,1.627.063V18.592a.313.313,0,0,1,.313-.313H59.4c.25,0,.313.094.313.25V47.244a22.279,22.279,0,0,0,.156,3.065c0,.188-.063.25-.25.344a18.633,18.633,0,0,1-8.008,1.814C44.824,52.5,39.976,48.308,39.976,39.8Zm14.17-8.008a4.731,4.731,0,0,0-1.814-.313c-3.941,0-6.694,3.034-6.694,8.07,0,5.755,2.815,8.07,6.35,8.07a5.9,5.9,0,0,0,2.158-.344V31.792Z"
transform="translate(0 -0.45)"
/>
</svg>
<div class="skillDescription">
Adobe XD<br />
<small>Advanced</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="75.072"
height="73.194"
viewBox="0 0 75.072 73.194"
>
<path
id="Icon_simple-adobeillustrator"
data-name="Icon simple-adobeillustrator"
d="M0,.45V73.645H75.072V.45ZM3.128,3.578H71.944V70.517H3.128ZM26.041,41.9l-2.477,9.378c-.053.26-.156.319-.463.319H18.508c-.313,0-.36-.1-.313-.463l8.883-31.108a9.649,9.649,0,0,0,.307-2.606c0-.206.1-.313.26-.313H34.2c.206,0,.313.056.363.313l9.963,33.763c.053.26,0,.413-.26.413H39.106c-.26,0-.413-.063-.463-.269l-2.581-9.431H26.031Zm8.721-5.083c-.876-3.46-2.94-11.035-3.716-14.7h-.053c-.669,3.66-2.321,9.853-3.613,14.7ZM48.837,19.427a3.2,3.2,0,0,1,6.4,0,3,3,0,0,1-3.253,3.2,2.941,2.941,0,0,1-3.159-3.2Zm.35,7.113c0-.25.1-.344.363-.344h4.911c.275,0,.375.1.375.363v24.7c0,.26-.05.363-.36.363H49.629c-.313,0-.416-.156-.416-.407V26.537Z"
transform="translate(0 -0.45)"
/>
</svg>
<div class="skillDescription">
Illustrator<br />
<small>Advanced</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="45.747"
height="68.597"
viewBox="0 0 45.747 68.597"
>
<path
id="Icon_awesome-figma"
data-name="Icon awesome-figma"
d="M35.782,22.87a11.435,11.435,0,0,0,0-22.87H12.911a11.428,11.428,0,1,0,0,22.857,11.435,11.435,0,1,0,0,22.87A11.435,11.435,0,1,0,24.34,57.169V22.87Zm0,0A11.428,11.428,0,1,0,47.21,34.3,11.428,11.428,0,0,0,35.782,22.87Z"
transform="translate(-1.47)"
/>
</svg>
<div class="skillDescription">
Figma<br />
<small>Advanced</small>
</div>
</div>
</div>
</div>
<div
class="skillsCategoryContainer"
data-aos="fade-left"
data-aos-delay="1200"
>
<div class="skillsCategoryHeading">
Designing Skills <small>Learning ...</small>
</div>
<div class="DesigningSection">
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="74.016"
height="72.166"
viewBox="0 0 74.016 72.166"
>
<path
id="Icon_simple-adobeaftereffects"
data-name="Icon simple-adobeaftereffects"
d="M0,.45V72.616H74.016V.45ZM3.084,3.534H70.932v66H3.084ZM20.922,41.313l-2.443,9.209c-.052.256-.154.348-.456.348H13.5c-.308,0-.358-.108-.308-.463l8.759-30.633a9.128,9.128,0,0,0,.3-2.529c0-.2.1-.308.256-.308h6.464c.2,0,.308.056.358.308L39.142,50.46c.049.253,0,.4-.256.4H33.8c-.253,0-.4-.093-.453-.3L30.8,41.307H20.931ZM29.576,36.3c-.864-3.411-2.961-10.887-3.719-14.495h-.049c-.66,3.608-2.332,9.708-3.608,14.495Zm16.53,3.158c.052,4.173,2.035,6.97,6.717,6.97a11.909,11.909,0,0,0,5.027-.956c.207-.1.361-.046.361.207V49.55a.671.671,0,0,1-.308.617,13.733,13.733,0,0,1-6.2,1.172c-8.142,0-11.195-6-11.195-12.721,0-7.278,3.769-13.23,10.384-13.23,6.717,0,9.058,5.653,9.058,10.23a15.031,15.031,0,0,1-.262,3.26.428.428,0,0,1-.407.392,43.51,43.51,0,0,1-5.141.2H46.106Zm6.261-4.24a17.057,17.057,0,0,0,2.288-.049c0-.21.052-.385.052-.537,0-1.681-.82-4.762-4.028-4.762-2.951,0-4.225,2.6-4.527,5.341H52.36Z"
transform="translate(0 -0.45)"
/>
</svg>
<div class="skillDescription">
After Effects<br />
<small>Beginner</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="73.677"
height="74.016"
viewBox="0 0 73.677 74.016"
>
<path
id="Icon_material-3d-rotation"
data-name="Icon material-3d-rotation"
d="M23.112,66.244A32.342,32.342,0,0,1,4.7,40.092H.075A36.99,36.99,0,0,0,36.929,74.016l2.035-.093-11.75-11.75Zm2.745-20.108a5.149,5.149,0,0,1-1.6-.247,3.3,3.3,0,0,1-1.234-.74,3.057,3.057,0,0,1-.8-1.141,3.68,3.68,0,0,1-.278-1.449H17.931a6.311,6.311,0,0,0,.648,2.93,6.818,6.818,0,0,0,1.727,2.128,7.79,7.79,0,0,0,2.529,1.264,9.3,9.3,0,0,0,2.961.463,10.4,10.4,0,0,0,3.177-.463,7.52,7.52,0,0,0,2.56-1.357,6.1,6.1,0,0,0,1.7-2.22,7.2,7.2,0,0,0,.617-2.991,6.468,6.468,0,0,0-.216-1.727,5.15,5.15,0,0,0-.709-1.573,5.543,5.543,0,0,0-1.234-1.326A6.341,6.341,0,0,0,29.8,36.73a6.469,6.469,0,0,0,1.6-1.018,6.373,6.373,0,0,0,1.141-1.3A5.435,5.435,0,0,0,33.228,33a4.917,4.917,0,0,0,.216-1.48,7.454,7.454,0,0,0-.555-2.961,5.49,5.49,0,0,0-1.573-2.128A6.345,6.345,0,0,0,28.941,25.1a11.24,11.24,0,0,0-3.146-.432,9.111,9.111,0,0,0-3.084.493,7.846,7.846,0,0,0-2.436,1.388A6.934,6.934,0,0,0,18.7,28.619a6.146,6.146,0,0,0-.555,2.621h4.009a3.279,3.279,0,0,1,.278-1.388,2.9,2.9,0,0,1,.771-1.049,3.656,3.656,0,0,1,1.172-.678,4.514,4.514,0,0,1,1.48-.247,3.536,3.536,0,0,1,2.745.956,3.726,3.726,0,0,1,.894,2.652A4.7,4.7,0,0,1,29.25,33a2.682,2.682,0,0,1-.771,1.141,3.911,3.911,0,0,1-1.264.74,5.189,5.189,0,0,1-1.789.278H23.051v3.177h2.375a6.928,6.928,0,0,1,1.85.216,3.689,3.689,0,0,1,1.388.709,3.633,3.633,0,0,1,.894,1.234,4.371,4.371,0,0,1,.308,1.758,3.7,3.7,0,0,1-1.079,2.868,3.952,3.952,0,0,1-2.93,1.018ZM52.225,27.879A10.271,10.271,0,0,0,48.71,25.5a11.6,11.6,0,0,0-4.5-.833H36.929V49.344h7.093a12.517,12.517,0,0,0,4.657-.833,10.162,10.162,0,0,0,3.577-2.344,10.408,10.408,0,0,0,2.282-3.67,14.108,14.108,0,0,0,.8-4.842V36.422a14.108,14.108,0,0,0-.8-4.842,10.776,10.776,0,0,0-2.313-3.7Zm-1.2,9.745a13.472,13.472,0,0,1-.432,3.485,7.5,7.5,0,0,1-1.326,2.621,5.765,5.765,0,0,1-2.19,1.635,7.925,7.925,0,0,1-3.053.555H41.216V28.126h2.991a6.119,6.119,0,0,1,5.058,2.128,9.393,9.393,0,0,1,1.758,6.137v1.234ZM36.929,0,34.893.093l11.75,11.75,4.1-4.1A32.291,32.291,0,0,1,69.126,33.893h4.626A36.936,36.936,0,0,0,36.929,0Z"
transform="translate(-0.075)"
/>
</svg>
<div class="skillDescription">
3D Design<br />
<small>Beginner</small>
</div>
</div>
<div class="designSkill skillBox" data-aos="fade-up">
<svg
xmlns="http://www.w3.org/2000/svg"
width="74.016"
height="60.121"
viewBox="0 0 74.016 60.121"
>
<path
id="Icon_simple-blender"
data-name="Icon simple-blender"
d="M38.58,37.184A8.754,8.754,0,0,1,41.757,31,10.764,10.764,0,0,1,55.4,31a8.735,8.735,0,0,1,3.17,6.183,8.585,8.585,0,0,1-2.668,6.64,10.719,10.719,0,0,1-14.649,0,8.583,8.583,0,0,1-2.668-6.637M22.667,42.171a18.353,18.353,0,0,0,.79,4.311,22.735,22.735,0,0,0,4.913,8.5,25.372,25.372,0,0,0,8.6,6.171,28.125,28.125,0,0,0,22.566-.037,25.551,25.551,0,0,0,8.589-6.2,22.908,22.908,0,0,0,4.91-8.518,21.477,21.477,0,0,0,.771-9.48,21.967,21.967,0,0,0-3.133-8.57,23.945,23.945,0,0,0-5.712-6.3h.006L41.837,4.3l-.062-.046a5.14,5.14,0,0,0-5.736.006c-1.687,1.178-1.878,3.13-.379,4.364l0,0L45.3,16.466,15.907,16.5h-.04c-2.43,0-4.765,1.6-5.227,3.614-.475,2.051,1.172,3.753,3.7,3.762v.006l14.9-.031L2.652,44.256l-.1.077C.04,46.251-.768,49.446.811,51.466c1.6,2.057,5.012,2.06,7.547.012l14.507-11.87a22.348,22.348,0,0,0-.194,2.563ZM59.953,47.54a16.772,16.772,0,0,1-23.414.037,13.909,13.909,0,0,1-3.2-5,13.206,13.206,0,0,1,.87-10.853,14.5,14.5,0,0,1,3.556-4.228,16.9,16.9,0,0,1,20.953-.031,14.412,14.412,0,0,1,3.553,4.216,13.2,13.2,0,0,1,1.61,5.261,13.064,13.064,0,0,1-.737,5.585,14,14,0,0,1-3.192,5.015"
transform="translate(0 -3.379)"
/>
</svg>
<div class="skillDescription">
Blender<br />
<small>Beginner</small>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="myWorksSection" data-aos="fade-right" data-aos-delay="100">
<div class="heading" data-aos="fade-left" data-aos-delay="400">
My Profiles
</div>
<!-- <div class="tile" id="tile-1">-->
<!-- Nav tabs --
<ul class="nav nav-tabs nav-justified" role="tablist">
<div class="slider"></div>
<li class="nav-item">
<a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="true">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile" aria-selected="false">Profile</a>
</li>
<li class="nav-item">
<a class="nav-link" id="contact-tab" data-toggle="tab" href="#contact" role="tab" aria-controls="contact" aria-selected="false">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" id="setting-tab" data-toggle="tab" href="#setting" role="tab" aria-controls="setting" aria-selected="false">Settings</a>
</li>
</ul>
<!- Tab panes --
<div class="tab-content">
<div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">Home</div>
<div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">Profile</div>
<div class="tab-pane fade" id="contact" role="tabpanel" aria-labelledby="contact-tab">Contact</div>
<div class="tab-pane fade" id="setting" role="tabpanel" aria-labelledby="setting-tab">Settings</div>
</div>
</div> -->
<div class="calenderWrapper" data-aos="fade-right" data-aos-delay="300">
<a href="https://github.com/srikant-code" target="_blank">
<div class="calendar">
<!-- Loading stuff Loading the data just for you.-->
</div>
</a>
</div>
<a
href="https://in.linkedin.com/in/srikant-design?trk=profile-badge"
data-aos="fade-left"
data-aos-delay="600"
>
<div
class="LI-profile-badge"
data-version="v1"
data-size="large"
data-locale="en_US"
data-type="vertical"
data-theme="light"
data-vanity="srikant-design"
>
<a
class="LI-simple-link"
href="https://in.linkedin.com/in/srikant-design?trk=profile-badge"
>Srikant Sahoo</a
>
</div>
</a>
<div
style="
height: 400px;
width: 360px;
overflow: overlay;
border-radius: 15px;
box-shadow: 10px 10px 16px #000, -10px -10px 16px #464646;
padding: 30px;
margin: 30px;
"
data-aos-delay="900"
>
<a
class="twitter-timeline"
href="https://twitter.com/srikant_design?ref_src=twsrc%5Etfw"
>Tweets by Me</a
>
<script
async
src="https://platform.twitter.com/widgets.js"
charset="utf-8"
></script>
</div>
</section>
<section id="contactSection" data-aos="fade-up" data-aos-delay="100">
<div class="heading" data-aos="fade-right" data-aos-delay="300">