-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1001 lines (1000 loc) · 88.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="referrer" content="always">
<meta name="generator" content="Coreicon Front v01.1">
<meta name="copyright" content="Coreicon">
<meta name="author" content="Oleh PF | Creator, Product Designer, Soft Developer from Ukraine">
<title>Coreicon | Modern SVG icons for web, iOS, Android, and desktop apps</title>
<meta name="title" content="Coreicon | Modern SVG icons for web, iOS, Android, and desktop apps">
<meta name="description" content="We're Coreicon from Ukraine! We make a modern SVG icons for web, iOS, Android, and desktop apps. Each icon is designed on a 24px grid with the material guidelines. Glory to Ukraine!">
<meta name="keywords" content="ui icons, icons library, outline icons, modern icons, free icons,open source icons, royalty free icons,google icons, icon, line icon, sharp icon, material icons, premium icons, pixel perfect icons, open source icons, free icon set, figma icons">
<link rel="stylesheet" href="/../css/main.css">
<!-- FavIcon -->
<link rel="icon" href="/../img/svg/favicon.svg" type="image/svg+xml">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:description" content="We're Coreicon from Ukraine! We make a modern SVG icons for web, iOS, Android, and desktop apps. Each icon is designed on a 24px grid with the material guidelines. Glory to Ukraine!"/>
<meta property="og:url" content="https://coreicon.dev/">
<meta property="og:image" content="http://coreicon.dev/img/bg/cover-og.png"/>
<meta property="og:site_name" content="Coreicon"/>
<meta property="og:title" content="Coreicon | Modern SVG icons for web, iOS, Android, and desktop apps"/>
<!--Twitter-->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://coreicon.dev/">
<meta property="twitter:title" content="Coreicon | Modern SVG icons for web, iOS, Android, and desktop apps">
<meta property="twitter:description" content="We're Coreicon from Ukraine! We make a modern SVG icons for web, iOS, Android, and desktop apps. Each icon is designed on a 24px grid with the material guidelines. Glory to Ukraine!">
<meta name="twitter:image" content="http://coreicon.dev/img/bg/cover-og.png">
<meta name="twitter:site" content="@coreicon">
<meta name="twitter:creator" content="@olehpf">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YMGZSDKSHZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YMGZSDKSHZ');
</script>
<!-- End Google Analytics -->
<!-- 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-P6LMWQD');</script>
<!-- End Google Tag Manager -->
<!-- hotjar -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:3297491,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
<script src="/../js/dropdown.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.9.6/lottie.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');
</style>
<style>
@font-face {
font-family: "e-Ukraine";
src: url("/../fonts/e-Ukraine-Light.woff2") format("woff2"),
url("/../fonts/e-Ukraine-Regular.woff2") format("woff2"),
url("/../fonts/e-Ukraine-Medium.woff2") format("woff2");
}
</style>
</head>
<body>
<main id="wrapper">
<section class="header">
<div class="c-header_box pt-12 pb-12">
<header class="c-head sm:gap-12">
<div class="c-logo">
<a href="">
<image id="core-logo-md" width="156" height="36" viewBox="0 0 156 36" src="/../img/logo/n__core-logo-md.svg" xlink:href="" alt="Coreicon logo" loading="lazy"/>
</a>
</div>
<nav class="c-menu-bar" role="navigation">
<ul class="navBar gap-8">
<li class="m-item p-6_12 br-24">
<div class="dropdown">
<a onclick="myFunction()" class="dropbtn" role="button">
UI icons
</a>
<div id="myDropdown" class="dropdown-content br-12">
<a class="nav-item br-8" href="https://coreicon.dev/products/core-pro/" target="_parent">
<p class="nav-item-link">
Core Pro
</p>
<span class="beforeIcon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 8H14" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.66667 2.66663L13.82 7.59996C13.8768 7.65001 13.9222 7.71156 13.9533 7.78053C13.9845 7.84949 14.0006 7.92429 14.0006 7.99996C14.0006 8.07563 13.9845 8.15043 13.9533 8.21939C13.9222 8.28836 13.8768 8.34991 13.82 8.39996L8.66667 13.3333" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</a>
<a class="nav-item br-8" href="https://coreicon.dev/products/core-editor/" target="_parent">
<p class="nav-item-link">
Core Editor
</p>
<span class="beforeIcon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 8H14" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.66667 2.66663L13.82 7.59996C13.8768 7.65001 13.9222 7.71156 13.9533 7.78053C13.9845 7.84949 14.0006 7.92429 14.0006 7.99996C14.0006 8.07563 13.9845 8.15043 13.9533 8.21939C13.9222 8.28836 13.8768 8.34991 13.82 8.39996L8.66667 13.3333" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</a>
<a class="nav-item br-8" href="https://coreicon.dev/products/core-linear/" target="_parent">
<p class="nav-item-link">
Core Linear
</p>
<span class="beforeIcon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 8H14" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.66667 2.66663L13.82 7.59996C13.8768 7.65001 13.9222 7.71156 13.9533 7.78053C13.9845 7.84949 14.0006 7.92429 14.0006 7.99996C14.0006 8.07563 13.9845 8.15043 13.9533 8.21939C13.9222 8.28836 13.8768 8.34991 13.82 8.39996L8.66667 13.3333" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</a>
<a class="nav-item br-8" href="https://coreicon.dev/products/cib-stack/" target="_parent">
<p class="nav-item-link">
Core Banking
</p>
<span class="beforeIcon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 8H14" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.66667 2.66663L13.82 7.59996C13.8768 7.65001 13.9222 7.71156 13.9533 7.78053C13.9845 7.84949 14.0006 7.92429 14.0006 7.99996C14.0006 8.07563 13.9845 8.15043 13.9533 8.21939C13.9222 8.28836 13.8768 8.34991 13.82 8.39996L8.66667 13.3333" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</a>
<a class="nav-item br-8" href="https://coreicon.dev/products/cie-stack/" target="_parent">
<p class="nav-item-link">
Core E-store
</p>
<span class="beforeIcon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 8H14" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.66667 2.66663L13.82 7.59996C13.8768 7.65001 13.9222 7.71156 13.9533 7.78053C13.9845 7.84949 14.0006 7.92429 14.0006 7.99996C14.0006 8.07563 13.9845 8.15043 13.9533 8.21939C13.9222 8.28836 13.8768 8.34991 13.82 8.39996L8.66667 13.3333" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</a>
<a class="nav-item br-8" href="https://coreicon.dev/products/cieb-stack/" target="_parent">
<p class="nav-item-link">
Core Energy
</p>
<span class="beforeIcon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 8H14" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.66667 2.66663L13.82 7.59996C13.8768 7.65001 13.9222 7.71156 13.9533 7.78053C13.9845 7.84949 14.0006 7.92429 14.0006 7.99996C14.0006 8.07563 13.9845 8.15043 13.9533 8.21939C13.9222 8.28836 13.8768 8.34991 13.82 8.39996L8.66667 13.3333" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</a>
<a class="nav-item br-8" href="https://coreicon.dev/products/cip-stack/" target="_parent">
<p class="nav-item-link">
Core Protect
</p>
<span class="beforeIcon">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2 8H14" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8.66667 2.66663L13.82 7.59996C13.8768 7.65001 13.9222 7.71156 13.9533 7.78053C13.9845 7.84949 14.0006 7.92429 14.0006 7.99996C14.0006 8.07563 13.9845 8.15043 13.9533 8.21939C13.9222 8.28836 13.8768 8.34991 13.82 8.39996L8.66667 13.3333" stroke="#353E50" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
</a>
</div>
</div>
</li>
<li class="m-item p-6_12 br-24">
<a class="btn-ghost" href="https://coreicon.dev/about/" target="_parent">
About
</a>
</li>
<li class="m-item p-6_12 br-24">
<a class="btn-ghost" href="https://coreicon.dev/updates" target="_parent">
What's new
</a>
</li>
</ul>
</nav>
</header>
</div>
</section>
<section class="main mt-64 sm:mt-40">
<article class="hero-title mt-16">
<div id="shape-moves">
</div>
<div class="m-title mt-8">
<h1>Modern SVG icons</h1>
<h2 class="mt-16 max-w-880">Coreicon includes over 910 UI icons for the Web, iOS, Android, and desktop apps</h2>
</div>
</article>
<div class="i-pack i-pack-free mt-128">
<h3>
Core Free
</h3>
<p class="subtitle mt-4">
Based on the 24px pixel grid for a design system, navigation, buttons, etc.
</p>
<ul class="card-box mt-48">
<li class="card-m">
<a class="i-card-m p8 br-12" href="/../img/svg/check double.svg" download="check double.svg">
<div class="hd-card">
<span class="card-badge p2-p6 br-6">
free
</span>
</div>
<div class="bd-card mt-24">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 12.4444L11.2604 17L21 7" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3 12.4444L7.26035 17L9.20828 15M17 7L12.5 11.6203L12 12.1337" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="ft-card mt-24 mb-8">
<p class="i-name">double check</p>
</div>
</a>
</li>
<li class="card-m">
<a class="i-card-m p8 br-12" href="/../img/svg/hr align l.svg" download="hr align l.svg">
<div class="hd-card">
<span class="card-badge p2-p6 br-6">
free
</span>
</div>
<div class="bd-card mt-24">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 3V21" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 5H8C7.44772 5 7 5.44772 7 6V8C7 8.55228 7.44772 9 8 9H16C16.5523 9 17 8.55228 17 8V6C17 5.44772 16.5523 5 16 5Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M20 15H8C7.44772 15 7 15.4477 7 16V18C7 18.5523 7.44772 19 8 19H20C20.5523 19 21 18.5523 21 18V16C21 15.4477 20.5523 15 20 15Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="ft-card mt-24 mb-8">
<p class="i-name">hr align l</p>
</div>
</a>
</li>
<li class="card-m">
<a class="i-card-m p8 br-12" href="/../img/svg/eye.svg" download="eye.svg">
<div class="hd-card">
<span class="card-badge p2-p6 br-6">
free
</span>
</div>
<div class="bd-card mt-24">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21 12C21 14 17.5 19 12 19C6.5 19 3 14 3 12C3 10 6.5 5 12 5C17.5 5 21 10 21 12Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="12" cy="12" r="3" stroke="#353E50" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="ft-card mt-24 mb-8">
<p class="i-name">eye on</p>
</div>
</a>
</li>
<li class="card-m">
<a class="i-card-m p8 br-12" href="/../img/svg/figma.svg" download="figma.svg">
<div class="hd-card">
<span class="card-badge p2-p6 br-6">
free
</span>
</div>
<div class="bd-card mt-24">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15 15C16.6569 15 18 13.6569 18 12C18 10.3431 16.6569 9 15 9C13.3431 9 12 10.3431 12 12C12 13.6569 13.3431 15 15 15Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 9H12V15H9C8.20435 15 7.44129 14.6839 6.87868 14.1213C6.31607 13.5587 6 12.7956 6 12C6 11.2044 6.31607 10.4413 6.87868 9.87868C7.44129 9.31607 8.20435 9 9 9V9Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 3H12V9H9C8.20435 9 7.44129 8.68393 6.87868 8.12132C6.31607 7.55871 6 6.79565 6 6V6C6 5.20435 6.31607 4.44129 6.87868 3.87868C7.44129 3.31607 8.20435 3 9 3V3Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15 9H12V3L15 3C15.7956 3 16.5587 3.31607 17.1213 3.87868C17.6839 4.44129 18 5.20435 18 6V6C18 6.79565 17.6839 7.55871 17.1213 8.12132C16.5587 8.68393 15.7956 9 15 9V9Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 15H12V18C12 18.7956 11.6839 19.5587 11.1213 20.1213C10.5587 20.6839 9.79565 21 9 21C8.20435 21 7.44129 20.6839 6.87868 20.1213C6.31607 19.5587 6 18.7956 6 18C6 17.2044 6.31607 16.4413 6.87868 15.8787C7.44129 15.3161 8.20435 15 9 15V15Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="ft-card mt-24 mb-8">
<p class="i-name">figma</p>
</div>
</a>
</li>
<li class="card-m">
<a class="i-card-m p8 br-12" href="/../img/svg/search.svg" download="search.svg">
<div class="hd-card">
<span class="card-badge p2-p6 br-6">
free
</span>
</div>
<div class="bd-card mt-24">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10 17C13.866 17 17 13.866 17 10C17 6.13401 13.866 3 10 3C6.13401 3 3 6.13401 3 10C3 13.866 6.13401 17 10 17Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15 15L21 21" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="ft-card mt-24 mb-8">
<p class="i-name">search</p>
</div>
</a>
</li>
<li class="card-m">
<a class="i-card-m p8 br-12" href="/../img/svg/pin map.svg" download="pin map.svg">
<div class="hd-card">
<span class="card-badge p2-p6 br-6">
free
</span>
</div>
<div class="bd-card mt-24">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 21C14 21 20 16.7778 20 10.4444C20 4.11111 15 2 12 2C9 2 4 4.11111 4 10.4444C4 16.7778 10 21 12 21Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="ft-card mt-24 mb-8">
<p class="i-name">pin map</p>
</div>
</a>
</li>
<li class="card-m">
<a class="i-card-m p8 br-12" href="/../img/svg/latest.svg" download="latest.svg">
<div class="hd-card">
<span class="card-badge p2-p6 br-6">
free
</span>
</div>
<div class="bd-card mt-24">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C8.66873 3 5.76018 4.80989 4.20404 7.5" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.5 8L11.5 12.5L15.5 14" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M3.5 3.5V7.5H7.5" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="ft-card mt-24 mb-8">
<p class="i-name">latest</p>
</div>
</a>
</li>
<li class="card-m">
<a class="i-card-m p8 br-12" href="/../img/svg/tag.svg" download="tag.svg">
<div class="hd-card">
<span class="card-badge p2-p6 br-6">
free
</span>
</div>
<div class="bd-card mt-24">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.3681 17.3058C12.9262 21.7284 12.2031 21.0084 4.14572 12.8831C1.97643 10.7233 3.42262 4.86071 4.14572 4.14075C4.86881 3.42079 10.7569 1.98087 12.9262 4.14075C20.9835 12.1632 21.7066 12.8831 17.3681 17.3058Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 8C7.77614 8 8 7.77614 8 7.5C8 7.22386 7.77614 7 7.5 7C7.22386 7 7 7.22386 7 7.5C7 7.77614 7.22386 8 7.5 8Z" fill="#353E50" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="ft-card mt-24 mb-8">
<p class="i-name">tag</p>
</div>
</a>
</li>
<li class="card-m">
<a class="i-card-m p8 br-12" href="/../img/svg/unlock.svg" download="unlock.svg">
<div class="hd-card">
<span class="card-badge p2-p6 br-6">
free
</span>
</div>
<div class="bd-card mt-24">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20 15.5C20 19.5 18.5 21 12 21C5.5 21 4 19.5 4 15.5C4 11.5 5.5 10 12 10C18.5 10 20 11.5 20 15.5Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 14V17" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8 7C8.4 4.5 8.5 3 12 3C15 3 16 4 16 10" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="ft-card mt-24 mb-8">
<p class="i-name">unlock</p>
</div>
</a>
</li>
<li class="card-m">
<a class="i-card-m p8 br-12" href="/../img/svg/bitcoin.svg" download="bitcoin.svg">
<div class="hd-card">
<span class="card-badge p2-p6 br-6">
free
</span>
</div>
<div class="bd-card mt-24">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M13.9 11.8H9.39999M13.9 11.8C14.7 11.8 15.4 11.1 15.4 10.3C15.4 9.49999 14.7 8.79999 13.9 8.79999H9.39999V11.8M13.9 11.8C14.7 11.8 15.4 12.5 15.4 13.3C15.4 14.1 14.7 14.8 13.9 14.8H9.39999V11.8M11.4 8.79999H8.39999M10.4 6.79999V8.79999M13.4 6.79999V8.79999M10.4 14.8V16.8M13.4 14.8V16.8M11.4 14.8H8.39999" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="ft-card mt-24 mb-8">
<p class="i-name">bitcoin</p>
</div>
</a>
</li>
<li class="card-m">
<a class="i-card-m p8 br-12" href="/../img/svg/chart square.svg" download="chart square.svg">
<div class="hd-card">
<span class="card-badge p2-p6 br-6">
free
</span>
</div>
<div class="bd-card mt-24">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21 12.5294C21 19 19 21 12 21C5 21 3 19 3 12C3 5 5 3 12 3C19 3 21 5 21 12.5294Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M8 13V16" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12 11V16" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 8V16" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="ft-card mt-24 mb-8">
<p class="i-name">chart square</p>
</div>
</a>
</li>
<li class="card-m">
<a class="i-card-m p8 br-12" href="/../img/svg/star.svg" download="star.svg">
<div class="hd-card">
<span class="card-badge p2-p6 br-6">
free
</span>
</div>
<div class="bd-card mt-24">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.4249 3.90114L15.0288 7.00507C15.2293 7.5057 15.7305 7.80608 16.2317 7.90621L19.6398 8.40684C20.9429 8.6071 21.4441 10.2091 20.542 11.1103L18.036 13.4132C17.635 13.8137 17.4345 14.3143 17.5348 14.815L18.1362 18.1191C18.3367 19.4208 17.0336 20.4221 15.8307 19.8213L12.7233 18.2193C12.2221 18.019 11.7209 18.019 11.2197 18.2193L8.11222 19.8213C6.90933 20.4221 5.60621 19.4208 5.80669 18.1191L6.40814 14.815C6.50838 14.3143 6.30789 13.7136 5.90693 13.4132L3.50117 11.0101C2.49877 10.109 3.10021 8.50697 4.40333 8.30672L7.8115 7.80608C8.3127 7.70596 8.8139 7.40558 9.01438 7.00507L10.518 3.90114C11.2197 2.69962 12.8235 2.69962 13.4249 3.90114Z" stroke="#353E50" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="ft-card mt-24 mb-8">
<p class="i-name">star</p>
</div>
</a>
</li>
</ul>
</div>
<article class="mt-96">
<h3>Features</h3>
<p class="subtitle mt-4 max-w-880">Modern SVG UI icons — with a well-organized Figma components library</p>
<div class="feature-box mt-48 mb-16">
<ul class="feature mt-16">
<li class="feature-item p24 br-16">
<div class="f-box p4">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.5 8.96545L10.0253 11.6667L15.8333 5.83334" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5 10C17.5 14.1421 14.1421 17.5 10 17.5C5.85786 17.5 2.5 14.1421 2.5 10C2.5 5.85786 5.85786 2.5 10 2.5C10.8185 2.5 11.6064 2.63111 12.3438 2.87348" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
Based on 24px grid
</li>
<li class="feature-item p24 br-16">
<div class="f-box p4">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.5 8.96545L10.0253 11.6667L15.8333 5.83334" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5 10C17.5 14.1421 14.1421 17.5 10 17.5C5.85786 17.5 2.5 14.1421 2.5 10C2.5 5.85786 5.85786 2.5 10 2.5C10.8185 2.5 11.6064 2.63111 12.3438 2.87348" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
100% Customizable
</li>
<li class="feature-item p24 br-16">
<div class="f-box p4">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.5 8.96545L10.0253 11.6667L15.8333 5.83334" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5 10C17.5 14.1421 14.1421 17.5 10 17.5C5.85786 17.5 2.5 14.1421 2.5 10C2.5 5.85786 5.85786 2.5 10 2.5C10.8185 2.5 11.6064 2.63111 12.3438 2.87348" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
MIT licence
</li>
<li class="feature-item p24 br-16">
<div class="f-box p4">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.5 8.96545L10.0253 11.6667L15.8333 5.83334" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5 10C17.5 14.1421 14.1421 17.5 10 17.5C5.85786 17.5 2.5 14.1421 2.5 10C2.5 5.85786 5.85786 2.5 10 2.5C10.8185 2.5 11.6064 2.63111 12.3438 2.87348" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
Scalable library
</li>
<li class="feature-item p24 br-16">
<div class="f-box p4">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.5 8.96545L10.0253 11.6667L15.8333 5.83334" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5 10C17.5 14.1421 14.1421 17.5 10 17.5C5.85786 17.5 2.5 14.1421 2.5 10C2.5 5.85786 5.85786 2.5 10 2.5C10.8185 2.5 11.6064 2.63111 12.3438 2.87348" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
Pixel perfect
</li>
<li class="feature-item p24 br-16">
<div class="f-box p4">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7.5 8.96545L10.0253 11.6667L15.8333 5.83334" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M17.5 10C17.5 14.1421 14.1421 17.5 10 17.5C5.85786 17.5 2.5 14.1421 2.5 10C2.5 5.85786 5.85786 2.5 10 2.5C10.8185 2.5 11.6064 2.63111 12.3438 2.87348" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
Support
</li>
</ul>
</div>
<div class="m-title-right pl-16">
</div>
</article>
<section class="stack-1in1 stack-center mt-96">
<article class="stack-center sm:mb-32">
<h3>Core Libraries</h3>
<p class="subtitle mt-4">Compiled primary UI icon libraries, which are necessary for daily work</p>
</article>
<div class="i-pack i-pack-limited mt-48 lg:mt-16 br-24 sm:br-16">
<div class="slot-title gap-48 lg:gap-40">
<div class="title-pack md:gap-0">
<h1>
Core Pro
</h1>
<p class="body-text_reg-l_l mt-12 lg:mt-0 sm:mt-4">
The 280 UI icons made in the Figma environment for essential needs
</p>
</div>
<div class="fxdr-col">
<a class="btn btn-primary-md br-12 pt-12 pr-16 pb-12 pl-16" href="https://pay.fondy.eu/s/5BMWP4slNa9" target="_blank" type="button">
<span class="btn-wrap">
Buy for $16.00
</span>
</a>
<a class="btn btn-secondary-md br-12 pt-10 pr-16 pb-10 pl-16" href="https://coreicon.dev/products/core-pro/" target="_parent" type="button">
<span class="btn-wrap-b">
Preview
</span>
</a>
</div>
</div>
<article class="core-limited">
<a href="https://coreicon.dev/products/core-pro/">
<div class="card-pack_bd br-24 sm:br-16">
<img
class="card-cover-l"
srcset="
/../img/bg/cover__CP_1920-1080.webp 1200w,
/../img/bg/cover__CP_1920-1240.webp 960w"
alt="CoreLinear cover pack"
sizes="auto" loading="lazy">
</div>
</a>
</article>
</div>
<div class="i-pack i-pack-limited mt-16 br-24 sm:br-16">
<div class="slot-title gap-48 lg:gap-40">
<div class="title-pack">
<h1>
Core Editor
</h1>
<p class="body-text_reg-l_l mt-12 lg:mt-0 sm:mt-4">
The 156 UI icons made in the Figma environment for editing needs
</p>
</div>
<div class="fxdr-col">
<a class="btn btn-primary-md br-12 pt-12 pr-16 pb-12 pl-16" href="https://pay.fondy.eu/s/LiNg50pH9416x9" target="_blank" type="button">
<span class="btn-wrap">
Buy for $10.00
</span>
</a>
<a class="btn btn-secondary-md br-12 pt-10 pr-16 pb-10 pl-16" href="https://coreicon.dev/products/core-editor/" target="_parent" type="button">
<span class="btn-wrap-b">
Preview
</span>
</a>
</div>
</div>
<article class="core-limited">
<a href="https://coreicon.dev/products/core-editor/">
<div class="card-pack_bd br-12 sm:br-16">
<img
class="card-cover-l"
srcset="
/../img/bg/cover__CE_1920-1080.webp 1200w,
/../img/bg/cover__CE_1920-1240.webp 960w"
alt="CoreLinear cover pack"
sizes="auto" loading="lazy">
</div>
</a>
</article>
</div>
<div class="i-pack i-pack-limited mt-16 br-24 sm:br-16">
<div class="slot-title gap-48 lg:gap-40">
<div class="title-pack">
<h1>
Core Linear
</h1>
<p class="body-text_reg-l_l mt-12 lg:mt-0 sm:mt-4">
The 208 UI icons made in the Figma environment for pointers needs
</p>
</div>
<div class="fxdr-col">
<a class="btn btn-primary-md br-12 pt-12 pr-16 pb-12 pl-16" href="https://pay.fondy.eu/s/9owLLV" target="_blank" type="button">
<span class="btn-wrap">
Buy for $8.00
</span>
</a>
<a class="btn btn-secondary-md br-12 pt-10 pr-16 pb-10 pl-16" href="https://coreicon.dev/products/core-linear/" target="_parent" type="button">
<span class="btn-wrap-b">
Preview
</span>
</a>
</div>
</div>
<article class="core-limited">
<a href="https://coreicon.dev/products/core-linear/">
<div class="card-pack_bd br-24 sm:br-16">
<img
class="card-cover-l"
srcset="
/../img/bg/cover__CL_1920-1080.webp 1200w,
/../img/bg/cover__CL_1920-1240.webp 960w"
alt="CoreLinear cover pack"
sizes="auto" loading="lazy">
</div>
</a>
</article>
</div>
<div class="i-mini-pack mt-96">
<article class="stack-center lg:mb-24 sm:mb-32">
<h3>New Release</h3>
<p class="subtitle mt-4">Take more advantages with SVG icons followed by the best design practices</p>
</article>
<section class="stack-2in1">
<article class="core-stack mt-48 lg:mt-16 br-16">
<a href="https://coreicon.dev/products/cib-stack/index.html" target="_parent">
<div class="card-stack_bd">
<img
class="card-stack-cover-l"
srcset="
/../img/stacks/cib__cover-stack__2to1.webp 1200w,
/../img/stacks/cib__cover-stack__3to2.webp 960w"
src="/../img/stacks/cib__cover-stack__2to1.png"
alt="Core Banking cover pack"
sizes="auto" loading="lazy">
<p class="stack-badge br-6">
New release
</p>
</div>
<div class="b-slot-1 mt-16 mb-16 p0-p24 md:p0-p20">
<h6>Core Banking bundle</h6>
<p class="body-text_reg-m mt-2">
72 UI icons • .SVG
</p>
</div>
</a>
</article>
<article class="core-stack mt-48 lg:mt-16 br-16">
<a href="https://coreicon.dev/products/cie-stack/index.html" target="_parent">
<div class="card-stack_bd">
<img
class="card-stack-cover-l"
srcset="
/../img/stacks/cie__cover-stack__2to1.webp 1200w,
/../img/stacks/cie__cover-stack__3to2.webp 960w"
src="/../cie__cover-stack__2to1.png"
alt="Core E-store cover pack"
sizes="auto" loading="lazy">
<p class="stack-badge br-6">
New release
</p>
</div>
<div class="b-slot-1 mt-16 mb-16 p0-p24 md:p0-p20">
<h6>Core E-store bundle</h6>
<p class="body-text_reg-m mt-2">
72 UI icons • .SVG
</p>
</div>
</a>
</article>
</section>
<section class="stack-2in1">
<article class="core-stack mt-16 lg:mt-16 br-16">
<a href="https://coreicon.dev/products/cie-stack/index.html" target="_parent">
<div class="card-stack_bd">
<img
class="card-stack-cover-l"
srcset="
/../img/stacks/cieb__cover-stack__2to1.webp 1200w,
/../img/stacks/cieb__cover-stack__3to2.webp 960w"
src="/../cie__cover-stack__2to1.png"
alt="Core Energy cover pack"
sizes="auto" loading="lazy">
<p class="stack-badge br-6">
New release
</p>
</div>
<div class="b-slot-1 mt-16 mb-16 p0-p24 md:p0-p20">
<h6>Core Energy bundle</h6>
<p class="body-text_reg-m mt-2">
72 UI icons • .SVG
</p>
</div>
</a>
</article>
<article class="core-stack mt-16 lg:mt-16 br-16">
<a href="https://coreicon.dev/products/cip-stack/index.html" target="_parent">
<div class="card-stack_bd">
<img
class="card-stack-cover-l"
srcset="
/../img/stacks/cip__cover-stack__2to1.webp 1200w,
/../img/stacks/cip__cover-stack__3to2.webp 960w"
src="/../cip__cover-stack__2to1.png"
alt="Core Energy cover pack"
sizes="auto" loading="lazy">
<p class="stack-badge br-6">
New release
</p>
</div>
<div class="b-slot-1 mt-16 mb-16 p0-p24 md:p0-p20">
<h6>Core Protect bundle</h6>
<p class="body-text_reg-m mt-2">
72 UI icons • .SVG
</p>
</div>
</a>
</article>
</section>
</div>
</section>
<section class="stack-2in1 mt-96">
<div class="col-1">
<p class="subtitle max-w-880">Everything you need to know</p>
<h3 class="mt-4">Frequency asked questions</h3>
</div>
<div class="faq-box gap-4 mt-24">
<button class="accordion br-16"
style="
font-family: 'Lexend',sans-serif;
font-weight: 500;
font-size: 18px;
line-height: 1.25;
letter-spacing: -0.25px;
color: #121B2B;
">
How many UI icons have you made?</button>
<div class="panel">
<p class="body-text_reg-l mt-16 mb-24">
The Coreicon includes over 910 UI icons as well done and organised via Figma, IconJar and SVG. By the way, this total of icons could cover 9 of 10 requests. However, product design is always a dynamic process of development. The total icon number will increase coming soon.
</p>
</div>
<button class="accordion br-16"
style="
font-family: 'Lexend',sans-serif;
font-weight: 500;
font-size: 18px;
line-height: 1.25;
letter-spacing: -0.25px;
color: #121B2B;
">
What is in the box of Coreicon?</button>
<div class="panel">
<p class="body-text_reg-l mt-16 mb-24">
Scope of UI icons that represent the Core libraries or Core bundles on the official site <a href="https://coreicon.dev" target="_parent" style="font-family: 'Lexend',sans-serif; font-weight: 400; font-size: 16px; line-height: 1.25; letter-spacing: -0.25px; color: #121B2B; vertical-align: baseline;">https://coreicon.dev</a>. For example, if you paid for the Core E-store bundle will have been given 72 UI icons format Figma, IconJar, and SVG.
</p>
</div>
<button class="accordion br-16"
style="
font-family: 'Lexend',sans-serif;
font-weight: 500;
font-size: 18px;
line-height: 1.25;
letter-spacing: -0.25px;
color: #121B2B;
">
Why the Coreicon project is better than another?</button>
<div class="panel">
<p class="body-text_reg-l mt-16 mb-24">
All had hidden in details. I think the Coreicon is a metaphor language that underlines the meaning and aesthetic looks for UI, Design systems, etc. If you like a metaphor, shape, line, or icon style overall, in the end, you throw out any reason to find answers to why it is so awesome. This project used best practices and followed the Material Design guidelines.
</p>
</div>
<button class="accordion br-16"
style="
font-family: 'Lexend',sans-serif;
font-weight: 500;
font-size: 18px;
line-height: 1.25;
letter-spacing: -0.25px;
color: #121B2B;
">
What are the payment types?</button>
<div class="panel">
<p class="body-text_reg-l mt-16 mb-24">
You can press a button with the label "Buy for $.."" on our site and continue paying in a new window. Credit cards Visa, Master, Maestro, Google and Apple Pay are accepted. We're using the Fondy app to protect the payment process.
</p>
</div>
<button class="accordion br-16"
style="
font-family: 'Lexend',sans-serif;
font-weight: 500;
font-size: 18px;
line-height: 1.25;
letter-spacing: -0.25px;
color: #121B2B;
">
How long time might go supply?</button>
<div class="panel">
<p class="body-text_reg-l mt-24 mb-24">
On average, the supply stage is from 10 min to 4 hours. Usually, this crucial depends on the situation of electricity in the Kyiv and Kyiv region. After payments, everyone takes an additional info message and our mail <a href="mailto:[email protected]?subject=Need help" target="_blank" style="font-family: 'Lexend',sans-serif; font-weight: 400; font-size: 16px; line-height: 1.25; letter-spacing: -0.25px; color: #121B2B; vertical-align: baseline;">[email protected]</a>. All files and icons supply on the user contact Email. Nobody stayed without our modern SVG icons by Coreicon.
</p>
</div>
<button class="accordion br-16"
style="
font-family: 'Lexend',sans-serif;
font-weight: 500;
font-size: 18px;
line-height: 1.25;
letter-spacing: -0.25px;
color: #121B2B;
">
What is next in nearly time?</button>
<div class="panel">
<p class="body-text_reg-l mt-16 mb-24">
During the russia invasion of Ukraine nothing to plan for a long time. Every next day is a gift for millions of Ukrainian. We stayed here in our homeland Ukraine and keep hard-working to create new UI icons. Thanks to all the Ukrainian warriors who struggle against the wildest putin’s fake imperialism and the inhumanity of foreign terrorists.
</p>
</div>
<button class="accordion br-16"
style="
font-family: 'Lexend',sans-serif;
font-weight: 500;
font-size: 18px;
line-height: 1.25;
letter-spacing: -0.25px;
color: #121B2B;
">
Could I ask for a custom request to build UI icons?</button>
<div class="panel">
<p class="body-text_reg-l mt-16 mb-24">
Definitely. Please send more info or a design brief to <a href="mailto:[email protected]?subject=A custom icons" target="_blank" style="font-family: 'Lexend',sans-serif; font-weight: 400; font-size: 16px; line-height: 1.25; letter-spacing: -0.25px; color: #121B2B; vertical-align: baseline;">[email protected]</a> with the topic letter "A custom icons".
</p>
</div>
</div>
</section>
</section>
<section class="cta mt-96 mb-4">
<a class="cta-box p16 br-16" href="https://coreicon.dev/about" target="_parent">
<span>
<h3 class="cta-title p2-p12 br-8" style="color:#121B2B;">
Sincerely from Ukraine 🫶
</h3>
</span>
</a>
</section>
<section class="footer mb-40 sm:mb-32">
<div class="foo-box mt-16">
<div class="foo-col-1 mr-48 mt-4">
<div class="logo-core-foo mr-12">
<a href="https://coreicon.dev/">
<svg width="122" height="28" viewBox="0 0 122 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1527_56996)">
<path d="M1.66893e-06 14C1.66893e-06 23.25 3 28 14 28C25 28 28 23 28 14C28 5 25 0 14 0C3 0 1.66893e-06 4.75 1.66893e-06 14Z" fill="#121B2B"/>
<path d="M15.8421 21C15.8421 21 11.6421 20.3368 10.4632 19.1579C9.21053 17.9789 7 7 7 7C7 7 17.9789 9.21053 19.1579 10.4632C20.3368 11.6421 21 15.8421 21 15.8421" stroke="url(#paint0_linear_1527_56996)" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M24.5 16.91C23.7188 16.1297 22.4406 16.1297 21.5884 16.9809L16.9014 21.6626C16.5464 22.0882 16.3333 22.5848 16.3333 23.0813C16.3333 23.5779 16.4753 24.0744 16.9014 24.5" stroke="url(#paint1_linear_1527_56996)" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M19.2308 26.5L17.8081 26.2884C17.4633 26.0816 17.3944 25.5989 17.6702 25.2542L25.2542 17.6702C25.53 17.3944 26.0816 17.4633 26.2884 17.8081L26.5 18.8846" stroke="url(#paint2_linear_1527_56996)" stroke-width="1.3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7 7L14 14" stroke="url(#paint3_linear_1527_56996)" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M14.45 15.2C14.8642 15.2 15.2 14.8642 15.2 14.45C15.2 14.0358 14.8642 13.7 14.45 13.7C14.0358 13.7 13.7 14.0358 13.7 14.45C13.7 14.8642 14.0358 15.2 14.45 15.2Z" fill="#A9AFBC" stroke="#A9AFBC" stroke-width="1.2" stroke-linejoin="round"/>
</g>
<path d="M45.212 16.9946C44.9227 17.5343 44.49 17.9827 43.9619 18.2899C43.3767 18.6206 42.7144 18.789 42.043 18.7776C41.542 18.7964 41.0426 18.7117 40.5755 18.5288C40.1085 18.3458 39.6838 18.0686 39.3278 17.7142C38.9821 17.3693 38.7093 16.9578 38.5259 16.5044C38.3426 16.051 38.2524 15.565 38.2609 15.0757C38.2553 14.5843 38.3488 14.0969 38.5359 13.6429C38.723 13.1888 38.9997 12.7775 39.3495 12.4338C39.6992 12.0901 40.1146 11.8211 40.5707 11.6431C41.0268 11.465 41.5141 11.3816 42.0032 11.3978C42.6704 11.3878 43.3279 11.5591 43.9062 11.8935C44.4395 12.2057 44.8711 12.6668 45.1483 13.2208L45.2199 13.3807L47.1468 12.2613L47.0751 12.1254C46.6352 11.2187 45.9331 10.4663 45.0607 9.9666C44.1367 9.43058 43.0861 9.15439 42.0191 9.16705C41.223 9.14381 40.4306 9.28352 39.69 9.57768C38.9495 9.87184 38.2763 10.3143 37.7115 10.8781C37.1534 11.4214 36.7132 12.0748 36.4186 12.7972C36.124 13.5196 35.9813 14.2953 35.9996 15.0757C35.9822 15.8607 36.1251 16.641 36.4195 17.3685C36.7139 18.0959 37.1536 18.7551 37.7115 19.3053C38.2783 19.8602 38.9501 20.2954 39.6873 20.5851C40.4244 20.8749 41.2119 21.0134 42.0032 20.9924C43.0614 20.9958 44.102 20.72 45.0209 20.1928C45.9079 19.6898 46.6425 18.9548 47.1468 18.066L47.2264 17.9221L45.2916 16.8187L45.212 16.9946Z" fill="#121B2B"/>
<path d="M54.1377 9.16705C53.3483 9.14971 52.5636 9.29229 51.8303 9.58627C51.0971 9.88024 50.4303 10.3196 49.8699 10.8781C49.3056 11.4184 48.8592 12.0704 48.5591 12.793C48.2589 13.5156 48.1115 14.2929 48.1262 15.0757C48.1109 15.8598 48.258 16.6385 48.5581 17.3624C48.8583 18.0864 49.305 18.7398 49.8699 19.2813C50.4303 19.8398 51.0971 20.2792 51.8303 20.5731C52.5636 20.8671 53.3483 21.0097 54.1377 20.9924C54.927 21.0092 55.7116 20.8665 56.4448 20.5725C57.178 20.2785 57.8448 19.8394 58.4055 19.2813C58.9717 18.74 59.4203 18.087 59.7231 17.3632C60.026 16.6395 60.1764 15.8607 60.1651 15.0757C60.1753 14.2921 60.0243 13.5148 59.7215 12.7925C59.4187 12.0702 58.9707 11.4185 58.4055 10.8781C57.8448 10.32 57.178 9.88086 56.4448 9.58691C55.7116 9.29295 54.927 9.15017 54.1377 9.16705ZM56.821 17.7382C56.0962 18.4212 55.1396 18.8014 54.1456 18.8014C53.1517 18.8014 52.1951 18.4212 51.4703 17.7382C51.119 17.3921 50.8423 16.9771 50.6574 16.5191C50.4725 16.0611 50.3833 15.5698 50.3954 15.0757C50.3835 14.5828 50.4727 14.0928 50.6577 13.6361C50.8426 13.1794 51.1192 12.7658 51.4703 12.4212C52.1951 11.7382 53.1517 11.358 54.1456 11.358C55.1396 11.358 56.0962 11.7382 56.821 12.4212C57.1735 12.7652 57.4516 13.1784 57.6379 13.6351C57.8242 14.0919 57.9148 14.5823 57.9038 15.0757C57.9144 15.5703 57.8238 16.0618 57.6375 16.5198C57.4512 16.9778 57.1733 17.3925 56.821 17.7382Z" fill="#121B2B"/>
<path d="M64.0666 10.8221V9.44689H61.8054V20.7045H64.0666V14.7479C64.0242 14.2899 64.0885 13.8283 64.2543 13.3995C64.4201 12.9707 64.683 12.5865 65.0221 12.2773C65.6865 11.7615 66.5176 11.5108 67.3551 11.5737H67.5302V9.255H67.363C66.7257 9.20909 66.0874 9.32923 65.5099 9.60378C64.9323 9.87833 64.4352 10.298 64.0666 10.8221Z" fill="#121B2B"/>
<path d="M74.1708 9.16705C73.3749 9.13769 72.5814 9.27222 71.8392 9.56236C71.0971 9.85249 70.4219 10.2921 69.8552 10.8541C69.3047 11.4062 68.8725 12.0655 68.5849 12.7915C68.2974 13.5174 68.1607 14.2948 68.1831 15.0757C68.1646 15.863 68.3053 16.646 68.5968 17.3771C68.8883 18.1083 69.3246 18.7724 69.8791 19.3293C71.0774 20.4502 72.6694 21.0482 74.3061 20.9924C75.2903 21.0437 76.2708 20.8361 77.1506 20.3901C78.0303 19.9442 78.779 19.2754 79.3224 18.4498L79.4259 18.2979L77.491 17.2185L77.4035 17.3544C77.0774 17.8602 76.6209 18.2678 76.0825 18.5339C75.5441 18.8 74.944 18.9146 74.3459 18.8656C73.4264 18.8936 72.524 18.6122 71.7821 18.066C71.1523 17.5779 70.7106 16.8856 70.532 16.1071H79.7921V15.9632C79.8388 15.6724 79.8627 15.3783 79.8638 15.0837C79.9037 13.5357 79.3311 12.035 78.2713 10.9101C77.7563 10.3362 77.1221 9.88279 76.4137 9.58164C75.7052 9.28049 74.9396 9.13898 74.1708 9.16705ZM70.5241 14.1242C70.6716 13.3313 71.0914 12.6155 71.7104 12.1014C72.4115 11.5529 73.2826 11.2698 74.1708 11.3018C74.9908 11.2877 75.7882 11.5717 76.4161 12.1014C77.0126 12.6357 77.4112 13.3572 77.5468 14.1482L70.5241 14.1242Z" fill="#121B2B"/>
<path d="M82.8178 5.00141C82.4369 5.00768 82.0736 5.1635 81.8057 5.4355C81.5378 5.7075 81.3866 6.07404 81.3846 6.45659C81.383 6.64569 81.4195 6.83317 81.492 7.0077C81.5646 7.18223 81.6716 7.34018 81.8066 7.47201C82.0885 7.7446 82.4663 7.89407 82.8576 7.88778C83.2413 7.8912 83.6107 7.74168 83.8848 7.47201C84.0203 7.33941 84.128 7.18089 84.2016 7.00581C84.2752 6.83072 84.3131 6.64262 84.3131 6.45259C84.3131 6.26256 84.2752 6.07446 84.2016 5.89937C84.128 5.72429 84.0203 5.56577 83.8848 5.43317C83.7481 5.28866 83.5821 5.17533 83.398 5.10084C83.2139 5.02635 83.0161 4.99244 82.8178 5.00141Z" fill="#121B2B"/>
<path d="M83.9325 9.255H81.6712V20.7125H83.9325V9.255Z" fill="#121B2B"/>
<path d="M95.0718 16.9946C94.7753 17.5485 94.3279 18.0061 93.7819 18.3139C93.1967 18.6446 92.5344 18.813 91.863 18.8016C91.3669 18.8117 90.874 18.7206 90.4141 18.5337C89.9543 18.3468 89.537 18.068 89.1876 17.7142C88.8419 17.3693 88.5691 16.9578 88.3857 16.5044C88.2024 16.051 88.1122 15.565 88.1207 15.0757C88.115 14.5843 88.2086 14.0969 88.3957 13.6429C88.5828 13.1888 88.8595 12.7775 89.2092 12.4338C89.559 12.0901 89.9744 11.8211 90.4305 11.643C90.8866 11.465 91.3739 11.3816 91.863 11.3978C92.5302 11.3878 93.1877 11.5591 93.7659 11.8935C94.2993 12.2057 94.7309 12.6668 95.0081 13.2208L95.0797 13.3807L96.9907 12.3013L96.919 12.1654C96.4899 11.2461 95.793 10.4794 94.9205 9.9666C93.9965 9.43058 92.9459 9.15439 91.8789 9.16705C91.0855 9.14599 90.2961 9.28677 89.5584 9.58087C88.8207 9.87497 88.1502 10.3163 87.5872 10.8781C87.0291 11.4214 86.5889 12.0748 86.2943 12.7972C85.9997 13.5196 85.857 14.2953 85.8753 15.0757C85.8579 15.8607 86.0008 16.641 86.2952 17.3685C86.5896 18.0959 87.0293 18.7551 87.5872 19.3053C88.1521 19.8582 88.8214 20.2923 89.5556 20.582C90.2898 20.8717 91.0743 21.0112 91.863 20.9924C92.9349 21.004 93.9904 20.7279 94.9205 20.1928C95.8096 19.6854 96.5444 18.9447 97.0464 18.05L97.126 17.9061L95.1912 16.8027L95.0718 16.9946Z" fill="#121B2B"/>
<path d="M103.997 9.16705C103.203 9.14537 102.412 9.28583 101.673 9.57993C100.934 9.87403 100.262 10.3157 99.6978 10.8781C99.1346 11.4188 98.6895 12.0711 98.3906 12.7937C98.0918 13.5163 97.9459 14.2934 97.9621 15.0757C97.9453 15.8592 98.0909 16.6377 98.3897 17.3617C98.6885 18.0857 99.134 18.7394 99.6978 19.2813C100.849 20.3803 102.377 20.9931 103.966 20.9931C105.554 20.9931 107.082 20.3803 108.233 19.2813C108.811 18.7456 109.27 18.0948 109.583 17.3707C109.895 16.6466 110.054 15.8649 110.049 15.0757C110.061 14.2918 109.911 13.5139 109.608 12.7914C109.305 12.0688 108.856 11.4173 108.289 10.8781C107.726 10.317 107.055 9.87621 106.317 9.58217C105.58 9.28812 104.791 9.14692 103.997 9.16705ZM106.681 17.7382C106.326 18.0856 105.906 18.3586 105.446 18.5412C104.985 18.7238 104.493 18.8123 103.997 18.8016C103.506 18.8114 103.018 18.7223 102.561 18.5397C102.104 18.3571 101.688 18.0845 101.338 17.7382C100.984 17.3936 100.705 16.9791 100.519 16.5209C100.332 16.0626 100.243 15.5705 100.255 15.0757C100.243 14.5821 100.333 14.0912 100.519 13.6343C100.706 13.1774 100.984 12.7643 101.338 12.4212C101.691 12.0806 102.108 11.8145 102.564 11.6387C103.021 11.4629 103.509 11.381 103.997 11.3978C104.493 11.3853 104.986 11.473 105.447 11.6556C105.908 11.8383 106.327 12.1123 106.681 12.4612C107.033 12.8051 107.311 13.2184 107.498 13.6751C107.684 14.1318 107.775 14.6222 107.764 15.1157C107.769 15.6036 107.675 16.0875 107.489 16.5382C107.303 16.9889 107.028 17.3971 106.681 17.7382Z" fill="#121B2B"/>
<path d="M120.766 10.4303C120.341 10.0058 119.833 9.6744 119.274 9.45697C118.714 9.23954 118.116 9.14083 117.517 9.16705C116.868 9.13057 116.219 9.24757 115.623 9.50863C115.027 9.7697 114.501 10.1675 114.086 10.6702V9.44689H111.824V20.7045H114.086V14.7479C114.026 13.8239 114.319 12.9117 114.906 12.1973C115.199 11.9066 115.55 11.6804 115.935 11.5332C116.32 11.3859 116.732 11.3207 117.143 11.3418C117.491 11.3219 117.839 11.3734 118.166 11.493C118.493 11.6125 118.793 11.7978 119.046 12.0374C119.283 12.2979 119.465 12.6032 119.583 12.9355C119.701 13.2677 119.751 13.6203 119.731 13.9723V20.7365H121.992V13.8364C122.023 13.2154 121.931 12.5944 121.72 12.0096C121.51 11.4248 121.185 10.888 120.766 10.4303Z" fill="#121B2B"/>
<defs>
<linearGradient id="paint0_linear_1527_56996" x1="7" y1="7" x2="19.5263" y2="19.5263" gradientUnits="userSpaceOnUse">
<stop offset="0.415441" stop-color="white"/>
<stop offset="0.974207" stop-color="#1C2028"/>
</linearGradient>
<linearGradient id="paint1_linear_1527_56996" x1="22.6439" y1="22.2727" x2="18.5608" y2="18.1892" gradientUnits="userSpaceOnUse">
<stop offset="0.0386897" stop-color="#1C2028"/>
<stop offset="1" stop-color="#F0F3F7"/>
</linearGradient>
<linearGradient id="paint2_linear_1527_56996" x1="25.8077" y1="23.3846" x2="19.2308" y2="17.1538" gradientUnits="userSpaceOnUse">
<stop offset="0.237991" stop-color="#1C2028"/>
<stop offset="0.555968" stop-color="#E8ECF0"/>
</linearGradient>
<linearGradient id="paint3_linear_1527_56996" x1="7" y1="7" x2="15.75" y2="15.75" gradientUnits="userSpaceOnUse">
<stop offset="0.278846" stop-color="white"/>
<stop offset="0.942308"/>
</linearGradient>
<clipPath id="clip0_1527_56996">
<rect width="28" height="28" fill="white"/>
</clipPath>
</defs>
</svg>
</a>
</div>
<p class="foo-copyright mt-16">
© 2022. Coreicon, Ukraine
<span class="foo-ua-flag">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="11" cy="8" r="4" fill="#FCCE37"/>
<circle cx="5" cy="8" r="4" fill="#0D59F2"/>
</svg>
</span>
</p>
<p class="foo-dev" style="color:#566176">
Created by <a href="https://codesign.help" target="_blank">
<span>
<svg id="logo-codsgn-sm" width="60" height="14" viewBox="0 0 60 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<use href="../img/logo/logo-codsgn-sm.svg#logo-codsgn-sm"/>
</svg>
</span>
</a>
</p>
</div>
<div class="foo-col-2 mt-8">
<div class="foo-coreicon mr-48">
<p class="core-link mb-8">UI icons</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="https://coreicon.dev/products/core-pro/" target="_parent">Core Pro</a>
</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="https://coreicon.dev/products/core-editor/" target="_parent">Editor</a>
</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="https://coreicon.dev/products/core-linear/" target="_parent">Linear</a>
</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="https://coreicon.dev/products/cib-stack/" target="_parent">Banking</a>
</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="https://coreicon.dev/products/cie-stack/" target="_parent">E-store</a>
</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="https://coreicon.dev/products/cieb-stack/" target="_parent">Energy</a>
</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="https://coreicon.dev/products/cip-stack/" target="_parent">Protect</a>
</p>
</div>
<div class="foo-coreicon mr-48">
<p class="core-link mb-8">Support</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="mailto:[email protected]" target="_blank">[email protected]</a>
</p>
<p class="core-link mb-8 mt-28">Legal</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="https://coreicon.dev/legal/mit/" target="_parent">MIT licence</a>
</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="https://coreicon.dev/legal/privacy/" target="_parent">Privacy</a>
</p>
</div>
<div class="foo-coreicon mr-48">
<p class="core-link mb-8">Coreicon</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="https://coreicon.dev/about" target="_parent">About</a>
</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="https://coreicon.dev/updates" target="_parent">What's new</a>
</p>
<p class="foo-item mt-8">
<a class="foo-item-link" href="https://www.linkedin.com/company/coreicon" target="_blank">Linkedin</a>
</p>
</div>
</div>
<div class="foo-col-3 ml-8 mt-8">
<div class="foo-social gap-16">
<a href="https://www.figma.com/@olehpf" target="_blank">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.5 12.5C13.8807 12.5 15 11.3807 15 10C15 8.61929 13.8807 7.5 12.5 7.5C11.1193 7.5 10 8.61929 10 10C10 11.3807 11.1193 12.5 12.5 12.5Z" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 7.5H10V12.5H7.5C6.83696 12.5 6.20107 12.2366 5.73223 11.7678C5.26339 11.2989 5 10.663 5 10C5 9.33696 5.26339 8.70107 5.73223 8.23223C6.20107 7.76339 6.83696 7.5 7.5 7.5V7.5Z" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 2.5H10V7.5H7.5C6.83696 7.5 6.20107 7.23661 5.73223 6.76777C5.26339 6.29893 5 5.66304 5 5V5C5 4.33696 5.26339 3.70107 5.73223 3.23223C6.20107 2.76339 6.83696 2.5 7.5 2.5V2.5Z" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M12.5 7.5L10 7.5V2.5L12.5 2.5C13.163 2.5 13.7989 2.76339 14.2678 3.23223C14.7366 3.70107 15 4.33696 15 5V5C15 5.66304 14.7366 6.29893 14.2678 6.76777C13.7989 7.23661 13.163 7.5 12.5 7.5V7.5Z" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M7.5 12.5H10V15C10 15.663 9.73661 16.2989 9.26777 16.7678C8.79893 17.2366 8.16304 17.5 7.5 17.5C6.83696 17.5 6.20107 17.2366 5.73223 16.7678C5.26339 16.2989 5 15.663 5 15C5 14.337 5.26339 13.7011 5.73223 13.2322C6.20107 12.7634 6.83696 12.5 7.5 12.5V12.5Z" stroke="#353E50" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
<a href="https://github.com/coreicon-dev" target="_blank">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.8333 8.125L15.1336 8.10628C15.1334 8.11252 15.1333 8.11876 15.1333 8.125H15.8333ZM4.16667 8.125H4.86667C4.86667 8.11946 4.8666 8.11393 4.86647 8.10839L4.16667 8.125ZM4.73333 5.625L5.35758 5.94173C5.4319 5.79524 5.45234 5.62729 5.41533 5.46726L4.73333 5.625ZM8.11667 3.55L7.72732 4.13173C7.87778 4.23243 8.06141 4.27092 8.23964 4.23911L8.11667 3.55ZM10 3.38333L9.99996 4.08336L10.0061 4.08331L10 3.38333ZM11.8833 3.53333L11.7665 4.22351C11.9429 4.25338 12.124 4.21457 12.2727 4.11506L11.8833 3.53333ZM15.2667 5.60833L14.5847 5.45059C14.5476 5.61066 14.5681 5.77866 14.6425 5.92516L15.2667 5.60833ZM8.84512 12.9776C9.10887 12.6949 9.09356 12.252 8.81091 11.9882C8.52826 11.7245 8.08531 11.7398 7.82155 12.0224L8.84512 12.9776ZM7.5 14.65L8.20004 14.65L8.19996 14.6421L7.5 14.65ZM6.8 17.5C6.8 17.8866 7.1134 18.2 7.5 18.2C7.8866 18.2 8.2 17.8866 8.2 17.5H6.8ZM12.1784 12.0224C11.9147 11.7398 11.4717 11.7245 11.1891 11.9882C10.9064 12.252 10.8911 12.6949 11.1549 12.9776L12.1784 12.0224ZM12.5 14.65L11.8 14.6421V14.65H12.5ZM11.8 17.5C11.8 17.8866 12.1134 18.2 12.5 18.2C12.8866 18.2 13.2 17.8866 13.2 17.5H11.8ZM7.759 16.5253C8.11816 16.3823 8.29336 15.9752 8.15032 15.616C8.00728 15.2568 7.60016 15.0816 7.241 15.2247L7.759 16.5253ZM5.15 16.175L4.92342 16.8373C4.96862 16.8528 5.01528 16.8636 5.06268 16.8695L5.15 16.175ZM3.56667 14.1167L3.9797 13.5515L3.97378 13.5472L3.56667 14.1167ZM2.52905 13.0506C2.14279 13.0346 1.81665 13.3347 1.8006 13.7209C1.78456 14.1072 2.08468 14.4334 2.47095 14.4494L2.52905 13.0506ZM15.1333 8.125C15.1333 9.21593 14.7853 10.0933 14.0452 10.7135C13.2856 11.35 12.0132 11.8 10 11.8V13.2C12.1952 13.2 13.8394 12.7125 14.9444 11.7865C16.0688 10.8442 16.5333 9.53407 16.5333 8.125H15.1333ZM10 11.8C7.98685 11.8 6.71441 11.35 5.95481 10.7135C5.21468 10.0933 4.86667 9.21593 4.86667 8.125H3.46667C3.46667 9.53407 3.93116 10.8442 5.05561 11.7865C6.16059 12.7125 7.80482 13.2 10 13.2V11.8ZM4.86647 8.10839C4.84863 7.35668 5.01736 6.61227 5.35758 5.94173L4.10909 5.30827C3.66419 6.18514 3.44354 7.15861 3.46686 8.14161L4.86647 8.10839ZM5.41533 5.46726C5.28993 4.92508 5.25356 4.32344 5.3107 3.84436C5.33933 3.60425 5.38806 3.42437 5.44076 3.3073C5.49674 3.18297 5.52634 3.19479 5.47627 3.21948L4.85706 1.96386C4.50283 2.13855 4.29076 2.4514 4.16418 2.73255C4.03434 3.02094 3.95962 3.35096 3.92055 3.67856C3.84227 4.3349 3.89341 5.09992 4.05134 5.78274L5.41533 5.46726ZM5.47627 3.21948C5.46934 3.2229 5.51912 3.1983 5.67134 3.2123C5.81697 3.22568 6.00782 3.2701 6.23797 3.3521C6.69791 3.51598 7.23117 3.79966 7.72732 4.13173L8.50601 2.96827C7.94383 2.592 7.30626 2.24652 6.70786 2.03331C6.40885 1.92678 6.09865 1.84567 5.79949 1.81817C5.50692 1.79128 5.16816 1.81044 4.85706 1.96386L5.47627 3.21948ZM8.23964 4.23911C8.82068 4.13543 9.40974 4.0833 9.99996 4.08333L10 2.68333C9.32733 2.68329 8.65594 2.74271 7.99369 2.86089L8.23964 4.23911ZM10.0061 4.08331C10.5959 4.07813 11.185 4.12504 11.7665 4.22351L12.0002 2.84316C11.3374 2.73093 10.666 2.67746 9.99385 2.68336L10.0061 4.08331ZM12.2727 4.11506C12.7606 3.78853 13.307 3.50969 13.7776 3.34701C14.0135 3.26549 14.2099 3.2203 14.3577 3.20575C14.519 3.18988 14.5526 3.21724 14.5203 3.2011L15.1464 1.9489C14.8391 1.79526 14.4987 1.78511 14.2206 1.81248C13.9292 1.84116 13.6209 1.91992 13.3203 2.02382C12.718 2.23198 12.0644 2.5698 11.494 2.9516L12.2727 4.11506ZM14.5203 3.2011C14.4454 3.16365 14.4715 3.13644 14.532 3.27424C14.5856 3.39623 14.6364 3.58253 14.6685 3.8266C14.7325 4.31402 14.7076 4.9193 14.5847 5.45059L15.9487 5.76607C16.1091 5.07237 16.1425 4.29848 16.0565 3.64423C16.0136 3.31747 15.9373 2.99231 15.8138 2.71118C15.6973 2.44585 15.4963 2.12385 15.1464 1.9489L14.5203 3.2011ZM14.6425 5.92516C14.985 6.60004 15.1538 7.34971 15.1336 8.10628L16.5331 8.14372C16.5596 7.15437 16.3388 6.17403 15.8909 5.2915L14.6425 5.92516ZM7.82155 12.0224C7.15484 12.7369 6.789 13.6807 6.80004 14.6579L8.19996 14.6421C8.19298 14.0249 8.42404 13.4288 8.84512 12.9776L7.82155 12.0224ZM6.8 14.65V17.5H8.2V14.65H6.8ZM11.1549 12.9776C11.576 13.4288 11.807 14.0249 11.8 14.6421L13.2 14.6579C13.211 13.6807 12.8452 12.7369 12.1784 12.0224L11.1549 12.9776ZM11.8 14.65V17.5H13.2V14.65H11.8ZM7.241 15.2247C6.60543 15.4778 5.91609 15.5658 5.23732 15.4805L5.06268 16.8695C5.9761 16.9844 6.90373 16.8659 7.759 16.5253L7.241 15.2247ZM5.37658 15.5127C5.16556 15.4405 5.05348 15.3516 4.98218 15.2716C4.9047 15.1847 4.84389 15.073 4.77933 14.9073C4.74586 14.8214 4.71725 14.7373 4.67978 14.6305C4.64483 14.531 4.60251 14.413 4.55069 14.2954C4.44562 14.057 4.28126 13.7719 3.97968 13.5515L3.15366 14.6818C3.17708 14.699 3.21479 14.7357 3.26962 14.8601C3.29775 14.9239 3.32483 14.9975 3.35882 15.0943C3.3903 15.184 3.43018 15.301 3.47484 15.4156C3.56653 15.6509 3.70051 15.9377 3.93709 16.2031C4.17985 16.4755 4.50111 16.6928 4.92342 16.8373L5.37658 15.5127ZM3.97378 13.5472C3.55072 13.2448 3.04866 13.0722 2.52905 13.0506L2.47095 14.4494C2.71861 14.4597 2.95791 14.5419 3.15956 14.6861L3.97378 13.5472Z" fill="#353E50"/>
</svg>
</a>
</div>
</div>
</div>
</section>
<a class="chat-bot" href="https://t.me/coreicon_bot" target="_blank">
<span class="i-social-lg">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.11991 9.19809C6.41439 7.16172 9.2764 5.82046 10.7059 5.17431C14.7962 3.33375 15.6519 3.01067 16.2015 3.00088C16.4046 2.99153 16.6047 3.05709 16.7692 3.18689C16.8877 3.29656 16.9647 3.45 16.9854 3.61767C17.0049 3.82599 17.0049 4.0359 16.9854 4.24422C16.7692 6.77989 15.8051 12.9184 15.3186 15.7477C15.1114 16.9519 14.7061 17.3533 14.3096 17.3925C13.4628 17.4806 12.805 16.7757 11.9852 16.1883C10.6878 15.268 9.94912 14.6904 8.69682 13.7897C7.23729 12.7519 8.18315 12.1743 9.01201 11.2442C9.22824 10.9995 12.9942 7.26942 13.0662 6.93655C13.0763 6.88713 13.0758 6.83587 13.0649 6.78667C13.054 6.73747 13.033 6.69162 13.0033 6.65262C12.9565 6.62434 12.9036 6.6095 12.85 6.6095C12.7964 6.6095 12.7438 6.62434 12.6969 6.65262C12.5618 6.65262 10.4987 8.17011 6.48956 11.1072C6.02887 11.4966 5.46885 11.7223 4.88586 11.7533C4.10606 11.6462 3.33892 11.4493 2.59744 11.1659C1.6965 10.833 0.948702 10.6666 1.00276 10.1086C1.00276 9.82465 1.40815 9.53095 2.10188 9.22746L2.11991 9.19809Z" fill="white"/>
</svg>
</span>
</a>
<button onclick="topFunction()" id="btnTop" title="Go to top">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18 15L12 9L6 15" stroke="#121B2B" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<section class="hero-box">
</section>
</main>
<div id="progress" class="progress">
<div class="fillProgress"></div>
</div>
<script src="/../js/lottie.js"></script>
<script src="/../js/coreanima.js"></script>
<script src="/../js/accordion.js"></script>
<script src="/../js/ontop.js"></script>
<script src="/../js/scrollbar.js"></script>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-P6LMWQD"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
</body>