-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2612 lines (2598 loc) · 118 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, shrink-to-fit=no"
/>
<title>cv 1</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Amiko&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Anek+Devanagari&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Anek+Gujarati&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Anybody&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Archivo&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Archivo+Black&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Assistant&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Atkinson+Hyperlegible&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Bai+Jamjuree&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Belleza&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Biryani&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Candal&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Cantora+One&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Carrois+Gothic&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Carrois+Gothic+SC&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Coda+Caption:800&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Darker+Grotesque&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Do+Hyeon&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Encode+Sans+Condensed&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Hammersmith+One&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Hind+Madurai&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Hind+Siliguri&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans+Devanagari&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Kodchasan&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=KoHo&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Kosugi&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Kulim+Park&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Kumbh+Sans&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lalezar&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=League+Spartan&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Mukta+Mahee&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Noto+Sans+Armenian&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Noto+Sans+Balinese&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Noto+Sans+Bamum&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Orbitron&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Titillium+Web&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Tomorrow&display=swap"
/>
<link rel="stylesheet" href="assets/fonts/fontawesome-all.min.css" />
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css" />
<link rel="stylesheet" href="assets/fonts/ionicons.min.css" />
<link rel="stylesheet" href="assets/fonts/material-icons.min.css" />
<link rel="stylesheet" href="assets/fonts/fontawesome5-overrides.min.css" />
<link rel="stylesheet" href="assets/css/Footer-Dark.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css"
/>
<link rel="stylesheet" href="assets/css/styles.css" />
<link
rel="stylesheet"
href="node_modules/fullpage.js/dist/fullpage.min.css"
/>
<script src="./node_modules/animejs/lib/anime.min.js"></script>
<link
rel="stylesheet"
href="./node_modules/particles.js/demo/css/style.css"
/>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
</head>
<body>
<!-- nav -->
<div
class="position-fixed col-12 overflow-hidden rounded-pill"
style="margin: auto; top: 1em; z-index: 3"
>
<div class="d-flex justify-content-center align-items-center w-100">
<nav
id="nav-scroll"
class="navbar rounded-pill px-3 py-2 d-flex justify-content-center align-content-center border border-3"
style="z-index: 3; background-color: rgba(39, 202, 202, 0)"
>
<ul class="nav nav-pills text-center d-flex align-items-center">
<li class="nav-item px-3">
<a
class="nav-link link-dark rounded-pill d-flex align-items-center justify-content-center"
href="#section1"
>Me
</a>
</li>
<li class="nav-item px-3">
<a
class="nav-link link-dark rounded-pill d-flex align-content-center justify-content-center"
href="#section2"
>Skills</a
>
</li>
<li class="nav-item px-3">
<a
class="nav-link link-dark rounded-pill d-flex align-items-center justify-content-center"
href="#section3"
>Services</a
>
</li>
<li class="nav-item px-3">
<a
class="nav-link link-dark rounded-pill d-flex align-items-center justify-content-center"
href="#section4"
>Contact</a
>
</li>
</ul>
</nav>
</div>
</div>
<div
data-bs-spy="scroll"
data-bs-target="#nav-scroll"
data-bs-root-margin="0px 0px -40%"
data-bs-smooth-scroll="true"
class="scrollspy-example rounded-2"
tabindex="0"
>
<section
id="section1"
class="position-relative overflow-hidden d-flex justify-content-center align-items-center pt-5"
style="box-shadow: 0px 4px 12px rgba(33, 37, 41, 0.31); height: 41em"
>
<div
id="particles-js"
class="position-absolute"
style="z-index: 0"
></div>
<div
class="position-absolute w-100"
style="
background: linear-gradient(
130deg,
#393a3a 0%,
var(--bs-gray-500) 36%,
var(--bs-gray) 55%,
#686d6f 81%,
var(--bs-gray-500) 99%
),
rgba(255, 255, 255, 0);
height: 100%;
z-index: -2;
filter: blur(100px);
"
></div>
<div
class="container d-flex justify-content-center align-items-center mx-auto"
>
<div
class="shadow-sm w-100 mt-3 position-relative"
data-aos="slide-down"
style="
background: rgba(255, 255, 255, 0.178);
height: 34em;
border-radius: 1.5em;
"
>
<div
class="border rounded-circle border-dark shadow mx-auto mt-3 d-flex justify-content-center col-xl-3 col-md-5 col-lg-4 col-sm-6 col-7"
style="height: 18em; border-radius: 1em"
>
<img
class="img-fluid"
data-bss-hover-animate="pulse"
src="assets/img/2.png"
style="filter: contrast(107%) grayscale(38%) saturate(59%)"
/>
</div>
<div class="justify-content-center d-flex w-75 mx-auto">
<div
class="d-flex align-items-center col-9 justify-content-center px-2 col-md-8 col-sm-10 col-lg-6"
style="
background: rgba(81, 86, 87, 0);
height: 5em;
border-radius: 3em;
box-shadow: inset 0px 0px 12px 3px rgba(33, 37, 41, 0.13),
inset 24px 1px 14px 0px rgba(79, 84, 89, 0.123);
"
>
<div
class="shadow-sm d-flex justify-content-center align-items-center w-100 px-5 btn-grad fs-4 h-75 front"
data-bss-hover-animate="pulse"
style="
height: 4em;
border-radius: 3em;
border-bottom-right-radius: 48;
border-top-right-radius: 48;
"
id="demo"
>
<span
class="text-capitalize ff-IRANSansWeb_Light "
style="color: var(--bs-gray-800)"
>FrontEnd </span
><span class="text-capitalize text-dark mx-2"
>programmer</span
>
</div>
</div>
</div>
<div
class="justify-content-center d-flex w-75 mx-auto align-items-center mt-3 pb-3"
>
<span
class="fs-5 mx-2"
data-bss-hover-animate="pulse"
style="color: var(--bs-gray-800)"
>JAVAD FARD</span
>
<div
class="d-flex justify-content-center align-items-center"
style="
width: 2.5em;
height: 2.5em;
background: rgba(255, 255, 255, 0.33);
border-radius: 10px;
"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="currentColor"
viewBox="0 0 16 16"
class="bi bi-code-slash fs-2"
data-bss-hover-animate="pulse"
>
<path
d="M10.478 1.647a.5.5 0 1 0-.956-.294l-4 13a.5.5 0 0 0 .956.294l4-13zM4.854 4.146a.5.5 0 0 1 0 .708L1.707 8l3.147 3.146a.5.5 0 0 1-.708.708l-3.5-3.5a.5.5 0 0 1 0-.708l3.5-3.5a.5.5 0 0 1 .708 0zm6.292 0a.5.5 0 0 0 0 .708L14.293 8l-3.147 3.146a.5.5 0 0 0 .708.708l3.5-3.5a.5.5 0 0 0 0-.708l-3.5-3.5a.5.5 0 0 0-.708 0z"
></path>
</svg>
</div>
</div>
<div
data-bss-hover-animate="pulse"
class="justify-content-center d-flex col-5 col-lg-3 mx-auto align-items-center mt-4"
style="
height: 2.3em;
border-radius: 3em;
border: 1px solid rgba(81, 87, 85, 0.514);
"
>
<i class="bi-telephone-fill me-2"></i>
<span id="num" class="fs-6" data-bss-hover-animate="pulse"
>+9367115481</span
>
</div>
<div
id="social"
class="float-end h-100 d-flex align-items-center position-absolute end-0 top-0"
style="transform: translateX(2em)"
>
<div>
<ul
class="nav nav-tabs h-100 w-25 d-block"
style="border-style: none"
>
<li
class="nav-item d-flex justify-content-center align-items-center mt-1"
data-bss-hover-animate="pulse"
style="
width: 4em;
height: 4em;
background: rgba(248, 249, 250, 0.36);
border-top-left-radius: 0.5em;
border-top-right-radius: 0.5em;
"
>
<div
class="d-flex justify-content-center align-items-center open"
style="
width: 3em;
height: 3em;
background: var(--bs-gray-700);
border-radius: 3em;
"
>
<i class="material-icons fs-3 text-light open-icon"
>email</i
>
<a
href="mailto:fardanfard20@gmail.com"
class="btn w-25 rounded-pill d-none open-item text-start text-light"
>Gmail</a
>
</div>
</li>
<li
class="nav-item d-flex justify-content-center align-items-center mt-1 position-relative"
data-bss-hover-animate="pulse"
style="
width: 4em;
height: 4em;
background: rgba(248, 249, 250, 0.36);
"
>
<div
class="d-flex justify-content-center align-items-center open"
style="
width: 3em;
height: 3em;
background: var(--bs-gray-700);
border-radius: 3em;
"
>
<i class="fab fa-github fs-3 text-light open-icon d-flex justify-content-center align-items-center"></i>
<a
href="https://github.com/javadfard"
class="btn w-25 rounded-pill d-none open-item text-start text-light"
>Github</a
>
</div>
</li>
<li
class="nav-item d-flex justify-content-center align-items-center mt-1"
data-bss-hover-animate="pulse"
style="
width: 4em;
height: 4em;
background: rgba(248, 249, 250, 0.36);
"
>
<div
class="d-flex justify-content-center align-items-center open"
style="
width: 3em;
height: 3em;
background: var(--bs-gray-700);
border-radius: 3em;
"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="-32 0 512 512"
width="1em"
height="1em"
fill="currentColor"
class="fs-3 text-light open-icon"
>
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path
d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"
></path>
</svg>
<a
href="https://www.linkedin.com/in/fardan-fard-b0b5a1248"
class="btn w-25 rounded-pill d-none open-item text-start text-light"
>Linkedin</a
>
</div>
</li>
<li
class="nav-item d-flex justify-content-center align-items-center mt-1"
data-bss-hover-animate="pulse"
style="
width: 4em;
height: 4em;
background: rgba(248, 249, 250, 0.36);
"
>
<div
class="d-flex justify-content-center align-items-center open"
style="
width: 3em;
height: 3em;
background: var(--bs-gray-700);
border-radius: 3em;
"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="currentColor"
viewBox="0 0 16 16"
class="bi bi-whatsapp fs-3 text-light open-icon"
>
<path
d="M13.601 2.326A7.854 7.854 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.933 7.933 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.898 7.898 0 0 0 13.6 2.326zM7.994 14.521a6.573 6.573 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.557 6.557 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592zm3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.729.729 0 0 0-.529.247c-.182.198-.691.677-.691 1.654 0 .977.71 1.916.81 2.049.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232z"
></path>
</svg>
<a
href="https://wa.me/+989367115481"
class="btn w-25 rounded-pill d-none open-item text-start text-light"
>WhatsUp</a
>
</div>
</li>
<li
class="nav-item d-flex justify-content-center align-items-center mt-1"
data-bss-hover-animate="pulse"
style="
width: 4em;
height: 4em;
background: rgba(248, 249, 250, 0.36);
border-bottom-left-radius: 0.5em;
border-bottom-right-radius: 0.5em;
"
>
<div
class="d-flex justify-content-center align-items-center open"
style="
width: 3em;
height: 3em;
background: var(--bs-gray-700);
border-radius: 3em;
"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="-8 0 512 512"
width="1em"
height="1em"
fill="currentColor"
class="fs-3 text-light open-icon"
>
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path
d="M248,8C111.033,8,0,119.033,0,256S111.033,504,248,504,496,392.967,496,256,384.967,8,248,8ZM362.952,176.66c-3.732,39.215-19.881,134.378-28.1,178.3-3.476,18.584-10.322,24.816-16.948,25.425-14.4,1.326-25.338-9.517-39.287-18.661-21.827-14.308-34.158-23.215-55.346-37.177-24.485-16.135-8.612-25,5.342-39.5,3.652-3.793,67.107-61.51,68.335-66.746.153-.655.3-3.1-1.154-4.384s-3.59-.849-5.135-.5q-3.283.746-104.608,69.142-14.845,10.194-26.894,9.934c-8.855-.191-25.888-5.006-38.551-9.123-15.531-5.048-27.875-7.717-26.8-16.291q.84-6.7,18.45-13.7,108.446-47.248,144.628-62.3c68.872-28.647,83.183-33.623,92.511-33.789,2.052-.034,6.639.474,9.61,2.885a10.452,10.452,0,0,1,3.53,6.716A43.765,43.765,0,0,1,362.952,176.66Z"
></path>
</svg>
<a
href="https://t.me/Fardan_fard"
class="btn w-25 rounded-pill d-none open-item text-start text-light"
>Telegram</a
>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section
id="section2"
class="mx-auto d-flex justify-content-center overflow-hidden position-relative"
style="background: rgba(81, 86, 87, 0.192)"
>
<div
class="position-absolute w-100 h-100 overflow-hidden opacity-75"
style="z-index: -1"
>
<div
class="w-100 h-100"
style="
background: linear-gradient(
130deg,
#4796aa 0%,
#41b48e 36%,
#2f80c2 55%,
#0d9914 81%,
#13b881 99%
),
rgba(137, 15, 236, 0);
height: 100%;
filter: blur(100px);
"
></div>
</div>
<div
class="row d-flex justify-content-center align-items-center my-5 p-md-5 px-md-0"
>
<div
class="col-auto col-md-12 col-lg-6 border border-3"
style="border-radius: 1.5em; border-color: #ffffff67 !important"
>
<div
class="container d-flex justify-content-center align-items-center"
style="height: 30em; border-radius: 1em"
>
<div>
<div class="row">
<div class="col-4 p-1" data-aos="flip-right">
<div
class="shadow-sm p-3"
data-bss-hover-animate="pulse"
style="
width: 100%;
background: var(--bs-gray-400);
border-radius: 10px;
color: var(--bs-gray-400);
"
>
<div
class="text-center d-flex justify-content-center align-items-center p-2 mx-auto"
data-bss-hover-animate="pulse"
style="
max-height: 48px;
width: 48px;
height: 48px;
border-radius: 2em;
background: var(--bs-white);
color: var(--bs-gray-700);
"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="-32 0 512 512"
width="1em"
height="1em"
fill="currentColor"
class="fs-2 d-xl-flex d-xxl-flex justify-content-xl-center align-items-xl-center justify-content-xxl-center align-items-xxl-center"
>
<!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. -->
<path
d="M439.55 236.05L244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"
></path>
</svg>
</div>
<h6
class="text-center mt-3 ff-IRANSansWeb_UltraLight"
data-bss-hover-animate="pulse"
style="
color: var(--bs-gray-700);
font-family: Amiko, sans-serif;
"
>
Git
</h6>
<div
data-bss-hover-animate="pulse"
class="mt-3 d-flex align-items-center"
style="border-radius: 25px; height: 0.5em; opacity: 0.8"
>
<div
class="w-75"
style="
border-radius: 25px;
height: 25%;
background: var(--bs-gray-600);
"
></div>
<div
style="
background: #41b48e;
width: 1em;
height: 1em;
margin: -0.27em;
border-radius: 15px;
border: 1px none var(--bs-secondary);
"
></div>
</div>
<div
class="text-center mt-2"
data-bss-hover-animate="pulse"
>
<span
class="text-center"
style="color: var(--bs-gray-600)"
>3/4</span
>
</div>
</div>
</div>
<div class="col-4 p-1" data-aos="flip-right">
<div
class="shadow-sm p-3"
data-bss-hover-animate="pulse"
style="
width: 100%;
background: var(--bs-gray-400);
border-radius: 10px;
color: var(--bs-gray-400);
"
>
<div
class="text-center d-flex justify-content-center align-items-center p-2 mx-auto"
data-bss-hover-animate="pulse"
style="
max-height: 48px;
width: 48px;
height: 48px;
border-radius: 2em;
background: var(--bs-white);
color: var(--bs-gray-700);
"
>
<i
class="fas fa-code fs-4 d-flex justify-content-center align-items-center"
></i>
</div>
<h6
class="text-center mt-3 ff-IRANSansWeb_UltraLight"
data-bss-hover-animate="pulse"
style="
color: var(--bs-gray-700);
font-family: Amiko, sans-serif;
"
>
Typescript
</h6>
<div
data-bss-hover-animate="pulse"
class="mt-3 d-flex align-items-center"
style="border-radius: 25px; height: 0.5em; opacity: 0.8"
>
<div
class="w-50"
style="
border-radius: 25px;
height: 25%;
background: var(--bs-gray-600);
"
></div>
<div
style="
background: #41b48e;
width: 1em;
height: 1em;
margin: -0.27em;
border-radius: 15px;
border: 1px none var(--bs-secondary);
"
></div>
</div>
<div
class="text-center mt-2"
data-bss-hover-animate="pulse"
>
<span
class="text-center"
style="color: var(--bs-gray-600)"
>2/4</span
>
</div>
</div>
</div>
<div class="col-4 p-1" data-aos="flip-right">
<div
class="shadow-sm p-3"
data-bss-hover-animate="pulse"
style="
width: 100%;
background: var(--bs-gray-400);
border-radius: 10px;
color: var(--bs-gray-400);
"
>
<div
class="text-center d-xl-flex d-xxl-flex justify-content-xl-center align-items-xl-center justify-content-xxl-center align-items-xxl-center p-2 mx-auto"
data-bss-hover-animate="pulse"
style="
max-height: 48px;
width: 48px;
height: 48px;
border-radius: 2em;
background: var(--bs-white);
color: var(--bs-gray-700);
"
>
<i
class="icon ion-paintbrush fs-3 d-xl-flex d-xxl-flex justify-content-xl-center align-items-xl-center justify-content-xxl-center align-items-xxl-center"
></i>
</div>
<h6
class="text-center mt-3 ff-IRANSansWeb_UltraLight"
data-bss-hover-animate="pulse"
style="
color: var(--bs-gray-700);
font-family: Amiko, sans-serif;
"
>
Ui-Ux
</h6>
<div
data-bss-hover-animate="pulse"
class="mt-3 d-flex align-items-center"
style="border-radius: 25px; height: 0.5em; opacity: 0.8"
>
<div
class="w-75"
style="
border-radius: 25px;
height: 25%;
background: var(--bs-gray-600);
"
></div>
<div
style="
background: #41b48e;
width: 1em;
height: 1em;
margin: -0.27em;
border-radius: 15px;
border: 1px none var(--bs-secondary);
"
></div>
</div>
<div
class="text-center mt-2"
data-bss-hover-animate="pulse"
>
<span
class="text-center"
style="color: var(--bs-gray-600)"
>3/4</span
>
</div>
</div>
</div>
</div>
<div class="row">
<div
class="col-4 p-1"
data-aos="flip-right"
style="height: 15em"
>
<div
class="shadow-sm p-2"
data-bss-hover-animate="pulse"
style="
height: 100%;
min-height: 0px;
background: var(--bs-gray-400);
border-radius: 10px;
color: var(--bs-gray-400);
"
>
<div >
<div
data-aos="flip-down"
data-aos-duration="1000"
class="w-100 d-flex justify-content-between px-2 align-items-center mt-1 p-1"
style="
border: 2px solid rgba(84, 86, 87, 0.164);
border-radius: 0.6em;
height: 3em;
color: var(--bs-gray-800) !important;
"
>
<span data-bss-hover-animate="pulse">C++</span
><svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="currentColor"
viewBox="0 0 16 16"
class="bi bi-code-square fs-5 ms-2"
data-bss-hover-animate="pulse"
>
<path
d="M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z"
></path>
<path
d="M6.854 4.646a.5.5 0 0 1 0 .708L4.207 8l2.647 2.646a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 0 1 .708 0zm2.292 0a.5.5 0 0 0 0 .708L11.793 8l-2.647 2.646a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 0 0-.708 0z"
></path>
</svg>
</div>
<div
data-aos="flip-down"
data-aos-duration="800"
class="w-100 d-flex justify-content-between px-2 align-items-center mt-2 p-1"
style="
border: 2px solid rgba(84, 86, 87, 0.164);
border-radius: 0.6em;
height: 3em;
color: var(--bs-gray-800) !important;
"
>
<span data-bss-hover-animate="pulse">Angular</span
><i
class="icon ion-social-angular fs-5 ms-2"
data-bss-hover-animate="pulse"
></i>
</div>
<div
data-aos="flip-down"
data-aos-duration="800"
class="w-100 d-flex justify-content-between px-2 align-items-center mt-2 p-1 "
style="
border: 2px solid rgba(84, 86, 87, 0.164);
border-radius: 0.6em;
height: 3em;
color: var(--bs-gray-800) !important;
"
>
<span data-bss-hover-animate="pulse" >Jquery</span
><svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
fill="none"
class="fs-5 ms-2"
data-bss-hover-animate="pulse"
>
<path
d="M5 16C5 15.4477 5.44772 15 6 15H14C14.5523 15 15 15.4477 15 16C15 16.5523 14.5523 17 14 17H6C5.44772 17 5 16.5523 5 16Z"
fill="currentColor"
></path>
<path
d="M18 11C18.5523 11 19 11.4477 19 12C19 12.5523 18.5523 13 18 13H10C9.44772 13 9 12.5523 9 12C9 11.4477 9.44772 11 10 11H18Z"
fill="currentColor"
></path>
<path
d="M16 16C16 15.4477 16.4477 15 17 15H18C18.5523 15 19 15.4477 19 16C19 16.5523 18.5523 17 18 17H17C16.4477 17 16 16.5523 16 16Z"
fill="currentColor"
></path>
<path
d="M7 11C7.55228 11 8 11.4477 8 12C8 12.5523 7.55228 13 7 13H6C5.44772 13 5 12.5523 5 12C5 11.4477 5.44772 11 6 11H7Z"
fill="currentColor"
></path>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M4 3C2.34315 3 1 4.34315 1 6V18C1 19.6569 2.34315 21 4 21H20C21.6569 21 23 19.6569 23 18V6C23 4.34315 21.6569 3 20 3H4ZM20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44771 20.5523 5 20 5Z"
fill="currentColor"
></path>
</svg>
</div>
</div>
<div>
<span
class="text-center position-relative d-flex justify-content-center mt-2"
data-bs-toggle="tooltip"
data-bss-tooltip=""
data-bs-placement="bottom"
data-aos="flip-down"
data-aos-duration="450"
style="
color: #d64a09be;
font-size: 0.9em;
font-family: 'Anek Devanagari', sans-serif;
"
title="قبلا با این زبان ها کار میکردم"
>Not Work Now!
</span>
</div>
</div>
</div>
<div
class="col-8 p-1"
data-aos="flip-right"
style="height: 15em"
>
<div
data-aos="flip-right"
class="p-3 d-flex justify-content-center align-items-center mx-auto overflow-hidden"
style="
height: 100%;
min-height: 0px;
color: var(--bs-gray-400);
background: var(--bs-gray-400);
border-radius: 10px;
"
>
<div class="row">
<div
class="col-6 d-flex justify-content-center"
data-aos="flip-right"
>
<div
class="position-relative d-flex justify-content-center align-items-center"
style="width: 10em"
>
<span
data-bss-hover-animate="rubberBand"
class="position-absolute"
style="color: var(--bs-gray-700)"
>Ai</span
>
<div
data-bss-hover-animate="pulse"