-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1147 lines (1140 loc) · 190 KB
/
index.html
File metadata and controls
1147 lines (1140 loc) · 190 KB
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-US">
<head>
<meta charset="UTF-8">
<title>ChipCoins – CryptoCurrency</title>
<meta name="robots" content="max-image-preview:large">
<link rel="alternate" type="application/rss+xml" title="ChipCoins - CryptoCurrency » Feed" href="/feed/">
<link rel="alternate" type="application/rss+xml" title="ChipCoins - CryptoCurrency » Comments Feed" href="/comments/feed/">
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.4.3"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"🏳️⚧️","🏳️⚧️")?!1:!n(e,"🇺🇳","🇺🇳")&&!n(e,"🏴","🏴");case"emoji":return!n(e,"🫱🏻🫲🏿","🫱🏻🫲🏿")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
</script>
<style id="wp-emoji-styles-inline-css">img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}</style>
<style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}</style>
<style id="global-styles-inline-css">body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}</style>
<link rel="stylesheet" id="hello-elementor-css" href="/wp-content/themes/hello-elementor/style.min.css?ver=3.0.1" media="all">
<link rel="stylesheet" id="hello-elementor-theme-style-css" href="/wp-content/themes/hello-elementor/theme.min.css?ver=3.0.1" media="all">
<link rel="stylesheet" id="hello-elementor-header-footer-css" href="/wp-content/themes/hello-elementor/header-footer.min.css?ver=3.0.1" media="all">
<link rel="stylesheet" id="elementor-frontend-css" href="/wp-content/plugins/elementor/assets/css/frontend-lite.min.css?ver=3.20.1" media="all">
<link rel="stylesheet" id="elementor-post-8-css" href="/wp-content/uploads/elementor/css/post-8.css?ver=1710677434" media="all">
<link rel="stylesheet" id="elementor-lazyload-css" href="/wp-content/plugins/elementor/assets/css/modules/lazyload/frontend.min.css?ver=3.20.1" media="all">
<link rel="stylesheet" id="swiper-css" href="/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5" media="all">
<link rel="stylesheet" id="elementor-pro-css" href="/wp-content/plugins/elementor-pro/assets/css/frontend-lite.min.css?ver=3.19.0" media="all">
<link rel="stylesheet" id="elementor-global-css" href="/wp-content/uploads/elementor/css/global.css?ver=1710677434" media="all">
<link rel="stylesheet" id="elementor-post-17-css" href="/wp-content/uploads/elementor/css/post-17.css?ver=1710810776" media="all">
<link rel="stylesheet" id="google-fonts-1-css" href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CInter%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7COutfit%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.4.3" media="all">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<link rel="https://api.w.org/" href="/wp-json/">
<link rel="alternate" type="application/json" href="/wp-json/wp/v2/pages/17">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="/xmlrpc.php?rsd">
<meta name="generator" content="WordPress 6.4.3">
<link rel="canonical" href="/">
<link rel="shortlink" href="/">
<link rel="alternate" type="application/json+oembed" href="/wp-json/oembed/1.0/embed?url=%2F">
<link rel="alternate" type="text/xml+oembed" href="/wp-json/oembed/1.0/embed?url=%2F#038;format=xml">
<meta name="generator" content="Elementor 3.20.1; features: e_optimized_assets_loading, e_optimized_css_loading, e_font_icon_svg, additional_custom_breakpoints, block_editor_assets_optimize, e_image_loading_optimization; settings: css_print_method-external, google_font-enabled, font_display-swap">
<link rel="icon" href="/wp-content/uploads/2024/03/cropped-etherium-coin-32x32.png" sizes="32x32">
<link rel="icon" href="/wp-content/uploads/2024/03/cropped-etherium-coin-192x192.png" sizes="192x192">
<link rel="apple-touch-icon" href="/wp-content/uploads/2024/03/cropped-etherium-coin-180x180.png">
<meta name="msapplication-TileImage" content="/wp-content/uploads/2024/03/cropped-etherium-coin-270x270.png">
<style id="wp-custom-css">body{
background-color: black;
}
.current-menu-item a {
font-weight:800 !important;
}
.menu-item a:hover {
font-weight:800 !important;
}
.blue{
background: linear-gradient(90deg, #0E56F8 -7.84%, #28EAEA 109.97%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
</head>
<body class="home page-template page-template-elementor_canvas page page-id-17 wp-custom-logo e-lazyload elementor-default elementor-template-canvas elementor-kit-8 elementor-page elementor-page-17">
<div data-elementor-type="wp-page" data-elementor-id="17" class="elementor elementor-17" data-elementor-post-type="page">
<div class="elementor-element elementor-element-e62ce13 e-flex e-con-boxed elementor-invisible e-con e-parent" data-id="e62ce13" data-element_type="container" data-settings="{"animation":"fadeIn"}" data-core-v316-plus="true">
<div class="e-con-inner">
<div class="elementor-element elementor-element-89855a6 elementor-widget elementor-widget-theme-site-logo elementor-widget-image" data-id="89855a6" data-element_type="widget" data-widget_type="theme-site-logo.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.20.0 - 13-03-2024 */
.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=".svg"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style> <a>
<img decoding="async" width="145" height="33" src="/wp-content/uploads/2024/03/logo.png" class="attachment-full size-full wp-image-9" alt=""> </a>
</div>
</div>
<div class="elementor-element elementor-element-6aec6c8 elementor-nav-menu--stretch elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="6aec6c8" data-element_type="widget" data-settings="{"full_width":"stretch","layout":"horizontal","submenu_icon":{"value":"<svg class=\"e-font-icon-svg e-fas-caret-down\" viewBox=\"0 0 320 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\"><\/path><\/svg>","library":"fa-solid"},"toggle":"burger"}" data-widget_type="nav-menu.default">
<div class="elementor-widget-container">
<link rel="stylesheet" href="/wp-content/plugins/elementor-pro/assets/css/widget-nav-menu.min.css"> <nav class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-underline e--animation-fade">
<ul id="menu-1-6aec6c8" class="elementor-nav-menu">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13"><a href="#" class="elementor-item elementor-item-anchor">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14"><a href="#" class="elementor-item elementor-item-anchor">About Us</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="#" class="elementor-item elementor-item-anchor">Featured</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="#" class="elementor-item elementor-item-anchor">Contact Us</a></li>
</ul> </nav>
<div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false">
<svg aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open e-font-icon-svg e-eicon-menu-bar" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M104 333H896C929 333 958 304 958 271S929 208 896 208H104C71 208 42 237 42 271S71 333 104 333ZM104 583H896C929 583 958 554 958 521S929 458 896 458H104C71 458 42 487 42 521S71 583 104 583ZM104 833H896C929 833 958 804 958 771S929 708 896 708H104C71 708 42 737 42 771S71 833 104 833Z"></path></svg><svg aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close e-font-icon-svg e-eicon-close" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M742 167L500 408 258 167C246 154 233 150 217 150 196 150 179 158 167 167 154 179 150 196 150 212 150 229 154 242 171 254L408 500 167 742C138 771 138 800 167 829 196 858 225 858 254 829L496 587 738 829C750 842 767 846 783 846 800 846 817 842 829 829 842 817 846 804 846 783 846 767 842 750 829 737L588 500 833 258C863 229 863 200 833 171 804 137 775 137 742 167Z"></path></svg> <span class="elementor-screen-only">Menu</span>
</div>
<nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true">
<ul id="menu-2-6aec6c8" class="elementor-nav-menu">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">About Us</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Featured</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Contact Us</a></li>
</ul> </nav>
</div>
</div>
<div class="elementor-element elementor-element-7f08254 elementor-widget__width-initial elementor-align-center elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-button" data-id="7f08254" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-right">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-arrow-right" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"></path></svg> </span>
<span class="elementor-button-text">Contact Us</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-58fffd3 e-con-full e-flex e-con e-parent" data-id="58fffd3" data-element_type="container" data-core-v316-plus="true">
<div class="elementor-element elementor-element-f413bab e-con-full e-flex elementor-invisible e-con e-child" data-id="f413bab" data-element_type="container" data-settings="{"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_speed":{"unit":"px","size":2.5,"sizes":[]},"animation":"fadeInLeft","motion_fx_devices":["desktop"],"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":0,"end":100}}}">
<div class="elementor-element elementor-element-69ae7c3 elementor-widget elementor-widget-image" data-id="69ae7c3" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" src="/wp-content/uploads/elementor/thumbs/etherium-coin-qlc26gi8p5h7i38w4x5h1aqkwnvbomfdwhr1bx1h1e.png" title="etherium-coin" alt="etherium-coin" loading="lazy"> </div>
</div>
</div>
<div class="elementor-element elementor-element-85c0285 e-con-full e-flex elementor-invisible e-con e-child" data-id="85c0285" data-element_type="container" data-settings="{"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_speed":{"unit":"px","size":2.5,"sizes":[]},"animation":"fadeInRight","motion_fx_devices":["desktop"],"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":0,"end":100}}}">
<div class="elementor-element elementor-element-48c9a50 elementor-widget elementor-widget-heading" data-id="48c9a50" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.20.0 - 13-03-2024 */
.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>
<h2 class="elementor-heading-title elementor-size-default">Invest Crypto <br>Now, to <span class="blue">Get Rich</span> <br>In The Future</h2> </div>
</div>
<div class="elementor-element elementor-element-1d94e64 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="1d94e64" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">Li Europan lingues es membres del sam familie. Lor separat existentie es<br> un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.<br> Li lingues differe solmen </p> </div>
</div>
<div class="elementor-element elementor-element-e75646a elementor-widget__width-initial elementor-align-center elementor-widget elementor-widget-button" data-id="e75646a" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Get Started</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-65de510 e-con-full e-flex e-con e-parent" data-id="65de510" data-element_type="container" data-core-v316-plus="true">
<div class="elementor-element elementor-element-a094b2c e-con-full e-flex e-con e-child" data-id="a094b2c" data-element_type="container" data-settings="{"motion_fx_motion_fx_scrolling":"yes","motion_fx_opacity_effect":"yes","motion_fx_opacity_range":{"unit":"%","size":"","sizes":{"start":20,"end":65}},"motion_fx_devices":["desktop"],"motion_fx_opacity_direction":"out-in","motion_fx_opacity_level":{"unit":"px","size":10,"sizes":[]}}">
<div class="elementor-element elementor-element-a257855 elementor-pagination-type-bullets elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-n-carousel" data-id="a257855" data-element_type="widget" data-settings="{"carousel_items":[{"slide_title":"Slide #1","_id":"1da766b"},{"slide_title":"Slide #2","_id":"4bf387b"},{"slide_title":"Slide #3","_id":"1e31169"},{"_id":"7d14c26","slide_title":"Slide #4"}],"slides_to_show":"4","slides_to_show_tablet":"2","slides_to_show_mobile":"1","speed":500,"arrows":"yes","pagination":"bullets","image_spacing_custom":{"unit":"px","size":10,"sizes":[]},"image_spacing_custom_tablet":{"unit":"px","size":"","sizes":[]},"image_spacing_custom_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="nested-carousel.default">
<div class="elementor-widget-container">
<link rel="stylesheet" href="/wp-content/plugins/elementor-pro/assets/css/widget-nested-carousel.min.css"> <div class="e-n-carousel swiper" dir="ltr">
<div class="swiper-wrapper" aria-live="polite">
<div class="swiper-slide" data-slide="1" role="group" aria-roledescription="slide" aria-label="1 of 4">
<div class="elementor-element elementor-element-080040d e-flex e-con-boxed e-con e-child" data-id="080040d" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-a8004d6 e-flex e-con-boxed e-con e-child" data-id="a8004d6" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-e40b6fe elementor-widget elementor-widget-heading" data-id="e40b6fe" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">15+</h2> </div>
</div>
<div class="elementor-element elementor-element-c518b82 elementor-widget elementor-widget-heading" data-id="c518b82" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Years of <br>Experience</h2> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide" data-slide="2" role="group" aria-roledescription="slide" aria-label="2 of 4">
<div class="elementor-element elementor-element-cbc50ec e-flex e-con-boxed e-con e-child" data-id="cbc50ec" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-60d86b6 e-flex e-con-boxed e-con e-child" data-id="60d86b6" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-699c5ca elementor-widget elementor-widget-heading" data-id="699c5ca" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">1M+</h2> </div>
</div>
<div class="elementor-element elementor-element-bc0ef3e elementor-widget elementor-widget-heading" data-id="bc0ef3e" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Members<br> Join Us</h2> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide" data-slide="3" role="group" aria-roledescription="slide" aria-label="3 of 4">
<div class="elementor-element elementor-element-8ca04a9 e-flex e-con-boxed e-con e-child" data-id="8ca04a9" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-199d416 e-flex e-con-boxed e-con e-child" data-id="199d416" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-48244b5 elementor-widget elementor-widget-heading" data-id="48244b5" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">5</h2> </div>
</div>
<div class="elementor-element elementor-element-beee8b9 elementor-widget elementor-widget-heading" data-id="beee8b9" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Big Winn<br> Awards</h2> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide" data-slide="4" role="group" aria-roledescription="slide" aria-label="4 of 4">
<div class="elementor-element elementor-element-593f29a e-flex e-con-boxed e-con e-child" data-id="593f29a" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-8856d7a e-flex e-con-boxed e-con e-child" data-id="8856d7a" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-c460198 elementor-widget elementor-widget-heading" data-id="c460198" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">5B+</h2> </div>
</div>
<div class="elementor-element elementor-element-6efced9 elementor-widget elementor-widget-heading" data-id="6efced9" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Total Coin<br> Invest</h2> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-swiper-button elementor-swiper-button-prev" role="button" tabindex="0">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-chevron-left" viewbox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"></path></svg> </div>
<div class="elementor-swiper-button elementor-swiper-button-next" role="button" tabindex="0">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-chevron-right" viewbox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"></path></svg> </div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-14d9753 e-con-full e-flex e-con e-parent" data-id="14d9753" data-element_type="container" data-core-v316-plus="true">
<div class="elementor-element elementor-element-103684d e-con-full e-flex e-con e-child" data-id="103684d" data-element_type="container" data-settings="{"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":1,"sizes":[]},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":0,"end":56}},"motion_fx_devices":["desktop"]}">
<div class="elementor-element elementor-element-280f62e e-con-full e-flex e-con e-child" data-id="280f62e" data-element_type="container">
<div class="elementor-element elementor-element-3404c55 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="3404c55" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">The <span class="blue">Best Service</span> <br>We Provide</h2> </div>
</div>
<div class="elementor-element elementor-element-c82a6fa elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="c82a6fa" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">Li Europan lingues es membres del sam familie. Lor <br>separat existentie es un myth.</p> </div>
</div>
</div>
<div class="elementor-element elementor-element-0eb927c elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-child" data-id="0eb927c" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-38528c7 elementor-align-center elementor-widget elementor-widget-button" data-id="38528c7" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-left">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-arrow-left" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"></path></svg> </span>
<span class="elementor-button-text"></span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-4fd5dd3 elementor-align-center elementor-widget elementor-widget-button" data-id="4fd5dd3" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-left">
<svg aria-hidden="true" class="e-font-icon-svg e-fas-arrow-right" viewbox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"></path></svg> </span>
<span class="elementor-button-text"></span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-0a7433f elementor-pagination-type-bullets elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-n-carousel" data-id="0a7433f" data-element_type="widget" data-settings="{"carousel_items":[{"slide_title":"Slide #1","_id":"9155170"},{"slide_title":"Slide #2","_id":"749786e"},{"slide_title":"Slide #3","_id":"f263a02"},{"_id":"c3b34a8","slide_title":"Slide #4"}],"slides_to_show":"4","image_spacing_custom_tablet":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateX_speed":{"unit":"px","size":1,"sizes":[]},"motion_fx_translateX_direction":"negative","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":0,"end":50}},"motion_fx_devices":["desktop"],"slides_to_show_tablet":"2","slides_to_show_mobile":"1","speed":500,"arrows":"yes","pagination":"bullets","image_spacing_custom":{"unit":"px","size":10,"sizes":[]},"image_spacing_custom_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="nested-carousel.default">
<div class="elementor-widget-container">
<div class="e-n-carousel swiper" dir="ltr">
<div class="swiper-wrapper" aria-live="polite">
<div class="swiper-slide" data-slide="1" role="group" aria-roledescription="slide" aria-label="1 of 4">
<div class="elementor-element elementor-element-f5e490f e-flex e-con-boxed e-con e-child" data-id="f5e490f" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-12d9577 e-flex e-con-boxed e-con e-child" data-id="12d9577" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-5ceda83 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="5ceda83" data-element_type="widget" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<link rel="stylesheet" href="/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css"> <div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-">
<svg xmlns="http://www.w3.org/2000/svg" width="74" height="74" viewbox="0 0 74 74" fill="none"><g id="Icon"><rect x="1" y="1" width="72" height="72" rx="36" fill="#1E1D1D"></rect><rect x="1" y="1" width="72" height="72" rx="36" stroke="url(#paint0_linear_15813_7703)" stroke-width="1.5"></rect><g id="icon"><path id="Vector" d="M55.4305 38.4219C55.2185 38.4212 55.0141 38.5006 54.8581 38.6441C54.7021 38.7876 54.606 38.9847 54.589 39.196V51.4144C54.5936 51.5767 54.5646 51.7383 54.5038 51.8889C54.443 52.0395 54.3517 52.1759 54.2356 52.2895C54.1397 52.3952 54.0228 52.4797 53.8924 52.5376C53.762 52.5956 53.621 52.6257 53.4783 52.6261H51.2231V41.7205C51.2231 41.4973 51.1344 41.2833 50.9766 41.1255C50.8188 40.9677 50.6048 40.879 50.3816 40.879C50.1584 40.879 49.9444 40.9677 49.7866 41.1255C49.6288 41.2833 49.5401 41.4973 49.5401 41.7205V52.6598H24.2957V41.7205C24.2957 41.4973 24.207 41.2833 24.0492 41.1255C23.8914 40.9677 23.6774 40.879 23.4542 40.879C23.231 40.879 23.017 40.9677 22.8592 41.1255C22.7014 41.2833 22.6127 41.4973 22.6127 41.7205V52.6598H20.3239C20.1674 52.6471 20.015 52.6034 19.8757 52.531C19.7364 52.4587 19.6129 52.3592 19.5126 52.2385C19.4122 52.1178 19.337 51.9782 19.2914 51.828C19.2457 51.6778 19.2306 51.52 19.2468 51.3639V39.4148C19.2468 39.1917 19.1581 38.9776 19.0003 38.8198C18.8425 38.662 18.6285 38.5733 18.4053 38.5733C18.1835 38.5777 17.9719 38.6677 17.8151 38.8246C17.6582 38.9815 17.5681 39.193 17.5638 39.4148V51.347C17.5458 51.7242 17.6025 52.1012 17.7309 52.4564C17.8592 52.8115 18.0566 53.1377 18.3116 53.4162C18.5666 53.6947 18.8742 53.9199 19.2167 54.0789C19.5592 54.2379 19.9298 54.3276 20.3071 54.3427H23.1176C23.2284 54.368 23.3434 54.368 23.4542 54.3427C23.5593 54.3678 23.6688 54.3678 23.774 54.3427H53.4278C53.7998 54.3427 54.168 54.2666 54.5095 54.119C54.851 53.9714 55.1587 53.7554 55.4137 53.4844C55.9522 52.9489 56.2602 52.2242 56.272 51.4649V39.196C56.255 38.9847 56.1589 38.7876 56.0029 38.6441C55.8469 38.5006 55.6425 38.4212 55.4305 38.4219Z" fill="#35F1FA"></path><path id="Vector_2" d="M53.5106 25.7349H20.4067C19.6715 25.7212 18.9605 25.9981 18.428 26.5053C17.8955 27.0126 17.5846 27.7093 17.5625 28.4444V35.3277C17.5598 35.8776 17.7403 36.4127 18.0755 36.8485C18.4108 37.2843 18.8817 37.596 19.4138 37.7344L32.7092 41.4032C32.6843 41.5027 32.6843 41.6067 32.7092 41.7062V46.7551C32.7092 46.9782 32.7979 47.1923 32.9557 47.3501C33.1135 47.5079 33.3275 47.5966 33.5507 47.5966H40.2825C40.5057 47.5966 40.7198 47.5079 40.8776 47.3501C41.0354 47.1923 41.124 46.9782 41.124 46.7551V41.7062C41.1414 41.6286 41.1414 41.5481 41.124 41.4706L54.5877 37.8522C55.0856 37.6789 55.5162 37.3531 55.8184 36.921C56.1205 36.489 56.2788 35.9727 56.2707 35.4456V28.5622C56.2752 27.8226 55.988 27.111 55.4714 26.5817C54.9547 26.0524 54.2502 25.7481 53.5106 25.7349ZM39.4411 45.9304H34.3922V41.8576L36.7988 42.514H37.0176H37.2364L39.4411 41.9081V45.9304ZM54.5877 35.4456C54.586 35.6233 54.5257 35.7954 54.4161 35.9354C54.3066 36.0754 54.154 36.1753 53.9819 36.2197L37.0176 40.8815L19.8514 36.1692C19.6707 36.1229 19.5116 36.0154 19.4012 35.8651C19.2908 35.7148 19.2358 35.5308 19.2455 35.3446V28.4444C19.267 28.1587 19.3981 27.8924 19.6114 27.7011C19.8247 27.5098 20.1036 27.4083 20.3899 27.4178H53.5106C53.8068 27.4222 54.0893 27.543 54.2971 27.754C54.5049 27.965 54.6214 28.2492 54.6214 28.5454L54.5877 35.4456Z" fill="#35F1FA"></path><path id="Vector_3" d="M30.1852 24.436C30.4084 24.436 30.6224 24.3473 30.7802 24.1895C30.9381 24.0317 31.0267 23.8177 31.0267 23.5945C31.0312 22.8208 31.3416 22.0802 31.8903 21.5347C32.439 20.9892 33.1813 20.683 33.9551 20.683H39.8791C40.6528 20.683 41.3951 20.9892 41.9438 21.5347C42.4925 22.0802 42.803 22.8208 42.8075 23.5945C42.8075 23.8177 42.8961 24.0317 43.0539 24.1895C43.2117 24.3473 43.4258 24.436 43.6489 24.436C43.8721 24.436 44.0861 24.3473 44.244 24.1895C44.4018 24.0317 44.4904 23.8177 44.4904 23.5945C44.486 22.3744 43.9982 21.2058 43.1339 20.3447C42.2696 19.4835 41.0992 19 39.8791 19H33.9551C32.735 19 31.5646 19.4835 30.7003 20.3447C29.836 21.2058 29.3482 22.3744 29.3438 23.5945C29.3437 23.8177 29.4324 24.0317 29.5902 24.1895C29.748 24.3473 29.9621 24.436 30.1852 24.436Z" fill="#35F1FA"></path></g></g><defs><lineargradient id="paint0_linear_15813_7703" x1="-4.64225" y1="37" x2="80.1755" y2="37" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient></defs></svg> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>
Invest Payment Make Easy </span>
</h3>
<p class="elementor-icon-box-description">
Li Europan lingues es membres del sam familie. Lor separat existentie es un myth.
Li Europan lingues es membres del sam </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide" data-slide="2" role="group" aria-roledescription="slide" aria-label="2 of 4">
<div class="elementor-element elementor-element-8034b8f e-flex e-con-boxed e-con e-child" data-id="8034b8f" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-bc211ac e-flex e-con-boxed e-con e-child" data-id="bc211ac" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-9fb3918 elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="9fb3918" data-element_type="widget" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-">
<svg xmlns="http://www.w3.org/2000/svg" width="74" height="74" viewbox="0 0 74 74" fill="none"><g id="Icon"><rect x="1" y="1" width="72" height="72" rx="36" fill="#161A1F"></rect><rect x="1" y="1" width="72" height="72" rx="36" stroke="url(#paint0_linear_15813_7716)" stroke-width="1.5"></rect><g id="Icon_2"><path id="Vector" d="M54.7944 20.0011H34.1132C33.9022 20.0011 33.6999 20.0849 33.5507 20.234C33.4016 20.3832 33.3177 20.5855 33.3177 20.7965V47.8411C33.3177 48.0521 33.4016 48.2544 33.5507 48.4036C33.6999 48.5528 33.9022 48.6366 34.1132 48.6366H35.4177C35.6982 49.2802 35.7815 49.9927 35.6569 50.6837C35.5323 51.3747 35.2054 52.0131 34.7177 52.5183C34.3538 52.8518 33.9229 53.1038 33.4537 53.2575C32.9846 53.4111 32.4881 53.4628 31.9973 53.4091C31.3049 53.3492 30.6512 53.0643 30.136 52.5978C29.6597 52.0274 29.3718 51.3234 29.312 50.5827C29.2522 49.842 29.4234 49.101 29.8019 48.4616C29.8999 48.3891 29.9806 48.2959 30.0384 48.1887C30.0961 48.0814 30.1295 47.9628 30.136 47.8411V42.2731C30.1361 42.0939 30.0745 41.9201 29.9615 41.7811C29.8485 41.642 29.691 41.5461 29.5156 41.5095L27.4316 40.9527C25.6657 40.5391 25.3634 39.3618 25.3634 36.7687V31.9962C25.3634 29.4826 25.6816 28.194 27.527 27.7963L29.5156 27.3667C29.7052 27.3283 29.8737 27.2206 29.9884 27.0648C30.1031 26.909 30.1557 26.7161 30.136 26.5236V20.7965C30.136 20.5855 30.0522 20.3832 29.9031 20.234C29.7539 20.0849 29.5516 20.0011 29.3406 20.0011H25.1884C23.5847 19.9711 22.0342 20.5764 20.8749 21.685C19.7157 22.7936 19.0417 24.3156 19 25.9191V42.7186C19.0417 44.322 19.7157 45.844 20.8749 46.9526C22.0342 48.0612 23.5847 48.6665 25.1884 48.6366H28.0361C27.7125 49.498 27.6363 50.4328 27.8162 51.3352C27.9962 52.2377 28.425 53.0718 29.0542 53.7432C29.824 54.4396 30.7915 54.8788 31.8223 55H32.3473C33.6256 54.9915 34.8555 54.5098 35.7995 53.6478C36.4513 53.0097 36.916 52.2054 37.1432 51.322C37.3703 50.4386 37.3513 49.5099 37.0881 48.6366H54.7944C55.0053 48.6366 55.2077 48.5528 55.3568 48.4036C55.506 48.2544 55.5898 48.0521 55.5898 47.8411V20.7965C55.5898 20.5855 55.506 20.3832 55.3568 20.234C55.2077 20.0849 55.0053 20.0011 54.7944 20.0011ZM20.5909 42.7186V25.9191C20.6283 24.7361 21.1333 23.6162 21.9951 22.8051C22.857 21.9939 24.0054 21.5576 25.1884 21.5919H28.5452V25.8872L27.177 26.1895C23.7726 26.9213 23.7726 30.0712 23.7726 31.9325V36.7051C23.7726 38.6778 23.7726 41.6686 27.0816 42.4322L28.5452 42.7822V47.0457H25.1884C24.0054 47.08 22.857 46.6437 21.9951 45.8325C21.1333 45.0214 20.6283 43.9015 20.5909 42.7186ZM53.9989 47.0457H34.9086V21.5919H53.9989V47.0457Z" fill="#35F1FA"></path><path id="Vector_2" d="M38.8853 31.1369H50.0213C50.2323 31.1369 50.4346 31.0531 50.5838 30.9039C50.7329 30.7547 50.8167 30.5524 50.8167 30.3415V25.5689C50.8167 25.3579 50.7329 25.1556 50.5838 25.0064C50.4346 24.8572 50.2323 24.7734 50.0213 24.7734H38.8853C38.6743 24.7734 38.472 24.8572 38.3228 25.0064C38.1736 25.1556 38.0898 25.3579 38.0898 25.5689V30.3415C38.0898 30.5524 38.1736 30.7547 38.3228 30.9039C38.472 31.0531 38.6743 31.1369 38.8853 31.1369ZM39.6807 26.3643H49.2259V29.546H39.6807V26.3643Z" fill="#35F1FA"></path><path id="Vector_3" d="M38.8853 34.3174H40.4761C40.6871 34.3174 40.8894 34.2336 41.0386 34.0844C41.1878 33.9353 41.2716 33.733 41.2716 33.522C41.2716 33.311 41.1878 33.1087 41.0386 32.9595C40.8894 32.8104 40.6871 32.7266 40.4761 32.7266H38.8853C38.6743 32.7266 38.472 32.8104 38.3228 32.9595C38.1736 33.1087 38.0898 33.311 38.0898 33.522C38.0898 33.733 38.1736 33.9353 38.3228 34.0844C38.472 34.2336 38.6743 34.3174 38.8853 34.3174Z" fill="#35F1FA"></path><path id="Vector_4" d="M45.2496 32.7266H43.6587C43.4478 32.7266 43.2454 32.8104 43.0963 32.9595C42.9471 33.1087 42.8633 33.311 42.8633 33.522C42.8633 33.733 42.9471 33.9353 43.0963 34.0844C43.2454 34.2336 43.4478 34.3174 43.6587 34.3174H45.2496C45.4605 34.3174 45.6629 34.2336 45.812 34.0844C45.9612 33.9353 46.045 33.733 46.045 33.522C46.045 33.311 45.9612 33.1087 45.812 32.9595C45.6629 32.8104 45.4605 32.7266 45.2496 32.7266Z" fill="#35F1FA"></path><path id="Vector_5" d="M50.023 32.7266H48.4321C48.2212 32.7266 48.0189 32.8104 47.8697 32.9595C47.7205 33.1087 47.6367 33.311 47.6367 33.522C47.6367 33.733 47.7205 33.9353 47.8697 34.0844C48.0189 34.2336 48.2212 34.3174 48.4321 34.3174H50.023C50.234 34.3174 50.4363 34.2336 50.5855 34.0844C50.7346 33.9353 50.8184 33.733 50.8184 33.522C50.8184 33.311 50.7346 33.1087 50.5855 32.9595C50.4363 32.8104 50.234 32.7266 50.023 32.7266Z" fill="#35F1FA"></path><path id="Vector_6" d="M38.8853 39.0909H40.4761C40.6871 39.0909 40.8894 39.0071 41.0386 38.8579C41.1878 38.7087 41.2716 38.5064 41.2716 38.2954C41.2716 38.0845 41.1878 37.8821 41.0386 37.733C40.8894 37.5838 40.6871 37.5 40.4761 37.5H38.8853C38.6743 37.5 38.472 37.5838 38.3228 37.733C38.1736 37.8821 38.0898 38.0845 38.0898 38.2954C38.0898 38.5064 38.1736 38.7087 38.3228 38.8579C38.472 39.0071 38.6743 39.0909 38.8853 39.0909Z" fill="#35F1FA"></path><path id="Vector_7" d="M45.2496 37.5H43.6587C43.4478 37.5 43.2454 37.5838 43.0963 37.733C42.9471 37.8821 42.8633 38.0845 42.8633 38.2954C42.8633 38.5064 42.9471 38.7087 43.0963 38.8579C43.2454 39.0071 43.4478 39.0909 43.6587 39.0909H45.2496C45.4605 39.0909 45.6629 39.0071 45.812 38.8579C45.9612 38.7087 46.045 38.5064 46.045 38.2954C46.045 38.0845 45.9612 37.8821 45.812 37.733C45.6629 37.5838 45.4605 37.5 45.2496 37.5Z" fill="#35F1FA"></path><path id="Vector_8" d="M50.023 37.5H48.4321C48.2212 37.5 48.0189 37.5838 47.8697 37.733C47.7205 37.8821 47.6367 38.0845 47.6367 38.2954C47.6367 38.5064 47.7205 38.7087 47.8697 38.8579C48.0189 39.0071 48.2212 39.0909 48.4321 39.0909H50.023C50.234 39.0909 50.4363 39.0071 50.5855 38.8579C50.7346 38.7087 50.8184 38.5064 50.8184 38.2954C50.8184 38.0845 50.7346 37.8821 50.5855 37.733C50.4363 37.5838 50.234 37.5 50.023 37.5Z" fill="#35F1FA"></path><path id="Vector_9" d="M38.8853 43.8643H40.4761C40.6871 43.8643 40.8894 43.7805 41.0386 43.6313C41.1878 43.4822 41.2716 43.2798 41.2716 43.0689C41.2716 42.8579 41.1878 42.6556 41.0386 42.5064C40.8894 42.3572 40.6871 42.2734 40.4761 42.2734H38.8853C38.6743 42.2734 38.472 42.3572 38.3228 42.5064C38.1736 42.6556 38.0898 42.8579 38.0898 43.0689C38.0898 43.2798 38.1736 43.4822 38.3228 43.6313C38.472 43.7805 38.6743 43.8643 38.8853 43.8643Z" fill="#35F1FA"></path><path id="Vector_10" d="M45.2496 42.2734H43.6587C43.4478 42.2734 43.2454 42.3572 43.0963 42.5064C42.9471 42.6556 42.8633 42.8579 42.8633 43.0689C42.8633 43.2798 42.9471 43.4822 43.0963 43.6313C43.2454 43.7805 43.4478 43.8643 43.6587 43.8643H45.2496C45.4605 43.8643 45.6629 43.7805 45.812 43.6313C45.9612 43.4822 46.045 43.2798 46.045 43.0689C46.045 42.8579 45.9612 42.6556 45.812 42.5064C45.6629 42.3572 45.4605 42.2734 45.2496 42.2734Z" fill="#35F1FA"></path><path id="Vector_11" d="M50.023 42.2734H48.4321C48.2212 42.2734 48.0189 42.3572 47.8697 42.5064C47.7205 42.6556 47.6367 42.8579 47.6367 43.0689C47.6367 43.2798 47.7205 43.4822 47.8697 43.6313C48.0189 43.7805 48.2212 43.8643 48.4321 43.8643H50.023C50.234 43.8643 50.4363 43.7805 50.5855 43.6313C50.7346 43.4822 50.8184 43.2798 50.8184 43.0689C50.8184 42.8579 50.7346 42.6556 50.5855 42.5064C50.4363 42.3572 50.234 42.2734 50.023 42.2734Z" fill="#35F1FA"></path></g></g><defs><lineargradient id="paint0_linear_15813_7716" x1="-4.64225" y1="37" x2="80.1755" y2="37" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient></defs></svg> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>
Lifetime Free Transaction </span>
</h3>
<p class="elementor-icon-box-description">
Li Europan lingues es membres del sam familie. Lor separat existentie es un myth.
Li Europan lingues es membres del sam </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide" data-slide="3" role="group" aria-roledescription="slide" aria-label="3 of 4">
<div class="elementor-element elementor-element-93f569c e-flex e-con-boxed e-con e-child" data-id="93f569c" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-a8a08a2 e-flex e-con-boxed e-con e-child" data-id="a8a08a2" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-5346cfb elementor-widget__width-initial elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="5346cfb" data-element_type="widget" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-">
<svg xmlns="http://www.w3.org/2000/svg" width="74" height="74" viewbox="0 0 74 74" fill="none"><g id="Icon"><rect x="1" y="1" width="72" height="72" rx="36" fill="#1E1D1D"></rect><rect x="1" y="1" width="72" height="72" rx="36" stroke="url(#paint0_linear_15813_7725)" stroke-width="1.5"></rect><g id="icon"><path id="Vector" d="M53.2391 53.4783H20.5217V20.7609C20.5217 20.5591 20.4416 20.3655 20.2989 20.2229C20.1562 20.0802 19.9627 20 19.7609 20C19.5591 20 19.3655 20.0802 19.2229 20.2229C19.0802 20.3655 19 20.5591 19 20.7609V54.2391C19 54.4409 19.0802 54.6345 19.2229 54.7771C19.3655 54.9198 19.5591 55 19.7609 55H53.2391C53.4409 55 53.6345 54.9198 53.7771 54.7771C53.9198 54.6345 54 54.4409 54 54.2391C54 54.0373 53.9198 53.8438 53.7771 53.7011C53.6345 53.5584 53.4409 53.4783 53.2391 53.4783Z" fill="#35F1FA"></path><path id="Vector_2" d="M24.3268 41.3062C24.9322 41.3062 25.5127 41.0657 25.9408 40.6376C26.3689 40.2096 26.6094 39.629 26.6094 39.0236C26.6096 38.6133 26.4977 38.2108 26.2858 37.8595C26.074 37.5082 25.7702 37.2214 25.4072 37.0301L28.6181 30.654H28.892H29.0898L35.4355 44.6388C35.0769 44.828 34.7752 45.1094 34.5614 45.4538C34.3476 45.7983 34.2294 46.1935 34.219 46.5988C34.2085 47.0041 34.3062 47.4049 34.502 47.7599C34.6978 48.1149 34.9846 48.4114 35.333 48.6188C35.6813 48.8262 36.0787 48.9371 36.4841 48.9401C36.8895 48.9431 37.2884 48.838 37.6397 48.6357C37.9911 48.4334 38.2822 48.1412 38.4832 47.7891C38.6842 47.437 38.7878 47.0377 38.7833 46.6323C38.7835 46.222 38.6716 45.8195 38.4597 45.4682C38.2479 45.1169 37.9441 44.8301 37.5811 44.6388L40.792 38.2627H41.0659C41.6635 38.2628 42.2372 38.0286 42.664 37.6104C43.0908 37.1921 43.3366 36.6232 43.3485 36.0258L49.6637 33.9106C49.8383 34.2806 50.1091 34.5969 50.4478 34.8263C50.7865 35.0558 51.1806 35.1901 51.589 35.215C51.9974 35.2399 52.4049 35.1546 52.769 34.9681C53.1331 34.7815 53.4404 34.5005 53.6587 34.1545C53.877 33.8085 53.9982 33.4101 54.0098 33.0012C54.0214 32.5922 53.9228 32.1877 53.7245 31.8299C53.5261 31.4721 53.2352 31.1741 52.8822 30.9673C52.5293 30.7604 52.1272 30.6522 51.7181 30.654C51.2137 30.6544 50.7236 30.8218 50.3244 31.1302C49.9252 31.4385 49.6393 31.8704 49.5115 32.3584L42.8616 34.5801C42.6617 34.3543 42.4194 34.1701 42.1483 34.0379C41.8773 33.9058 41.5829 33.8283 41.2819 33.8099C40.9809 33.7915 40.6792 33.8326 40.3941 33.9308C40.109 34.0291 39.8461 34.1825 39.6202 34.3823C39.3944 34.5821 39.2102 34.8245 39.078 35.0955C38.9459 35.3666 38.8684 35.661 38.85 35.962C38.8317 36.263 38.8728 36.5646 38.971 36.8497C39.0692 37.1348 39.2226 37.3978 39.4224 37.6236L36.5311 43.4062L30.4442 30.0758C30.6762 29.8569 30.8607 29.5926 30.9864 29.2995C31.112 29.0063 31.1761 28.6904 31.1746 28.3714C31.1847 27.9954 31.1018 27.6227 30.9331 27.2865C30.7645 26.9503 30.5153 26.6609 30.2079 26.4442C29.9004 26.2275 29.5442 26.0902 29.1708 26.0443C28.7975 25.9985 28.4186 26.0457 28.0679 26.1816C27.7172 26.3176 27.4055 26.5381 27.1605 26.8235C26.9156 27.109 26.745 27.4506 26.6639 27.8179C26.5828 28.1852 26.5937 28.5668 26.6957 28.9289C26.7977 29.291 26.9876 29.6222 27.2485 29.8932L23.8246 36.741C23.2192 36.8076 22.6651 37.1119 22.2841 37.5871C21.9031 38.0623 21.7265 38.6693 21.7931 39.2747C21.8597 39.8801 22.164 40.4342 22.6392 40.8152C23.1143 41.1962 23.7214 41.3728 24.3268 41.3062ZM36.5007 47.3932C36.3502 47.3932 36.2031 47.3485 36.078 47.2649C35.9528 47.1813 35.8553 47.0625 35.7977 46.9235C35.7401 46.7844 35.7251 46.6315 35.7544 46.4839C35.7838 46.3363 35.8563 46.2007 35.9627 46.0943C36.0691 45.9879 36.2046 45.9154 36.3522 45.886C36.4998 45.8567 36.6528 45.8718 36.7919 45.9293C36.9309 45.9869 37.0497 46.0845 37.1333 46.2096C37.2169 46.3347 37.2616 46.4818 37.2616 46.6323C37.2616 46.8341 37.1814 47.0276 37.0387 47.1703C36.896 47.313 36.7025 47.3932 36.5007 47.3932ZM51.7181 32.1758C51.8686 32.1758 52.0157 32.2204 52.1408 32.304C52.2659 32.3876 52.3634 32.5064 52.421 32.6455C52.4786 32.7845 52.4937 32.9375 52.4643 33.0851C52.435 33.2327 52.3625 33.3682 52.2561 33.4747C52.1497 33.5811 52.0141 33.6535 51.8665 33.6829C51.7189 33.7123 51.5659 33.6972 51.4269 33.6396C51.2879 33.582 51.169 33.4845 51.0854 33.3594C51.0018 33.2342 50.9572 33.0871 50.9572 32.9366C50.9572 32.7348 51.0374 32.5413 51.1801 32.3986C51.3227 32.2559 51.5163 32.1758 51.7181 32.1758ZM41.0659 35.2193C41.2164 35.2193 41.3635 35.2639 41.4886 35.3475C41.6137 35.4311 41.7113 35.5499 41.7689 35.6889C41.8264 35.828 41.8415 35.981 41.8121 36.1286C41.7828 36.2762 41.7103 36.4117 41.6039 36.5181C41.4975 36.6245 41.3619 36.697 41.2143 36.7264C41.0667 36.7557 40.9138 36.7407 40.7747 36.6831C40.6357 36.6255 40.5169 36.528 40.4333 36.4028C40.3497 36.2777 40.305 36.1306 40.305 35.9801C40.305 35.7783 40.3852 35.5848 40.5279 35.4421C40.6706 35.2994 40.8641 35.2193 41.0659 35.2193ZM28.892 27.6106C29.0425 27.6106 29.1896 27.6552 29.3147 27.7388C29.4398 27.8224 29.5373 27.9412 29.5949 28.0803C29.6525 28.2193 29.6676 28.3723 29.6382 28.5199C29.6089 28.6675 29.5364 28.803 29.43 28.9094C29.3236 29.0159 29.188 29.0883 29.0404 29.1177C28.8928 29.147 28.7398 29.132 28.6008 29.0744C28.4618 29.0168 28.343 28.9193 28.2593 28.7941C28.1757 28.669 28.1311 28.5219 28.1311 28.3714C28.1311 28.1696 28.2113 27.9761 28.354 27.8334C28.4967 27.6907 28.6902 27.6106 28.892 27.6106ZM24.3268 38.2627C24.4773 38.2627 24.6244 38.3074 24.7495 38.391C24.8746 38.4746 24.9721 38.5934 25.0297 38.7324C25.0873 38.8715 25.1024 39.0244 25.073 39.172C25.0437 39.3196 24.9712 39.4552 24.8648 39.5616C24.7584 39.668 24.6228 39.7405 24.4752 39.7698C24.3276 39.7992 24.1746 39.7841 24.0356 39.7266C23.8966 39.669 23.7777 39.5714 23.6941 39.4463C23.6105 39.3212 23.5659 39.1741 23.5659 39.0236C23.5659 38.8218 23.6461 38.6283 23.7888 38.4856C23.9314 38.3429 24.125 38.2627 24.3268 38.2627Z" fill="#35F1FA"></path></g></g><defs><lineargradient id="paint0_linear_15813_7725" x1="-4.64225" y1="37" x2="80.1755" y2="37" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient></defs></svg> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>
Protect the Identity Crypto </span>
</h3>
<p class="elementor-icon-box-description">
Li Europan lingues es membres del sam familie. Lor separat existentie es un myth.
Li Europan lingues es membres del sam </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide" data-slide="4" role="group" aria-roledescription="slide" aria-label="4 of 4">
<div class="elementor-element elementor-element-165ee84 e-flex e-con-boxed e-con e-child" data-id="165ee84" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-e4d0d90 e-flex e-con-boxed e-con e-child" data-id="e4d0d90" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-a7c52ae elementor-view-default elementor-position-top elementor-mobile-position-top elementor-widget elementor-widget-icon-box" data-id="a7c52ae" data-element_type="widget" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-">
<svg xmlns="http://www.w3.org/2000/svg" width="74" height="74" viewbox="0 0 74 74" fill="none"><g id="Icon"><rect x="1" y="1" width="72" height="72" rx="36" fill="#1E1D1D"></rect><rect x="1" y="1" width="72" height="72" rx="36" stroke="url(#paint0_linear_15813_7734)" stroke-width="1.5"></rect><path id="Vector" d="M50.9638 49.9952L49.1383 43.7582C48.6555 42.1519 47.6621 40.7467 46.3088 39.7557C44.9554 38.7647 43.3159 38.242 41.6387 38.2666H41.1672C42.3374 37.3773 43.2827 36.2259 43.9274 34.9049C44.572 33.584 44.8979 32.1303 44.8789 30.6606C44.8789 30.4172 44.8789 30.1738 44.8789 29.9304C44.9324 29.783 44.9324 29.6215 44.8789 29.474C44.796 28.6864 44.6066 27.9137 44.3161 27.177C44.9699 27.1579 45.5978 26.9165 46.0959 26.4925C46.7234 25.7919 47.0537 24.8746 47.0168 23.9348C46.9798 22.995 46.5787 22.1064 45.8981 21.4572C45.3361 20.703 44.5027 20.1971 43.5742 20.0467C42.6458 19.8962 41.6952 20.1129 40.9238 20.651C40.4328 21.0994 40.1196 21.7096 40.0415 22.37C38.9419 21.8171 37.7278 21.5305 36.497 21.5333C34.1847 21.6516 32.012 22.6757 30.4491 24.3838C28.8861 26.092 28.0586 28.3469 28.1456 30.6606C28.1224 32.1294 28.4449 33.5831 29.087 34.9043C29.7291 36.2256 30.6729 37.3773 31.8421 38.2666H31.3858C29.7221 38.261 28.101 38.7923 26.7636 39.7817C25.4261 40.7711 24.4436 42.1657 23.9622 43.7582L22.0607 49.9952C21.9523 50.3829 21.99 50.7969 22.1666 51.1587C22.3433 51.5204 22.6467 51.8047 23.0191 51.9576C27.2923 53.7736 31.858 54.8042 36.497 55C41.1158 54.7999 45.6608 53.7693 49.9141 51.9576C50.3013 51.8189 50.6231 51.5413 50.8171 51.1786C51.011 50.816 51.0633 50.3942 50.9638 49.9952ZM41.8365 21.7767C42.3086 21.5176 42.8604 21.4441 43.3839 21.5708C43.9073 21.6974 44.3645 22.015 44.666 22.4612C45.5178 23.4196 45.67 24.7431 45.0006 25.3363C44.8065 25.4852 44.5792 25.5851 44.3383 25.6275C44.0973 25.6699 43.8496 25.6535 43.6163 25.5797H43.449C42.9066 24.707 42.2169 23.9349 41.4106 23.2979C41.4257 23.2226 41.4257 23.145 41.4106 23.0697C41.3762 22.8359 41.3969 22.5973 41.4708 22.3729C41.5447 22.1485 41.6699 21.9443 41.8365 21.7767ZM36.497 23.0545C38.0721 23.1228 39.5786 23.7175 40.7756 24.7435C41.9726 25.7695 42.7907 27.1674 43.0991 28.7134C42.2577 28.4909 41.4458 28.1692 40.6804 27.7551C39.2483 26.9962 38.1165 25.7732 37.4706 24.2867C37.403 24.1206 37.279 23.9838 37.1203 23.9003C36.9617 23.8168 36.7787 23.792 36.6035 23.8303C36.4307 23.8721 36.2775 23.9719 36.1695 24.1132C36.0615 24.2544 36.0053 24.4284 36.0102 24.6062C36.012 25.2444 35.8491 25.8723 35.5373 26.4292C35.2255 26.9862 34.7754 27.4533 34.2304 27.7855C32.9155 28.6526 31.3787 29.1226 29.8037 29.1394C30.0331 27.5031 30.828 25.9987 32.0506 24.8872C33.2732 23.7757 34.8463 23.1274 36.497 23.0545ZM29.6668 30.6606C31.566 30.6823 33.431 30.154 35.0367 29.1394C35.9414 28.5476 36.6631 27.7153 37.1207 26.7359C37.8848 27.7208 38.8426 28.5388 39.935 29.1394C41.0115 29.704 42.1645 30.1088 43.3577 30.3411C43.3577 30.4628 43.3577 30.5693 43.3577 30.691C43.3848 32.0343 43.0625 33.3615 42.4225 34.5428C41.7826 35.7241 40.8468 36.719 39.7068 37.43C39.5547 37.5252 39.3972 37.6115 39.2352 37.6886C39.0948 37.7564 38.9787 37.8658 38.9025 38.0018C38.8263 38.1379 38.7937 38.294 38.8093 38.4492C38.8093 38.4492 38.8093 38.5253 38.8093 38.5557V42.8303H34.2304V38.4796C34.2482 38.3242 34.2167 38.1671 34.1402 38.0306C34.0638 37.894 33.9463 37.7851 33.8045 37.719L33.3481 37.4604C32.1924 36.749 31.244 35.7464 30.5979 34.5529C29.9518 33.3595 29.6307 32.0172 29.6668 30.6606ZM23.5819 50.4364L25.3922 44.1994C25.7808 42.9213 26.5705 41.8023 27.6445 41.0078C28.7184 40.2133 30.0195 39.7856 31.3553 39.7879H32.5419H32.7092V53.1745C29.6025 52.6943 26.5674 51.8308 23.6732 50.6037C23.6124 50.5631 23.5819 50.5073 23.5819 50.4364ZM36.5579 53.4788C35.8277 53.4788 35.0367 53.4788 34.2913 53.3419V44.3515H38.8549V53.281C38.8534 53.3064 38.8534 53.3318 38.8549 53.3571C38.0922 53.4422 37.3253 53.4828 36.5579 53.4788ZM49.3361 50.5733C46.4412 51.7868 43.4134 52.6549 40.3153 53.1593V39.7879H40.4826H41.6387C42.9727 39.7846 44.2723 40.2101 45.346 41.0017C46.4197 41.7933 47.2105 42.9089 47.6019 44.1842L49.4426 50.4364C49.4478 50.4724 49.4399 50.5091 49.4203 50.5398C49.4008 50.5705 49.3709 50.5931 49.3361 50.6037V50.5733Z" fill="#35F1FA"></path></g><defs><lineargradient id="paint0_linear_15813_7734" x1="-4.64225" y1="37" x2="80.1755" y2="37" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient></defs></svg> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>
Security Control Over Money </span>
</h3>
<p class="elementor-icon-box-description">
Li Europan lingues es membres del sam familie. Lor separat existentie es un myth.
Li Europan lingues es membres del sam </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-swiper-button elementor-swiper-button-prev" role="button" tabindex="0">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-chevron-left" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg> </div>
<div class="elementor-swiper-button elementor-swiper-button-next" role="button" tabindex="0">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-chevron-right" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg> </div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-14e213a e-con-full e-flex e-con e-parent" data-id="14e213a" data-element_type="container" data-core-v316-plus="true">
<div class="elementor-element elementor-element-a97f9fa e-con-full e-flex e-con e-child" data-id="a97f9fa" data-element_type="container" data-settings="{"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_speed":{"unit":"px","size":2.5,"sizes":[]},"motion_fx_devices":["desktop"],"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":0,"end":100}}}">
<div class="elementor-element elementor-element-b50ad61 elementor-widget elementor-widget-image" data-id="b50ad61" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" src="/wp-content/uploads/elementor/thumbs/SL_0212121_40670_20-scaled-qlf1zqoyykntorgt64kcbdbl0ziqfhunv25z70829u.jpg" title="cryptocurrency bitcoin golden coin background" alt="cryptocurrency bitcoin golden coin background" loading="lazy"> </div>
</div>
</div>
<div class="elementor-element elementor-element-ed27d5e e-con-full e-flex e-con e-child" data-id="ed27d5e" data-element_type="container" data-settings="{"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_speed":{"unit":"px","size":2.5,"sizes":[]},"motion_fx_devices":["desktop"],"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":0,"end":100}}}">
<div class="elementor-element elementor-element-7976344 elementor-widget elementor-widget-heading" data-id="7976344" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">We <span class="blue">Work Hard</span> You<br> Get the <span class="blue">Best Deals</span>
</h2> </div>
</div>
<div class="elementor-element elementor-element-2644816 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="2644816" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular. Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules.</p> </div>
</div>
<div class="elementor-element elementor-element-55d63a9 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="55d63a9" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">Omnicos directe al desirabilite de un nov lingua franca: On refusa continuar payar custosi traductores. At solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles. Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. </p> </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-1a4c6a4 e-con-full e-flex e-con e-parent" data-id="1a4c6a4" data-element_type="container" data-core-v316-plus="true">
<div class="elementor-element elementor-element-9c1e564 e-con-full e-flex e-con e-child" data-id="9c1e564" data-element_type="container" data-settings="{"motion_fx_motion_fx_scrolling":"yes","motion_fx_opacity_effect":"yes","motion_fx_opacity_range":{"unit":"%","size":"","sizes":{"start":20,"end":50}},"motion_fx_devices":["desktop"],"motion_fx_opacity_direction":"out-in","motion_fx_opacity_level":{"unit":"px","size":10,"sizes":[]}}">
<div class="elementor-element elementor-element-f6629ae elementor-widget elementor-widget-image" data-id="f6629ae" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" src="/wp-content/uploads/elementor/thumbs/7233600-scaled-qldcc2pc2u3t6jnmgnwa9htosnz1mlxhcqc57zcfpe.jpg" title="7233600" alt="7233600" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-86762ec elementor-absolute elementor-widget elementor-widget-button" data-id="86762ec" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-left">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewbox="0 0 40 40" fill="none"><g id="done_all" clip-path="url(#clip0_15820_11143)"><path id="Vector" d="M30.0003 11.6664L27.6503 9.31641L17.0836 19.8831L19.4336 22.2331L30.0003 11.6664ZM37.0669 9.31641L19.4336 26.9497L12.4669 19.9997L10.1169 22.3497L19.4336 31.6664L39.4336 11.6664L37.0669 9.31641ZM0.683594 22.3497L10.0003 31.6664L12.3503 29.3164L3.05026 19.9997L0.683594 22.3497Z" fill="url(#paint0_linear_15820_11143)"></path></g><defs><lineargradient id="paint0_linear_15820_11143" x1="-2.35303" y1="20.4914" x2="43.2954" y2="20.4914" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient><clippath id="clip0_15820_11143"><rect width="40" height="40" fill="white"></rect></clippath></defs></svg> </span>
<span class="elementor-button-text">High Security</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-063983c elementor-absolute elementor-widget elementor-widget-button" data-id="063983c" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-left">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewbox="0 0 40 40" fill="none"><g id="done_all" clip-path="url(#clip0_15820_11143)"><path id="Vector" d="M30.0003 11.6664L27.6503 9.31641L17.0836 19.8831L19.4336 22.2331L30.0003 11.6664ZM37.0669 9.31641L19.4336 26.9497L12.4669 19.9997L10.1169 22.3497L19.4336 31.6664L39.4336 11.6664L37.0669 9.31641ZM0.683594 22.3497L10.0003 31.6664L12.3503 29.3164L3.05026 19.9997L0.683594 22.3497Z" fill="url(#paint0_linear_15820_11143)"></path></g><defs><lineargradient id="paint0_linear_15820_11143" x1="-2.35303" y1="20.4914" x2="43.2954" y2="20.4914" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient><clippath id="clip0_15820_11143"><rect width="40" height="40" fill="white"></rect></clippath></defs></svg> </span>
<span class="elementor-button-text">Omnicos directe</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-9ecc553 elementor-absolute elementor-widget elementor-widget-button" data-id="9ecc553" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-left">
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewbox="0 0 40 40" fill="none"><g id="done_all" clip-path="url(#clip0_15820_11143)"><path id="Vector" d="M30.0003 11.6664L27.6503 9.31641L17.0836 19.8831L19.4336 22.2331L30.0003 11.6664ZM37.0669 9.31641L19.4336 26.9497L12.4669 19.9997L10.1169 22.3497L19.4336 31.6664L39.4336 11.6664L37.0669 9.31641ZM0.683594 22.3497L10.0003 31.6664L12.3503 29.3164L3.05026 19.9997L0.683594 22.3497Z" fill="url(#paint0_linear_15820_11143)"></path></g><defs><lineargradient id="paint0_linear_15820_11143" x1="-2.35303" y1="20.4914" x2="43.2954" y2="20.4914" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient><clippath id="clip0_15820_11143"><rect width="40" height="40" fill="white"></rect></clippath></defs></svg> </span>
<span class="elementor-button-text">Plu Simplic</span>
</span>
</a>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-0b5b26c e-con-full e-flex e-con e-child" data-id="0b5b26c" data-element_type="container" data-settings="{"motion_fx_motion_fx_scrolling":"yes","motion_fx_blur_effect":"yes","motion_fx_blur_level":{"unit":"px","size":4,"sizes":[]},"motion_fx_blur_range":{"unit":"%","size":"","sizes":{"start":20,"end":50}},"motion_fx_devices":["desktop"],"motion_fx_blur_direction":"out-in"}">
<div class="elementor-element elementor-element-0a5b33e elementor-widget elementor-widget-heading" data-id="0a5b33e" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Super <span class="blue">Safe Guarding</span><br> for Crypto investments</h2> </div>
</div>
<div class="elementor-element elementor-element-33c2b66 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="33c2b66" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular. Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules.</p> </div>
</div>
<div class="elementor-element elementor-element-32c8844 e-grid e-con-boxed e-con e-child" data-id="32c8844" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-783670e elementor-widget elementor-widget-button" data-id="783670e" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-left">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none"><rect width="24" height="24" rx="12" fill="url(#paint0_linear_15820_11159)"></rect><g clip-path="url(#clip0_15820_11159)"><path d="M10.0001 14.7799L7.2201 11.9999L6.27344 12.9399L10.0001 16.6666L18.0001 8.66656L17.0601 7.72656L10.0001 14.7799Z" fill="white"></path></g><defs><lineargradient id="paint0_linear_15820_11159" x1="-1.88075" y1="12" x2="26.3918" y2="12" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient><clippath id="clip0_15820_11159"><rect width="16" height="16" fill="white" transform="translate(4 4)"></rect></clippath></defs></svg> </span>
<span class="elementor-button-text">li pronunciation e li plu commun</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-6df61cf elementor-widget elementor-widget-button" data-id="6df61cf" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-left">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none"><rect width="24" height="24" rx="12" fill="url(#paint0_linear_15820_11159)"></rect><g clip-path="url(#clip0_15820_11159)"><path d="M10.0001 14.7799L7.2201 11.9999L6.27344 12.9399L10.0001 16.6666L18.0001 8.66656L17.0601 7.72656L10.0001 14.7799Z" fill="white"></path></g><defs><lineargradient id="paint0_linear_15820_11159" x1="-1.88075" y1="12" x2="26.3918" y2="12" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient><clippath id="clip0_15820_11159"><rect width="16" height="16" fill="white" transform="translate(4 4)"></rect></clippath></defs></svg> </span>
<span class="elementor-button-text">Ma quande lingues coalesce</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-aba5bf8 elementor-widget elementor-widget-button" data-id="aba5bf8" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-left">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none"><rect width="24" height="24" rx="12" fill="url(#paint0_linear_15820_11159)"></rect><g clip-path="url(#clip0_15820_11159)"><path d="M10.0001 14.7799L7.2201 11.9999L6.27344 12.9399L10.0001 16.6666L18.0001 8.66656L17.0601 7.72656L10.0001 14.7799Z" fill="white"></path></g><defs><lineargradient id="paint0_linear_15820_11159" x1="-1.88075" y1="12" x2="26.3918" y2="12" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient><clippath id="clip0_15820_11159"><rect width="16" height="16" fill="white" transform="translate(4 4)"></rect></clippath></defs></svg> </span>
<span class="elementor-button-text">Li nov lingua franca va esser plu simplic</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-b9a7609 elementor-widget elementor-widget-button" data-id="b9a7609" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-left">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" fill="none"><rect width="24" height="24" rx="12" fill="url(#paint0_linear_15820_11159)"></rect><g clip-path="url(#clip0_15820_11159)"><path d="M10.0001 14.7799L7.2201 11.9999L6.27344 12.9399L10.0001 16.6666L18.0001 8.66656L17.0601 7.72656L10.0001 14.7799Z" fill="white"></path></g><defs><lineargradient id="paint0_linear_15820_11159" x1="-1.88075" y1="12" x2="26.3918" y2="12" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient><clippath id="clip0_15820_11159"><rect width="16" height="16" fill="white" transform="translate(4 4)"></rect></clippath></defs></svg> </span>
<span class="elementor-button-text">At solmen va esser necessi</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-79a4953 e-flex e-con-boxed e-con e-parent" data-id="79a4953" data-element_type="container" data-settings="{"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_speed":{"unit":"px","size":10,"sizes":[]},"motion_fx_devices":["desktop"],"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":0,"end":100}}}" data-core-v316-plus="true">
<div class="e-con-inner">
<div class="elementor-element elementor-element-2274dfc elementor-widget elementor-widget-heading" data-id="2274dfc" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">What <span class="blue">Our Client Says</span>
</h2> </div>
</div>
<div class="elementor-element elementor-element-59abfe6 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="59abfe6" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">Li Europan lingues es membres del sam familie. Lor separat <br>existentie es un myth.</p> </div>
</div>
<div class="elementor-element elementor-element-e65cc94 e-flex e-con-boxed e-con e-child" data-id="e65cc94" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-ba9bf86 e-flex e-con-boxed e-con e-child" data-id="ba9bf86" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-38d5af9 elementor-pagination-type-bullets elementor-arrows-position-inside elementor-pagination-position-outside elementor-widget elementor-widget-n-carousel" data-id="38d5af9" data-element_type="widget" data-settings="{"carousel_items":[{"slide_title":"Slide #1","_id":"7c7e688"},{"slide_title":"Slide #2","_id":"b8db11c"},{"slide_title":"Slide #1","_id":"a60e1fd"},{"slide_title":"Slide #2","_id":"d5b16cc"}],"slides_to_show":"2","slides_to_show_tablet":"2","slides_to_show_mobile":"1","autoplay":"yes","autoplay_speed":5000,"pause_on_hover":"yes","pause_on_interaction":"yes","infinite":"yes","speed":500,"offset_sides":"none","arrows":"yes","pagination":"bullets","image_spacing_custom":{"unit":"px","size":10,"sizes":[]},"image_spacing_custom_tablet":{"unit":"px","size":"","sizes":[]},"image_spacing_custom_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="nested-carousel.default">
<div class="elementor-widget-container">
<div class="e-n-carousel swiper" dir="ltr">
<div class="swiper-wrapper" aria-live="off">
<div class="swiper-slide" data-slide="1" role="group" aria-roledescription="slide" aria-label="1 of 4">
<div class="elementor-element elementor-element-1078d4f e-flex e-con-boxed e-con e-child" data-id="1078d4f" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-996148a e-flex e-con-boxed e-con e-child" data-id="996148a" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-27ed306 e-flex e-con-boxed e-con e-child" data-id="27ed306" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-4889371 elementor-widget elementor-widget-image" data-id="4889371" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" src="/wp-content/uploads/elementor/thumbs/young-bearded-man-with-striped-shirt-scaled-qldinb6j43wnbsseltgqd1hqlry5oqfnr6teum4jvy.jpg" title="Smiling bearded young male model rejoices coming weekends, dressed casually, isolated over white background. Positive pleased student being in good mood after successfully passed exams at college" alt="Smiling bearded young male model rejoices coming weekends, dressed casually, isolated over white background. Positive pleased student being in good mood after successfully passed exams at college" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-9fb2acb e-flex e-con-boxed e-con e-child" data-id="9fb2acb" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-35589ad elementor-widget elementor-widget-heading" data-id="35589ad" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Robert Mersilo</h2> </div>
</div>
<div class="elementor-element elementor-element-abda100 elementor-widget elementor-widget-rating" data-id="abda100" data-element_type="widget" data-widget_type="rating.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.20.0 - 13-03-2024 */
.elementor-widget-rating{--e-rating-gap:0px;--e-rating-icon-font-size:16px;--e-rating-icon-color:#ccd6df;--e-rating-icon-marked-color:#f0ad4e;--e-rating-icon-marked-width:100%;--e-rating-justify-content:flex-start}.elementor-widget-rating .e-rating{display:flex;justify-content:var(--e-rating-justify-content)}.elementor-widget-rating .e-rating-wrapper{display:flex;justify-content:inherit;flex-direction:row;flex-wrap:wrap;width:-moz-fit-content;width:fit-content;margin-block-end:calc(0px - var(--e-rating-gap));margin-inline-end:calc(0px - var(--e-rating-gap))}.elementor-widget-rating .e-rating .e-icon{position:relative;margin-block-end:var(--e-rating-gap);margin-inline-end:var(--e-rating-gap)}.elementor-widget-rating .e-rating .e-icon-wrapper.e-icon-marked{--e-rating-icon-color:var(--e-rating-icon-marked-color);width:var(--e-rating-icon-marked-width);position:absolute;z-index:1;height:100%;left:0;top:0;overflow:hidden}.elementor-widget-rating .e-rating .e-icon-wrapper :is(i,svg){display:flex;flex-shrink:0}.elementor-widget-rating .e-rating .e-icon-wrapper i{font-size:var(--e-rating-icon-font-size);color:var(--e-rating-icon-color)}.elementor-widget-rating .e-rating .e-icon-wrapper svg{width:auto;height:var(--e-rating-icon-font-size);fill:var(--e-rating-icon-color)}</style> <div class="e-rating" itemtype="https://schema.org/Rating" itemscope="" itemprop="reviewRating">
<meta itemprop="worstRating">
<meta itemprop="bestRating" content="5">
<div class="e-rating-wrapper" itemprop="ratingValue" content="5" role="img" aria-label="Rated 5 out of 5">
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-1e98886 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="1e98886" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.20.0 - 13-03-2024 */
.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:"";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style> <div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
<div class="elementor-element elementor-element-b532bda elementor-widget elementor-widget-heading" data-id="b532bda" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Life Insurance</h2> </div>
</div>
<div class="elementor-element elementor-element-165a43e elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="165a43e" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">“Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.”</p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide" data-slide="2" role="group" aria-roledescription="slide" aria-label="2 of 4">
<div class="elementor-element elementor-element-1975386 e-flex e-con-boxed e-con e-child" data-id="1975386" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-19b8830 e-flex e-con-boxed e-con e-child" data-id="19b8830" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-f607a01 e-flex e-con-boxed e-con e-child" data-id="f607a01" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-dd815e6 elementor-widget elementor-widget-image" data-id="dd815e6" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" src="/wp-content/uploads/elementor/thumbs/lady-scaled-qlf2bo90jzq8hhc8j7r6a8woesp5dhm7zv5dhy8jou.jpg" title="Lifestyle, beauty and fashion, people emotions concept. Young asian female office manager, CEO with pleased expression standing over white background, smiling with arms crossed over chest" alt="Lifestyle, beauty and fashion, people emotions concept. Young asian female office manager, CEO with pleased expression standing over white background, smiling with arms crossed over chest." loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-db80b3e e-flex e-con-boxed e-con e-child" data-id="db80b3e" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-535086a elementor-widget elementor-widget-heading" data-id="535086a" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Merilsa Angelin</h2> </div>
</div>
<div class="elementor-element elementor-element-8ac61c0 elementor-widget elementor-widget-rating" data-id="8ac61c0" data-element_type="widget" data-widget_type="rating.default">
<div class="elementor-widget-container">
<div class="e-rating" itemtype="https://schema.org/Rating" itemscope="" itemprop="reviewRating">
<meta itemprop="worstRating">
<meta itemprop="bestRating" content="5">
<div class="e-rating-wrapper" itemprop="ratingValue" content="5" role="img" aria-label="Rated 5 out of 5">
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-47b6213 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="47b6213" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
<div class="elementor-element elementor-element-0771c19 elementor-widget elementor-widget-heading" data-id="0771c19" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Life Insurance</h2> </div>
</div>
<div class="elementor-element elementor-element-cc3cc71 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="cc3cc71" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">“Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.”</p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide" data-slide="3" role="group" aria-roledescription="slide" aria-label="3 of 4">
<div class="elementor-element elementor-element-1d34524 e-flex e-con-boxed e-con e-child" data-id="1d34524" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-b80ab07 e-flex e-con-boxed e-con e-child" data-id="b80ab07" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-415ab7c e-flex e-con-boxed e-con e-child" data-id="415ab7c" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-57f2af5 elementor-widget elementor-widget-image" data-id="57f2af5" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" src="/wp-content/uploads/elementor/thumbs/young-bearded-man-with-striped-shirt-scaled-qldinb6j43wnbsseltgqd1hqlry5oqfnr6teum4jvy.jpg" title="Smiling bearded young male model rejoices coming weekends, dressed casually, isolated over white background. Positive pleased student being in good mood after successfully passed exams at college" alt="Smiling bearded young male model rejoices coming weekends, dressed casually, isolated over white background. Positive pleased student being in good mood after successfully passed exams at college" loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-0b5c603 e-flex e-con-boxed e-con e-child" data-id="0b5c603" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-7fc9c64 elementor-widget elementor-widget-heading" data-id="7fc9c64" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Robert Mersilo</h2> </div>
</div>
<div class="elementor-element elementor-element-4a87fa7 elementor-widget elementor-widget-rating" data-id="4a87fa7" data-element_type="widget" data-widget_type="rating.default">
<div class="elementor-widget-container">
<div class="e-rating" itemtype="https://schema.org/Rating" itemscope="" itemprop="reviewRating">
<meta itemprop="worstRating">
<meta itemprop="bestRating" content="5">
<div class="e-rating-wrapper" itemprop="ratingValue" content="5" role="img" aria-label="Rated 5 out of 5">
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-aeda7b3 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="aeda7b3" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
<div class="elementor-element elementor-element-ce40545 elementor-widget elementor-widget-heading" data-id="ce40545" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Life Insurance</h2> </div>
</div>
<div class="elementor-element elementor-element-4b96285 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="4b96285" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">“Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.”</p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide" data-slide="4" role="group" aria-roledescription="slide" aria-label="4 of 4">
<div class="elementor-element elementor-element-bcdee35 e-flex e-con-boxed e-con e-child" data-id="bcdee35" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-75e1901 e-flex e-con-boxed e-con e-child" data-id="75e1901" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-5e9c9d2 e-flex e-con-boxed e-con e-child" data-id="5e9c9d2" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-eb98ff8 elementor-widget elementor-widget-image" data-id="eb98ff8" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" src="/wp-content/uploads/elementor/thumbs/lady-scaled-qlf2bo90jzq8hhc8j7r6a8woesp5dhm7zv5dhy8jou.jpg" title="Lifestyle, beauty and fashion, people emotions concept. Young asian female office manager, CEO with pleased expression standing over white background, smiling with arms crossed over chest" alt="Lifestyle, beauty and fashion, people emotions concept. Young asian female office manager, CEO with pleased expression standing over white background, smiling with arms crossed over chest." loading="lazy"> </div>
</div>
<div class="elementor-element elementor-element-7388cf8 e-flex e-con-boxed e-con e-child" data-id="7388cf8" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-2d4ef36 elementor-widget elementor-widget-heading" data-id="2d4ef36" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Merilsa Angelin</h2> </div>
</div>
<div class="elementor-element elementor-element-24add6f elementor-widget elementor-widget-rating" data-id="24add6f" data-element_type="widget" data-widget_type="rating.default">
<div class="elementor-widget-container">
<div class="e-rating" itemtype="https://schema.org/Rating" itemscope="" itemprop="reviewRating">
<meta itemprop="worstRating">
<meta itemprop="bestRating" content="5">
<div class="e-rating-wrapper" itemprop="ratingValue" content="5" role="img" aria-label="Rated 5 out of 5">
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
<div class="e-icon">
<div class="e-icon-wrapper e-icon-marked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
<div class="e-icon-wrapper e-icon-unmarked">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-star" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M450 75L338 312 88 350C46 354 25 417 58 450L238 633 196 896C188 942 238 975 275 954L500 837 725 954C767 975 813 942 804 896L763 633 942 450C975 417 954 358 913 350L663 312 550 75C529 33 471 33 450 75Z"></path></svg> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-0b21880 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="0b21880" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
<div class="elementor-element elementor-element-8ef1994 elementor-widget elementor-widget-heading" data-id="8ef1994" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Life Insurance</h2> </div>
</div>
<div class="elementor-element elementor-element-c0e8fa8 elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="c0e8fa8" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">“Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.”</p> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-swiper-button elementor-swiper-button-prev" role="button" tabindex="0">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-chevron-left" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg> </div>
<div class="elementor-swiper-button elementor-swiper-button-next" role="button" tabindex="0">
<svg aria-hidden="true" class="e-font-icon-svg e-eicon-chevron-right" viewbox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg> </div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-246cbff e-flex e-con-boxed e-con e-parent" data-id="246cbff" data-element_type="container" data-core-v316-plus="true">
<div class="e-con-inner">
<div class="elementor-element elementor-element-8def245 e-flex e-con-boxed e-con e-child" data-id="8def245" data-element_type="container" data-settings="{"motion_fx_motion_fx_scrolling":"yes","motion_fx_opacity_effect":"yes","motion_fx_opacity_range":{"unit":"%","size":"","sizes":{"start":0,"end":59}},"motion_fx_devices":["desktop"],"motion_fx_opacity_direction":"out-in","motion_fx_opacity_level":{"unit":"px","size":10,"sizes":[]}}">
<div class="e-con-inner">
<div class="elementor-element elementor-element-7055510 elementor-widget elementor-widget-heading" data-id="7055510" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Start Invest Crypto Now and <span class="blue">Enjoy the Convenience</span>
</h2> </div>
</div>
<div class="elementor-element elementor-element-d0f0d2f elementor-widget__width-initial elementor-widget elementor-widget-heading" data-id="d0f0d2f" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<p class="elementor-heading-title elementor-size-default">Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc, litot Europa usa li sam vocabular.</p> </div>
</div>
<div class="elementor-element elementor-element-b9ca86e elementor-widget__width-initial elementor-align-center elementor-widget elementor-widget-button" data-id="b9ca86e" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="#">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Get Started</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-c1fbb04 e-con-full e-flex e-con e-parent" data-id="c1fbb04" data-element_type="container" data-settings="{"background_background":"classic"}" data-core-v316-plus="true">
<div class="elementor-element elementor-element-c464189 e-flex e-con-boxed e-con e-child" data-id="c464189" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-6af780d e-flex e-con-boxed e-con e-child" data-id="6af780d" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-d3ee523 elementor-widget elementor-widget-heading" data-id="d3ee523" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Quick links</h2> </div>
</div>
<div class="elementor-element elementor-element-af2b506 elementor-widget elementor-widget-heading" data-id="af2b506" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">About us</h2> </div>
</div>
<div class="elementor-element elementor-element-77932dc elementor-widget elementor-widget-heading" data-id="77932dc" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Shop</h2> </div>
</div>
<div class="elementor-element elementor-element-3b0c955 elementor-widget elementor-widget-heading" data-id="3b0c955" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Blog</h2> </div>
</div>
<div class="elementor-element elementor-element-d0d5582 elementor-widget elementor-widget-heading" data-id="d0d5582" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Contact us</h2> </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-5abd423 e-flex e-con-boxed e-con e-child" data-id="5abd423" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-f515eef elementor-widget elementor-widget-heading" data-id="f515eef" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Contact us</h2> </div>
</div>
<div class="elementor-element elementor-element-be21e2e e-flex e-con-boxed e-con e-child" data-id="be21e2e" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-a6c2b5e elementor-view-default elementor-widget elementor-widget-icon" data-id="a6c2b5e" data-element_type="widget" data-widget_type="icon.default">
<div class="elementor-widget-container">
<div class="elementor-icon-wrapper">
<div class="elementor-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="17" viewbox="0 0 16 17" fill="none"><g id="email" clip-path="url(#clip0_15820_11709)"><path id="Vector" d="M14.6673 3.16797H1.33398V13.8346H14.6673V3.16797ZM13.334 5.83464L8.00065 9.16797L2.66732 5.83464V4.5013L8.00065 7.83464L13.334 4.5013V5.83464Z" fill="url(#paint0_linear_15820_11709)"></path></g><defs><lineargradient id="paint0_linear_15820_11709" x1="0.289124" y1="8.5013" x2="15.9961" y2="8.5013" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient><clippath id="clip0_15820_11709"><rect width="16" height="16" fill="white" transform="translate(0 0.5)"></rect></clippath></defs></svg> </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-5c83432 elementor-widget elementor-widget-heading" data-id="5c83432" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">hello@website.com</h2> </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-4b1abab e-flex e-con-boxed e-con e-child" data-id="4b1abab" data-element_type="container">
<div class="e-con-inner">
<div class="elementor-element elementor-element-1473d1f elementor-view-default elementor-widget elementor-widget-icon" data-id="1473d1f" data-element_type="widget" data-widget_type="icon.default">
<div class="elementor-widget-container">
<div class="elementor-icon-wrapper">
<div class="elementor-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewbox="0 0 16 16" fill="none"><g clip-path="url(#clip0_15820_11713)"><path d="M8.00065 1.33203C5.42065 1.33203 3.33398 3.4187 3.33398 5.9987C3.33398 9.4987 8.00065 14.6654 8.00065 14.6654C8.00065 14.6654 12.6673 9.4987 12.6673 5.9987C12.6673 3.4187 10.5807 1.33203 8.00065 1.33203ZM8.00065 7.66536C7.08065 7.66536 6.33398 6.9187 6.33398 5.9987C6.33398 5.0787 7.08065 4.33203 8.00065 4.33203C8.92065 4.33203 9.66732 5.0787 9.66732 5.9987C9.66732 6.9187 8.92065 7.66536 8.00065 7.66536Z" fill="url(#paint0_linear_15820_11713)"></path></g><defs><lineargradient id="paint0_linear_15820_11713" x1="2.60258" y1="7.9987" x2="13.5975" y2="7.9987" gradientunits="userSpaceOnUse"><stop stop-color="#0E56F8"></stop><stop offset="1" stop-color="#28EAEA"></stop></lineargradient><clippath id="clip0_15820_11713"><rect width="16" height="16" fill="white"></rect></clippath></defs></svg> </div>