-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1019 lines (1018 loc) · 56 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Ali Bayatpour" />
<meta name="description" content="Ali Bayatpour official website" />
<title>ALI BAYATPOUR</title>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/main.css" />
</head>
<body>
<div class="cursor"><span class="cursor__dot"></span></div>
<nav>
<div class="navContainer">
<div class="navContainer__logo">
<svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
class="navContainer__oalSvg"
x="0px"
y="0px"
viewBox="0 0 346.15 464.29"
style="enable-background: new 0 0 346.15 464.29;"
xml:space="preserve"
>
<style type="text/css">
.st0 {
fill: none;
stroke-width: 15;
stroke-miterlimit: 10;
}
</style>
<defs></defs>
<path class="st0" d="M41.65,65.85c0,0,16-7,21,28" />
<path
class="st0"
d="M18.65,138.85c-20-40-7-45-7-45c137-2,148,27,148,27s-26-21,161-31c0,0,7-4,0,37"
/>
<path
class="st0"
d="M41.65,44.85l53,14c0,0,48-17,142-2l34-15l-106-34L41.65,44.85v21c0,0-12,0-11,28"
/>
<line class="st0" x1="94.65" y1="58.85" x2="94.65" y2="97.48" />
<line class="st0" x1="236.65" y1="58.85" x2="236.65" y2="96.39" />
<path
class="st0"
d="M19.65,204.85c-1.05-32.08,24.34-61.01,56-66c36.45-5.74,74,21.4,77,59c2.65,33.23-22.61,63.23-54,69
C60.49,273.87,20.93,243.67,19.65,204.85z"
/>
<path
class="st0"
d="M52.65,171.85c17.57-11.89,40.2-9.58,53,4c10.5,11.14,12.48,27.85,7,41c-7.4,17.77-29,30.4-48,23
c-13.88-5.41-23.19-20.26-23-37"
/>
<path
class="st0"
d="M200.65,203.85c-0.55-35.14,30.83-62.33,63-65c38.14-3.16,75.03,28.56,75,64
c-0.02,29.54-25.7,48.94-29.38,51.64c-7.07,4.79-20.84,12.52-38.62,12.36C239.41,266.57,201.25,241.99,200.65,203.85z"
/>
<path
class="st0"
d="M233.65,171.85c15.01-12.17,36.26-11.89,50,0c12.35,10.69,16.06,28.52,10,43c-7.73,18.46-30.2,28.71-49,21
c-14.71-6.03-24.16-21.82-23-39"
/>
<path class="st0" d="M164.65,442.85" />
<path
class="st0"
d="M16.65,268.85c-1.64,10.07-10.46,70.45,31,122c33.61,41.79,78.96,51.28,93,54c13.24,2.56,74.11,12.62,125-26
c49.22-37.35,70.26-105.93,53-173"
/>
<path class="st0" d="M21.65,263.85" />
<path class="st0" d="M171.65,239.85" />
<path
class="st0"
d="M38.65,378.85c3.01-11.61,13.72-46.78,48-73c24.95-19.09,50.46-24.31,63-26l26,21l25-34l-29-27l-28,27"
/>
<line class="st0" x1="150.65" y1="279.85" x2="146.76" y2="263.85" />
<path
class="st0"
d="M299.65,349.85c-3.67-9.04-15.18-33.97-43-52c-27.8-18.02-55.24-18.34-65-18"
/>
<line class="st0" x1="41.65" y1="429.85" x2="52.65" y2="461.85" />
<line class="st0" x1="62.65" y1="429.85" x2="70.65" y2="456.85" />
<path class="st0" d="M86.65,433.85" />
<line class="st0" x1="86.65" y1="433.85" x2="94.65" y2="461.85" />
<line class="st0" x1="245.65" y1="433.85" x2="241.65" y2="461.85" />
<path class="st0" d="M277.65,429.85" />
<line class="st0" x1="277.65" y1="429.85" x2="269.65" y2="461.85" />
<line class="st0" x1="299.65" y1="429.85" x2="292.65" y2="461.85" />
<path
class="st0"
d="M244.65,187.85c12.03-5.67,24.34-0.23,27,7c2.74,7.43-3.52,20.01-17,23"
/>
<path
class="st0"
d="M64.8,188.6c12.03-5.67,24.34-0.23,27,7c2.74,7.43-3.52,20.01-17,23"
/>
</svg>
<svg
class="navContainer__nameSvg"
viewBox="0 0 93 26"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M17.388 20.808H7.956L6.444 25.272H0L9.144 0H16.272L25.416 25.272H18.9L17.388 20.808ZM15.804 16.056L12.672 6.804L9.576 16.056H15.804Z"
/>
<path d="M34.355 20.52H42.419V25.272H28.199V0H34.355V20.52Z" />
<path
d="M60.6552 12.312C62.1192 12.624 63.2952 13.356 64.1832 14.508C65.0712 15.636 65.5152 16.932 65.5152 18.396C65.5152 20.508 64.7712 22.188 63.2832 23.436C61.8192 24.66 59.7672 25.272 57.1272 25.272H45.3552V0H56.7312C59.2992 0 61.3032 0.588001 62.7432 1.764C64.2072 2.94 64.9392 4.536 64.9392 6.552C64.9392 8.04 64.5432 9.276 63.7512 10.26C62.9832 11.244 61.9512 11.928 60.6552 12.312ZM51.5112 10.224H55.5432C56.5512 10.224 57.3192 10.008 57.8472 9.576C58.3992 9.12 58.6752 8.46 58.6752 7.596C58.6752 6.732 58.3992 6.072 57.8472 5.616C57.3192 5.16 56.5512 4.932 55.5432 4.932H51.5112V10.224ZM56.0472 20.304C57.0792 20.304 57.8712 20.076 58.4232 19.62C58.9992 19.14 59.2872 18.456 59.2872 17.568C59.2872 16.68 58.9872 15.984 58.3872 15.48C57.8112 14.976 57.0072 14.724 55.9752 14.724H51.5112V20.304H56.0472Z"
/>
<path
d="M84.8177 20.808H75.3857L73.8737 25.272H67.4297L76.5737 0H83.7017L92.8457 25.272H86.3297L84.8177 20.808ZM83.2337 16.056L80.1017 6.804L77.0057 16.056H83.2337Z"
/>
</svg>
</div>
<div class="mainNav">
<ul>
<li class="mainNav__links"><a href="./index.html">HOME</a></li>
<li class="mainNav__links" onclick="goToSection('.portfolio')">
<a href="#">PORTFOLIO</a>
</li>
<li
class="mainNav__links"
onclick="goToSection('.footer__aboutMe')"
>
<a
href="https://drive.google.com/file/d/1Hw1-yNHzRaEXh7ewMXB6MO29KRZODft6/view?usp=sharing"
target="_blank"
>MY RESUME</a
>
</li>
<li class="mainNav__links">
<a onclick="goToSection('.footer__info')">CONTACT</a>
</li>
</ul>
</div>
<div class="navContainer__bookAppointment">
<a href="https://github.com/AliBayatpour" target="_blank"
>My GitHub</a
>
</div>
<div class="phoneMenuBar" onclick="menuClicked()">
<span class="phoneMenuBar__line phoneMenuBar__line--topLine"></span>
<span class="phoneMenuBar__line phoneMenuBar__line--midLine"></span>
<span class="phoneMenuBar__line phoneMenuBar__line--botLine"></span>
</div>
</div>
</nav>
<div class="munuDropdown">
<div class="munuDropdown__blackBox">
<div class="munuDropdown__coverLayer"></div>
</div>
<div class="munuDropdown__menu">
<ul>
<li class="munuDropdown__li munuDropdown__li--link">
<a href="./index.html">HOME</a>
</li>
<li class="munuDropdown__li" onclick="goToSection('.portfolio')">
PORTFOLIO
</li>
<li class="munuDropdown__li munuDropdown__li--link">
<a
href="https://drive.google.com/file/d/1Hw1-yNHzRaEXh7ewMXB6MO29KRZODft6/view?usp=sharing"
target="_blank"
>MY RESUME</a
>
</li>
<li class="munuDropdown__li munuDropdown__li--link">
<a onclick="goToSection('.footer__info')">CONTACT</a>
</li>
</ul>
<a
class="munuDropdown__addInfo"
href="mailto:[email protected]?Subject=Hello%20again"
target="_top"
>
<a class="munuDropdown__addInfo" href="tel:+37256193750"
>+372-561-937-50</a
>
</div>
</div>
<div class="introduction section">
<canvas></canvas>
<div class="introduction__text">
<span class="introduction__intro"
>ALI BAYATPOUR FRONT-END DEVELOPER TALLINN</span
>
<span class="introduction__adTxt"
>A front-end developer. Bachelor in Software Engineering. living in
Tallinn, the beautiful capital of Estonia</span
>
<div class="aboutMe" onclick="goToSection('.footer__aboutMe')">
ABOUT ME
</div>
</div>
</div>
<div class="portfolio section">
<div class="portfolio__container">
<div class="portfolio__header"><h1>Latest Work</h1></div>
<p class="portfolio__info">
Currently I'm working on a very big and intersting project at
Naturehub company, I won't be able to accept freelance projects
</p>
<p class="portfolio__subHeaderTxt">Explore a selection of my work.</p>
<div
class="workItem"
onmouseenter="showButs('.workItem__btn--onlineShop')"
onmouseleave="hideButs('.workItem__btn--onlineShop')"
>
<div
class="workItem__btnContainer workItem__btnContainer--onlineShop"
>
<a
href="https://github.com/AliBayatpour/online-shop"
target="_blank"
class="workItem__btn workItem__btn--onlineShop"
>SOURCE CODE</a
>
<a
href="https://alibayatpour.github.io/online-shop/"
target="_blank"
class="workItem__btn workItem__btn--onlineShop"
>WEBSITE</a
>
</div>
<img
src="./assets/onlineshopTabletframe.png"
alt="Ali bayatpour online shop Website"
class="portfolio__img portfolio__img--onlineShop"
/>
</div>
<div
class="workItem"
onmouseenter="showButs('.workItem__btn--agency')"
onmouseleave="hideButs('.workItem__btn--agency')"
>
<div class="workItem__btnContainer workItem__btnContainer--agency">
<a
href="https://github.com/AliBayatpour/agency/tree/master"
target="_blank"
class="workItem__btn workItem__btn--agency"
>SOURCE CODE</a
>
<a
href="https://alibayatpour.github.io/agency/"
target="_blank"
class="workItem__btn workItem__btn--agency"
>WEBSITE</a
>
</div>
<img
src="./assets/agencyLaptopFrame.png"
alt="Ali bayatpour Digital Agency Website"
class="portfolio__img portfolio__img--agency"
/>
</div>
<div
class="workItem"
onmouseenter="showButs('.workItem__btn--realEstate')"
onmouseleave="hideButs('.workItem__btn--realEstate')"
>
<div
class="workItem__btnContainer workItem__btnContainer--realEstate"
>
<a
href="https://github.com/AliBayatpour/realEstate"
target="_blank"
class="workItem__btn workItem__btn--realEstate"
>SOURCE CODE</a
>
<a
href="https://alibayatpour.github.io/realEstate/"
target="_blank"
class="workItem__btn workItem__btn--realEstate"
>WEBSITE</a
>
</div>
<img
src="./assets/realEstateTabletFrame.png"
alt="Ali bayatpour Real Estate Website"
class="portfolio__img portfolio__img--realState"
/>
</div>
<div class="portfolio__ad">
<h1 class="portfolio__adHeader">Professional Experience?</h1>
<p class="portfolio__adPara">
<i class="fas fa-briefcase"></i> I'm working remotely as a front-end
developer at Naturehub. A lovely company based in the USA. I love my
job because everyone shares the same vision and is dedicated to the
mission. This truly creates a family environment where everybody is
there for each other.
</p>
<a
target="_blank"
href="https://drive.google.com/file/d/1Hw1-yNHzRaEXh7ewMXB6MO29KRZODft6/view?usp=sharing"
class="portfolio__seeResume"
>SEE MY RESUME</a
>
<div class="portfolio__skillsContainer">
<h3>My Skills</h3>
<div class="portfolio__skillWrapper portfolio__skillWrapper--react">
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
width="48px"
height="48px"
>
<path
fill="#80deea"
d="M24,34C11.1,34,1,29.6,1,24c0-5.6,10.1-10,23-10c12.9,0,23,4.4,23,10C47,29.6,36.9,34,24,34z M24,16 c-12.6,0-21,4.1-21,8c0,3.9,8.4,8,21,8s21-4.1,21-8C45,20.1,36.6,16,24,16z"
/>
<path
fill="#80deea"
d="M15.1,44.6c-1,0-1.8-0.2-2.6-0.7C7.6,41.1,8.9,30.2,15.3,19l0,0c3-5.2,6.7-9.6,10.3-12.4c3.9-3,7.4-3.9,9.8-2.5 c2.5,1.4,3.4,4.9,2.8,9.8c-0.6,4.6-2.6,10-5.6,15.2c-3,5.2-6.7,9.6-10.3,12.4C19.7,43.5,17.2,44.6,15.1,44.6z M32.9,5.4 c-1.6,0-3.7,0.9-6,2.7c-3.4,2.7-6.9,6.9-9.8,11.9l0,0c-6.3,10.9-6.9,20.3-3.6,22.2c1.7,1,4.5,0.1,7.6-2.3c3.4-2.7,6.9-6.9,9.8-11.9 c2.9-5,4.8-10.1,5.4-14.4c0.5-4-0.1-6.8-1.8-7.8C34,5.6,33.5,5.4,32.9,5.4z"
/>
<path
fill="#80deea"
d="M33,44.6c-5,0-12.2-6.1-17.6-15.6C8.9,17.8,7.6,6.9,12.5,4.1l0,0C17.4,1.3,26.2,7.8,32.7,19 c3,5.2,5,10.6,5.6,15.2c0.7,4.9-0.3,8.3-2.8,9.8C34.7,44.4,33.9,44.6,33,44.6z M13.5,5.8c-3.3,1.9-2.7,11.3,3.6,22.2 c6.3,10.9,14.1,16.1,17.4,14.2c1.7-1,2.3-3.8,1.8-7.8c-0.6-4.3-2.5-9.4-5.4-14.4C24.6,9.1,16.8,3.9,13.5,5.8L13.5,5.8z"
/>
<circle cx="24" cy="24" r="4" fill="#80deea" />
</svg>
<span> React</span>
</div>
<div
class="portfolio__skillWrapper portfolio__skillWrapper--angular"
>
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
width="48px"
height="48px"
>
<path
fill="#bdbdbd"
d="M23.933 2L3 9.285 6.308 36.408 23.955 46 41.693 36.278 45 9.156z"
/>
<path
fill="#b71c1c"
d="M42.818 10.527L24 4.135 24 43.695 39.832 35.017z"
/>
<path
fill="#dd2c00"
d="M23.941 4.115L5.181 10.644 8.168 35.143 23.951 43.721 24 43.695 24 4.135z"
/>
<path
fill="#bdbdbd"
d="M24 5.996L24 15.504 32.578 34 36.987 34z"
/>
<path
fill="#eee"
d="M11.013 34L15.422 34 24 15.504 24 5.996z"
/>
<path fill="#bdbdbd" d="M24 24H30V28H24z" />
<path fill="#eee" d="M18 24H24V28H18z" />
</svg>
<span> Angular</span>
</div>
<div class="portfolio__skillWrapper portfolio__skillWrapper--redux">
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
width="48px"
height="48px"
>
<path
fill="#7e57c2"
d="M23,4c-6.617,0-12,7.27-12,16.205c0,4.834,1.582,9.169,4.078,12.136C15.03,32.554,15,32.773,15,33 c0,1.657,1.343,3,3,3s3-1.343,3-3s-1.343-3-3-3c-0.315,0-0.612,0.062-0.897,0.152C15.206,27.731,14,24.175,14,20.205 C14,12.924,18.037,7,23,7c3.837,0,7.111,3.547,8.404,8.518c1.122,0.346,2.237,0.782,3.33,1.308C33.579,9.508,28.759,4,23,4z"
/>
<path
fill="#7e57c2"
d="M35.507,20.084c-3.947-2.392-8.374-3.442-12.182-2.959C22.775,16.444,21.943,16,21,16 c-1.657,0-3,1.343-3,3s1.343,3,3,3c1.272,0,2.353-0.795,2.789-1.912c3.118-0.379,6.812,0.531,10.163,2.563 c6.403,3.881,9.67,10.569,7.282,14.911c-0.827,1.504-2.286,2.572-4.218,3.09c-2.286,0.611-5.007,0.394-7.727-0.528 c-0.839,0.772-1.749,1.498-2.725,2.168c2.552,1.117,5.196,1.704,7.669,1.704c1.24,0,2.438-0.147,3.559-0.447 c2.741-0.733,4.841-2.304,6.071-4.542C47.016,33.276,43.267,24.787,35.507,20.084z"
/>
<path
fill="#7e57c2"
d="M35,28.992C35,27.34,33.657,26,32,26s-3,1.34-3,2.992c0,0.669,0.228,1.281,0.6,1.779 c-1.279,2.802-3.744,5.567-7.062,7.578c-3.865,2.344-8.185,3.202-11.555,2.302c-1.932-0.518-3.391-1.586-4.218-3.09 c-1.702-3.094-0.521-7.376,2.61-10.988c-0.323-1.144-0.562-2.34-0.706-3.575c-5.07,4.797-7.109,11.323-4.532,16.009 c1.23,2.238,3.33,3.809,6.071,4.542c1.121,0.3,2.318,0.447,3.559,0.447c3.346,0,7.007-1.068,10.326-3.08 c3.836-2.325,6.683-5.577,8.209-8.962C33.815,31.801,35,30.541,35,28.992z"
/>
</svg>
<span> Redux</span>
</div>
<div class="portfolio__skillWrapper portfolio__skillWrapper--rxjs">
<svg
class="portfolio__skillSvg"
viewBox="12.100000000000001 8.4 262.79999999999995 272.2"
xmlns="http://www.w3.org/2000/svg"
width="48"
height="48"
>
<linearGradient
id="a"
gradientUnits="userSpaceOnUse"
x1="53.496"
x2="177.932"
y1="247.701"
y2="115.323"
>
<stop offset="0" stop-color="#e01d84" />
<stop offset=".401" stop-color="#df1d85" />
<stop offset=".77" stop-color="#932c87" />
<stop offset="1" stop-color="#5d2f88" />
</linearGradient>
<radialGradient
id="b"
cx="190.456"
cy="80.2"
gradientTransform="matrix(1 .00239 -.002 .8362 .16 12.685)"
gradientUnits="userSpaceOnUse"
r="121.582"
>
<stop offset="0" stop-color="#e01d84" />
<stop offset=".139" stop-color="#de1e85" />
<stop offset=".285" stop-color="#d62085" />
<stop offset=".434" stop-color="#c92386" />
<stop offset=".586" stop-color="#b72786" />
<stop offset=".739" stop-color="#9d2b87" />
<stop offset=".891" stop-color="#7c2e88" />
<stop offset="1" stop-color="#5d2f88" />
</radialGradient>
<linearGradient
id="c"
gradientUnits="userSpaceOnUse"
x1="83.212"
x2="137.371"
y1="62.336"
y2="62.336"
>
<stop offset="0" stop-color="#e01d84" />
<stop offset=".238" stop-color="#da1e85" />
<stop offset=".658" stop-color="#c72085" />
<stop offset=".999" stop-color="#b52284" />
</linearGradient>
<path
d="M29.6 175.3c-5.2-16.2-6.7-33.3-3.7-50.9 1.3-7.3 3.3-14.3 5.5-21.4 0 0 13.8-45.3 60.5-66 0 0 16.1-8.5 40.3-9.1 0 0-3.3-3.2-5.4-4.6-11.4-7.6-28.4-10.1-38.7.6-3.1 3.2-5.7 6.7-8.6 9.9-3.3 3.6-7.3 6.6-11.9 8.3-4 1.5-8 1.2-12.1 1.9-4.2.7-8.5 2.2-11.9 4.9-3.7 3-5.2 7-5.6 11.6-.4 3.6-.3 7.3-.5 10.9C37 82 33.6 85 26 90.9c-3.2 2.4-5.9 5.6-7.9 9-6 10.6 3.6 21.6 4.1 32.3.1 2.2-.1 4.4-.9 6.5-.8 2.3-2.4 3.8-3.7 5.7-1.8 2.5-3 5.5-2.5 8.6s2.1 6 3.6 8.7c2.9 4.8 6.5 9.1 10.3 13.2.2 0 .4.2.6.4"
fill="#e32286"
/>
<path
d="M220.4 213.7c23-10 32.8-27.3 32.8-27.3 21.5-29.3 14.2-60.2 14.2-60.2-13.7 29.8-26.2 38-26.2 38 33.7-51.3.2-82.3.2-82.3 13.7 29.2-4.5 64.8-4.5 64.8-15.3 32.2-37 43.7-37 43.7 24.2 4.5 42-11.8 42-11.8-34.7 37.5-72.3 35.7-72.3 35.7 15.8 17.7 39.5 16.2 39.5 16.2-31 7.3-60.1-3-84-22.9-4.5-3.7-8.8-7.7-12.8-12 0 0-3.6-3.8-4.3-4.8l-.1-.1c-.5 18.5 18.8 35.7 18.8 35.7-24.2-10-35.3-31.7-35.3-31.7s-16.3-27.8-4.5-59.5 47.5-38.5 47.5-38.5c29.5 14.3 54.5 18.8 54.5 18.8 52.7 8.8 49.7-17 49.7-17 .5-22.2-33-45.8-33-45.8C145.9 8.4 91.9 37 91.9 37c-46.7 20.7-60.5 66-60.5 66-2.2 7.1-4.2 14.1-5.5 21.4-5.1 29.7 2.6 57.8 19.3 82.8 26 38.8 68.2 52.2 68.2 52.2 62.5 21.2 105.2-10 105.2-10 39.3-27 47.2-58.2 47.2-58.2-31.7 24.8-45.4 22.5-45.4 22.5zM171.6 67.8c3 0 5.4 2.4 5.4 5.4s-2.4 5.4-5.4 5.4-5.4-2.4-5.4-5.4 2.4-5.4 5.4-5.4z"
fill="url(#a)"
/>
<path
d="M238.5 98.4c.5-22.2-33-45.8-33-45.8C145.8 8.4 91.8 37 91.8 37c-46.7 20.7-60.5 66-60.5 66-2.7 7.7-5.1 19.5-5.1 19.5-2.9 14.8-1.6 28.5-1.6 28.5 1.2 13.1 4.1 21.9 4.1 21.9 3 9.4 4.4 12.3 4.4 12.3-.1-.3-.6-2.5-.6-2.5s-4.2-20.2-.3-39.6c0 0 3.4-20.2 17.2-35.8 0 0 22.4-31.9 64.1-19.4 0 0 9 3.2 12.1 4.8 3.1 1.5 8.5 3.8 8.5 3.8 29.5 14.3 54.5 18.8 54.5 18.8 52.9 8.9 49.9-16.9 49.9-16.9zm-66.9-19.7c-3 0-5.4-2.4-5.4-5.4s2.4-5.4 5.4-5.4 5.4 2.4 5.4 5.4-2.4 5.4-5.4 5.4z"
fill="url(#b)"
/>
<path
d="M137.4 58.2l-34.1-10.6c-.2 0-1.2-.5-3 0 0 0-20.1 5.1-16.6 16.1 0 0 2.1 6.9 7.8 13.6l37.5-1.8z"
fill="url(#c)"
/>
</svg>
<span> Rxjs</span>
</div>
<div class="portfolio__skillWrapper portfolio__skillWrapper--ionic">
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
fill="#478AFF"
viewBox="0 0 50 50"
width="48px"
height="48px"
>
<path
d="M 25 2 C 12.318 2 2 12.317 2 25 C 2 37.683 12.318 48 25 48 C 37.682 48 48 37.683 48 25 C 48 21.575 47.241578 18.324391 45.892578 15.400391 C 44.967578 16.911391 43.528453 18.073859 41.814453 18.630859 C 42.568453 20.614859 43 22.755 43 25 C 43 34.925 34.925 43 25 43 C 15.075 43 7 34.925 7 25 C 7 15.075 15.075 7 25 7 C 27.7 7 30.252734 7.6135937 32.552734 8.6835938 C 33.227734 7.0235937 34.480547 5.6617969 36.060547 4.8417969 C 32.776547 3.0317969 29.007 2 25 2 z M 39.5 6 A 5.5 5.5 0 0 0 34 11.5 A 5.5 5.5 0 0 0 39.5 17 A 5.5 5.5 0 0 0 45 11.5 A 5.5 5.5 0 0 0 39.5 6 z M 25 15 A 10 10 0 0 0 15 25 A 10 10 0 0 0 25 35 A 10 10 0 0 0 35 25 A 10 10 0 0 0 25 15 z"
/>
</svg>
<span> Ionic</span>
</div>
<div
class="portfolio__skillWrapper portfolio__skillWrapper--typeScript"
>
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
width="48px"
height="48px"
>
<rect width="36" height="36" x="6" y="6" fill="#1976d2" />
<polygon
fill="#fff"
points="27.49,22 14.227,22 14.227,25.264 18.984,25.264 18.984,40 22.753,40 22.753,25.264 27.49,25.264"
/>
<path
fill="#fff"
d="M39.194,26.084c0,0-1.787-1.192-3.807-1.192s-2.747,0.96-2.747,1.986 c0,2.648,7.381,2.383,7.381,7.712c0,8.209-11.254,4.568-11.254,4.568V35.22c0,0,2.152,1.622,4.733,1.622s2.483-1.688,2.483-1.92 c0-2.449-7.315-2.449-7.315-7.878c0-7.381,10.658-4.469,10.658-4.469L39.194,26.084z"
/>
</svg>
<span> TypeScript</span>
</div>
<div
class="portfolio__skillWrapper portfolio__skillWrapper--testing"
>
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
width="48"
height="48"
viewBox="0 0 512 512"
>
<defs>
<linearGradient
id="a"
data-name="New Gradient Swatch 1"
x1="51.611"
y1="540.389"
x2="544.679"
y2="47.321"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="#003f8a" />
<stop offset="0.518" stop-color="#00d7df" />
<stop offset="1" stop-color="#006df0" />
</linearGradient>
<linearGradient
id="b"
x1="63.611"
y1="552.389"
x2="556.679"
y2="59.321"
xlink:href="#a"
/>
<linearGradient
id="c"
x1="87.611"
y1="576.389"
x2="580.679"
y2="83.321"
xlink:href="#a"
/>
<linearGradient
id="d"
x1="115.611"
y1="604.389"
x2="608.679"
y2="111.321"
xlink:href="#a"
/>
<linearGradient
id="e"
x1="-48.389"
y1="440.389"
x2="444.679"
y2="-52.679"
xlink:href="#a"
/>
<linearGradient
id="f"
x1="-84.389"
y1="404.389"
x2="408.679"
y2="-88.679"
xlink:href="#a"
/>
<linearGradient
id="g"
x1="-92.389"
y1="396.389"
x2="400.679"
y2="-96.679"
xlink:href="#a"
/>
<linearGradient
id="h"
x1="-60.389"
y1="428.389"
x2="432.679"
y2="-64.679"
xlink:href="#a"
/>
</defs>
<g>
<path
d="M496,424h-2.88L448,326.24V248a8,8,0,0,0,0-16H400a8,8,0,0,0,0,16v78.24L354.88,424H343.52A95.984,95.984,0,0,0,304,269.47V111.93A8,8,0,0,0,303,96H240a8,8,0,0,0,0,16V269.47A95.984,95.984,0,0,0,200.48,424H172.94L128,334.11V176a8,8,0,0,0,0-16H64a8,8,0,0,0,0,16V334.11L19.06,424H16a8,8,0,0,0-8,8v24a8,8,0,0,0,8,8H496a8,8,0,0,0,8-8V432A8,8,0,0,0,496,424Zm-80.74-92.65A7.907,7.907,0,0,0,416,328V248h16v80a7.907,7.907,0,0,0,.74,3.35L457.04,384H390.96ZM383.58,400h80.84l11.08,24h-103ZM250.18,283.02a8.01,8.01,0,0,0,5.82-7.7V112h32V275.32a8.01,8.01,0,0,0,5.82,7.7A80.254,80.254,0,0,1,352,360q0,.885-.03,1.77a220.216,220.216,0,0,1-25.1,4.31c-21.9,2.4-39.64.59-51.29-5.24-26.07-13.03-65.12-7.01-83.53-3.03A80.245,80.245,0,0,1,250.18,283.02Zm-56.95,90.93a222.148,222.148,0,0,1,23.9-4.03c21.9-2.4,39.64-.59,51.29,5.24,11.95,5.97,26.62,7.94,40.78,7.94a208.238,208.238,0,0,0,40.59-4.45A80.182,80.182,0,0,1,319.99,424H224.01A80.116,80.116,0,0,1,193.23,373.95ZM79.16,339.58A8.081,8.081,0,0,0,80,336V176h32V336a8.081,8.081,0,0,0,.84,3.58L119.06,352H72.94ZM64.94,368h62.12l28,56H36.94ZM488,448H24v-8H488Z"
fill="url(#a)"
/>
<circle cx="224" cy="392" r="8" fill="url(#b)" />
<circle cx="256" cy="408" r="8" fill="url(#c)" />
<circle cx="320" cy="400" r="8" fill="url(#d)" />
<circle cx="312" cy="80" r="8" fill="url(#e)" />
<circle cx="256" cy="64" r="8" fill="url(#f)" />
<circle cx="224" cy="80" r="8" fill="url(#g)" />
<circle cx="280" cy="88" r="8" fill="url(#h)" />
</g>
</svg>
<span> Testing</span>
</div>
<div
class="portfolio__skillWrapper portfolio__skillWrapper--firebase"
>
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
width="48px"
height="48px"
>
<path
fill="#ff8f00"
d="M8,37L23.234,8.436c0.321-0.602,1.189-0.591,1.494,0.02L30,19L8,37z"
/>
<path
fill="#ffa000"
d="M8,36.992l5.546-34.199c0.145-0.895,1.347-1.089,1.767-0.285L26,22.992L8,36.992z"
/>
<path
fill="#ff6f00"
d="M8.008 36.986L8.208 36.829 25.737 22.488 20.793 13.012z"
/>
<path
fill="#ffc400"
d="M8,37l26.666-25.713c0.559-0.539,1.492-0.221,1.606,0.547L40,37l-15,8.743 c-0.609,0.342-1.352,0.342-1.961,0L8,37z"
/>
</svg>
<span> Firebase</span>
</div>
<div
class="portfolio__skillWrapper portfolio__skillWrapper--javascript"
>
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
width="48px"
height="48px"
>
<path fill="#ffd600" d="M6,42V6h36v36H6z" />
<path
fill="#000001"
d="M29.538 32.947c.692 1.124 1.444 2.201 3.037 2.201 1.338 0 2.04-.665 2.04-1.585 0-1.101-.726-1.492-2.198-2.133l-.807-.344c-2.329-.988-3.878-2.226-3.878-4.841 0-2.41 1.845-4.244 4.728-4.244 2.053 0 3.528.711 4.592 2.573l-2.514 1.607c-.553-.988-1.151-1.377-2.078-1.377-.946 0-1.545.597-1.545 1.377 0 .964.6 1.354 1.985 1.951l.807.344C36.452 29.645 38 30.839 38 33.523 38 36.415 35.716 38 32.65 38c-2.999 0-4.702-1.505-5.65-3.368L29.538 32.947zM17.952 33.029c.506.906 1.275 1.603 2.381 1.603 1.058 0 1.667-.418 1.667-2.043V22h3.333v11.101c0 3.367-1.953 4.899-4.805 4.899-2.577 0-4.437-1.746-5.195-3.368L17.952 33.029z"
/>
</svg>
<span> JavaScript</span>
</div>
<div
class="portfolio__skillWrapper portfolio__skillWrapper--animation"
>
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
height="48"
viewBox="0 0 64 64"
width="48"
>
<g id="Filled_outline" data-name="Filled outline">
<path d="m3 10h58v40h-58z" fill="#394d5c" />
<path d="m21 50h22v4h-22z" fill="#7d8d9c" />
<path
d="m58 57-15-3h-22l-15 3c-1.929.321-3 1.045-3 3v1l18-3h22l18 3v-1c0-1.955-1.071-2.679-3-3z"
fill="#394d5c"
/>
<path d="m7 14h50v32h-50z" fill="#f4f4e6" />
<path d="m22 42-5-2v-6l5 2z" fill="#ffd782" />
<path d="m22 42 5-2v-6l-5 2z" fill="#f9bb4b" />
<path d="m17 34 5-2 5 2-5 2z" fill="#ad6327" />
<path d="m44 38-4-2v-4l4 2z" fill="#8ec13f" />
<path d="m44 38 4-2v-4l-4 2z" fill="#55b56a" />
<path d="m40 32 4-2 4 2-4 2z" fill="#3e8051" />
<g fill="#e97424">
<path d="m31 34h2v2h-2z" />
<path d="m12 40h2v2h-2z" />
<path d="m34 38h2v2h-2z" />
</g>
<path d="m16 6 16-3 16 3-16 4z" fill="#b11e48" />
<path d="m32 30-16-6v-18l16 4z" fill="#f98c96" />
<path d="m32 30 16-6v-18l-16 4z" fill="#da1c4b" />
<path
d="m49 6a.987.987 0 0 0 -.817-.978l-16-3.005a1.034 1.034 0 0 0 -.368 0l-16 3.006a.984.984 0 0 0 -.815.977v3h-13v42h18v2.18l-14.165 2.834c-1.646.274-3.835.986-3.835 3.986v1a1 1 0 0 0 1.165.986l17.918-2.986h21.834l17.918 2.986a.919.919 0 0 0 .165.014 1 1 0 0 0 1-1v-1c0-2.991-2.175-3.708-3.819-3.984l-14.181-2.836v-2.18h18v-42h-13zm-17-1.982 11.318 2.122-11.318 2.829-11.318-2.829zm15 3.263v16.026l-14 5.25v-17.776zm-30 0 14 3.5v17.776l-14-5.25zm-1.351 17.656 16 6a1.936 1.936 0 0 0 .351.063 1.936 1.936 0 0 0 .351-.063l16-6a1 1 0 0 0 .649-.937v-9h7v30h-48v-30h7v9a1 1 0 0 0 .649.937zm42.151 33.043.031.006c1.739.29 2.124.83 2.162 1.833l-16.832-2.8a.919.919 0 0 0 -.161-.019h-22a.919.919 0 0 0 -.165.014l-16.835 2.805c.038-1 .424-1.543 2.193-1.839l14.907-2.98h21.8zm-35.8-4.98v-2h20v2zm38-42v38h-56v-38h11v2h-9v34h52v-34h-9v-2z"
/>
<path
d="m16.439 33.172a1 1 0 0 0 -.439.828v6a1 1 0 0 0 .628.929l5 2a1.981 1.981 0 0 0 .372.071 1.981 1.981 0 0 0 .372-.071l5-2a1 1 0 0 0 .628-.929v-6a1 1 0 0 0 -.439-.828 1.82 1.82 0 0 0 -.189-.1l-5-2a1.017 1.017 0 0 0 -.744 0l-5 2a1.932 1.932 0 0 0 -.189.1zm9.561 6.151-3 1.2v-3.846l3-1.2zm-4-6.246 2.307.923-2.307.923-2.307-.923zm-4 2.4 3 1.2v3.846l-3-1.2z"
/>
<path
d="m39.553 36.9 4 2a1 1 0 0 0 .894 0l4-2a1 1 0 0 0 .553-.9v-4a1 1 0 0 0 -.474-.851c-.026-.016-.079-.044-.079-.044l-4-2a1 1 0 0 0 -.894 0l-4 2s-.053.028-.079.044a1 1 0 0 0 -.474.851v4a1 1 0 0 0 .553.9zm7.447-1.518-2 1v-1.764l2-1zm-3-4.264 1.764.882-1.764.882-1.764-.882zm-3 2.5 2 1v1.764l-2-1z"
/>
<path d="m52 41h-4v2h6v-8h-2z" />
<path
d="m53 26.677v-5.677h-2v4.323l-4.372 1.748.744 1.858z"
/>
<path d="m13 17h-2v9.659l7.606 3.26.788-1.838-6.394-2.74z" />
<path d="m31 34h2v2h-2z" />
<path d="m12 40h2v2h-2z" />
<path d="m34 38h2v2h-2z" />
</g>
</svg>
<span> Animation</span>
</div>
<div class="portfolio__skillWrapper portfolio__skillWrapper--scrum">
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
id="Layer_35"
enable-background="new 0 0 64 64"
height="48"
viewBox="0 0 64 64"
width="48"
>
<path
d="m42 36c0 2.21 1.34 4 3 4s3-1.79 3-4c0-.62-.11-1.19-.3-1.72 5.88 1.24 10.3 6.47 10.3 12.72v3h-5-11.62c-.93-.97-2.01-1.8-3.2-2.44-1.84-.99-3.94-1.56-6.18-1.56 3.87 0 7-3.13 7-7 0-1.13-.26-2.18-.73-3.12.57-.34 1.04-.58 4.03-1.6v.01c-.19.52-.3 1.1-.3 1.71z"
fill="#e6e9ed"
/>
<path
d="m11.19 36.61 3.81 8.39 4-5 4 5 2.02-4.43.15-.04c.69 3.13 3.49 5.47 6.83 5.47-2.24 0-4.34.57-6.18 1.56-1.11.6-2.12 1.36-3.01 2.25-.06.06-.12.12-.19.19h-11.62-5v-3c0-3.59 1.46-6.84 3.81-9.19.43-.43.89-.83 1.38-1.2z"
fill="#e6e9ed"
/>
<path
d="m23.99 35.01-4.99 4.99-5-5c1.54-.64 3.23-1 5-1s3.45.35 4.99 1.01z"
fill="#f0d0b4"
/>
<path
d="m25 39c0 .53.06 1.04.17 1.53l-.15.04-2.02 4.43-4-5 4.99-4.99c.6.23 1.19.53 1.74.87-.47.94-.73 1.99-.73 3.12z"
fill="#ff826e"
/>
<path
d="m19 40-4 5-3.81-8.39c.86-.65 1.8-1.19 2.81-1.61z"
fill="#ff826e"
/>
<path
d="m24 62h-5v-3c0-3.5 1.38-6.67 3.62-9 .07-.07.13-.13.19-.19.89-.89 1.9-1.65 3.01-2.25l6.18 14.44z"
fill="#5cd6b3"
/>
<path
d="m40 62h-8l6.18-14.44c1.19.64 2.27 1.47 3.2 2.44 2.24 2.33 3.62 5.5 3.62 9v3z"
fill="#5cd6b3"
/>
<path
d="m38.18 47.56-6.18 14.44-6.18-14.44c1.84-.99 3.94-1.56 6.18-1.56s4.34.57 6.18 1.56z"
fill="#ccd1d9"
/>
<path
d="m47.7 34.28c.19.53.3 1.1.3 1.72 0 2.21-1.34 4-3 4s-3-1.79-3-4c0-.61.11-1.19.3-1.71v-.01c.87-.18 1.78-.28 2.7-.28.93 0 1.83.1 2.7.28z"
fill="#f0d0b4"
/>
<path
d="m32 8c3.87 0 7 3.13 7 7s-3.13 7-7 7-7-3.13-7-7 3.13-7 7-7zm3 7c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z"
fill="#fcd770"
/>
<path
d="m45 15v2.34l-1.87.45c-.26 1.03-.66 2.01-1.17 2.91-1.78.85-3.14 2.44-3.69 4.37l-.34-.22c-.98.6-2.05 1.05-3.2 1.33l-.44 1.87h-4.58l-.44-1.87c-1.15-.28-2.22-.73-3.2-1.33l-.34.22c-.55-1.93-1.91-3.52-3.69-4.37-.51-.9-.91-1.88-1.17-2.91l-1.87-.44v-2.35-2.29l1.87-.44c.28-1.15.73-2.22 1.33-3.2l-1.01-1.64 3.24-3.24 1.64 1.01c.98-.6 2.05-1.05 3.2-1.33l.44-1.87h4.58l.44 1.87c1.15.28 2.22.73 3.2 1.33l1.64-1.01 3.24 3.24-1.01 1.64c.6.98 1.05 2.05 1.33 3.2l1.87.44zm-6 0c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7z"
fill="#ffc729"
/>
<g fill="#f0d0b4">
<path
d="m38.27 25.07c.55-1.93 1.91-3.52 3.69-4.37.92-.45 1.95-.7 3.04-.7 3.87 0 7 3.13 7 7s-3.13 7-7 7-7-3.13-7-7c0-.67.09-1.32.27-1.93z"
/>
<path
d="m38.27 35.88c.47.94.73 1.99.73 3.12 0 3.87-3.13 7-7 7-3.34 0-6.14-2.34-6.83-5.47-.11-.49-.17-1-.17-1.53 0-1.13.26-2.18.73-3.12 1.15-2.3 3.52-3.88 6.27-3.88s5.12 1.58 6.27 3.88z"
/>
<path
d="m25.73 25.07c.18.61.27 1.26.27 1.93 0 3.87-3.13 7-7 7s-7-3.13-7-7 3.13-7 7-7c1.09 0 2.12.25 3.04.7 1.78.85 3.14 2.44 3.69 4.37z"
/>
</g>
<path
d="m59 47c0-6.199-4.053-11.462-9.646-13.298 2.191-1.428 3.646-3.897 3.646-6.702 0-4.411-3.589-8-8-8-.423 0-.835.043-1.24.106.056-.162.127-.32.176-.484l2.064-.486v-6.222l-2.062-.486c-.242-.812-.567-1.596-.972-2.343l1.115-1.803-4.363-4.364-1.803 1.116c-.746-.403-1.53-.729-2.344-.972l-.485-2.062h-6.172l-.485 2.062c-.813.243-1.598.568-2.344.972l-1.803-1.116-4.363 4.364 1.115 1.803c-.404.747-.729 1.531-.972 2.343l-2.062.487v6.223l2.063.486c.049.163.12.321.176.483-.404-.064-.816-.107-1.239-.107-4.411 0-8 3.589-8 8 0 2.805 1.455 5.274 3.646 6.702-5.593 1.836-9.646 7.099-9.646 13.298v4h15.527c-1.588 2.27-2.527 5.026-2.527 8v4h28v-4c0-2.974-.939-5.73-2.527-8h15.527zm-12-11c0 1.626-.916 3-2 3s-2-1.374-2-3c0-.284.04-.565.1-.844.626-.1 1.26-.156 1.9-.156.649 0 1.282.066 1.903.166.058.276.097.554.097.834zm-15 9c-3.309 0-6-2.691-6-6s2.691-6 6-6 6 2.691 6 6-2.691 6-6 6zm-7.784-8.802c.085.041.171.079.255.122-.299.84-.471 1.739-.471 2.68 0 .399.039.789.096 1.173l-1.332 2.931-2.424-3.029zm7.784-5.198c-2.758 0-5.194 1.403-6.633 3.533-.648-.331-1.321-.606-2.011-.832 2.19-1.429 3.644-3.897 3.644-6.701 0-.186-.015-.368-.028-.55.474.209.96.39 1.457.539l.485 2.062h6.172l.485-2.062c.497-.149.983-.33 1.457-.539-.013.182-.028.364-.028.55 0 2.805 1.454 5.272 3.644 6.701-.689.225-1.362.502-2.01.833-1.439-2.13-3.876-3.534-6.634-3.534zm19-4c0 3.309-2.691 6-6 6s-6-2.691-6-6 2.691-6 6-6 6 2.691 6 6zm-29.157-9.452-.146-.595-1.697-.4v-3.056l1.696-.399.146-.595c.252-1.028.658-2.011 1.21-2.919l.317-.523-.918-1.483 2.125-2.125 1.483.918.523-.318c.906-.55 1.889-.958 2.92-1.21l.595-.146.401-1.697h3.004l.399 1.696.595.146c1.031.253 2.014.66 2.92 1.21l.523.318 1.483-.918 2.125 2.125-.917 1.484.317.523c.552.908.958 1.891 1.21 2.919l.146.595 1.697.4v3.056l-1.696.399-.146.595c-.202.827-.53 1.633-.945 2.408-1.587.857-2.853 2.235-3.568 3.903l-.228.138c-.906.55-1.889.958-2.92 1.21l-.595.146-.399 1.696h-3.004l-.399-1.697-.595-.146c-1.029-.252-2.012-.659-2.92-1.21l-.228-.138c-.715-1.669-1.981-3.047-3.568-3.904-.416-.773-.744-1.579-.946-2.406zm-8.843 9.452c0-3.309 2.691-6 6-6s6 2.691 6 6-2.691 6-6 6-6-2.691-6-6zm9.161 8.425-3.161 3.161-3.152-3.152c1.006-.275 2.06-.434 3.152-.434 1.075 0 2.137.146 3.161.425zm-4.501 4.649-2.424 3.029-2.792-6.142c.43-.282.882-.53 1.348-.756zm-10.66 6.926c0-3.458 1.479-6.57 3.828-8.762l3.936 8.659 4.236-5.296 4.236 5.296 1.803-3.967c.635 1.12 1.531 2.072 2.606 2.773-2.06.676-3.909 1.815-5.425 3.298h-10.22v-6h-2v6h-3zm25 0c1.738 0 3.386.379 4.879 1.047l-4.879 11.408-4.879-11.409c1.493-.667 3.141-1.046 4.879-1.046zm-12 12c0-4.162 2.131-7.833 5.358-9.986l5.126 11.986h-5.484v-6h-2v6h-3zm24 2h-3v-6h-2v6h-5.484l5.126-11.986c3.227 2.153 5.358 5.824 5.358 9.986zm13-12h-3v-6h-2v6h-10.221c-1.516-1.483-3.366-2.622-5.425-3.298 2.191-1.428 3.646-3.897 3.646-6.702 0-.94-.172-1.839-.471-2.678.485-.249.986-.465 1.499-.644-.006.107-.028.214-.028.322 0 2.757 1.794 5 4 5s4-2.243 4-5c0-.104-.021-.206-.027-.31 4.667 1.645 8.027 6.087 8.027 11.31z"
/>
<path
d="m32 19c2.206 0 4-1.794 4-4s-1.794-4-4-4-4 1.794-4 4 1.794 4 4 4zm0-6c1.103 0 2 .897 2 2s-.897 2-2 2-2-.897-2-2 .897-2 2-2z"
/>
<path
d="m32 23c4.411 0 8-3.589 8-8s-3.589-8-8-8-8 3.589-8 8 3.589 8 8 8zm0-14c3.309 0 6 2.691 6 6s-2.691 6-6 6-6-2.691-6-6 2.691-6 6-6z"
/>
</svg>
<span> Scrum</span>
</div>
<div class="portfolio__skillWrapper portfolio__skillWrapper--npm">
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
width="48px"
height="48px"
>
<path fill="#d50000" d="M0,15h48v17H24v3H13v-3H0V15z" />
<path
fill="#fff"
d="M3 29L8 29 8 21 11 21 11 29 13 29 13 18 3 18zM16 18v14h5v-3h5V18H16zM24 26h-3v-5h3V26zM29 18L29 29 34 29 34 21 37 21 37 29 40 29 40 21 43 21 43 29 45 29 45 18z"
/>
</svg>
<span> NPM</span>
</div>
<div class="portfolio__skillWrapper portfolio__skillWrapper--sass">
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
width="48px"
height="48px"
>
<path
fill="#f06292"
d="M39.867,25.956c-1.538,0.008-2.87,0.377-3.986,0.928c-0.408-0.815-0.822-1.532-0.891-2.065 c-0.081-0.622-0.175-0.994-0.077-1.735c0.098-0.741,0.527-1.791,0.521-1.87c-0.006-0.079-0.096-0.456-0.983-0.463 c-0.887-0.006-1.646,0.171-1.735,0.405c-0.089,0.234-0.26,0.761-0.366,1.311c-0.155,0.804-1.771,3.673-2.688,5.173 c-0.3-0.586-0.555-1.102-0.608-1.51c-0.081-0.622-0.175-0.994-0.077-1.735c0.098-0.741,0.527-1.791,0.521-1.87 c-0.006-0.079-0.096-0.456-0.983-0.463c-0.887-0.006-1.646,0.171-1.735,0.405c-0.089,0.234-0.185,0.781-0.366,1.311 c-0.182,0.529-2.329,5.314-2.892,6.555c-0.287,0.632-0.536,1.14-0.712,1.486c-0.001-0.001-0.001-0.002-0.001-0.002 s-0.011,0.023-0.029,0.062c-0.151,0.295-0.24,0.458-0.24,0.458s0.001,0.002,0.003,0.006c-0.12,0.217-0.248,0.418-0.311,0.418 c-0.044,0-0.133-0.577,0.019-1.369c0.32-1.66,1.087-4.248,1.08-4.338c-0.004-0.046,0.143-0.497-0.501-0.733 c-0.626-0.229-0.849,0.153-0.906,0.154c-0.055,0.001-0.096,0.135-0.096,0.135s0.697-2.911-1.33-2.911 c-1.268,0-3.024,1.387-3.889,2.644c-0.546,0.298-1.715,0.936-2.954,1.617c-0.476,0.262-0.962,0.529-1.423,0.783 c-0.031-0.035-0.063-0.069-0.095-0.104c-2.459-2.623-7.003-4.478-6.811-8.005c0.07-1.282,0.516-4.658,8.733-8.752 c6.731-3.354,12.12-2.431,13.051-0.386c1.33,2.923-2.88,8.354-9.87,9.138c-2.663,0.299-4.066-0.734-4.415-1.118 c-0.367-0.405-0.422-0.423-0.559-0.347c-0.223,0.124-0.082,0.481,0,0.694c0.209,0.543,1.065,1.506,2.525,1.986 c1.285,0.422,4.412,0.653,8.193-0.81c4.236-1.638,7.543-6.196,6.571-10.005c-0.988-3.874-7.412-5.148-13.492-2.988 C12.44,9.332,8.523,11.35,5.706,13.984c-3.349,3.132-3.883,5.859-3.663,6.998c0.782,4.048,6.361,6.684,8.595,8.637 c-0.11,0.061-0.214,0.118-0.308,0.17c-1.12,0.554-5.373,2.78-6.437,5.131c-1.207,2.667,0.192,4.581,1.118,4.839 c2.869,0.798,5.813-0.638,7.396-2.998c1.582-2.359,1.389-5.432,0.663-6.834c-0.009-0.017-0.019-0.034-0.028-0.052 c0.289-0.171,0.584-0.345,0.876-0.517c0.57-0.335,1.13-0.647,1.615-0.911c-0.272,0.744-0.471,1.637-0.574,2.926 c-0.122,1.514,0.499,3.471,1.311,4.241c0.358,0.339,0.788,0.347,1.06,0.347c0.945,0,1.376-0.786,1.851-1.716 c0.582-1.14,1.099-2.468,1.099-2.468s-0.648,3.586,1.118,3.586c0.644,0,1.291-0.835,1.58-1.26c0.001,0.005,0.001,0.007,0.001,0.007 s0.017-0.028,0.05-0.083c0.067-0.102,0.105-0.167,0.105-0.167s0.001-0.007,0.003-0.019c0.259-0.449,0.833-1.473,1.693-3.162 c1.112-2.182,2.178-4.916,2.178-4.916s0.099,0.668,0.424,1.774c0.191,0.65,0.597,1.369,0.918,2.059 c-0.258,0.358-0.416,0.563-0.416,0.563s0.001,0.004,0.004,0.011c-0.206,0.274-0.437,0.569-0.679,0.857 c-0.878,1.045-1.923,2.239-2.063,2.583c-0.165,0.406-0.126,0.704,0.193,0.945c0.233,0.175,0.647,0.203,1.08,0.174 c0.789-0.053,1.343-0.249,1.617-0.368c0.427-0.151,0.924-0.388,1.39-0.731c0.861-0.633,1.38-1.538,1.33-2.738 c-0.028-0.661-0.238-1.316-0.505-1.934c0.078-0.112,0.156-0.226,0.235-0.34c1.357-1.984,2.41-4.164,2.41-4.164 s0.099,0.668,0.424,1.774c0.164,0.559,0.489,1.17,0.781,1.768c-1.276,1.037-2.067,2.242-2.342,3.032 c-0.508,1.462-0.11,2.124,0.636,2.275c0.338,0.068,0.816-0.087,1.175-0.239c0.447-0.148,0.984-0.395,1.486-0.764 c0.861-0.633,1.689-1.519,1.639-2.718c-0.023-0.546-0.171-1.088-0.372-1.608c1.082-0.451,2.482-0.701,4.266-0.493 c3.827,0.447,4.577,2.836,4.434,3.836c-0.144,1-0.946,1.55-1.215,1.716c-0.268,0.166-0.35,0.224-0.328,0.347 c0.033,0.179,0.157,0.173,0.386,0.134c0.315-0.053,2.009-0.813,2.082-2.659C46.089,28.509,43.844,25.935,39.867,25.956z M10.37,35.9 c-1.268,1.383-3.038,1.905-3.798,1.465c-0.82-0.475-0.495-2.511,1.06-3.979c0.948-0.894,2.172-1.718,2.984-2.225 c0.185-0.111,0.456-0.274,0.786-0.472c0.055-0.031,0.086-0.048,0.086-0.048l-0.001-0.002c0.064-0.038,0.129-0.077,0.196-0.118 C12.25,32.61,11.701,34.449,10.37,35.9z M19.605,29.623c-0.441,1.076-1.365,3.83-1.928,3.682c-0.483-0.127-0.777-2.22-0.096-4.28 c0.342-1.037,1.074-2.276,1.504-2.757c0.692-0.774,1.454-1.027,1.639-0.713C20.959,25.955,19.882,28.948,19.605,29.623z M27.234,33.263c-0.187,0.098-0.359,0.159-0.438,0.112c-0.059-0.035,0.077-0.164,0.077-0.164s0.954-1.027,1.33-1.494 c0.219-0.272,0.472-0.595,0.748-0.955c0.002,0.036,0.003,0.072,0.003,0.107C28.952,32.099,27.764,32.929,27.234,33.263z M33.111,31.923c-0.14-0.099-0.116-0.42,0.343-1.421c0.18-0.393,0.592-1.054,1.306-1.686c0.083,0.26,0.133,0.509,0.132,0.741 C34.883,31.105,33.779,31.683,33.111,31.923z"
/>
</svg>
<span> SASS</span>
</div>
<div class="portfolio__skillWrapper portfolio__skillWrapper--css">
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
width="48px"
height="48px"
>
<path fill="#0277BD" d="M41,5H7l3,34l14,4l14-4L41,5L41,5z" />
<path fill="#039BE5" d="M24 8L24 39.9 35.2 36.7 37.7 8z" />
<path
fill="#FFF"
d="M33.1 13L24 13 24 17 28.9 17 28.6 21 24 21 24 25 28.4 25 28.1 29.5 24 30.9 24 35.1 31.9 32.5 32.6 21 32.6 21z"
/>
<path
fill="#EEE"
d="M24,13v4h-8.9l-0.3-4H24z M19.4,21l0.2,4H24v-4H19.4z M19.8,27h-4l0.3,5.5l7.9,2.6v-4.2l-4.1-1.4L19.8,27z"
/>
</svg>
<span> CSS</span>
</div>
<div class="portfolio__skillWrapper portfolio__skillWrapper--html">
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
width="48px"
height="48px"
>
<path fill="#E65100" d="M41,5H7l3,34l14,4l14-4L41,5L41,5z" />
<path fill="#FF6D00" d="M24 8L24 39.9 35.2 36.7 37.7 8z" />
<path
fill="#FFF"
d="M24,25v-4h8.6l-0.7,11.5L24,35.1v-4.2l4.1-1.4l0.3-4.5H24z M32.9,17l0.3-4H24v4H32.9z"
/>
<path
fill="#EEE"
d="M24,30.9v4.2l-7.9-2.6L15.7,27h4l0.2,2.5L24,30.9z M19.1,17H24v-4h-9.1l0.7,12H24v-4h-4.6L19.1,17z"
/>
</svg>
<span> HTML</span>
</div>
<div class="portfolio__skillWrapper portfolio__skillWrapper--svg">
<svg
class="portfolio__skillSvg"
xmlns="http://www.w3.org/2000/svg"
id="Filled"
height="48"
viewBox="0 0 512 512"
width="48"
>
<path d="m120 40h304v400h-304z" fill="#e2d2c2" />
<path d="m88 24h304v416h-304z" fill="#fae8d8" />
<path d="m120 56h240v192h-240z" fill="#a4d4f4" />
<path
d="m416 488h-320a16 16 0 0 1 -16-16v-176a16 16 0 0 1 16-16h160.506a16 16 0 0 1 12.292 5.757l30.4 36.486a16 16 0 0 0 12.296 5.757h104.506a16 16 0 0 1 16 16v128a16 16 0 0 1 -16 16z"
fill="#fcb442"
/>
<g fill="#fc8d36">
<path d="m152 88h32v32h-32z" />
<path d="m152 184h32v32h-32z" />
<path d="m296 88h32v32h-32z" />
<path d="m296 184h32v32h-32z" />
</g>
<path
d="m392 16h-304a8 8 0 0 0 -8 8v254.131a23.943 23.943 0 0 0 -8 17.869v176a24.028 24.028 0 0 0 24 24h320a24.028 24.028 0 0 0 24-24v-128a23.943 23.943 0 0 0 -8-17.869v-286.131a8 8 0 0 0 -8-8h-24v-8a8 8 0 0 0 -8-8zm-296 16h288v288h-72.506a7.978 7.978 0 0 1 -6.146-2.878l-30.405-36.486a23.932 23.932 0 0 0 -18.437-8.636h-160.506zm328 440a8.009 8.009 0 0 1 -8 8h-320a8.009 8.009 0 0 1 -8-8v-176a8.009 8.009 0 0 1 8-8h160.506a7.977 7.977 0 0 1 6.145 2.878l30.406 36.487a23.937 23.937 0 0 0 18.437 8.635h104.506a8.009 8.009 0 0 1 8 8zm-8-424v272h-16v-272z"
/>
<path
d="m368 248v-192a8 8 0 0 0 -8-8h-240a8 8 0 0 0 -8 8v192a8 8 0 0 0 8 8h240a8 8 0 0 0 8-8zm-16-8h-224v-176h224z"
/>
<path
d="m344 400h-16a8 8 0 0 0 0 16h8v16h-32v-48h32a8 8 0 0 0 0-16h-40a8 8 0 0 0 -8 8v64a8 8 0 0 0 8 8h48a8 8 0 0 0 8-8v-32a8 8 0 0 0 -8-8z"
/>
<path
d="m200 384a8 8 0 0 0 0-16h-32a8 8 0 0 0 -8 8v32a8 8 0 0 0 8 8h24v16h-24a8 8 0 0 0 0 16h32a8 8 0 0 0 8-8v-32a8 8 0 0 0 -8-8h-24v-16z"
/>
<path
d="m265.94 368.239a8 8 0 0 0 -9.7 5.821l-8.24 32.956-8.239-32.956a8 8 0 1 0 -15.522 3.88l16 64a8 8 0 0 0 15.522 0l16-64a8 8 0 0 0 -5.821-9.701z"
/>
<path
d="m152 224h32a8 8 0 0 0 8-8v-8h96v8a8 8 0 0 0 8 8h32a8 8 0 0 0 8-8v-32a8 8 0 0 0 -8-8h-8v-48h8a8 8 0 0 0 8-8v-32a8 8 0 0 0 -8-8h-32a8 8 0 0 0 -8 8v8h-96v-8a8 8 0 0 0 -8-8h-32a8 8 0 0 0 -8 8v32a8 8 0 0 0 8 8h8v48h-8a8 8 0 0 0 -8 8v32a8 8 0 0 0 8 8zm168-16h-16v-16h16zm-16-112h16v16h-16zm-144 0h16v16h-16zm16 32h8a8 8 0 0 0 8-8v-8h96v8a8 8 0 0 0 8 8h8v48h-8a8 8 0 0 0 -8 8v8h-96v-8a8 8 0 0 0 -8-8h-8zm-16 64h16v16h-16z"
/>
</svg>
<span> SVG</span>
</div>
</div>
</div>
<div
class="workItem"
onmouseenter="showButs('.workItem__btn--restaurant')"
onmouseleave="hideButs('.workItem__btn--restaurant')"
>
<div
class="workItem__btnContainer workItem__btnContainer--restaurant"
>
<a
href="https://github.com/AliBayatpour/Restaurant"
target="_blank"
class="workItem__btn workItem__btn--restaurant"
>SOURCE CODE</a
>
<a
href="https://alibayatpour.github.io/Restaurant/"
target="_blank"
class="workItem__btn workItem__btn--restaurant"
>WEBSITE</a
>
</div>
<img
src="./assets/restaurantMobileFrame.png"
alt="Ali bayatpour Restaurant Website"
class="portfolio__img portfolio__img--restaurant"
/>
</div>
</div>
</div>
<div class="praising section">
<div class="praising__txt">
<h3>In the next two years I will:</h3>
<ul>
<li>
<i class="fas fa-bullseye"></i> Be a Lead front-end developer at an
Estonian company.
</li>
<li>
<i class="fas fa-bullseye"></i> Be a professional UI and UX
designer.
</li>
<li>
<i class="fas fa-bullseye"></i> Be able to speak Estonian fluently.
</li>
<li>
<i class="fas fa-bullseye"></i> Keep learning as many new web
technologies as I can.
</li>
</ul>
</div>
<a
onclick="goToSection('.footer__info')"
class="praising__botton"
onmouseenter="movingArrow()"
onmouseleave="stopArrow()"
>
GET COFFEE <i class="fas fa-arrow-right"></i>
</a>
</div>
<div class="secAd section">
<div class="secAd__preHeader">Lets work together</div>
<div class="secAd__header">
<h3 style="margin-top: 32px;">In the past 2 years:</h3>
<ul>
<li>
<i class="fas fa-history"></i> Built many websites and web apps
</li>
<li>
<i class="fas fa-history"></i> Graduated in Software Engineering
</li>
<li>
<i class="fas fa-history"></i> Teaching Data Structures as Professor
Assistant at university
</li>
</ul>
</div>
</div>
<footer>
<div class="footer section">
<div class="footer__aboutMe">
<h1>About Me</h1>
<img
class="footer__myImg"
src="./assets/AliBayatpourImage.jpg"
alt="Ali Bayatpour Image"
/>
<p>
Hi! My name is Ali. I'm a 26-year-old front-end developer. I got my
bachelor’s in Computer Engineering. I live in Tallinn, the beautiful
capital of Estonia. I'm skilled in React(hooks), Redux(Saga, Thunk
and more), Angular(rxjs), Ionic(also mobile applications),
TypeScript, Testing, Firebase, JavaScript(also ES6, ES7, ES8),
Aimations(GSAP, Rellax, laxxx and a few more), npm, CSS(BEM, SASS),
HTML, project management methodologies Scrum. I am learning everyday
to allow the space between where I am and where I want to be inspire
me and not terrify me.
</p>
</div>
<div class="footer__info">
<div class="footer__socialMedia">
<a
target="_blank"
href="https://www.linkedin.com/in/ali-bayatpour-b0179912a/"
><i class="fab fa-linkedin-in"></i></a
><a href="https://www.facebook.com/ali.bayatpour.18" target="_blank"
><i class="fab fa-facebook-square"></i
></a>
<a href="https://github.com/AliBayatpour" target="_blank">
<i class="fab fa-github"></i>
</a>
</div>