-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1203 lines (1150 loc) · 163 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
<html>
<head>
<!-- Global/ site tag (gtag.js) - Google Analytics -->
<script type="text/javascript" async="" src="https://www.gstatic.com/recaptcha/releases/UFwvoDBMjc8LiYc1DKXiAomK/recaptcha__fa.js" crossorigin="anonymous" integrity="sha384-KOigb/i4O+9HypYo1xbcXgsJKwxcUujbiCv4bRNyMqYxPvu73gtOQNMSLVPk4x3p"></script><script async="" defer="" src="https://www.google.com/recaptcha/api.js?onload=mrRecaptchav2Init&render=explicit"></script><script type="text/javascript" async="" src="https://www.google-analytics.com/analytics.js"></script><script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-KG38NH9"></script><script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-52115242-16"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-52115242-16');
</script>
<!-- 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-KG38NH9');
</script>
<!-- End Google Tag Manager -->
<meta charset="utf-8">
<title>Genetic engine</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A corporate Bootstrap theme by Medium Rare">
<style>
@keyframes hideLoader{0%{ width: 100%; height: 100%; }100%{ width: 0; height: 0; } } body > div.loader{ position: fixed; background: white; width: 100%; height: 100%; z-index: 1071; opacity: 0; transition: opacity .5s ease; overflow: hidden; pointer-events: none; display: flex; align-items: center; justify-content: center;}body:not(.loaded) > div.loader{ opacity: 1;}body:not(.loaded){ overflow: hidden;} body.loaded > div.loader{animation: hideLoader .5s linear .5s forwards; } /* Typing Animation */.loading-animation {width: 6px;height: 6px;border-radius: 50%;animation: typing 1s linear infinite alternate;position: relative;left: -12px;}@keyframes typing {0% {background-color: rgba(100,100,100, 1);box-shadow: 12px 0px 0px 0px rgba(100,100,100, 0.2),24px 0px 0px 0px rgba(100,100,100, 0.2);}25% {background-color: rgba(100,100,100, 0.4);box-shadow: 12px 0px 0px 0px rgba(100,100,100, 2),24px 0px 0px 0px rgba(100,100,100, 0.2);}75% {background-color: rgba(100,100,100, 0.4);box-shadow: 12px 0px 0px 0px rgba(100,100,100, 0.2),24px 0px 0px 0px rgba(100,100,100, 1);}}
</style>
<script type="text/javascript">
window.addEventListener("load", function () { document.querySelector('body').classList.add('loaded'); });
</script>
<link href="https://leap.mediumra.re/assets/css/theme.min.css" rel="stylesheet" type="text/css" media="all">
<link rel="preload" as="font" href="https://leap.mediumra.re/assets/fonts/Inter-UI-upright.var.woff2" type="font/woff2" crossorigin="anonymous">
<link rel="preload" as="font" href="https://leap.mediumra.re/assets/fonts/Inter-UI.var.woff2" type="font/woff2" crossorigin="anonymous">
</head>
<body>
<body data-smooth-scroll-offset="73" data-aos-easing="ease" data-aos-duration="400" data-aos-delay="0" class="loaded">
<div class="loader">
<div class="loading-animation"></div>
</div>
<div class="navbar-container " style="min-height: 71.05px; margin-bottom: -71.05px;">
<nav class="navbar navbar-expand-lg navbar-dark position-fixed scrolled" data-overlay="" data-sticky="top" style="max-width: 1074.4px; top: 0px;">
<div class="container">
<a class="navbar-brand fade-page" href="index.html">
<h1 style="color: white;font-size: 30px;"><a href="https://aryia-behroziuan.github.io/web/" style="color: white;";>Genetic engine</a></h1>
<!--<img src="assets/img/logo-white.svg" alt="Leap">-->
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target=".navbar-collapse" aria-expanded="false" aria-label="Toggle navigation">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon navbar-toggler-open" data-src="assets/img/icons/interface/menu.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M3 17C3 17.5523 3.44772 18 4 18H20C20.5523 18 21 17.5523 21 17V17C21 16.4477 20.5523 16 20 16H4C3.44772 16 3 16.4477 3 17V17ZM3 12C3 12.5523 3.44772 13 4 13H20C20.5523 13 21 12.5523 21 12V12C21 11.4477 20.5523 11 20 11H4C3.44772 11 3 11.4477 3 12V12ZM4 6C3.44772 6 3 6.44772 3 7V7C3 7.55228 3.44772 8 4 8H20C20.5523 8 21 7.55228 21 7V7C21 6.44772 20.5523 6 20 6H4Z" fill="#212529"></path>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon navbar-toggler-close" data-src="assets/img/icons/interface/cross.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M16.2426 6.34311L6.34309 16.2426C5.95257 16.6331 5.95257 17.2663 6.34309 17.6568C6.73362 18.0473 7.36678 18.0473 7.75731 17.6568L17.6568 7.75732C18.0473 7.36679 18.0473 6.73363 17.6568 6.34311C17.2663 5.95258 16.6331 5.95258 16.2426 6.34311Z" fill="#212529"></path>
<path d="M17.6568 16.2426L7.75734 6.34309C7.36681 5.95257 6.73365 5.95257 6.34313 6.34309C5.9526 6.73362 5.9526 7.36678 6.34313 7.75731L16.2426 17.6568C16.6331 18.0473 17.2663 18.0473 17.6568 17.6568C18.0474 17.2663 18.0474 16.6331 17.6568 16.2426Z" fill="#212529"></path>
</svg>
</button>
<div class="collapse navbar-collapse justify-content-end">
<div class="py-2 py-lg-0">
<ul class="navbar-nav">
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">Demos</a>
<div class="dropdown-menu row" style="left: -371px;">
<div class="col-auto" data-dropdown-content="" style="left: 371px;">
<div class="dropdown-grid-menu"><a href="home-course.html" class="dropdown-item fade-page">Course</a><a href="home-coworking.html" class="dropdown-item fade-page">Genetic engine<span class="badge badge-primary ml-2">New/free</span></a><a href="home-cryptocurrency.html" class="dropdown-item fade-page">Cryptocurrency</a>
<a href="home-desktop-app.html" class="dropdown-item fade-page">Desktop App</a><a href="home-event.html" class="dropdown-item fade-page">Event</a><a href="home-mobile-app.html" class="dropdown-item fade-page">Mobile App</a><a href="home-portfolio.html" class="dropdown-item fade-page">Portfolio</a>
<a href="home-saas.html" class="dropdown-item fade-page">SaaS</a><a href="home-saas-trend.html" class="dropdown-item fade-page">SaaS - Trend</a><a href="home-software-library.html" class="dropdown-item fade-page">Software Library</a>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">Pages</a>
<div class="dropdown-menu row" style="left: -447px;">
<div class="col-auto" data-dropdown-content="" style="left: 447px;">
<div class="dropdown-grid-menu"><a href="about-company.html" class="dropdown-item fade-page">About Company</a>
<div class="dropdown">
<a href="#" class="dropdown-item dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">
<span>Careers</span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon bg-dark opacity-20" data-src="assets/img/icons/interface/arrow-caret.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M14.4444 8.41358C14.7776 8.2281 15.1875 8.46907 15.1875 8.85048V15.1495C15.1875 15.5309 14.7776 15.7719 14.4444 15.5864L8.78505 12.4369C8.44258 12.2463 8.44258 11.7537 8.78505 11.5631L14.4444 8.41358Z" fill="#212529"></path>
</svg>
</a>
<div class="dropdown-menu row" style="left: 0px;">
<div class="col-auto" data-dropdown-content="" style="left: 0px;">
<div class="dropdown-grid-menu"><a href="careers.html" class="dropdown-item fade-page">Careers</a><a href="career-single.html" class="dropdown-item fade-page">Career Single</a>
</div>
</div>
</div>
</div>
<div class="dropdown">
<a href="#" class="dropdown-item dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">
<span>Contact</span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon bg-dark opacity-20" data-src="assets/img/icons/interface/arrow-caret.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M14.4444 8.41358C14.7776 8.2281 15.1875 8.46907 15.1875 8.85048V15.1495C15.1875 15.5309 14.7776 15.7719 14.4444 15.5864L8.78505 12.4369C8.44258 12.2463 8.44258 11.7537 8.78505 11.5631L14.4444 8.41358Z" fill="#212529"></path>
</svg>
</a>
<div class="dropdown-menu row" style="left: 0px;">
<div class="col-auto" data-dropdown-content="" style="left: 0px;">
<div class="dropdown-grid-menu"><a href="contact.html" class="dropdown-item fade-page">Contact</a><a href="contact-multiple-locations.html" class="dropdown-item fade-page">Contact - Multiple Locations</a>
</div>
</div>
</div>
</div>
<div class="dropdown">
<a href="#" class="dropdown-item dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">
<span>Customers</span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon bg-dark opacity-20" data-src="assets/img/icons/interface/arrow-caret.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M14.4444 8.41358C14.7776 8.2281 15.1875 8.46907 15.1875 8.85048V15.1495C15.1875 15.5309 14.7776 15.7719 14.4444 15.5864L8.78505 12.4369C8.44258 12.2463 8.44258 11.7537 8.78505 11.5631L14.4444 8.41358Z" fill="#212529"></path>
</svg>
</a>
<div class="dropdown-menu row" style="left: 0px;">
<div class="col-auto" data-dropdown-content="" style="left: 0px;">
<div class="dropdown-grid-menu"><a href="customer-stories.html" class="dropdown-item fade-page">Customer Stories</a><a href="customer-story.html" class="dropdown-item fade-page">Customer Story</a>
</div>
</div>
</div>
</div>
<div class="dropdown">
<a href="#" class="dropdown-item dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">
<span>Knowledgebase</span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon bg-dark opacity-20" data-src="assets/img/icons/interface/arrow-caret.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M14.4444 8.41358C14.7776 8.2281 15.1875 8.46907 15.1875 8.85048V15.1495C15.1875 15.5309 14.7776 15.7719 14.4444 15.5864L8.78505 12.4369C8.44258 12.2463 8.44258 11.7537 8.78505 11.5631L14.4444 8.41358Z" fill="#212529"></path>
</svg>
</a>
<div class="dropdown-menu row" style="left: 0px;">
<div class="col-auto" data-dropdown-content="" style="left: 0px;">
<div class="dropdown-grid-menu"><a href="knowledgebase.html" class="dropdown-item fade-page">Knowledgebase</a><a href="knowledgebase-category.html" class="dropdown-item fade-page">Knowledgebase Category</a><a href="knowledgebase-article.html" class="dropdown-item fade-page">Knowledgebase Article</a>
</div>
</div>
</div>
</div>
<div class="dropdown">
<a href="#" class="dropdown-item dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">
<span>Pricing</span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon bg-dark opacity-20" data-src="assets/img/icons/interface/arrow-caret.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M14.4444 8.41358C14.7776 8.2281 15.1875 8.46907 15.1875 8.85048V15.1495C15.1875 15.5309 14.7776 15.7719 14.4444 15.5864L8.78505 12.4369C8.44258 12.2463 8.44258 11.7537 8.78505 11.5631L14.4444 8.41358Z" fill="#212529"></path>
</svg>
</a>
<div class="dropdown-menu row" style="left: 0px;">
<div class="col-auto" data-dropdown-content="" style="left: 0px;">
<div class="dropdown-grid-menu"><a href="pricing-plans.html" class="dropdown-item fade-page">Pricing Plans</a><a href="pricing-plans-table.html" class="dropdown-item fade-page">Pricing Plans Table</a><a href="pricing-slider.html" class="dropdown-item fade-page">Pricing Slider</a>
</div>
</div>
</div>
</div>
<div class="dropdown">
<a href="#" class="dropdown-item dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">
<span>Utility</span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon bg-dark opacity-20" data-src="assets/img/icons/interface/arrow-caret.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M14.4444 8.41358C14.7776 8.2281 15.1875 8.46907 15.1875 8.85048V15.1495C15.1875 15.5309 14.7776 15.7719 14.4444 15.5864L8.78505 12.4369C8.44258 12.2463 8.44258 11.7537 8.78505 11.5631L14.4444 8.41358Z" fill="#212529"></path>
</svg>
</a>
<div class="dropdown-menu row" style="left: 0px;">
<div class="col-auto" data-dropdown-content="" style="left: 0px;">
<div class="dropdown-grid-menu"><a href="404.html" class="dropdown-item fade-page">404</a><a href="utility-coming-soon-subscribe.html" class="dropdown-item fade-page">Coming Soon - Subscribe</a><a href="utility-coming-soon.html" class="dropdown-item fade-page">Coming Soon</a>
<a href="utility-confirmation-download.html" class="dropdown-item fade-page">Confirmation - Download</a><a href="utility-confirmation-subscription.html" class="dropdown-item fade-page">Confirmation - Subscription</a><a href="utility-legal.html" class="dropdown-item fade-page">Legal</a>
</div>
</div>
</div>
</div>
<div class="dropdown">
<a href="#" class="dropdown-item dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">
<span>Account</span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon bg-dark opacity-20" data-src="assets/img/icons/interface/arrow-caret.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M14.4444 8.41358C14.7776 8.2281 15.1875 8.46907 15.1875 8.85048V15.1495C15.1875 15.5309 14.7776 15.7719 14.4444 15.5864L8.78505 12.4369C8.44258 12.2463 8.44258 11.7537 8.78505 11.5631L14.4444 8.41358Z" fill="#212529"></path>
</svg>
</a>
<div class="dropdown-menu row" style="left: 0px;">
<div class="col-auto" data-dropdown-content="" style="left: 0px;">
<div class="dropdown-grid-menu"><a href="account-onboarding.html" class="dropdown-item fade-page">Onboarding</a><a href="account-sign-in.html" class="dropdown-item fade-page">Sign In</a><a href="account-sign-up.html" class="dropdown-item fade-page">Sign Up</a>
<a href="account-sign-up-image.html" class="dropdown-item fade-page">Sign Up Image</a><a href="account-forgot-password.html" class="dropdown-item fade-page">Forgot Password</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">Blog</a>
<div class="dropdown-menu row" style="left: -517px;">
<div class="col-auto" data-dropdown-content="" style="left: 517px;">
<div class="dropdown-grid-menu">
<div class="dropdown">
<a href="#" class="dropdown-item dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">
<span>Blog Layouts</span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon bg-dark opacity-20" data-src="assets/img/icons/interface/arrow-caret.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M14.4444 8.41358C14.7776 8.2281 15.1875 8.46907 15.1875 8.85048V15.1495C15.1875 15.5309 14.7776 15.7719 14.4444 15.5864L8.78505 12.4369C8.44258 12.2463 8.44258 11.7537 8.78505 11.5631L14.4444 8.41358Z" fill="#212529"></path>
</svg>
</a>
<div class="dropdown-menu row" style="left: 0px;">
<div class="col-auto" data-dropdown-content="" style="left: 0px;">
<div class="dropdown-grid-menu"><a href="blog-cards.html" class="dropdown-item fade-page">Blog Cards</a><a href="blog-masonry.html" class="dropdown-item fade-page">Blog Masonry</a><a href="blog-sidebar.html" class="dropdown-item fade-page">Blog Sidebar</a>
<a href="blog-magazine.html" class="dropdown-item fade-page">Blog Magazine</a>
</div>
</div>
</div>
</div>
<div class="dropdown">
<a href="#" class="dropdown-item dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">
<span>Article Layouts</span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon bg-dark opacity-20" data-src="assets/img/icons/interface/arrow-caret.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M14.4444 8.41358C14.7776 8.2281 15.1875 8.46907 15.1875 8.85048V15.1495C15.1875 15.5309 14.7776 15.7719 14.4444 15.5864L8.78505 12.4369C8.44258 12.2463 8.44258 11.7537 8.78505 11.5631L14.4444 8.41358Z" fill="#212529"></path>
</svg>
</a>
<div class="dropdown-menu row" style="left: 0px;">
<div class="col-auto" data-dropdown-content="" style="left: 0px;">
<div class="dropdown-grid-menu"><a href="blog-article.html" class="dropdown-item fade-page">Article Basic</a><a href="blog-article-video.html" class="dropdown-item fade-page">Article Video</a><a href="blog-article-image-header.html" class="dropdown-item fade-page">Article Image Header</a>
<a href="blog-article-image-header-parallax.html" class="dropdown-item fade-page">Article Image Parallax</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">Portfolio</a>
<div class="dropdown-menu row" style="left: -574px;">
<div class="col-auto" data-dropdown-content="" style="left: 574px;">
<div class="dropdown-grid-menu">
<div class="dropdown">
<a href="#" class="dropdown-item dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">
<span>Grid Layouts</span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon bg-dark opacity-20" data-src="assets/img/icons/interface/arrow-caret.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M14.4444 8.41358C14.7776 8.2281 15.1875 8.46907 15.1875 8.85048V15.1495C15.1875 15.5309 14.7776 15.7719 14.4444 15.5864L8.78505 12.4369C8.44258 12.2463 8.44258 11.7537 8.78505 11.5631L14.4444 8.41358Z" fill="#212529"></path>
</svg>
</a>
<div class="dropdown-menu row" style="left: 0px;">
<div class="col-auto" data-dropdown-content="" style="left: 0px;">
<div class="dropdown-grid-menu"><a href="portfolio-2-columns.html" class="dropdown-item fade-page">2 Columns</a><a href="portfolio-3-columns.html" class="dropdown-item fade-page">3 Columns</a><a href="portfolio-4-columns.html" class="dropdown-item fade-page">4 Columns</a>
</div>
</div>
</div>
</div>
<div class="dropdown">
<a href="#" class="dropdown-item dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">
<span>Project Layouts</span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="injected-svg icon bg-dark opacity-20" data-src="assets/img/icons/interface/arrow-caret.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M14.4444 8.41358C14.7776 8.2281 15.1875 8.46907 15.1875 8.85048V15.1495C15.1875 15.5309 14.7776 15.7719 14.4444 15.5864L8.78505 12.4369C8.44258 12.2463 8.44258 11.7537 8.78505 11.5631L14.4444 8.41358Z" fill="#212529"></path>
</svg>
</a>
<div class="dropdown-menu row" style="left: 0px;">
<div class="col-auto" data-dropdown-content="" style="left: 0px;">
<div class="dropdown-grid-menu"><a href="portfolio-case-study.html" class="dropdown-item fade-page">Case Study</a><a href="portfolio-single-sidebar.html" class="dropdown-item fade-page">Sidebar</a><a href="portfolio-single-slider.html" class="dropdown-item fade-page">Slider</a>
<a href="portfolio-single-parallax.html" class="dropdown-item fade-page">Parallax</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">Elements</a>
<div class="dropdown-menu bg-primary-3 text-light border-bottom" style="left: -663px;">
<div class="container py-4" data-dropdown-content="" style="left: 663px;">
<div class="row w-100">
<div class="col-lg col-md-4 mb-3 mb-lg-0">
<h5>Base</h5>
<div><a class="dropdown-item fade-page" href="elements-grid.html">Grid</a><a class="dropdown-item fade-page" href="elements-forms.html">Forms</a><a class="dropdown-item fade-page" href="elements-tables.html">Tables</a><a class="dropdown-item fade-page" href="elements-typography.html">Typography</a>
</div>
</div>
<div class="col-lg col-md-4 mb-3 mb-lg-0">
<h5>General</h5>
<div><a class="dropdown-item fade-page" href="elements-alerts.html">Alerts</a><a class="dropdown-item fade-page" href="elements-avatars.html">Avatars</a><a class="dropdown-item fade-page" href="elements-badges.html">Badges</a><a class="dropdown-item fade-page" href="elements-breadcrumbs.html">Breadcrumbs</a><a class="dropdown-item fade-page" href="elements-buttons.html">Buttons</a><a class="dropdown-item fade-page" href="elements-cards.html">Cards</a><a class="dropdown-item fade-page" href="elements-dropdowns-bootstrap.html">Dropdowns Bootstrap</a><a class="dropdown-item fade-page" href="elements-dropdowns-grid.html">Dropdowns Grid</a><a class="dropdown-item fade-page" href="elements-footers.html">Footers</a>
<a class="dropdown-item fade-page" href="elements-navbars.html">Navigation</a><a class="dropdown-item fade-page" href="elements-tooltips.html">Tooltips</a><a class="dropdown-item fade-page" href="elements-toasts.html">Toasts</a><a class="dropdown-item fade-page" href="elements-widgets.html">Widgets</a>
</div>
</div>
<div class="col-lg col-md-4 mb-3 mb-lg-0">
<h5>Graphic</h5>
<div><a class="dropdown-item fade-page" href="elements-decorations.html">Decorations</a><a class="dropdown-item fade-page" href="elements-dividers.html">Dividers</a><a class="dropdown-item fade-page" href="elements-icons.html">Icons</a>
<a class="dropdown-item fade-page" href="elements-icons-reference.html">Icons Reference</a><a class="dropdown-item fade-page" href="elements-processes.html">Processes</a><a class="dropdown-item fade-page" href="elements-progress.html">Progress</a><a class="dropdown-item fade-page" href="elements-pricing.html">Pricing</a>
</div>
</div>
<div class="col-lg col-md-4 mb-3 mb-lg-0">
<h5>Media</h5>
<div><a class="dropdown-item fade-page" href="elements-fancybox.html">Fancybox</a><a class="dropdown-item fade-page" href="elements-isotope.html">Isotope</a><a class="dropdown-item fade-page" href="elements-maps.html">Maps</a><a class="dropdown-item fade-page" href="elements-flickity.html">Slider Flickity</a><a class="dropdown-item fade-page" href="elements-twitter.html">Twitter Feeds</a><a class="dropdown-item fade-page" href="elements-video-players.html">Video Players</a><a class="dropdown-item fade-page" href="elements-video-backgrounds.html">Video Backgrounds</a>
</div>
</div>
<div class="col-lg col-md-4 mb-3 mb-lg-0">
<h5>Interactive</h5>
<div><a class="dropdown-item fade-page" href="elements-animations.html">Animations</a><a class="dropdown-item fade-page" href="elements-accordions.html">Accordion</a><a class="dropdown-item fade-page" href="elements-counters.html">Counters</a>
<a class="dropdown-item fade-page" href="elements-countdown.html">Countdown</a><a class="dropdown-item fade-page" href="elements-date-picker.html">Date Picker</a><a class="dropdown-item fade-page" href="elements-modals.html">Modals</a><a class="dropdown-item fade-page" href="elements-navs.html">Tabs (Nav)</a>
<a class="dropdown-item fade-page" href="elements-typed-text.html">Typed Text</a><a class="dropdown-item fade-page" href="elements-parallax.html">Parallax</a><a class="dropdown-item fade-page" href="elements-popovers.html">Popovers</a><a class="dropdown-item fade-page" href="elements-wizards.html">Wizards</a>
</div>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown-grid" aria-expanded="false" aria-haspopup="true">Support</a>
<div class="dropdown-menu row" style="left: -757px;">
<div class="col-auto px-0" data-dropdown-content="" style="left: 757px;">
<div class="bg-white rounded border shadow-lg o-hidden">
<div class="p-3">
<h6 class="mb-0">Product Support</h6>
</div>
<div class="list-group list-group-flush">
<a href="documentation/index.html" target="_blank" class="list-group-item list-group-item-action d-flex align-items-center p-3">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-md" data-src="assets/img/icons/theme/files/selected-file.svg">
<title>Icon For Selected-file</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<polygon points="0 0 24 0 24 24 0 24" opacity="0"></polygon>
<path d="M4.85714286,1 L11.7364114,1 C12.0910962,1 12.4343066,1.12568431 12.7051108,1.35473959 L17.4686994,5.3839416 C17.8056532,5.66894833 18,6.08787823 18,6.52920201 L18,19.0833333 C18,20.8738751 17.9795521,21 16.1428571,21 L4.85714286,21 C3.02044787,21 3,20.8738751 3,19.0833333 L3,2.91666667 C3,1.12612489 3.02044787,1 4.85714286,1 Z M8,12 C7.44771525,12 7,12.4477153 7,13 C7,13.5522847 7.44771525,14 8,14 L15,14 C15.5522847,14 16,13.5522847 16,13 C16,12.4477153 15.5522847,12 15,12 L8,12 Z M8,16 C7.44771525,16 7,16.4477153 7,17 C7,17.5522847 7.44771525,18 8,18 L11,18 C11.5522847,18 12,17.5522847 12,17 C12,16.4477153 11.5522847,16 11,16 L8,16 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"></path>
<path d="M6.85714286,3 L14.7364114,3 C15.0910962,3 15.4343066,3.12568431 15.7051108,3.35473959 L20.4686994,7.3839416 C20.8056532,7.66894833 21,8.08787823 21,8.52920201 L21,21.0833333 C21,22.8738751 20.9795521,23 19.1428571,23 L6.85714286,23 C5.02044787,23 5,22.8738751 5,21.0833333 L5,4.91666667 C5,3.12612489 5.02044787,3 6.85714286,3 Z M8,12 C7.44771525,12 7,12.4477153 7,13 C7,13.5522847 7.44771525,14 8,14 L15,14 C15.5522847,14 16,13.5522847 16,13 C16,12.4477153 15.5522847,12 15,12 L8,12 Z M8,16 C7.44771525,16 7,16.4477153 7,17 C7,17.5522847 7.44771525,18 8,18 L11,18 C11.5522847,18 12,17.5522847 12,17 C12,16.4477153 11.5522847,16 11,16 L8,16 Z" fill="#000000" fill-rule="nonzero"></path>
</g>
</svg>
<div class="text-body ml-3">
<span>Documentation</span>
<div class="text-small text-muted">Get all the information you need</div>
</div>
</a>
<a href="https://themes.zendesk.com/hc/en-us/articles/360000006291-How-do-I-get-help-with-the-theme-I-purchased-" target="_blank" class="list-group-item list-group-item-action d-flex align-items-center p-3">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-md" data-src="assets/img/icons/theme/communication/chat-4.svg">
<title>Icon For Chat#4</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M21.9999843,15.009808 L22.0249378,15 L22.0249378,19.5857864 C22.0249378,20.1380712 21.5772226,20.5857864 21.0249378,20.5857864 C20.7597213,20.5857864 20.5053674,20.4804296 20.317831,20.2928932 L18.0249378,18 L5,18 C3.34314575,18 2,16.6568542 2,15 L2,6 C2,4.34314575 3.34314575,3 5,3 L19,3 C20.6568542,3 22,4.34314575 22,6 L22,15 C22,15.0032706 21.9999948,15.0065399 21.9999843,15.009808 Z M6.16794971,10.5547002 C7.67758127,12.8191475 9.64566871,14 12,14 C14.3543313,14 16.3224187,12.8191475 17.8320503,10.5547002 C18.1384028,10.0951715 18.0142289,9.47430216 17.5547002,9.16794971 C17.0951715,8.86159725 16.4743022,8.98577112 16.1679497,9.4452998 C15.0109146,11.1808525 13.6456687,12 12,12 C10.3543313,12 8.9890854,11.1808525 7.83205029,9.4452998 C7.52569784,8.98577112 6.90482849,8.86159725 6.4452998,9.16794971 C5.98577112,9.47430216 5.86159725,10.0951715 6.16794971,10.5547002 Z" fill="#000000"></path>
</g>
</svg>
<div class="text-body ml-3">
<span>Looking for answers?</span>
<div class="text-small text-muted">Get support</div>
</div>
</a>
</div>
</div>
</div>
</div>
</li>
</ul>
</div><a href="https://themes.getbootstrap.com/product/leap-multipurpose-bootstrap-theme/" class="btn btn-white ml-lg-3">Purchase Now</a>
</div>
</div>
</nav>
</div>
<div data-overlay="" class="bg-primary text-light o-hidden position-relative" style="padding-top: 71.05px !important;">
<div class="position-absolute w-100 h-100 o-hidden top-0">
<div class="decoration right bottom scale-2">
<svg xmlns="http://www.w3.org/2000/svg" width="298" height="197" viewBox="0 0 298 197" fill="none" class="injected-svg bg-primary-2" data-src="assets/img/decorations/deco-blob-2.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M271.518 116.857C266.116 125.511 259.584 133.287 253.194 141.164C248.36 147.125 243.548 153.103 238.583 158.953C236.134 161.84 233.362 164.453 230.733 167.185C229.881 168.072 228.921 168.871 228.172 169.833C225.727 172.979 222.572 175.452 220.145 178.651C217.581 182.032 213.84 184.145 210.204 186.288C201.958 191.145 193.024 193.809 183.61 195.366C174.13 196.932 164.633 196.987 155.102 196.749C148.211 196.575 141.723 194.466 135.547 191.72C126.522 187.704 117.201 184.554 107.795 181.695C102.133 179.974 96.211 179.015 90.348 178.072C82.455 176.801 74.483 176.021 66.59 174.748C61.49 173.924 56.395 173.656 51.27 173.844C41.399 174.205 31.62 172.856 21.799 172.319C17.233 172.069 12.623 171.329 8.32199 169.428C3.47399 167.289 0.64998 163.86 0.50198 158.356C0.33398 152.055 1.14497 145.872 2.36097 139.725C4.05597 131.147 6.94698 122.92 9.63998 114.625C11.435 109.1 14.044 104.068 17.138 99.191C20.263 94.261 22.833 88.964 26.156 84.181C28.943 80.169 32.218 76.415 35.73 73.013C39.232 69.62 43.835 67.853 48.488 66.47C49.535 66.159 50.73 66.247 51.851 66.298C56.263 66.493 60.572 67.214 64.898 68.22C71.472 69.749 77.906 72.04 84.709 72.466C87.564 72.646 90.438 72.616 93.301 72.558C98.117 72.46 102.93 72.236 107.746 72.117C113 71.986 117.902 70.75 122.18 67.582C129.756 61.973 137.328 56.355 144.856 50.678C150.336 46.543 155.829 42.416 161.157 38.088C167.837 32.662 174.261 26.918 180.968 21.529C186.708 16.916 192.419 12.265 198.823 8.50796C202.481 6.35996 206.471 5.08997 210.255 3.29897C212.142 2.40397 214.415 2.16795 216.544 1.97295C222.355 1.43795 228.177 0.931955 234.007 0.701955C239.169 0.498955 244.191 1.50895 249.097 3.18795C256.88 5.85395 264.337 9.12595 271.404 13.417C275.808 16.089 280.133 18.696 283.58 22.601C285.338 24.591 287.455 26.2709 289.187 28.2829C296.781 37.0899 298.767 47.203 296.302 58.465C295.044 64.211 293.189 69.723 290.986 75.139C287.625 83.399 284.443 91.746 280.726 99.846C278.041 105.691 274.613 111.197 271.518 116.857ZM95.393 132.113C95.569 132.066 95.745 132.021 95.92 131.974C95.768 131.382 95.617 130.788 95.465 130.197C95.283 130.244 95.102 130.291 94.922 130.338C95.078 130.93 95.236 131.521 95.393 132.113ZM225.68 158.404C225.83 158.343 225.985 158.293 226.121 158.211C226.142 158.199 226.103 157.986 226.062 157.977C225.916 157.94 225.755 157.948 225.601 157.938C225.627 158.092 225.652 158.248 225.68 158.404Z" fill="black"></path>
</svg>
</div>
<div class="decoration right bottom scale-3">
<svg xmlns="http://www.w3.org/2000/svg" width="114" height="64" viewBox="0 0 114 64" fill="none" class="injected-svg bg-white" data-src="assets/img/decorations/deco-dots-6.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M73.32 8.86801C73.459 7.62901 72.664 7.25601 71.906 6.76901C70.867 6.10101 70.59 5.277 71.031 4.345C71.222 3.945 71.58 3.52399 71.969 3.33499C73.746 2.47299 76.209 3.20301 77.276 4.85901C77.698 5.51701 77.764 6.25802 77.266 6.87702C76.352 8.01402 75.258 8.90001 73.32 8.86801Z" fill="black"></path>
<path d="M33.5251 51.6231C32.8901 51.3521 32.2261 51.1311 31.6251 50.7981C30.5961 50.2291 29.8591 49.4331 29.9791 48.1321C30.0831 46.9981 31.0281 46.0351 32.3131 45.7621C32.5471 45.7121 32.7801 45.6531 33.0181 45.6251C34.1571 45.4901 34.8851 45.9071 35.2481 46.9691C35.5371 47.8111 35.6291 48.6821 35.3671 49.5591C35.1191 50.3861 34.8261 50.7141 33.5251 51.6231Z" fill="black"></path>
<path d="M3.47102 38.293C3.28302 38.205 2.79302 38.133 2.59002 37.854C1.75002 36.698 0.916028 35.502 0.709028 34.047C0.582028 33.168 1.12103 32.389 1.85003 32.159C2.72303 31.885 3.61003 31.74 4.24803 32.605C4.86303 33.436 5.44502 34.295 5.98002 35.179C6.42302 35.909 6.49802 36.75 5.98002 37.446C5.43202 38.186 4.63102 38.556 3.47102 38.293Z" fill="black"></path>
<path d="M67.549 22.483C67.445 22.721 67.2249 23.225 67.0039 23.7311C66.5509 24.7751 64.135 25.134 63.51 24.034C63.164 23.424 62.795 22.809 62.571 22.15C62.307 21.368 62.7659 20.481 63.5589 20.271C64.3169 20.071 65.121 19.966 65.907 19.967C67.271 19.969 67.865 20.8 67.549 22.483Z" fill="black"></path>
<path d="M113.014 61.366C112.778 62.277 112.307 62.954 111.313 63.154C110.467 63.323 109.659 63.007 109.295 62.258C108.984 61.621 108.719 60.96 108.49 60.29C108.24 59.564 108.351 58.879 108.888 58.29C109.443 57.681 110.148 57.632 110.87 57.811C112.268 58.155 113.34 59.966 113.014 61.366Z" fill="black"></path>
<path d="M77.145 37.633C77.024 37.16 77.006 36.559 76.731 36.115C76.016 34.961 76.557 34.14 77.311 33.351C77.944 32.688 78.721 32.651 79.52 32.996C80.547 33.439 81.223 34.154 81.262 35.35C81.305 36.698 80.594 37.668 79.283 37.959C78.568 38.118 77.859 38.126 77.145 37.633ZM79.16 34.699C79.01 34.366 78.969 34.112 78.818 33.978C78.531 33.719 78.056 33.958 77.957 34.434C77.918 34.622 78.053 34.848 78.107 35.057C78.438 34.945 78.768 34.833 79.16 34.699Z" fill="black"></path>
<path d="M20.1408 2.24493C19.9418 3.29493 19.8318 4.24094 19.5608 5.13894C19.4088 5.63894 19.0378 6.10193 18.6738 6.49993C18.2758 6.93693 17.7188 7.04993 17.1448 6.84093C16.5428 6.62293 16.3168 6.10692 16.2898 5.53292C16.2688 5.06392 16.3778 4.58994 16.4228 4.11794C16.4678 3.64594 16.5828 3.16294 16.5228 2.70394C16.4528 2.16194 16.1598 1.58792 16.8118 1.25292C17.4618 0.918921 18.1768 0.801922 18.8448 1.22292C19.2418 1.47292 19.5878 1.80293 20.1408 2.24493Z" fill="black"></path>
<path d="M23.2341 25.618C24.1191 26.151 24.435 26.944 24.58 27.828C24.73 28.752 24.307 29.665 23.58 30.052C22.793 30.472 22.0041 30.371 21.3551 29.843C20.8821 29.458 20.466 28.929 20.201 28.379C19.627 27.184 20.1251 26.191 21.4371 25.85C22.0351 25.693 22.6721 25.686 23.2341 25.618Z" fill="black"></path>
<path d="M53.8851 37.898C53.8231 38.16 53.7891 38.316 53.7461 38.469C53.3441 39.94 52.426 40.185 51.365 39.093C51.033 38.751 50.7011 38.396 50.4451 37.997C49.6231 36.716 50.181 35.248 51.636 34.79C52.845 34.41 53.9041 35.085 53.9821 36.337C54.0181 36.89 53.9161 37.449 53.8851 37.898Z" fill="black"></path>
<path d="M96.3362 23.504C96.6952 24.849 96.9922 25.958 97.3112 27.15C96.9012 27.557 96.5022 28.055 96.0062 28.419C95.2012 29.007 94.0222 28.583 93.6902 27.628C93.3722 26.714 93.1762 25.818 93.8382 24.92C94.4672 24.064 95.0642 23.255 96.3362 23.504Z" fill="black"></path>
<path d="M107.16 42.976C106.738 42.19 106.299 41.369 105.873 40.572C106.926 38.66 107.978 38.166 109.469 38.85C110.057 39.12 110.299 39.577 110.153 40.205C109.954 41.068 109.678 41.916 108.983 42.514C108.492 42.935 107.914 43.205 107.16 42.976Z" fill="black"></path>
<path d="M45.7482 13.598C45.4982 14.83 43.6893 15.898 42.5393 15.523C42.3933 15.475 42.2343 15.396 42.1313 15.286C41.5783 14.695 41.5333 12.985 42.0393 12.364C42.7253 11.522 44.2422 11.273 45.0762 11.93C45.6042 12.346 45.8182 12.954 45.7482 13.598Z" fill="black"></path>
<path d="M62.6021 60.476C60.2951 60.503 60.295 60.503 60.123 59.02C60.377 58.64 60.6561 58.923 60.9351 58.978C61.4471 59.076 61.8301 58.914 62.1091 58.435C62.6521 57.508 62.67 57.518 63.929 57.089C64.077 57.409 64.3251 57.734 64.3701 58.084C64.4811 58.947 64.5461 59.822 64.5461 60.692C64.5461 61.367 64.2671 61.915 63.3231 62.044C63.0881 61.533 62.8401 60.995 62.6021 60.476Z" fill="black"></path>
<path d="M84.02 54.013C84.163 54.756 83.719 55.267 83.211 55.602C82.498 56.072 81.695 56.422 80.899 56.745C80.362 56.963 79.821 56.411 79.895 55.8C80.032 54.663 80.752 53.941 81.704 53.484C82.557 53.073 83.383 53.232 84.02 54.013Z" fill="black"></path>
</svg>
</div>
<div class="decoration top left scale-2 d-none d-md-block">
<svg xmlns="http://www.w3.org/2000/svg" width="338" height="277" viewBox="0 0 338 277" fill="none" class="injected-svg bg-primary-3" data-src="assets/img/decorations/deco-blob-1.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M136.018 0.775024C143.338 0.998024 150.311 2.86002 157.217 4.90402C161.951 6.30502 166.533 8.21602 171.238 9.72702C177.683 11.799 184.205 13.642 190.654 15.704C198.047 18.067 205.496 20.302 212.734 23.077C219.181 25.549 225.818 26.16 232.576 26.624C242.613 27.313 252.408 29.541 262.14 31.958C267.613 33.318 273.015 35.013 278.376 36.777C286.159 39.338 292.769 43.771 298.435 49.705C300.869 52.253 303.482 54.662 306.224 56.875C310.91 60.658 314.185 65.568 317.597 70.391C317.999 70.957 318.31 71.699 318.861 72.031C323.925 75.085 326.72 80.024 329.47 84.928C331.605 88.738 333.45 92.72 335.236 96.711C335.974 98.361 336.533 100.215 336.629 102.006C336.979 108.465 337.936 114.881 337.352 121.411C336.889 126.604 336.916 131.868 337.11 137.086C337.676 152.284 335.641 167.235 333.401 182.2C331.815 192.802 330.878 203.502 329.278 214.101C328.417 219.807 327.28 225.578 325.321 230.976C323.759 235.279 321.196 239.409 318.317 243.006C311.585 251.42 303.104 257.68 292.893 261.414C288.381 263.064 283.952 265.016 279.332 266.275C273.076 267.98 266.711 269.338 260.33 270.509C250.605 272.292 240.844 273.878 231.07 275.381C220.672 276.98 210.306 277.306 199.939 274.719C194.33 273.32 188.527 272.723 182.869 271.504C166.828 268.049 151.043 263.651 135.754 257.669C130.918 255.776 126.25 253.478 122.199 249.956C118.49 246.731 113.928 244.469 110.316 241.155C103.357 234.766 96.6579 228.074 90.1249 221.245C84.3729 215.231 79.0449 208.814 73.4259 202.671C71.6229 200.7 69.3989 199.121 67.5219 197.212C61.8789 191.478 56.3579 185.624 50.6959 179.909C48.0139 177.202 45.0629 174.763 42.3439 172.091C39.7309 169.523 37.2799 166.791 34.7229 164.164C30.1899 159.507 25.8419 154.642 21.0319 150.288C14.4459 144.325 9.29194 137.288 4.85794 129.733C1.90494 124.702 0.404932 119.126 0.994932 113.109C1.35393 109.453 1.56894 105.873 3.02594 102.364C4.82294 98.043 7.59594 94.544 11.0199 91.581C16.4609 86.871 22.0179 82.28 27.7129 77.881C34.4159 72.703 41.2719 67.718 48.1519 62.774C53.0819 59.232 58.3649 56.157 63.1269 52.411C72.1059 45.348 81.2339 38.467 89.4079 30.405C96.0349 23.868 102.898 17.54 110.002 11.527C115.279 7.06004 121.135 3.23104 128.049 1.65704C130.639 1.07104 133.357 1.05302 136.018 0.775024ZM19.8459 102.8C15.5139 101.001 13.7579 101.522 12.1429 105.364C13.5239 105.867 14.8829 106.363 16.5709 106.978C16.7739 105.683 16.8949 104.912 16.9929 104.287C17.9989 103.763 18.9229 103.281 19.8479 102.799C21.2859 101.622 23.0749 100.717 23.4099 98.469C20.4119 98.883 20.4119 98.883 19.8459 102.8ZM118.352 15.815C117.153 17.925 116.342 19.402 117.231 21.328C119.746 19.487 119.773 19.382 118.352 15.815ZM36.2909 86.69C35.4119 88.799 34.8089 90.248 34.0939 91.961C37.8889 90.785 37.8889 90.785 36.2909 86.69ZM129.395 162.873C128.641 162.383 128.006 161.799 127.858 161.903C127.292 162.306 126.881 162.927 126.413 163.468C126.843 163.712 127.337 164.224 127.684 164.138C128.211 164.009 128.639 163.465 129.395 162.873ZM137.797 163.645C137.248 164.305 136.658 164.709 136.697 165.036C136.763 165.591 137.228 166.097 137.525 166.623C137.986 166.255 138.761 165.928 138.818 165.505C138.881 165.033 138.287 164.477 137.797 163.645ZM137.221 207.492C137.242 207.855 137.264 208.219 137.285 208.582C138.129 208.456 138.973 208.33 139.816 208.205C139.787 207.967 139.757 207.73 139.73 207.492C138.895 207.492 138.057 207.492 137.221 207.492ZM110.674 30.56C110.768 30.297 110.862 30.035 110.957 29.772C110.123 29.451 109.291 29.13 108.457 28.809C108.357 29.097 108.256 29.386 108.154 29.674C108.994 29.969 109.834 30.265 110.674 30.56ZM116.773 160.416C116.58 160.891 116.285 161.258 116.357 161.528C116.435 161.827 116.851 162.037 117.121 162.285C117.336 161.902 117.652 161.535 117.713 161.129C117.736 160.968 117.193 160.722 116.773 160.416ZM124.658 162.574C123.793 162.347 123.324 162.142 122.863 162.152C122.707 162.156 122.562 162.708 122.414 163.009C122.768 163.15 123.127 163.408 123.473 163.392C123.754 163.381 124.02 163.036 124.658 162.574ZM133.973 165.672C133.819 165.484 133.664 165.297 133.51 165.11C133.348 165.387 133.151 165.654 133.059 165.954C133.039 166.011 133.434 166.196 133.637 166.322C133.748 166.105 133.861 165.89 133.973 165.672ZM115.15 24.039C114.955 23.876 114.759 23.714 114.566 23.552C114.468 23.778 114.254 24.034 114.302 24.223C114.353 24.418 114.656 24.549 114.849 24.708C114.949 24.486 115.051 24.263 115.15 24.039Z" fill="black"></path>
</svg>
</div>
</div>
<section class="min-vh-70 o-hidden d-flex flex-column justify-content-center">
<div class="container">
<div class="row justify-content-center text-center align-items-center">
<div class="col-xl-8 col-lg-9 col-md-10 layer-3 aos-init aos-animate" data-aos="fade-up" data-aos-delay="500">
<h1 style="font-size: 50px;" class="display-3">
Genetic engine<br>Creator Aryia Behroziuan.
</h1>
<div class="mb-4">
<p class="lead px-xl-5">
In fact, this tool is a genetic engine that you can use in your projects and this tool is presented as an open source and you can participate in its development and this is a prototype.
</p>
</div>
<a href="https://codeload.github.com/Aryia-Behroziuan/ga/zip/main" class="btn btn-lg btn-white mx-1" data-smooth-scroll="">View Document</a>
<a href="https://codeload.github.com/Aryia-Behroziuan/ga/zip/main" class="btn btn-lg btn-primary-3 mx-1">Download</a>
</div>
</div>
</div>
</section>
<div class="divider flip-x">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="96px" viewBox="0 0 100 100" version="1.1" preserveAspectRatio="none" class="injected-svg" data-src="assets/img/dividers/divider-2.svg">
<path d="M0,0 C16.6666667,66 33.3333333,99 50,99 C66.6666667,99 83.3333333,66 100,0 L100,100 L0,100 L0,0 Z"></path>
</svg>
</div>
</div>
<section class="text-center" id="demos">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-9">
<h2 class="h1">as an open source and you can participate in its development and this is a prototype.</h2>
</div>
</div>
</div>
</section>
<section class="pt-0">
<div class="container">
<div class="row aos-init aos-animate" data-aos="fade-up">
<div class="col-md-6">
<a class="fade-page" href="home-coworking.html">
<img src="https://media.springernature.com/full/springer-static/image/art%3A10.1038%2Fs42003-019-0456-9/MediaObjects/42003_2019_456_Fig1_HTML.png?as=webp" alt="Coworking" class="rounded shadow-3d hover-shadow-3d border mb-3 mb-md-0">
</a>
</div>
<div class="col">
<div class="row justify-content-center">
<div class="col-xl-9 col-lg-10">
<a href="home-coworking.html" class="fade-up">
<h3 class="h2">Genetic engine<span class="badge badge-primary ml-2">New/free</span></h3>
</a>
<p class="lead">
In fact, this tool is a genetic engine that you can use in your projects and this tool is presented.
</p>
<ul class="list-unstyled my-3">
<li class="d-flex align-items-center my-2">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg" data-src="assets/img/icons/theme/home/clock.svg">
<title>Icon For Clock</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M12,22 C7.02943725,22 3,17.9705627 3,13 C3,8.02943725 7.02943725,4 12,4 C16.9705627,4 21,8.02943725 21,13 C21,17.9705627 16.9705627,22 12,22 Z" fill="#000000" opacity="0.3"></path>
<path d="M11.9630156,7.5 L12.0475062,7.5 C12.3043819,7.5 12.5194647,7.69464724 12.5450248,7.95024814 L13,12.5 L16.2480695,14.3560397 C16.403857,14.4450611 16.5,14.6107328 16.5,14.7901613 L16.5,15 C16.5,15.2109164 16.3290185,15.3818979 16.1181021,15.3818979 C16.0841582,15.3818979 16.0503659,15.3773725 16.0176181,15.3684413 L11.3986612,14.1087258 C11.1672824,14.0456225 11.0132986,13.8271186 11.0316926,13.5879956 L11.4644883,7.96165175 C11.4845267,7.70115317 11.7017474,7.5 11.9630156,7.5 Z" fill="#000000"></path>
</g>
</svg>
<span class="h6 mb-0 ml-2">Date picker</span>
</li>
<li class="d-flex align-items-center my-2">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg" data-src="assets/img/icons/theme/communication/rss.svg">
<title>Icon For RSS</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<circle fill="#000000" cx="6" cy="18" r="3"></circle>
<path d="M16.5,21 L13.5,21 C13.5,15.2010101 8.79898987,10.5 3,10.5 L3,7.5 C10.4558441,7.5 16.5,13.5441559 16.5,21 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"></path>
<path d="M22.5,21 L19.5,21 C19.5,12.163444 11.836556,4.5 3,4.5 L3,1.5 C13.4934102,1.5 22.5,10.5065898 22.5,21 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"></path>
</g>
</svg>
<span class="h6 mb-0 ml-2">Blog listing cards</span>
</li>
<li class="d-flex align-items-center my-2">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg" data-src="assets/img/icons/theme/media/movie-lane-2.svg">
<title>Icon For Movie-Lane #2</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M6,3 L18,3 C19.1045695,3 20,3.8954305 20,5 L20,19 C20,20.1045695 19.1045695,21 18,21 L6,21 C4.8954305,21 4,20.1045695 4,19 L4,5 C4,3.8954305 4.8954305,3 6,3 Z M5.5,5 C5.22385763,5 5,5.22385763 5,5.5 L5,6.5 C5,6.77614237 5.22385763,7 5.5,7 L6.5,7 C6.77614237,7 7,6.77614237 7,6.5 L7,5.5 C7,5.22385763 6.77614237,5 6.5,5 L5.5,5 Z M17.5,5 C17.2238576,5 17,5.22385763 17,5.5 L17,6.5 C17,6.77614237 17.2238576,7 17.5,7 L18.5,7 C18.7761424,7 19,6.77614237 19,6.5 L19,5.5 C19,5.22385763 18.7761424,5 18.5,5 L17.5,5 Z M5.5,9 C5.22385763,9 5,9.22385763 5,9.5 L5,10.5 C5,10.7761424 5.22385763,11 5.5,11 L6.5,11 C6.77614237,11 7,10.7761424 7,10.5 L7,9.5 C7,9.22385763 6.77614237,9 6.5,9 L5.5,9 Z M17.5,9 C17.2238576,9 17,9.22385763 17,9.5 L17,10.5 C17,10.7761424 17.2238576,11 17.5,11 L18.5,11 C18.7761424,11 19,10.7761424 19,10.5 L19,9.5 C19,9.22385763 18.7761424,9 18.5,9 L17.5,9 Z M5.5,13 C5.22385763,13 5,13.2238576 5,13.5 L5,14.5 C5,14.7761424 5.22385763,15 5.5,15 L6.5,15 C6.77614237,15 7,14.7761424 7,14.5 L7,13.5 C7,13.2238576 6.77614237,13 6.5,13 L5.5,13 Z M17.5,13 C17.2238576,13 17,13.2238576 17,13.5 L17,14.5 C17,14.7761424 17.2238576,15 17.5,15 L18.5,15 C18.7761424,15 19,14.7761424 19,14.5 L19,13.5 C19,13.2238576 18.7761424,13 18.5,13 L17.5,13 Z M17.5,17 C17.2238576,17 17,17.2238576 17,17.5 L17,18.5 C17,18.7761424 17.2238576,19 17.5,19 L18.5,19 C18.7761424,19 19,18.7761424 19,18.5 L19,17.5 C19,17.2238576 18.7761424,17 18.5,17 L17.5,17 Z M5.5,17 C5.22385763,17 5,17.2238576 5,17.5 L5,18.5 C5,18.7761424 5.22385763,19 5.5,19 L6.5,19 C6.77614237,19 7,18.7761424 7,18.5 L7,17.5 C7,17.2238576 6.77614237,17 6.5,17 L5.5,17 Z" fill="#000000" opacity="0.3"></path>
<path d="M11.3521577,14.5722612 L13.9568442,12.7918113 C14.1848159,12.6359797 14.2432972,12.3248456 14.0874656,12.0968739 C14.0526941,12.0460053 14.0088196,12.002002 13.9580532,11.9670814 L11.3533667,10.1754041 C11.1258528,10.0189048 10.8145486,10.0764735 10.6580493,10.3039875 C10.6007019,10.3873574 10.5699997,10.4861652 10.5699997,10.5873545 L10.5699997,14.1594818 C10.5699997,14.4356241 10.7938573,14.6594818 11.0699997,14.6594818 C11.1706891,14.6594818 11.2690327,14.6290818 11.3521577,14.5722612 Z" fill="#000000"></path>
</g>
</svg>
<span class="h6 mb-0 ml-2">Fullscreen video lightbox</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="has-divider">
<div class="container">
<div class="row justify-content-center text-center mb-6">
<div class="col-xl-8 col-lg-9">
<h2 class="display-4 mx-xl-6">Less work, more flow.</h2>
<p class="lead">
Boost productivity with BrowserSync. SCSS changes are reflected instantly and pages scroll and refresh on devices as you work.
</p>
</div>
</div>
<div class="row justify-content-center mb-6">
<div class="col-xl-5 col-md-8">
<div class="position-relative">
<div class="rounded bg-primary-3 p-4 text-light text-monospace mb-2 layer-2">
<div class="mb-3">
<div>> $ npm install</div>
<div class="text-primary-2">Everything’s installed!</div>
</div>
<div class="mb-3">
<div>> $ gulp</div>
<div class="text-primary-2">SCSS watching</div>
<div class="text-primary-2">LiveReload started</div>
<div class="text-primary-2">Opening localhost:3000</div>
</div>
<div>
<div>> $ that's it?</div>
<div class="text-primary-2">Yep, that's it.</div>
</div>
</div>
</div>
<div class="alert alert-primary position-relative layer-3">😱 Look unfamiliar? Don’t worry! Our <a href="documentation/index.html">comprehensive
documentation</a> has got you covered.</div>
</div>
</div>
<div class="row">
<div class="col">
<ul class="d-flex flex-wrap justify-content-center list-unstyled">
<li class="mx-2 mx-lg-4 mb-5 mb-md-0 aos-init aos-animate" data-aos="fade-up" data-aos-delay="100">
<svg xmlns="http://www.w3.org/2000/svg" width="143" height="48" viewBox="0 0 143 48" fill="none" class="injected-svg icon bg-primary-3 icon-lg opacity-20" data-src="assets/img/logos/developer/bootstrap.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.18919 48C2.77106 48 0 45.2293 0 41.8108V41.8106V6.18919C0 2.77106 2.77069 0 6.18937 0H41.8108C45.2289 0 48 2.77069 48 6.18937V41.8108C48 45.2289 45.2293 48 41.8106 48H6.18919ZM19.7236 14.2994V21.0969H26.1953C27.3351 21.0969 28.2713 20.8256 29.0039 20.2827C29.7366 19.7401 30.103 18.8581 30.103 17.6369C30.103 16.9587 29.9808 16.4024 29.7366 15.9682C29.4923 15.5341 29.1666 15.1949 28.7598 14.9506C28.3527 14.7063 27.8845 14.5368 27.3554 14.4419C26.8263 14.3469 26.2769 14.2994 25.7069 14.2994H19.7236ZM13.333 38.396V9.3335H27.0095C28.3934 9.3335 29.6553 9.45556 30.7949 9.69987C31.9347 9.944 32.9116 10.3443 33.7255 10.9006C34.5396 11.4569 35.1706 12.1964 35.6183 13.1189C36.0661 14.0416 36.29 15.1812 36.29 16.538C36.29 18.0035 35.9575 19.2245 35.2928 20.2014C34.628 21.1782 33.6441 21.9789 32.3416 22.6029C34.1326 23.1185 35.4691 24.0207 36.3511 25.3098C37.2329 26.5987 37.6739 28.1521 37.6739 29.9703C37.6739 31.4356 37.3891 32.7042 36.8191 33.7762C36.2493 34.8479 35.4826 35.7232 34.5194 36.4016C33.556 37.0799 32.4571 37.5819 31.2224 37.9076C29.9877 38.2332 28.7191 38.396 27.4165 38.396H13.333ZM19.7236 25.4521V33.4301H26.5617C27.1859 33.4301 27.7827 33.3689 28.3527 33.2471C28.9225 33.1248 29.4246 32.9214 29.8587 32.6364C30.293 32.3516 30.6389 31.9647 30.8967 31.4763C31.1545 30.9879 31.2835 30.3639 31.2835 29.6039C31.2835 28.1114 30.8628 27.0464 30.0216 26.4087C29.1803 25.7709 28.0677 25.4521 26.6838 25.4521H19.7236Z" fill="#6C757D"></path>
<path d="M65.6543 29.0918C68.6523 29.0918 70.459 27.5879 70.459 25.1074C70.459 23.2324 69.1699 21.875 67.2559 21.6602V21.582C68.6621 21.3477 69.7656 20.0098 69.7656 18.5156C69.7656 16.3867 68.125 15 65.625 15H60V29.0918H65.6543ZM62.1875 16.7871H65.0977C66.6797 16.7871 67.5781 17.5098 67.5781 18.8184C67.5781 20.2148 66.5332 20.9961 64.6387 20.9961H62.1875V16.7871ZM62.1875 27.3047V22.666H65.0781C67.1484 22.666 68.2227 23.4473 68.2227 24.9707C68.2227 26.4941 67.1777 27.3047 65.2051 27.3047H62.1875Z" fill="#ADB5BD"></path>
<path d="M76.5039 29.2871C79.4434 29.2871 81.377 27.2656 81.377 23.9551C81.377 20.6543 79.4336 18.6328 76.5039 18.6328C73.5742 18.6328 71.6309 20.6543 71.6309 23.9551C71.6309 27.2656 73.5645 29.2871 76.5039 29.2871ZM76.5039 27.5488C74.8535 27.5488 73.7793 26.2402 73.7793 23.9551C73.7793 21.6797 74.8535 20.3711 76.5039 20.3711C78.1543 20.3711 79.2285 21.6797 79.2285 23.9551C79.2285 26.2402 78.1641 27.5488 76.5039 27.5488Z" fill="#ADB5BD"></path>
<path d="M87.4219 29.2871C90.3613 29.2871 92.2949 27.2656 92.2949 23.9551C92.2949 20.6543 90.3516 18.6328 87.4219 18.6328C84.4922 18.6328 82.5488 20.6543 82.5488 23.9551C82.5488 27.2656 84.4824 29.2871 87.4219 29.2871ZM87.4219 27.5488C85.7715 27.5488 84.6973 26.2402 84.6973 23.9551C84.6973 21.6797 85.7715 20.3711 87.4219 20.3711C89.0723 20.3711 90.1465 21.6797 90.1465 23.9551C90.1465 26.2402 89.082 27.5488 87.4219 27.5488Z" fill="#ADB5BD"></path>
<path d="M94.541 16.3867V18.8184H93.0469V20.4883H94.541V26.3867C94.541 28.3691 95.3516 29.1602 97.4316 29.1602C97.9004 29.1602 98.3691 29.1211 98.6035 29.0625V27.3926C98.4668 27.4219 98.125 27.4414 97.9102 27.4414C97.0508 27.4414 96.6602 27.041 96.6602 26.1523V20.4883H98.6133V18.8184H96.6602V16.3867H94.541Z" fill="#ADB5BD"></path>
<path d="M100.166 21.7285C100.166 23.1641 101.104 24.1309 102.959 24.5801L104.795 25.0293C105.869 25.3027 106.26 25.6641 106.26 26.3184C106.26 27.1484 105.479 27.6758 104.209 27.6758C102.92 27.6758 102.158 27.1289 101.992 26.1426H99.9023C100.068 28.0273 101.68 29.2871 104.111 29.2871C106.631 29.2871 108.379 27.998 108.379 26.123C108.379 24.6094 107.598 23.8281 105.527 23.3301L103.799 22.9297C102.734 22.666 102.227 22.2363 102.227 21.6016C102.227 20.791 102.988 20.2344 104.131 20.2344C105.312 20.2344 106.064 20.8105 106.162 21.7383H108.145C108.076 19.9121 106.475 18.6328 104.189 18.6328C101.787 18.6328 100.166 19.8926 100.166 21.7285Z" fill="#ADB5BD"></path>
<path d="M110.635 16.3867V18.8184H109.141V20.4883H110.635V26.3867C110.635 28.3691 111.445 29.1602 113.525 29.1602C113.994 29.1602 114.463 29.1211 114.697 29.0625V27.3926C114.561 27.4219 114.219 27.4414 114.004 27.4414C113.145 27.4414 112.754 27.041 112.754 26.1523V20.4883H114.707V18.8184H112.754V16.3867H110.635Z" fill="#ADB5BD"></path>
<path d="M116.445 29.0918H118.555V22.9395C118.555 21.4844 119.395 20.5762 120.752 20.5762C121.162 20.5762 121.533 20.625 121.699 20.6934V18.7305C121.543 18.7012 121.279 18.6523 120.977 18.6523C119.766 18.6523 118.848 19.3652 118.506 20.5664H118.457V18.8184H116.445V29.0918Z" fill="#ADB5BD"></path>
<path d="M126.387 27.5977C125.254 27.5977 124.512 27.0117 124.512 26.1133C124.512 25.2344 125.225 24.6777 126.484 24.5898L129.014 24.4336V25.2441C129.014 26.582 127.861 27.5977 126.387 27.5977ZM125.801 29.2676C127.148 29.2676 128.447 28.5449 129.043 27.4023H129.092V29.0918H131.113V22.0117C131.113 19.9512 129.521 18.6328 127.031 18.6328C124.492 18.6328 122.91 20 122.793 21.8555H124.785C124.971 20.9375 125.732 20.3516 126.953 20.3516C128.242 20.3516 129.014 21.0352 129.014 22.1777V22.9688L126.201 23.1348C123.76 23.2715 122.383 24.375 122.383 26.1719C122.383 28.0176 123.789 29.2676 125.801 29.2676Z" fill="#ADB5BD"></path>
<path d="M138.516 18.6523C137.031 18.6523 135.85 19.4043 135.244 20.5859H135.205V18.8184H133.164V32.4902H135.273V27.4023H135.322C135.908 28.5449 137.08 29.2676 138.555 29.2676C141.133 29.2676 142.842 27.207 142.842 23.9551C142.842 20.7031 141.123 18.6523 138.516 18.6523ZM137.959 27.4805C136.338 27.4805 135.264 26.0938 135.264 23.9551C135.264 21.8359 136.348 20.4297 137.959 20.4297C139.629 20.4297 140.674 21.8066 140.674 23.9551C140.674 26.1133 139.629 27.4805 137.959 27.4805Z" fill="#ADB5BD"></path>
</svg>
</li>
<li class="mx-2 mx-lg-4 mb-5 mb-md-0 aos-init aos-animate" data-aos="fade-up" data-aos-delay="200">
<svg xmlns="http://www.w3.org/2000/svg" width="65" height="48" viewBox="0 0 65 48" fill="none" class="injected-svg icon bg-primary-3 icon-lg opacity-20" data-src="assets/img/logos/developer/sass.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M55.1255 27.5629C52.8865 27.5756 50.9478 28.1133 49.3217 28.914C48.7213 27.7257 48.1209 26.6874 48.021 25.912C47.9084 25.0114 47.7708 24.4609 47.9084 23.3853C48.0459 22.3095 48.6713 20.7835 48.6713 20.6584C48.6586 20.5459 48.5336 19.9955 47.2453 19.983C45.9571 19.9705 44.8438 20.2332 44.7187 20.5709C44.5936 20.9086 44.3435 21.6841 44.1808 22.4846C43.9557 23.6604 41.6042 27.8256 40.2658 30.0146C39.828 29.164 39.4528 28.4135 39.3776 27.813C39.2651 26.9125 39.1274 26.362 39.2651 25.2865C39.4027 24.2106 40.0281 22.6848 40.0281 22.5597C40.0156 22.4471 39.8905 21.8967 38.6023 21.8842C37.3139 21.8717 36.2008 22.1344 36.0757 22.4721C35.9506 22.8098 35.813 23.6104 35.5378 24.3859C35.275 25.1614 32.148 32.1159 31.3349 33.9296C30.9222 34.8552 30.5596 35.5932 30.2968 36.0935C30.0341 36.5939 30.2843 36.1311 30.2592 36.1811C30.0341 36.6064 29.909 36.844 29.909 36.844V36.8567C29.7339 37.1694 29.5463 37.4694 29.4586 37.4694C29.3961 37.4694 29.271 36.6314 29.4836 35.4808C29.9464 33.0666 31.0721 29.3017 31.0598 29.1641C31.0598 29.1016 31.2723 28.4385 30.3342 28.1009C29.4211 27.7632 29.096 28.3261 29.0208 28.3261C28.9458 28.3261 28.8832 28.5262 28.8832 28.5262C28.8832 28.5262 29.8964 24.2861 26.9444 24.2861C25.0932 24.2861 22.5416 26.2999 21.2782 28.1386C20.4777 28.5764 18.7766 29.5018 16.9754 30.4901C16.2875 30.8654 15.5745 31.2656 14.8991 31.6284L14.7616 31.478C11.1843 27.663 4.56744 24.9612 4.84262 19.8329C4.94269 17.9692 5.59312 13.0535 17.5511 7.09957C27.345 2.22138 35.1876 3.55975 36.5509 6.5367C38.4896 10.7895 32.3606 18.6946 22.1791 19.8329C18.3015 20.2707 16.2626 18.7697 15.7499 18.2068C15.212 17.6189 15.137 17.5939 14.9368 17.7065C14.6116 17.8816 14.8118 18.407 14.9368 18.7197C15.237 19.5077 16.4879 20.9086 18.6143 21.6091C20.4778 22.222 25.0309 22.5597 30.5345 20.4333C36.7011 18.0442 41.5167 11.4149 40.1033 5.87377C38.6649 0.232576 29.3087 -1.61863 20.4655 1.52092C15.1994 3.39715 9.49567 6.32406 5.39298 10.1641C0.514795 14.717 -0.260712 18.6946 0.0645002 20.3457C1.20287 26.2371 9.32055 30.0771 12.5727 32.9165C12.4101 33.0039 12.26 33.0914 12.1224 33.1666C10.4963 33.967 4.30477 37.2068 2.75376 40.6339C1.00261 44.5114 3.02894 47.3009 4.37982 47.6761C8.55755 48.8394 12.8353 46.7505 15.1494 43.3108C17.4507 39.871 17.1757 35.4056 16.1125 33.3667L16.0748 33.2917L17.3507 32.5412C18.1763 32.0534 18.9894 31.6031 19.7022 31.2152C19.3021 32.3034 19.0143 33.5918 18.8643 35.468C18.6892 37.6696 19.5898 40.5213 20.778 41.647C21.3034 42.1347 21.9288 42.1474 22.3165 42.1474C23.6924 42.1474 24.3179 41.009 25.0058 39.6457C25.8564 37.9821 26.6069 36.0559 26.6069 36.0559C26.6069 36.0559 25.6687 41.2718 28.2329 41.2718C29.171 41.2718 30.1091 40.0585 30.5344 39.4331V39.4456C30.5344 39.4456 30.5594 39.4081 30.6095 39.3205C30.662 39.2429 30.712 39.1637 30.7596 39.083V39.058C31.1348 38.4075 31.9729 36.9191 33.2237 34.455C34.8371 31.2779 36.3882 27.3003 36.3882 27.3003C36.3882 27.3003 36.5383 28.2759 37.0011 29.877C37.2762 30.8277 37.8766 31.8658 38.3394 32.8789C37.9642 33.4043 37.739 33.7046 37.739 33.7046L37.7515 33.7171C37.4514 34.1174 37.1136 34.5428 36.7635 34.9679C35.4877 36.4939 33.9617 38.2327 33.7615 38.733C33.5239 39.3208 33.5739 39.7586 34.0367 40.1089C34.3744 40.3591 34.9748 40.409 35.6127 40.3591C36.7635 40.2839 37.564 39.9963 37.9643 39.8211C38.5897 39.5959 39.3027 39.2582 39.9906 38.7579C41.2414 37.8324 42.0044 36.5191 41.9294 34.7679C41.8918 33.8048 41.5791 32.8542 41.1914 31.9536C41.304 31.791 41.4167 31.6282 41.5291 31.4532C43.5054 28.5637 45.0314 25.3868 45.0314 25.3868C45.0314 25.3868 45.1815 26.3624 45.6443 27.9635C45.8818 28.7765 46.3573 29.6647 46.7825 30.5403C44.9313 32.0538 43.7681 33.8049 43.3678 34.9557C42.6298 37.0821 43.2052 38.0452 44.2934 38.2703C44.7811 38.3704 45.4817 38.1452 46.0069 37.9201C46.6573 37.7075 47.4454 37.3446 48.171 36.8069C49.4218 35.8813 50.6226 34.5929 50.56 32.8543C50.5225 32.0538 50.3099 31.2657 50.0222 30.5153C51.5982 29.8648 53.6369 29.4896 56.2262 29.8023C61.7924 30.4527 62.8931 33.93 62.6806 35.3809C62.4679 36.832 61.3047 37.6324 60.9168 37.8826C60.529 38.1202 60.4039 38.2079 60.4415 38.3829C60.4915 38.6457 60.6666 38.6331 61.0043 38.5832C61.4671 38.508 63.9313 37.3949 64.0313 34.7183C64.1814 31.278 60.9168 27.5255 55.1255 27.5629ZM12.1974 42.0349C10.3587 44.0487 7.76954 44.8117 6.66882 44.1613C5.48054 43.4734 5.94322 40.5089 8.20732 38.37C9.58322 37.0692 11.3719 35.8684 12.5477 35.1304C12.8103 34.9678 13.2106 34.7303 13.6859 34.4425C13.761 34.3925 13.811 34.3674 13.811 34.3674C13.8985 34.3174 13.9986 34.2548 14.0987 34.1923C14.9367 37.2443 14.1362 39.921 12.1974 42.0349ZM25.6437 32.8914C25.0058 34.455 23.6549 38.4701 22.8419 38.2449C22.1413 38.0573 21.7162 35.0178 22.7042 32.0159C23.2045 30.5022 24.2677 28.7012 24.8931 28.0006C25.9064 26.8749 27.007 26.4996 27.2823 26.9624C27.6075 27.5629 26.044 31.9158 25.6437 32.8914ZM36.7385 38.1949C36.4633 38.3326 36.2131 38.4326 36.1006 38.3576C36.013 38.3076 36.213 38.12 36.213 38.12C36.213 38.12 37.6014 36.6315 38.1518 35.9436C38.4645 35.5434 38.8397 35.0806 39.24 34.5551V34.7052C39.2401 36.5063 37.514 37.7071 36.7385 38.1949ZM45.2939 36.2436C45.0938 36.0935 45.119 35.6307 45.7943 34.1798C46.0571 33.6044 46.6573 32.6413 47.6955 31.7282C47.8206 32.1034 47.8958 32.466 47.8831 32.8039C47.8708 35.0554 46.2697 35.8934 45.2939 36.2436Z" fill="#ADB5BD"></path>
</svg>
</li>
<li class="mx-2 mx-lg-4 mb-5 mb-md-0 aos-init aos-animate" data-aos="fade-up" data-aos-delay="300">
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="48" viewBox="0 0 80 48" fill="none" class="injected-svg icon bg-primary-3 icon-lg opacity-20" data-src="assets/img/logos/developer/gulp.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M21.0372 24.717C20.9809 24.7992 20.8825 25.0552 20.7371 25.4897C20.5918 25.9242 20.4159 26.4668 20.2096 27.1197C20.0033 27.7726 19.7782 28.5054 19.5391 29.3133C19.2976 30.1212 19.0491 30.948 18.7959 31.7888C18.5403 32.6319 18.2965 33.4563 18.062 34.2666C17.8276 35.0745 17.6166 35.8073 17.4314 36.4602C17.2462 37.1131 17.0914 37.6604 16.9672 38.1043C16.8429 38.5458 16.7679 38.8065 16.7397 38.8887C16.6718 39.1494 16.5616 39.4406 16.4092 39.76C16.2568 40.0795 16.0786 40.3801 15.8723 40.6666C15.666 40.9532 15.4385 41.1904 15.19 41.3783C14.9415 41.5662 14.686 41.6601 14.4257 41.6601C13.985 41.6601 13.6638 41.5121 13.4645 41.2186C13.2652 40.925 13.1644 40.3848 13.1644 39.6003V39.2574C13.1644 39.1424 13.1714 39.0202 13.1855 38.8911C13.1995 38.6304 13.3027 38.1395 13.495 37.4185C13.6872 36.6998 13.9193 35.8871 14.1866 34.9782C14.4539 34.0693 14.7446 33.1322 15.054 32.1575C15.3635 31.1852 15.6425 30.3138 15.891 29.5458C15.1596 30.3632 14.3695 31.1758 13.5137 31.9861C12.6603 32.7963 11.7835 33.5221 10.8902 34.1679C9.99461 34.8138 9.09198 35.3423 8.18231 35.7486C7.27264 36.1572 6.39815 36.3616 5.55882 36.3616C4.59522 36.3616 3.76527 36.1478 3.06895 35.7251C2.37264 35.3 1.79823 34.7434 1.3434 34.0576C0.888566 33.3718 0.550957 32.5944 0.330574 31.7277C0.110191 30.8611 0 29.9944 0 29.1278V28.8084C0 28.7097 0.00703265 28.6134 0.0210997 28.5148C0.103157 26.9459 0.32823 25.3347 0.691628 23.6836C1.05737 22.0325 1.53565 20.3885 2.12881 18.7562C2.72197 17.1215 3.40656 15.5245 4.18494 13.9626C4.96331 12.4008 5.80968 10.9259 6.72638 9.53781C7.64308 8.14976 8.61605 6.86976 9.64997 5.70014C10.6839 4.53052 11.7436 3.5253 12.8315 2.68449C13.9193 1.84368 15.0189 1.18606 16.1278 0.711635C17.2368 0.23721 18.3363 0 19.4242 0C20.6785 0 21.8906 0.342899 23.0605 1.0287C24.2304 1.7145 25.3253 2.82776 26.3452 4.36376C26.5796 4.70666 26.7273 5.05426 26.7883 5.40656C26.8492 5.75885 26.8821 6.09001 26.8821 6.40003C26.8821 7.13515 26.7062 7.71527 26.3546 8.14037C26.0029 8.56547 25.5856 8.77685 25.1049 8.77685C24.6642 8.77685 24.2539 8.54433 23.8764 8.07695C23.4966 7.61192 23.0746 6.94491 22.6057 6.07827C22.1649 5.29382 21.6796 4.72545 21.1498 4.37316C20.6199 4.02086 20.0431 3.84706 19.4242 3.84706C18.4606 3.84706 17.429 4.24868 16.3341 5.04957C15.2393 5.85045 14.1538 6.90968 13.08 8.22492C12.0062 9.54016 10.9746 11.0433 9.98992 12.7367C9.00523 14.4277 8.13308 16.161 7.3758 17.9342C6.61853 19.7074 6.01599 21.4571 5.56819 23.181C5.12039 24.9049 4.89766 26.455 4.89766 27.829C4.89766 28.287 4.92814 28.7567 4.99144 29.2382C5.05475 29.7196 5.16963 30.1588 5.34312 30.5511C5.51427 30.9433 5.74872 31.2674 6.04647 31.5187C6.34188 31.7723 6.717 31.8992 7.17183 31.8992C7.68059 31.8992 8.25968 31.7277 8.90676 31.3848C9.55385 31.0419 10.2267 30.5933 10.9207 30.0367C11.617 29.4801 12.3157 28.8506 13.019 28.1484C13.7224 27.4462 14.3765 26.7345 14.9814 26.0158C15.5862 25.2971 16.1255 24.6067 16.592 23.9443C17.0609 23.282 17.4126 22.7066 17.6447 22.2157L19.5672 16.4545C19.8017 15.8345 20.1088 15.393 20.4863 15.1299C20.8661 14.8692 21.2553 14.7377 21.6538 14.7377C21.8461 14.7377 22.0383 14.7706 22.2329 14.8363C22.4252 14.9021 22.5987 15.0031 22.7487 15.144C22.9011 15.2826 23.0207 15.4634 23.1098 15.6842C23.1988 15.905 23.2434 16.1633 23.2434 16.4569C23.2434 17.2413 23.1754 17.9765 23.0371 18.6646C22.8988 19.3528 22.7229 20.0221 22.5096 20.675C22.2962 21.328 22.0594 21.9879 21.7968 22.6479C21.5389 23.3055 21.2834 23.996 21.0372 24.717ZM47.094 29.5223C46.4868 30.3397 45.7811 31.1359 44.9769 31.9133C44.1704 32.6907 43.3405 33.3812 42.4871 33.9848C41.6337 34.5884 40.792 35.0745 39.9667 35.4433C39.1391 35.812 38.3959 35.9952 37.7348 35.9952C37.0736 35.9952 36.5367 35.7744 36.1217 35.3329C35.7091 34.8913 35.5028 34.1398 35.5028 33.0758C35.5028 32.3243 35.613 31.4482 35.8334 30.4524C35.4747 31.0912 35.0269 31.7371 34.49 32.39C33.9531 33.0429 33.3388 33.6395 32.6495 34.1797C31.9603 34.7199 31.1889 35.1567 30.3355 35.4902C29.4821 35.8261 28.5513 35.9928 27.5456 35.9928C27.0907 35.9928 26.6523 35.9365 26.2326 35.8214C25.813 35.7063 25.4449 35.5114 25.1284 35.2342C24.8119 34.9571 24.5563 34.586 24.3641 34.1186C24.1718 33.6536 24.0757 33.0688 24.0757 32.3665C24.0757 32.3501 24.1038 32.1012 24.1577 31.6197C24.2117 31.1382 24.3875 30.3772 24.6853 29.3392C24.9807 28.3011 25.4402 26.9576 26.0591 25.3065C26.6804 23.6555 27.5549 21.6544 28.6826 19.2987C28.971 18.6787 29.3063 18.2325 29.6837 17.9624C30.0636 17.6923 30.4715 17.5584 30.9123 17.5584C31.1045 17.5584 31.3038 17.5866 31.5125 17.6429C31.7188 17.7017 31.911 17.7909 32.0915 17.913C32.2697 18.0352 32.4151 18.1902 32.5253 18.3781C32.6355 18.566 32.6917 18.782 32.6917 19.0286C32.6917 19.193 32.6706 19.3481 32.6284 19.4937C32.5604 19.7732 32.4127 20.1349 32.183 20.5858C31.9556 21.0367 31.6906 21.5511 31.3882 22.1312C31.0858 22.7113 30.7646 23.336 30.427 24.0077C30.0893 24.6771 29.7752 25.3723 29.4868 26.091C29.1984 26.8097 28.9499 27.5424 28.7436 28.2846C28.5373 29.0291 28.4201 29.7525 28.3919 30.4548C28.3919 30.7483 28.4599 31.0184 28.5982 31.265C28.7366 31.5093 28.964 31.6338 29.2805 31.6338C30.1761 31.6338 31.0295 31.3402 31.843 30.7507C32.6566 30.1635 33.4068 29.4307 34.0961 28.5571C34.7854 27.6834 35.409 26.7439 35.967 25.7363C36.525 24.7311 36.9916 23.8128 37.362 22.979C37.6246 22.4224 37.8543 21.8259 38.0536 21.1894C38.2529 20.5529 38.4709 19.9634 38.7054 19.4232C38.9398 18.883 39.2071 18.4344 39.5119 18.0751C39.8143 17.7158 40.1941 17.5349 40.649 17.5349C41.1437 17.5349 41.5375 17.7228 41.8259 18.0986C42.1143 18.4744 42.2597 18.9253 42.2597 19.4467C42.2597 19.7403 42.1682 20.1466 41.9807 20.6609C41.7931 21.1753 41.561 21.7648 41.2773 22.4271C40.996 23.0894 40.6888 23.7964 40.3583 24.5479C40.0277 25.2995 39.7206 26.0652 39.4392 26.8402C39.1555 27.6176 38.9234 28.3762 38.7359 29.1207C38.5506 29.8652 38.4569 30.5557 38.4569 31.1922C38.4569 31.7817 38.7593 32.0753 39.3665 32.0753C39.7932 32.0753 40.3231 31.9273 40.9585 31.6338C41.5938 31.3402 42.2573 30.9268 42.9536 30.396C43.6499 29.8652 44.3439 29.2405 45.0402 28.5195C45.7365 27.8008 46.3532 27.0234 46.89 26.1896L47.094 29.5223Z" fill="#ADB5BD"></path>
<path d="M47.9651 28.4202C47.8158 28.8012 47.6712 29.2441 47.5288 29.7513C47.3865 30.2562 47.3176 30.7086 47.3176 31.1063C47.3176 31.3539 47.3589 31.554 47.4393 31.704C47.5196 31.854 47.6758 31.9278 47.9054 31.9278C48.1878 31.9278 48.5414 31.8254 48.9685 31.6159C49.3932 31.4087 49.8524 31.1349 50.3438 30.7943C50.8375 30.4562 51.3495 30.0657 51.8822 29.6251C52.4149 29.187 52.9452 28.7298 53.471 28.2583C53.9968 27.7844 54.4997 27.3129 54.9796 26.8414C55.4594 26.3676 55.8865 25.9342 56.2654 25.5365C56.3733 25.4198 56.5019 25.3365 56.6488 25.2888C56.7957 25.2388 56.9243 25.215 57.0322 25.215C57.3009 25.215 57.5259 25.3317 57.7004 25.5627C57.8749 25.7937 57.9621 26.1008 57.9621 26.4819C57.9621 26.8295 57.868 27.22 57.6797 27.6511C57.4915 28.0821 57.1608 28.5059 56.6878 28.9179C55.8245 29.8966 54.9543 30.8229 54.0772 31.7016C53.2001 32.5803 52.3276 33.3542 51.4574 34.0257C50.5872 34.6972 49.7239 35.2306 48.8674 35.6307C48.011 36.0284 47.1775 36.226 46.367 36.226C45.8137 36.226 45.3522 36.1355 44.9802 35.9522C44.6082 35.7688 44.312 35.5211 44.0893 35.2068C43.8666 34.8925 43.7082 34.5186 43.614 34.0876C43.5199 33.6566 43.4717 33.2018 43.4717 32.7208C43.4717 31.9088 43.5704 31.0753 43.7656 30.2228C43.9607 29.3703 44.1926 28.5869 44.4636 27.8749C44.9366 26.5819 45.4141 25.2984 45.9009 24.022C46.3854 22.7456 46.8308 21.5764 47.2372 20.5168L53.3677 4.48132C53.6111 3.836 53.9371 3.37879 54.3504 3.11447C54.7614 2.85015 55.177 2.7168 55.5949 2.7168C56.0128 2.7168 56.3939 2.85729 56.7383 3.13828C57.0828 3.41927 57.255 3.87648 57.255 4.50513C57.255 4.80279 57.1976 5.1195 57.0828 5.45049C56.9679 5.78149 56.8233 6.13868 56.6488 6.51968C56.3113 7.29836 55.9095 8.25087 55.4457 9.3772C54.9796 10.5035 54.4813 11.7299 53.9486 13.0563C53.4159 14.3826 52.8695 15.7614 52.3092 17.1949C51.749 18.6284 51.2025 20.0239 50.6698 21.3836C50.1372 22.7433 49.6389 24.0315 49.1728 25.2484C48.7021 26.4676 48.3003 27.5249 47.9651 28.4202Z" fill="#ADB5BD"></path>
<path d="M77.7269 23.6172C77.9239 23.4835 78.1089 23.376 78.2771 23.2924C78.4452 23.2088 78.6086 23.1682 78.7648 23.1682C79.0747 23.1682 79.3077 23.3067 79.4639 23.579C79.62 23.8536 79.6969 24.1903 79.6969 24.5892C79.6969 25.0214 79.6032 25.4608 79.411 25.9098C79.2212 26.3587 78.9353 26.7313 78.5534 27.0322C77.0422 28.3624 75.6944 29.5755 74.51 30.6717C73.3232 31.7678 72.2061 32.7111 71.1538 33.5016C70.1015 34.292 69.0757 34.901 68.0739 35.3332C67.0721 35.7655 65.9982 35.9804 64.8546 35.9804C63.7807 35.9804 62.9519 35.7464 62.3657 35.2831C61.7795 34.8174 61.4864 34.1774 61.4864 33.3631V33.1768C61.4864 33.1195 61.4936 33.0478 61.508 32.9642C61.5632 32.4651 61.7843 31.892 62.1639 31.2448C62.5458 30.5976 63.0047 29.9242 63.5405 29.2245C64.0762 28.5248 64.648 27.8203 65.2558 27.1062C65.8636 26.3922 66.4234 25.714 66.9399 25.0739C67.454 24.4339 67.8817 23.8488 68.2204 23.3163C68.5592 22.7837 68.7297 22.3539 68.7297 22.0196C68.7297 21.819 68.6577 21.6613 68.5183 21.5467C68.3766 21.4297 68.1435 21.3724 67.8192 21.3724C67.2546 21.3724 66.6733 21.518 66.0726 21.8094C65.472 22.1007 64.8786 22.49 64.2948 22.9796C63.7086 23.4691 63.1368 24.0303 62.5795 24.6632C62.0221 25.296 61.5008 25.9504 61.0131 26.6334C60.5254 27.3164 60.0809 27.9994 59.6797 28.6895C59.2785 29.3797 58.935 30.0149 58.6539 30.5976C58.5698 30.7815 58.4497 31.0394 58.2935 31.3714C58.1374 31.7033 57.9692 32.0783 57.7866 32.4938C57.6016 32.9093 57.4094 33.3368 57.2028 33.7762C56.9986 34.218 56.8112 34.6335 56.643 35.0228C56.4725 35.4144 56.3211 35.7607 56.1866 36.0712C56.052 36.3792 55.9559 36.5894 55.9007 36.7064C55.8286 36.8569 55.7133 37.1387 55.5499 37.5542C55.3866 37.9697 55.2016 38.4545 54.9877 39.0133C54.7763 39.5697 54.5529 40.1548 54.3223 40.771C54.0892 41.3871 53.8706 41.9674 53.6664 42.5167C53.4622 43.0659 53.282 43.5459 53.1258 43.9615C52.9697 44.377 52.8712 44.6588 52.8279 44.8093C52.6862 45.2415 52.5204 45.6475 52.3306 46.032C52.1408 46.4141 51.9222 46.7508 51.6748 47.0421C51.4273 47.3335 51.1462 47.5651 50.8267 47.7395C50.5096 47.9138 50.1516 47.9998 49.7576 47.9998C49.2483 47.9998 48.8303 47.878 48.4963 47.6392C48.1648 47.398 47.999 46.9371 47.999 46.2564C47.999 45.9245 48.0423 45.583 48.1264 45.2343C48.2104 44.8857 48.3185 44.5394 48.4435 44.2003C48.5708 43.8588 48.7005 43.5268 48.8351 43.2044C48.9696 42.8797 49.0921 42.5692 49.2051 42.2683C49.9666 40.6062 50.745 38.9393 51.5354 37.27C52.3258 35.5983 53.085 33.9458 53.8105 32.3075C54.5385 30.6717 55.2112 29.0621 55.8334 27.4835C56.4532 25.905 56.9698 24.3909 57.3782 22.9461C57.4911 22.6476 57.6473 22.2225 57.8443 21.6733C58.0413 21.124 58.2671 20.5843 58.5217 20.0518C58.7764 19.5192 59.0623 19.0583 59.3794 18.669C59.6965 18.2774 60.0401 18.084 60.4053 18.084C60.9698 18.084 61.3783 18.2129 61.6329 18.4708C61.8876 18.7287 62.0149 19.1061 62.0149 19.6052C62.0149 19.7055 62.0005 19.8631 61.9717 20.078C61.9428 20.293 61.9068 20.5222 61.8659 20.7634C61.8227 21.0046 61.7771 21.2339 61.729 21.4488C61.6786 21.6637 61.6329 21.8213 61.5921 21.9216C62.1134 21.3557 62.678 20.7968 63.2858 20.238C63.8936 19.6816 64.5207 19.1777 65.1717 18.7287C65.8204 18.2798 66.4835 17.9144 67.1609 17.6302C67.8384 17.3484 68.5159 17.2075 69.1934 17.2075C69.6595 17.2075 70.1208 17.2744 70.5796 17.4081C71.0385 17.5419 71.4469 17.7353 71.8073 17.9932C72.1676 18.2511 72.4607 18.5759 72.6866 18.9652C72.9124 19.3568 73.0253 19.8082 73.0253 20.324C73.0253 21.007 72.8523 21.733 72.5064 22.5067C72.1604 23.2805 71.7256 24.0566 71.2043 24.8375C70.6805 25.6184 70.116 26.3802 69.5105 27.1182C68.9027 27.8585 68.3357 28.5319 67.8048 29.1385C67.2763 29.7451 66.8318 30.2609 66.4714 30.6836C66.1111 31.1087 65.9237 31.3953 65.9093 31.5433C65.9093 31.7439 65.9741 31.9039 66.0991 32.0305C66.224 32.1571 66.4378 32.2168 66.7357 32.2168C66.976 32.2168 67.3291 32.083 67.7952 31.818C68.2613 31.5529 68.9147 31.092 69.7532 30.4352C70.5916 29.7785 71.6583 28.8973 72.9508 27.7916C74.2434 26.6883 75.8362 25.296 77.7269 23.6172Z" fill="#ADB5BD"></path>
</svg>
</li>
<li class="mx-2 mx-lg-4 mb-5 mb-md-0 aos-init aos-animate" data-aos="fade-up" data-aos-delay="400">
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="48" viewBox="0 0 32 48" fill="none" class="injected-svg icon bg-primary-3 icon-lg opacity-20" data-src="assets/img/logos/developer/browsersync.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M18.1653 14.2683V47.3835C18.1653 47.7354 18.517 47.9553 18.8249 47.7793L31.5345 40.8749C31.6664 40.7868 31.7544 40.655 31.7544 40.4791V21.7005C31.7544 21.5246 31.6663 21.3926 31.5345 21.3047L18.8689 13.8724C18.5611 13.6965 18.1653 13.9164 18.1653 14.2681V14.2683ZM16.3621 47.5155V0.459397C16.3621 0.151428 16.0543 -0.0684788 15.7464 0.0195832L0.310286 5.73667C0.13441 5.82448 0.00244141 5.95658 0.00244141 6.17636V41.9743C0.00244141 42.1502 0.13441 42.3262 0.310286 42.4141L15.7464 47.9553C16.0543 48.0433 16.3621 47.8234 16.3621 47.5155Z" fill="#6C757D"></path>
</svg>
</li>
<li class="mx-2 mx-lg-4 mb-5 mb-md-0 aos-init aos-animate" data-aos="fade-up" data-aos-delay="500">
<svg xmlns="http://www.w3.org/2000/svg" width="123" height="48" viewBox="0 0 123 48" fill="none" class="injected-svg icon bg-primary-3 icon-lg opacity-20" data-src="assets/img/logos/developer/npm.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 41.0207V0H122.667V41.0207H61.3333V47.8969H34.1004V41.0207H0ZM6.86719 6.87598H20.3653H34.1001V34.1441H27.2327V13.7523H20.3653V34.1441H6.86719V6.87598ZM40.9676 41.0204V6.87598H68.2005V34.1441H54.7024V41.0204H40.9676ZM54.7024 27.2678H61.3331V13.7523H54.7024V27.2678ZM75.0679 6.87598H88.566H116.036V34.1441H109.168V13.7523H102.301V34.1441H95.4335V13.7523H88.566V34.1441H75.0679V6.87598Z" fill="#ADB5BD"></path>
</svg>
</li>
</ul>
</div>
</div>
</div>
<div class="divider">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="96px" viewBox="0 0 100 100" version="1.1" preserveAspectRatio="none" class="injected-svg bg-primary" data-src="assets/img/dividers/divider-2.svg">
<path d="M0,0 C16.6666667,66 33.3333333,99 50,99 C66.6666667,99 83.3333333,66 100,0 L100,100 L0,100 L0,0 Z"></path>
</svg>
</div>
</section>
<section class="bg-primary">
<div class="container">
<div class="row text-light mb-4">
<div class="col">
<h3 class="h1">My Genetic Algorithm Projects</h3>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="100">
<a href="https://codeload.github.com/Aryia-Behroziuan/Guesspassword/zip/main" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/layout/layout-3d.svg">
<title>Icon For Layout-3d</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M1.5,5 L4.5,5 C5.32842712,5 6,5.67157288 6,6.5 L6,17.5 C6,18.3284271 5.32842712,19 4.5,19 L1.5,19 C0.671572875,19 1.01453063e-16,18.3284271 0,17.5 L0,6.5 C-1.01453063e-16,5.67157288 0.671572875,5 1.5,5 Z M18.5,5 L22.5,5 C23.3284271,5 24,5.67157288 24,6.5 L24,17.5 C24,18.3284271 23.3284271,19 22.5,19 L18.5,19 C17.6715729,19 17,18.3284271 17,17.5 L17,6.5 C17,5.67157288 17.6715729,5 18.5,5 Z" fill="#000000"></path>
<rect fill="#000000" opacity="0.3" x="8" y="5" width="7" height="14" rx="1.5"></rect>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">Guesspassword.</h5>
<span>Guess the password</span>
</div>
</a>
</div>
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="200">
<a href="https://codeload.github.com/Aryia-Behroziuan/optmization/zip/main" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/general/expand-arrows.svg">
<title>Icon For Expand-arrows</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<polygon opacity="0" points="0 0 24 0 24 24 0 24"></polygon>
<path d="M10.5857864,12 L5.46446609,6.87867966 C5.0739418,6.48815536 5.0739418,5.85499039 5.46446609,5.46446609 C5.85499039,5.0739418 6.48815536,5.0739418 6.87867966,5.46446609 L12,10.5857864 L18.1923882,4.39339828 C18.5829124,4.00287399 19.2160774,4.00287399 19.6066017,4.39339828 C19.997126,4.78392257 19.997126,5.41708755 19.6066017,5.80761184 L13.4142136,12 L19.6066017,18.1923882 C19.997126,18.5829124 19.997126,19.2160774 19.6066017,19.6066017 C19.2160774,19.997126 18.5829124,19.997126 18.1923882,19.6066017 L12,13.4142136 L6.87867966,18.5355339 C6.48815536,18.9260582 5.85499039,18.9260582 5.46446609,18.5355339 C5.0739418,18.1450096 5.0739418,17.5118446 5.46446609,17.1213203 L10.5857864,12 Z" fill="#000000" opacity="0.3" transform="translate(12.535534, 12.000000) rotate(-360.000000) translate(-12.535534, -12.000000) "></path>
<path d="M6,18 L9,18 C9.66666667,18.1143819 10,18.4477153 10,19 C10,19.5522847 9.66666667,19.8856181 9,20 L4,20 L4,15 C4,14.3333333 4.33333333,14 5,14 C5.66666667,14 6,14.3333333 6,15 L6,18 Z M18,18 L18,15 C18.1143819,14.3333333 18.4477153,14 19,14 C19.5522847,14 19.8856181,14.3333333 20,15 L20,20 L15,20 C14.3333333,20 14,19.6666667 14,19 C14,18.3333333 14.3333333,18 15,18 L18,18 Z M18,6 L15,6 C14.3333333,5.88561808 14,5.55228475 14,5 C14,4.44771525 14.3333333,4.11438192 15,4 L20,4 L20,9 C20,9.66666667 19.6666667,10 19,10 C18.3333333,10 18,9.66666667 18,9 L18,6 Z M6,6 L6,9 C5.88561808,9.66666667 5.55228475,10 5,10 C4.44771525,10 4.11438192,9.66666667 4,9 L4,4 L9,4 C9.66666667,4 10,4.33333333 10,5 C10,5.66666667 9.66666667,6 9,6 L6,6 Z" fill="#000000" fill-rule="nonzero"></path>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">optimization</h5>
<span>project is optimizing numbers</span>
</div>
</a>
</div>
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="300">
<a href="https://codeload.github.com/Aryia-Behroziuan/sortednumbers/zip/main" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/layout/layout-arrange.svg">
<title>Icon For Layout-arrange</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M5.5,4 L9.5,4 C10.3284271,4 11,4.67157288 11,5.5 L11,6.5 C11,7.32842712 10.3284271,8 9.5,8 L5.5,8 C4.67157288,8 4,7.32842712 4,6.5 L4,5.5 C4,4.67157288 4.67157288,4 5.5,4 Z M14.5,16 L18.5,16 C19.3284271,16 20,16.6715729 20,17.5 L20,18.5 C20,19.3284271 19.3284271,20 18.5,20 L14.5,20 C13.6715729,20 13,19.3284271 13,18.5 L13,17.5 C13,16.6715729 13.6715729,16 14.5,16 Z" fill="#000000"></path>
<path d="M5.5,10 L9.5,10 C10.3284271,10 11,10.6715729 11,11.5 L11,18.5 C11,19.3284271 10.3284271,20 9.5,20 L5.5,20 C4.67157288,20 4,19.3284271 4,18.5 L4,11.5 C4,10.6715729 4.67157288,10 5.5,10 Z M14.5,4 L18.5,4 C19.3284271,4 20,4.67157288 20,5.5 L20,12.5 C20,13.3284271 19.3284271,14 18.5,14 L14.5,14 C13.6715729,14 13,13.3284271 13,12.5 L13,5.5 C13,4.67157288 13.6715729,4 14.5,4 Z" fill="#000000" opacity="0.3"></path>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">sortednumbers</h5>
<span>Sorted Numbers Test</span>
</div>
</a>
</div>
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="400">
<a href="https://codeload.github.com/Aryia-Behroziuan/chess-robot/zip/main" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/media/movie-lane-2.svg">
<title>Icon For Movie-Lane #2</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M6,3 L18,3 C19.1045695,3 20,3.8954305 20,5 L20,19 C20,20.1045695 19.1045695,21 18,21 L6,21 C4.8954305,21 4,20.1045695 4,19 L4,5 C4,3.8954305 4.8954305,3 6,3 Z M5.5,5 C5.22385763,5 5,5.22385763 5,5.5 L5,6.5 C5,6.77614237 5.22385763,7 5.5,7 L6.5,7 C6.77614237,7 7,6.77614237 7,6.5 L7,5.5 C7,5.22385763 6.77614237,5 6.5,5 L5.5,5 Z M17.5,5 C17.2238576,5 17,5.22385763 17,5.5 L17,6.5 C17,6.77614237 17.2238576,7 17.5,7 L18.5,7 C18.7761424,7 19,6.77614237 19,6.5 L19,5.5 C19,5.22385763 18.7761424,5 18.5,5 L17.5,5 Z M5.5,9 C5.22385763,9 5,9.22385763 5,9.5 L5,10.5 C5,10.7761424 5.22385763,11 5.5,11 L6.5,11 C6.77614237,11 7,10.7761424 7,10.5 L7,9.5 C7,9.22385763 6.77614237,9 6.5,9 L5.5,9 Z M17.5,9 C17.2238576,9 17,9.22385763 17,9.5 L17,10.5 C17,10.7761424 17.2238576,11 17.5,11 L18.5,11 C18.7761424,11 19,10.7761424 19,10.5 L19,9.5 C19,9.22385763 18.7761424,9 18.5,9 L17.5,9 Z M5.5,13 C5.22385763,13 5,13.2238576 5,13.5 L5,14.5 C5,14.7761424 5.22385763,15 5.5,15 L6.5,15 C6.77614237,15 7,14.7761424 7,14.5 L7,13.5 C7,13.2238576 6.77614237,13 6.5,13 L5.5,13 Z M17.5,13 C17.2238576,13 17,13.2238576 17,13.5 L17,14.5 C17,14.7761424 17.2238576,15 17.5,15 L18.5,15 C18.7761424,15 19,14.7761424 19,14.5 L19,13.5 C19,13.2238576 18.7761424,13 18.5,13 L17.5,13 Z M17.5,17 C17.2238576,17 17,17.2238576 17,17.5 L17,18.5 C17,18.7761424 17.2238576,19 17.5,19 L18.5,19 C18.7761424,19 19,18.7761424 19,18.5 L19,17.5 C19,17.2238576 18.7761424,17 18.5,17 L17.5,17 Z M5.5,17 C5.22385763,17 5,17.2238576 5,17.5 L5,18.5 C5,18.7761424 5.22385763,19 5.5,19 L6.5,19 C6.77614237,19 7,18.7761424 7,18.5 L7,17.5 C7,17.2238576 6.77614237,17 6.5,17 L5.5,17 Z" fill="#000000" opacity="0.3"></path>
<path d="M11.3521577,14.5722612 L13.9568442,12.7918113 C14.1848159,12.6359797 14.2432972,12.3248456 14.0874656,12.0968739 C14.0526941,12.0460053 14.0088196,12.002002 13.9580532,11.9670814 L11.3533667,10.1754041 C11.1258528,10.0189048 10.8145486,10.0764735 10.6580493,10.3039875 C10.6007019,10.3873574 10.5699997,10.4861652 10.5699997,10.5873545 L10.5699997,14.1594818 C10.5699997,14.4356241 10.7938573,14.6594818 11.0699997,14.6594818 C11.1706891,14.6594818 11.2690327,14.6290818 11.3521577,14.5722612 Z" fill="#000000"></path>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">chess-robot</h5>
<span>robot that can play chess</span>
</div>
</a>
</div>
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="500">
<a href="https://codeload.github.com/Aryia-Behroziuan/Symmetrical-colors/zip/main" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/general/duplicate.svg">
<title>Icon For Duplicate</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M15.9956071,6 L9,6 C7.34314575,6 6,7.34314575 6,9 L6,15.9956071 C4.70185442,15.9316381 4,15.1706419 4,13.8181818 L4,6.18181818 C4,4.76751186 4.76751186,4 6.18181818,4 L13.8181818,4 C15.1706419,4 15.9316381,4.70185442 15.9956071,6 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"></path>
<path d="M10.1818182,8 L17.8181818,8 C19.2324881,8 20,8.76751186 20,10.1818182 L20,17.8181818 C20,19.2324881 19.2324881,20 17.8181818,20 L10.1818182,20 C8.76751186,20 8,19.2324881 8,17.8181818 L8,10.1818182 C8,8.76751186 8.76751186,8 10.1818182,8 Z" fill="#000000"></path>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">Symmetrical-colors</h5>
<span>Source of synonymous colors</span>
</div>
</a>
</div>
<div class="container">
<div class="row text-light mb-4">
<div class="col">
<h3 class="h1">Servic</h3>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="100">
<a href="https://aryia-behroziuan.github.io/dexs/" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/layout/layout-3d.svg">
<title>Icon For Layout-3d</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M1.5,5 L4.5,5 C5.32842712,5 6,5.67157288 6,6.5 L6,17.5 C6,18.3284271 5.32842712,19 4.5,19 L1.5,19 C0.671572875,19 1.01453063e-16,18.3284271 0,17.5 L0,6.5 C-1.01453063e-16,5.67157288 0.671572875,5 1.5,5 Z M18.5,5 L22.5,5 C23.3284271,5 24,5.67157288 24,6.5 L24,17.5 C24,18.3284271 23.3284271,19 22.5,19 L18.5,19 C17.6715729,19 17,18.3284271 17,17.5 L17,6.5 C17,5.67157288 17.6715729,5 18.5,5 Z" fill="#000000"></path>
<rect fill="#000000" opacity="0.3" x="8" y="5" width="7" height="14" rx="1.5"></rect>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">Dexs.</h5>
<span>Framework Config Project</span>
</div>
</a>
</div>
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="200">
<a href="https://aryia-behroziuan.github.io/codedoxs/" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/general/expand-arrows.svg">
<title>Icon For Expand-arrows</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<polygon opacity="0" points="0 0 24 0 24 24 0 24"></polygon>
<path d="M10.5857864,12 L5.46446609,6.87867966 C5.0739418,6.48815536 5.0739418,5.85499039 5.46446609,5.46446609 C5.85499039,5.0739418 6.48815536,5.0739418 6.87867966,5.46446609 L12,10.5857864 L18.1923882,4.39339828 C18.5829124,4.00287399 19.2160774,4.00287399 19.6066017,4.39339828 C19.997126,4.78392257 19.997126,5.41708755 19.6066017,5.80761184 L13.4142136,12 L19.6066017,18.1923882 C19.997126,18.5829124 19.997126,19.2160774 19.6066017,19.6066017 C19.2160774,19.997126 18.5829124,19.997126 18.1923882,19.6066017 L12,13.4142136 L6.87867966,18.5355339 C6.48815536,18.9260582 5.85499039,18.9260582 5.46446609,18.5355339 C5.0739418,18.1450096 5.0739418,17.5118446 5.46446609,17.1213203 L10.5857864,12 Z" fill="#000000" opacity="0.3" transform="translate(12.535534, 12.000000) rotate(-360.000000) translate(-12.535534, -12.000000) "></path>
<path d="M6,18 L9,18 C9.66666667,18.1143819 10,18.4477153 10,19 C10,19.5522847 9.66666667,19.8856181 9,20 L4,20 L4,15 C4,14.3333333 4.33333333,14 5,14 C5.66666667,14 6,14.3333333 6,15 L6,18 Z M18,18 L18,15 C18.1143819,14.3333333 18.4477153,14 19,14 C19.5522847,14 19.8856181,14.3333333 20,15 L20,20 L15,20 C14.3333333,20 14,19.6666667 14,19 C14,18.3333333 14.3333333,18 15,18 L18,18 Z M18,6 L15,6 C14.3333333,5.88561808 14,5.55228475 14,5 C14,4.44771525 14.3333333,4.11438192 15,4 L20,4 L20,9 C20,9.66666667 19.6666667,10 19,10 C18.3333333,10 18,9.66666667 18,9 L18,6 Z M6,6 L6,9 C5.88561808,9.66666667 5.55228475,10 5,10 C4.44771525,10 4.11438192,9.66666667 4,9 L4,4 L9,4 C9.66666667,4 10,4.33333333 10,5 C10,5.66666667 9.66666667,6 9,6 L6,6 Z" fill="#000000" fill-rule="nonzero"></path>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">CodeDoxs</h5>
<span>Framework Config Project</span>
</div>
</a>
</div>
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="300">
<a href="https://aryia-behroziuan.github.io/vairal/" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/layout/layout-arrange.svg">
<title>Icon For Layout-arrange</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M5.5,4 L9.5,4 C10.3284271,4 11,4.67157288 11,5.5 L11,6.5 C11,7.32842712 10.3284271,8 9.5,8 L5.5,8 C4.67157288,8 4,7.32842712 4,6.5 L4,5.5 C4,4.67157288 4.67157288,4 5.5,4 Z M14.5,16 L18.5,16 C19.3284271,16 20,16.6715729 20,17.5 L20,18.5 C20,19.3284271 19.3284271,20 18.5,20 L14.5,20 C13.6715729,20 13,19.3284271 13,18.5 L13,17.5 C13,16.6715729 13.6715729,16 14.5,16 Z" fill="#000000"></path>
<path d="M5.5,10 L9.5,10 C10.3284271,10 11,10.6715729 11,11.5 L11,18.5 C11,19.3284271 10.3284271,20 9.5,20 L5.5,20 C4.67157288,20 4,19.3284271 4,18.5 L4,11.5 C4,10.6715729 4.67157288,10 5.5,10 Z M14.5,4 L18.5,4 C19.3284271,4 20,4.67157288 20,5.5 L20,12.5 C20,13.3284271 19.3284271,14 18.5,14 L14.5,14 C13.6715729,14 13,13.3284271 13,12.5 L13,5.5 C13,4.67157288 13.6715729,4 14.5,4 Z" fill="#000000" opacity="0.3"></path>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">Vairal Simulator</h5>
<span>Vairal Simulation for game</span>
</div>
</a>
</div>
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="400">
<a href="https://aryia-behroziuan.github.io/win/" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/media/movie-lane-2.svg">
<title>Icon For Movie-Lane #2</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M6,3 L18,3 C19.1045695,3 20,3.8954305 20,5 L20,19 C20,20.1045695 19.1045695,21 18,21 L6,21 C4.8954305,21 4,20.1045695 4,19 L4,5 C4,3.8954305 4.8954305,3 6,3 Z M5.5,5 C5.22385763,5 5,5.22385763 5,5.5 L5,6.5 C5,6.77614237 5.22385763,7 5.5,7 L6.5,7 C6.77614237,7 7,6.77614237 7,6.5 L7,5.5 C7,5.22385763 6.77614237,5 6.5,5 L5.5,5 Z M17.5,5 C17.2238576,5 17,5.22385763 17,5.5 L17,6.5 C17,6.77614237 17.2238576,7 17.5,7 L18.5,7 C18.7761424,7 19,6.77614237 19,6.5 L19,5.5 C19,5.22385763 18.7761424,5 18.5,5 L17.5,5 Z M5.5,9 C5.22385763,9 5,9.22385763 5,9.5 L5,10.5 C5,10.7761424 5.22385763,11 5.5,11 L6.5,11 C6.77614237,11 7,10.7761424 7,10.5 L7,9.5 C7,9.22385763 6.77614237,9 6.5,9 L5.5,9 Z M17.5,9 C17.2238576,9 17,9.22385763 17,9.5 L17,10.5 C17,10.7761424 17.2238576,11 17.5,11 L18.5,11 C18.7761424,11 19,10.7761424 19,10.5 L19,9.5 C19,9.22385763 18.7761424,9 18.5,9 L17.5,9 Z M5.5,13 C5.22385763,13 5,13.2238576 5,13.5 L5,14.5 C5,14.7761424 5.22385763,15 5.5,15 L6.5,15 C6.77614237,15 7,14.7761424 7,14.5 L7,13.5 C7,13.2238576 6.77614237,13 6.5,13 L5.5,13 Z M17.5,13 C17.2238576,13 17,13.2238576 17,13.5 L17,14.5 C17,14.7761424 17.2238576,15 17.5,15 L18.5,15 C18.7761424,15 19,14.7761424 19,14.5 L19,13.5 C19,13.2238576 18.7761424,13 18.5,13 L17.5,13 Z M17.5,17 C17.2238576,17 17,17.2238576 17,17.5 L17,18.5 C17,18.7761424 17.2238576,19 17.5,19 L18.5,19 C18.7761424,19 19,18.7761424 19,18.5 L19,17.5 C19,17.2238576 18.7761424,17 18.5,17 L17.5,17 Z M5.5,17 C5.22385763,17 5,17.2238576 5,17.5 L5,18.5 C5,18.7761424 5.22385763,19 5.5,19 L6.5,19 C6.77614237,19 7,18.7761424 7,18.5 L7,17.5 C7,17.2238576 6.77614237,17 6.5,17 L5.5,17 Z" fill="#000000" opacity="0.3"></path>
<path d="M11.3521577,14.5722612 L13.9568442,12.7918113 C14.1848159,12.6359797 14.2432972,12.3248456 14.0874656,12.0968739 C14.0526941,12.0460053 14.0088196,12.002002 13.9580532,11.9670814 L11.3533667,10.1754041 C11.1258528,10.0189048 10.8145486,10.0764735 10.6580493,10.3039875 C10.6007019,10.3873574 10.5699997,10.4861652 10.5699997,10.5873545 L10.5699997,14.1594818 C10.5699997,14.4356241 10.7938573,14.6594818 11.0699997,14.6594818 C11.1706891,14.6594818 11.2690327,14.6290818 11.3521577,14.5722612 Z" fill="#000000"></path>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">Win</h5>
<span>Simulator Windows98</span>
</div>
</a>
</div>
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="500">
<a href="https://aryia-behroziuan.github.io/codeflask/" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/general/duplicate.svg">
<title>Icon For Duplicate</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M15.9956071,6 L9,6 C7.34314575,6 6,7.34314575 6,9 L6,15.9956071 C4.70185442,15.9316381 4,15.1706419 4,13.8181818 L4,6.18181818 C4,4.76751186 4.76751186,4 6.18181818,4 L13.8181818,4 C15.1706419,4 15.9316381,4.70185442 15.9956071,6 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"></path>
<path d="M10.1818182,8 L17.8181818,8 C19.2324881,8 20,8.76751186 20,10.1818182 L20,17.8181818 C20,19.2324881 19.2324881,20 17.8181818,20 L10.1818182,20 C8.76751186,20 8,19.2324881 8,17.8181818 L8,10.1818182 C8,8.76751186 8.76751186,8 10.1818182,8 Z" fill="#000000"></path>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">CodeFlask</h5>
<span>Graphic programming web</span>
</div>
</a>
</div>
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="600">
<a href="https://aryia-behroziuan.github.io/epass-v3/" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/general/thunder-move.svg">
<title>Icon For Thunder-move</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M16.3740377,19.9389434 L22.2226499,11.1660251 C22.4524142,10.8213786 22.3592838,10.3557266 22.0146373,10.1259623 C21.8914367,10.0438285 21.7466809,10 21.5986122,10 L17,10 L17,4.47708173 C17,4.06286817 16.6642136,3.72708173 16.25,3.72708173 C15.9992351,3.72708173 15.7650616,3.85240758 15.6259623,4.06105658 L9.7773501,12.8339749 C9.54758575,13.1786214 9.64071616,13.6442734 9.98536267,13.8740377 C10.1085633,13.9561715 10.2533191,14 10.4013878,14 L15,14 L15,19.5229183 C15,19.9371318 15.3357864,20.2729183 15.75,20.2729183 C16.0007649,20.2729183 16.2349384,20.1475924 16.3740377,19.9389434 Z" fill="#000000"></path>
<path d="M4.5,5 L9.5,5 C10.3284271,5 11,5.67157288 11,6.5 C11,7.32842712 10.3284271,8 9.5,8 L4.5,8 C3.67157288,8 3,7.32842712 3,6.5 C3,5.67157288 3.67157288,5 4.5,5 Z M4.5,17 L9.5,17 C10.3284271,17 11,17.6715729 11,18.5 C11,19.3284271 10.3284271,20 9.5,20 L4.5,20 C3.67157288,20 3,19.3284271 3,18.5 C3,17.6715729 3.67157288,17 4.5,17 Z M2.5,11 L6.5,11 C7.32842712,11 8,11.6715729 8,12.5 C8,13.3284271 7.32842712,14 6.5,14 L2.5,14 C1.67157288,14 1,13.3284271 1,12.5 C1,11.6715729 1.67157288,11 2.5,11 Z" fill="#000000" opacity="0.3"></path>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">epass</h5>
<span>Robot Creator Passwordlist</span>
</div>
</a>
</div>
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="700">
<a href="https://aryia-behroziuan.github.io/codeboxs/" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/text/text-width.svg">
<title>Icon For Text-width</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M13.5,4 L13.5,14 C13.5,14.5522847 13.0522847,15 12.5,15 L11.5,15 C10.9477153,15 10.5,14.5522847 10.5,14 L10.5,4 L7,4 C6.44771525,4 6,3.55228475 6,3 L6,2 C6,1.44771525 6.44771525,1 7,1 L17,1 C17.5522847,1 18,1.44771525 18,2 L18,3 C18,3.55228475 17.5522847,4 17,4 L13.5,4 Z" fill="#000000" opacity="0.3"></path>
<path d="M6.41421356,20 L7.70710678,21.2928932 C8.09763107,21.6834175 8.09763107,22.3165825 7.70710678,22.7071068 C7.31658249,23.0976311 6.68341751,23.0976311 6.29289322,22.7071068 L3.29289322,19.7071068 C2.90236893,19.3165825 2.90236893,18.6834175 3.29289322,18.2928932 L6.29289322,15.2928932 C6.68341751,14.9023689 7.31658249,14.9023689 7.70710678,15.2928932 C8.09763107,15.6834175 8.09763107,16.3165825 7.70710678,16.7071068 L6.41421356,18 L17.5857864,18 L16.2928932,16.7071068 C15.9023689,16.3165825 15.9023689,15.6834175 16.2928932,15.2928932 C16.6834175,14.9023689 17.3165825,14.9023689 17.7071068,15.2928932 L20.7071068,18.2928932 C21.0976311,18.6834175 21.0976311,19.3165825 20.7071068,19.7071068 L17.7071068,22.7071068 C17.3165825,23.0976311 16.6834175,23.0976311 16.2928932,22.7071068 C15.9023689,22.3165825 15.9023689,21.6834175 16.2928932,21.2928932 L17.5857864,20 L6.41421356,20 Z" fill="#000000"></path>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">CodeBoxs</h5>
<span>Text Editor Code</span>
</div>
</a>
</div>
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="800">
<a href="https://aryia-behroziuan.github.io/ga/" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/theme/code/time-schedule.svg">
<title>Icon For Time-schedule</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M10.9630156,7.5 L11.0475062,7.5 C11.3043819,7.5 11.5194647,7.69464724 11.5450248,7.95024814 L12,12.5 L15.2480695,14.3560397 C15.403857,14.4450611 15.5,14.6107328 15.5,14.7901613 L15.5,15 C15.5,15.2109164 15.3290185,15.3818979 15.1181021,15.3818979 C15.0841582,15.3818979 15.0503659,15.3773725 15.0176181,15.3684413 L10.3986612,14.1087258 C10.1672824,14.0456225 10.0132986,13.8271186 10.0316926,13.5879956 L10.4644883,7.96165175 C10.4845267,7.70115317 10.7017474,7.5 10.9630156,7.5 Z" fill="#000000"></path>
<path d="M7.38979581,2.8349582 C8.65216735,2.29743306 10.0413491,2 11.5,2 C17.2989899,2 22,6.70101013 22,12.5 C22,18.2989899 17.2989899,23 11.5,23 C5.70101013,23 1,18.2989899 1,12.5 C1,11.5151324 1.13559454,10.5619345 1.38913364,9.65805651 L3.31481075,10.1982117 C3.10672013,10.940064 3,11.7119264 3,12.5 C3,17.1944204 6.80557963,21 11.5,21 C16.1944204,21 20,17.1944204 20,12.5 C20,7.80557963 16.1944204,4 11.5,4 C10.54876,4 9.62236069,4.15592757 8.74872191,4.45446326 L9.93948308,5.87355717 C10.0088058,5.95617272 10.0495583,6.05898805 10.05566,6.16666224 C10.0712834,6.4423623 9.86044965,6.67852665 9.5847496,6.69415008 L4.71777931,6.96995273 C4.66931162,6.97269931 4.62070229,6.96837279 4.57348157,6.95710938 C4.30487471,6.89303938 4.13906482,6.62335149 4.20313482,6.35474463 L5.33163823,1.62361064 C5.35654118,1.51920756 5.41437908,1.4255891 5.49660017,1.35659741 C5.7081375,1.17909652 6.0235153,1.2066885 6.2010162,1.41822583 L7.38979581,2.8349582 Z" fill="#000000" opacity="0.3"></path>
</g>
</svg>
<div class="ml-3">
<h5 class="mb-0">Genetic engine</h5>
<span>source and you can participate</span>
</div>
</a>
</div>
<div class="col-sm-6 col-lg-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="900">
<a href="elements-twitter.html" class="card card-sm card-body flex-row align-items-center fade-page hover-shadow-3d">
<svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 24 24" class="injected-svg icon icon-lg
bg-primary-2" data-src="assets/img/icons/social/twitter.svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Twitter icon</title><path d="M23.954 4.569c-.885.389-1.83.654-2.825.775 1.014-.611 1.794-1.574 2.163-2.723-.951.555-2.005.959-3.127 1.184-.896-.959-2.173-1.559-3.591-1.559-2.717 0-4.92 2.203-4.92 4.917 0 .39.045.765.127 1.124C7.691 8.094 4.066 6.13 1.64 3.161c-.427.722-.666 1.561-.666 2.475 0 1.71.87 3.213 2.188 4.096-.807-.026-1.566-.248-2.228-.616v.061c0 2.385 1.693 4.374 3.946 4.827-.413.111-.849.171-1.296.171-.314 0-.615-.03-.916-.086.631 1.953 2.445 3.377 4.604 3.417-1.68 1.319-3.809 2.105-6.102 2.105-.39 0-.779-.023-1.17-.067 2.189 1.394 4.768 2.209 7.557 2.209 9.054 0 13.999-7.496 13.999-13.986 0-.209 0-.42-.015-.63.961-.689 1.8-1.56 2.46-2.548l-.047-.02z"></path></svg>
<div class="ml-3">
<h5 class="mb-0">CSS Framework</h5>
<span>css framwork for css</span>
</div>
</a>
</div>
</div>
</div>
</section>
<section class="pt-0 bg-primary text-light">
<div class="container">
<div class="row text-light mb-4">
<div class="col">
<h3 class="h1">Notable Features</h3>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-lg-4 d-flex mb-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="100">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-md" data-src="assets/img/icons/theme/devices/iphone-x.svg">
<title>Icon For iPhone-X</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M8,2.5 C7.30964406,2.5 6.75,3.05964406 6.75,3.75 L6.75,20.25 C6.75,20.9403559 7.30964406,21.5 8,21.5 L16,21.5 C16.6903559,21.5 17.25,20.9403559 17.25,20.25 L17.25,3.75 C17.25,3.05964406 16.6903559,2.5 16,2.5 L8,2.5 Z" fill="#000000" opacity="0.3"></path>
<path d="M8,2.5 C7.30964406,2.5 6.75,3.05964406 6.75,3.75 L6.75,20.25 C6.75,20.9403559 7.30964406,21.5 8,21.5 L16,21.5 C16.6903559,21.5 17.25,20.9403559 17.25,20.25 L17.25,3.75 C17.25,3.05964406 16.6903559,2.5 16,2.5 L8,2.5 Z M8,1 L16,1 C17.5187831,1 18.75,2.23121694 18.75,3.75 L18.75,20.25 C18.75,21.7687831 17.5187831,23 16,23 L8,23 C6.48121694,23 5.25,21.7687831 5.25,20.25 L5.25,3.75 C5.25,2.23121694 6.48121694,1 8,1 Z M9.5,1.75 L14.5,1.75 C14.7761424,1.75 15,1.97385763 15,2.25 L15,3.25 C15,3.52614237 14.7761424,3.75 14.5,3.75 L9.5,3.75 C9.22385763,3.75 9,3.52614237 9,3.25 L9,2.25 C9,1.97385763 9.22385763,1.75 9.5,1.75 Z" fill="#000000" fill-rule="nonzero"></path>
</g>
</svg>
<div class="ml-3">
<h5>Fully Responsive Design</h5>
<div>
Based on the mobile-first Bootstrap framework, Leap scales to fit each device responsively.
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 d-flex mb-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="200">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-md" data-src="assets/img/icons/theme/general/fire.svg">
<title>Icon For Fire</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M14,7 C13.6666667,10.3333333 12.6666667,12.1167764 11,12.3503292 C11,12.3503292 12.5,6.5 10.5,3.5 C10.5,3.5 10.287918,6.71444735 8.14498739,10.5717225 C7.14049032,12.3798172 6,13.5986793 6,16 C6,19.428689 9.51143904,21.2006583 12.0057195,21.2006583 C14.5,21.2006583 18,20.0006172 18,15.8004732 C18,14.0733981 16.6666667,11.1399071 14,7 Z" fill="#000000"></path>
</g>
</svg>
<div class="ml-3">
<h5>600+ Premium Icons</h5>
<div>
Choose from a well organised library of lightweight SVG icons that seamlessly adapt to your sites color scheme.
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 d-flex mb-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="300">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-md" data-src="assets/img/icons/theme/communication/readed-mail.svg">
<title>Icon For Readed-mail</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M4.875,20.75 C4.63541667,20.75 4.39583333,20.6541667 4.20416667,20.4625 L2.2875,18.5458333 C1.90416667,18.1625 1.90416667,17.5875 2.2875,17.2041667 C2.67083333,16.8208333 3.29375,16.8208333 3.62916667,17.2041667 L4.875,18.45 L8.0375,15.2875 C8.42083333,14.9041667 8.99583333,14.9041667 9.37916667,15.2875 C9.7625,15.6708333 9.7625,16.2458333 9.37916667,16.6291667 L5.54583333,20.4625 C5.35416667,20.6541667 5.11458333,20.75 4.875,20.75 Z" fill="#000000" fill-rule="nonzero" opacity="0.3"></path>
<path d="M12.9835977,18 C12.7263047,14.0909841 9.47412135,11 5.5,11 C4.98630124,11 4.48466491,11.0516454 4,11.1500272 L4,7 C4,5.8954305 4.8954305,5 6,5 L20,5 C21.1045695,5 22,5.8954305 22,7 L22,16 C22,17.1045695 21.1045695,18 20,18 L12.9835977,18 Z M19.1444251,6.83964668 L13,10.1481833 L6.85557487,6.83964668 C6.4908718,6.6432681 6.03602525,6.77972206 5.83964668,7.14442513 C5.6432681,7.5091282 5.77972206,7.96397475 6.14442513,8.16035332 L12.6444251,11.6603533 C12.8664074,11.7798822 13.1335926,11.7798822 13.3555749,11.6603533 L19.8555749,8.16035332 C20.2202779,7.96397475 20.3567319,7.5091282 20.1603533,7.14442513 C19.9639747,6.77972206 19.5091282,6.6432681 19.1444251,6.83964668 Z" fill="#000000"></path>
</g>
</svg>
<div class="ml-3">
<h5>Working Mail Forms</h5>
<div>
Contact and subscribe forms work out of the box. Validation, AJAX, reCAPTCHA v2 and Email Handling are all taken care of.
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 d-flex mb-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="400">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-md" data-src="assets/img/icons/theme/files/pictures-1.svg">
<title>Icon For Pictures#1</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M3.5,21 L20.5,21 C21.3284271,21 22,20.3284271 22,19.5 L22,8.5 C22,7.67157288 21.3284271,7 20.5,7 L10,7 L7.43933983,4.43933983 C7.15803526,4.15803526 6.77650439,4 6.37867966,4 L3.5,4 C2.67157288,4 2,4.67157288 2,5.5 L2,19.5 C2,20.3284271 2.67157288,21 3.5,21 Z" fill="#000000" opacity="0.3"></path>
<polygon fill="#000000" opacity="0.3" points="4 19 10 11 16 19"></polygon>
<polygon fill="#000000" points="11 19 15 14 19 19"></polygon>
<path d="M18,12 C18.8284271,12 19.5,11.3284271 19.5,10.5 C19.5,9.67157288 18.8284271,9 18,9 C17.1715729,9 16.5,9.67157288 16.5,10.5 C16.5,11.3284271 17.1715729,12 18,12 Z" fill="#000000" opacity="0.3"></path>
</g>
</svg>
<div class="ml-3">
<h5>All Images Included</h5>
<div>
Photography and Illustration SVGs are included in the download package and are free to use.
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 d-flex mb-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="500">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-md" data-src="assets/img/icons/theme/map/marker-1.svg">
<title>Icon For Marker#1</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M5,10.5 C5,6 8,3 12.5,3 C17,3 20,6.75 20,10.5 C20,12.8325623 17.8236613,16.03566 13.470984,20.1092932 C12.9154018,20.6292577 12.0585054,20.6508331 11.4774555,20.1594925 C7.15915182,16.5078313 5,13.2880005 5,10.5 Z M12.5,12 C13.8807119,12 15,10.8807119 15,9.5 C15,8.11928813 13.8807119,7 12.5,7 C11.1192881,7 10,8.11928813 10,9.5 C10,10.8807119 11.1192881,12 12.5,12 Z" fill="#000000" fill-rule="nonzero"></path>
</g>
</svg>
<div class="ml-3">
<h5>Google Maps API</h5>
<div>
Set custom style, multiple markers and rich tooltip content easily through simple HTML and data attributes.
</div>
</div>
</div>
<div class="col-sm-6 col-lg-4 d-flex mb-4 aos-init aos-animate" data-aos="fade-up" data-aos-delay="600">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon icon-md" data-src="assets/img/icons/theme/communication/group-chat.svg">
<title>Icon For Group-chat</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M16,15.6315789 L16,12 C16,10.3431458 14.6568542,9 13,9 L6.16183229,9 L6.16183229,5.52631579 C6.16183229,4.13107011 7.29290239,3 8.68814808,3 L20.4776218,3 C21.8728674,3 23.0039375,4.13107011 23.0039375,5.52631579 L23.0039375,13.1052632 L23.0206157,17.786793 C23.0215995,18.0629336 22.7985408,18.2875874 22.5224001,18.2885711 C22.3891754,18.2890457 22.2612702,18.2363324 22.1670655,18.1421277 L19.6565168,15.6315789 L16,15.6315789 Z" fill="#000000"></path>
<path d="M1.98505595,18 L1.98505595,13 C1.98505595,11.8954305 2.88048645,11 3.98505595,11 L11.9850559,11 C13.0896254,11 13.9850559,11.8954305 13.9850559,13 L13.9850559,18 C13.9850559,19.1045695 13.0896254,20 11.9850559,20 L4.10078614,20 L2.85693427,21.1905292 C2.65744295,21.3814685 2.34093638,21.3745358 2.14999706,21.1750444 C2.06092565,21.0819836 2.01120804,20.958136 2.01120804,20.8293182 L2.01120804,18.32426 C1.99400175,18.2187196 1.98505595,18.1104045 1.98505595,18 Z M6.5,14 C6.22385763,14 6,14.2238576 6,14.5 C6,14.7761424 6.22385763,15 6.5,15 L11.5,15 C11.7761424,15 12,14.7761424 12,14.5 C12,14.2238576 11.7761424,14 11.5,14 L6.5,14 Z M9.5,16 C9.22385763,16 9,16.2238576 9,16.5 C9,16.7761424 9.22385763,17 9.5,17 L11.5,17 C11.7761424,17 12,16.7761424 12,16.5 C12,16.2238576 11.7761424,16 11.5,16 L9.5,16 Z" fill="#000000" opacity="0.3"></path>
</g>
</svg>
<div class="ml-3">
<h5>6 Months Support</h5>
<div>
Buy with confidence. Our team offers timely and personal support via a dedicated support channel.
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="pb-4 bg-primary-3 text-light" id="footer">
<div class="container">
<div class="row mb-5">
<div class="col">
<div class="card card-body border-0 o-hidden mb-0 bg-primary text-light">
<div class="position-relative d-flex flex-column flex-md-row justify-content-between align-items-center">
<div class="h3 text-center mb-md-0">Start building beautiful websites</div>
<a href="https://themes.getbootstrap.com/product/leap-multipurpose-bootstrap-theme/" class="btn btn-lg btn-white">
Purchase Now
</a>
</div>
<div class="decoration layer-0">
<svg xmlns="http://www.w3.org/2000/svg" width="338" height="277" viewBox="0 0 338 277" fill="none" class="injected-svg bg-primary-2" data-src="assets/img/decorations/deco-blob-1.svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<path d="M136.018 0.775024C143.338 0.998024 150.311 2.86002 157.217 4.90402C161.951 6.30502 166.533 8.21602 171.238 9.72702C177.683 11.799 184.205 13.642 190.654 15.704C198.047 18.067 205.496 20.302 212.734 23.077C219.181 25.549 225.818 26.16 232.576 26.624C242.613 27.313 252.408 29.541 262.14 31.958C267.613 33.318 273.015 35.013 278.376 36.777C286.159 39.338 292.769 43.771 298.435 49.705C300.869 52.253 303.482 54.662 306.224 56.875C310.91 60.658 314.185 65.568 317.597 70.391C317.999 70.957 318.31 71.699 318.861 72.031C323.925 75.085 326.72 80.024 329.47 84.928C331.605 88.738 333.45 92.72 335.236 96.711C335.974 98.361 336.533 100.215 336.629 102.006C336.979 108.465 337.936 114.881 337.352 121.411C336.889 126.604 336.916 131.868 337.11 137.086C337.676 152.284 335.641 167.235 333.401 182.2C331.815 192.802 330.878 203.502 329.278 214.101C328.417 219.807 327.28 225.578 325.321 230.976C323.759 235.279 321.196 239.409 318.317 243.006C311.585 251.42 303.104 257.68 292.893 261.414C288.381 263.064 283.952 265.016 279.332 266.275C273.076 267.98 266.711 269.338 260.33 270.509C250.605 272.292 240.844 273.878 231.07 275.381C220.672 276.98 210.306 277.306 199.939 274.719C194.33 273.32 188.527 272.723 182.869 271.504C166.828 268.049 151.043 263.651 135.754 257.669C130.918 255.776 126.25 253.478 122.199 249.956C118.49 246.731 113.928 244.469 110.316 241.155C103.357 234.766 96.6579 228.074 90.1249 221.245C84.3729 215.231 79.0449 208.814 73.4259 202.671C71.6229 200.7 69.3989 199.121 67.5219 197.212C61.8789 191.478 56.3579 185.624 50.6959 179.909C48.0139 177.202 45.0629 174.763 42.3439 172.091C39.7309 169.523 37.2799 166.791 34.7229 164.164C30.1899 159.507 25.8419 154.642 21.0319 150.288C14.4459 144.325 9.29194 137.288 4.85794 129.733C1.90494 124.702 0.404932 119.126 0.994932 113.109C1.35393 109.453 1.56894 105.873 3.02594 102.364C4.82294 98.043 7.59594 94.544 11.0199 91.581C16.4609 86.871 22.0179 82.28 27.7129 77.881C34.4159 72.703 41.2719 67.718 48.1519 62.774C53.0819 59.232 58.3649 56.157 63.1269 52.411C72.1059 45.348 81.2339 38.467 89.4079 30.405C96.0349 23.868 102.898 17.54 110.002 11.527C115.279 7.06004 121.135 3.23104 128.049 1.65704C130.639 1.07104 133.357 1.05302 136.018 0.775024ZM19.8459 102.8C15.5139 101.001 13.7579 101.522 12.1429 105.364C13.5239 105.867 14.8829 106.363 16.5709 106.978C16.7739 105.683 16.8949 104.912 16.9929 104.287C17.9989 103.763 18.9229 103.281 19.8479 102.799C21.2859 101.622 23.0749 100.717 23.4099 98.469C20.4119 98.883 20.4119 98.883 19.8459 102.8ZM118.352 15.815C117.153 17.925 116.342 19.402 117.231 21.328C119.746 19.487 119.773 19.382 118.352 15.815ZM36.2909 86.69C35.4119 88.799 34.8089 90.248 34.0939 91.961C37.8889 90.785 37.8889 90.785 36.2909 86.69ZM129.395 162.873C128.641 162.383 128.006 161.799 127.858 161.903C127.292 162.306 126.881 162.927 126.413 163.468C126.843 163.712 127.337 164.224 127.684 164.138C128.211 164.009 128.639 163.465 129.395 162.873ZM137.797 163.645C137.248 164.305 136.658 164.709 136.697 165.036C136.763 165.591 137.228 166.097 137.525 166.623C137.986 166.255 138.761 165.928 138.818 165.505C138.881 165.033 138.287 164.477 137.797 163.645ZM137.221 207.492C137.242 207.855 137.264 208.219 137.285 208.582C138.129 208.456 138.973 208.33 139.816 208.205C139.787 207.967 139.757 207.73 139.73 207.492C138.895 207.492 138.057 207.492 137.221 207.492ZM110.674 30.56C110.768 30.297 110.862 30.035 110.957 29.772C110.123 29.451 109.291 29.13 108.457 28.809C108.357 29.097 108.256 29.386 108.154 29.674C108.994 29.969 109.834 30.265 110.674 30.56ZM116.773 160.416C116.58 160.891 116.285 161.258 116.357 161.528C116.435 161.827 116.851 162.037 117.121 162.285C117.336 161.902 117.652 161.535 117.713 161.129C117.736 160.968 117.193 160.722 116.773 160.416ZM124.658 162.574C123.793 162.347 123.324 162.142 122.863 162.152C122.707 162.156 122.562 162.708 122.414 163.009C122.768 163.15 123.127 163.408 123.473 163.392C123.754 163.381 124.02 163.036 124.658 162.574ZM133.973 165.672C133.819 165.484 133.664 165.297 133.51 165.11C133.348 165.387 133.151 165.654 133.059 165.954C133.039 166.011 133.434 166.196 133.637 166.322C133.748 166.105 133.861 165.89 133.973 165.672ZM115.15 24.039C114.955 23.876 114.759 23.714 114.566 23.552C114.468 23.778 114.254 24.034 114.302 24.223C114.353 24.418 114.656 24.549 114.849 24.708C114.949 24.486 115.051 24.263 115.15 24.039Z" fill="black"></path>
</svg>
</div>
</div>
</div>
</div>
<div class="row mb-5">
<div class="col-6 col-lg-3 col-xl-2">
<h5>Navigate</h5>
<ul class="nav flex-column">
<li class="nav-item">
<a href="#" class="nav-link">Demos</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Pages</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Blog</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Portfolio</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Elements</a>
</li>
</ul>
</div>
<div class="col-6 col-lg">
<h5>Contact</h5>
<ul class="list-unstyled">
<li class="mb-3 d-flex">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" class="injected-svg icon" data-src="assets/img/icons/theme/map/marker-1.svg">
<title>Icon For Marker#1</title>
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<rect opacity="0" x="0" y="0" width="24" height="24"></rect>
<path d="M5,10.5 C5,6 8,3 12.5,3 C17,3 20,6.75 20,10.5 C20,12.8325623 17.8236613,16.03566 13.470984,20.1092932 C12.9154018,20.6292577 12.0585054,20.6508331 11.4774555,20.1594925 C7.15915182,16.5078313 5,13.2880005 5,10.5 Z M12.5,12 C13.8807119,12 15,10.8807119 15,9.5 C15,8.11928813 13.8807119,7 12.5,7 C11.1192881,7 10,8.11928813 10,9.5 C10,10.8807119 11.1192881,12 12.5,12 Z" fill="#000000" fill-rule="nonzero"></path>
</g>
</svg>
<div class="ml-3">
<span>348 Greenpoint Avenue
<br>Brooklyn, NY</span>
</div>