-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1004 lines (993 loc) · 66.5 KB
/
index.html
File metadata and controls
1004 lines (993 loc) · 66.5 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>
<!--[if IE 9 ]> <html lang="en-US" class="ie9 loading-site no-js"> <![endif]-->
<!--[if IE 8 ]> <html lang="en-US" class="ie8 loading-site no-js"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en-US" class="loading-site no-js"> <!--<![endif]-->
<head>
<meta charset="UTF-8" />
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="https://deca.eco/xmlrpc.php" />
<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>DECA HOME - DECA</title>
<link rel="canonical" href="https://deca.eco/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="DECA HOME - DECA" />
<meta property="og:url" content="https://deca.eco/" />
<meta property="og:site_name" content="DECA" />
<meta property="article:modified_time" content="2023-08-16T06:14:03+00:00" />
<meta name="twitter:card" content="summary_large_image" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://deca.eco/","url":"https://deca.eco/","name":"DECA HOME - DECA","isPartOf":{"@id":"https://deca.eco/#website"},"datePublished":"2022-08-04T17:13:45+00:00","dateModified":"2023-08-16T06:14:03+00:00","breadcrumb":{"@id":"https://deca.eco/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://deca.eco/"]}]},{"@type":"BreadcrumbList","@id":"https://deca.eco/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home"}]},{"@type":"WebSite","@id":"https://deca.eco/#website","url":"https://deca.eco/","name":"DECA","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://deca.eco/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"}]}</script>
<link rel="dns-prefetch" href="//cdn.jsdelivr.net" />
<link rel="dns-prefetch" href="//fonts.googleapis.com" />
<link rel="alternate" type="application/rss+xml" title="DECA » Feed" href="https://deca.eco/feed/" />
<link rel="alternate" type="application/rss+xml" title="DECA » Comments Feed" href="https://deca.eco/comments/feed/" />
<link rel="prefetch" href="https://deca.eco/wp-content/themes/flatsome/assets/js/chunk.countup.fe2c1016.js" />
<link rel="prefetch" href="https://deca.eco/wp-content/themes/flatsome/assets/js/chunk.sticky-sidebar.a58a6557.js" />
<link rel="prefetch" href="https://deca.eco/wp-content/themes/flatsome/assets/js/chunk.tooltips.29144c1c.js" />
<link rel="prefetch" href="https://deca.eco/wp-content/themes/flatsome/assets/js/chunk.vendors-popups.947eca5c.js" />
<link rel="prefetch" href="https://deca.eco/wp-content/themes/flatsome/assets/js/chunk.vendors-slider.c7f2bd49.js" />
<style id="wp-block-library-inline-css" type="text/css">
:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px;--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#ddd;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
</style>
<style id="classic-theme-styles-inline-css" type="text/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>
<link rel="stylesheet" id="contact-form-7-css" href="https://deca.eco/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.7.4" type="text/css" media="all" />
<link rel="stylesheet" id="flatsome-main-css" href="https://deca.eco/wp-content/themes/flatsome/assets/css/flatsome.css?ver=3.15.7" type="text/css" media="all" />
<style id="flatsome-main-inline-css" type="text/css">
@font-face {
font-family: "fl-icons";
font-display: block;
src: url(https://deca.eco/wp-content/themes/flatsome/assets/css/icons/fl-icons.eot?v=3.15.7);
src:
url(https://deca.eco/wp-content/themes/flatsome/assets/css/icons/fl-icons.eot#iefix?v=3.15.7) format("embedded-opentype"),
url(https://deca.eco/wp-content/themes/flatsome/assets/css/icons/fl-icons.woff2?v=3.15.7) format("woff2"),
url(https://deca.eco/wp-content/themes/flatsome/assets/css/icons/fl-icons.ttf?v=3.15.7) format("truetype"),
url(https://deca.eco/wp-content/themes/flatsome/assets/css/icons/fl-icons.woff?v=3.15.7) format("woff"),
url(https://deca.eco/wp-content/themes/flatsome/assets/css/icons/fl-icons.svg?v=3.15.7#fl-icons) format("svg");
}
</style>
<link rel="stylesheet" id="flatsome-style-css" href="https://deca.eco/wp-content/themes/flatsome/style.css?ver=3.15.7" type="text/css" media="all" />
<link rel="stylesheet" id="flatsome-googlefonts-css" href="//fonts.googleapis.com/css?family=Lalezar%3Aregular%2Cregular%7CMontserrat%3Aregular%2Cregular%7CLato%3Aregular%2C700%7CDancing+Script%3Aregular%2C400&display=swap&ver=3.9" type="text/css" media="all" />
<script type="text/javascript" src="https://deca.eco/wp-includes/js/jquery/jquery.min.js?ver=3.7.0" id="jquery-core-js"></script>
<script type="text/javascript" src="https://deca.eco/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
<script type="text/javascript" id="fullworks-anti-spam-front-logged-out-js-extra">
/* <![CDATA[ */
var FullworksAntiSpamFELO = {"name":"wtPCXGhDgsYe","value":"MuMb3ybkmzbUzwk5WT5VTvGNnaPqKksKrTAqbYCW9pj2C8eHsS4O17P1CI8Nyt4o","ajax_url":"https:\/\/deca.eco\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type="text/javascript" src="https://deca.eco/wp-content/plugins/fullworks-anti-spam/frontend/js/frontend.js?ver=1.3.8" id="fullworks-anti-spam-front-logged-out-js"></script>
<link rel="https://api.w.org/" href="https://deca.eco/wp-json/" /><link rel="alternate" type="application/json" href="https://deca.eco/wp-json/wp/v2/pages/358" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://deca.eco/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 6.3" />
<link rel="shortlink" href="https://deca.eco/" />
<link rel="alternate" type="application/json+oembed" href="https://deca.eco/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fdeca.eco%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://deca.eco/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fdeca.eco%2F&format=xml" />
<style>.bg{opacity: 0; transition: opacity 1s; -webkit-transition: opacity 1s;} .bg-loaded{opacity: 1;}</style><!--[if IE]><link rel="stylesheet" type="text/css" href="https://deca.eco/wp-content/themes/flatsome/assets/css/ie-fallback.css"><script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.1/html5shiv.js"></script><script>var head = document.getElementsByTagName('head')[0],style = document.createElement('style');style.type = 'text/css';style.styleSheet.cssText = ':before,:after{content:none !important';head.appendChild(style);setTimeout(function(){head.removeChild(style);}, 0);</script><script src="https://deca.eco/wp-content/themes/flatsome/assets/libs/ie-flexibility.js"></script><![endif]-->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-246645312-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-246645312-1');
</script>
<link rel="icon" href="https://deca.eco/wp-content/uploads/2022/08/cropped-Logo-icon-deca-32x32.png" sizes="32x32" />
<link rel="icon" href="https://deca.eco/wp-content/uploads/2022/08/cropped-Logo-icon-deca-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://deca.eco/wp-content/uploads/2022/08/cropped-Logo-icon-deca-180x180.png" />
<meta name="msapplication-TileImage" content="https://deca.eco/wp-content/uploads/2022/08/cropped-Logo-icon-deca-270x270.png" />
<style id="custom-css" type="text/css">:root {--primary-color: #0d4e24;}.header-main{height: 83px}#logo img{max-height: 83px}#logo{width:176px;}.header-bottom{min-height: 10px}.header-top{min-height: 30px}.transparent .header-main{height: 30px}.transparent #logo img{max-height: 30px}.has-transparent + .page-title:first-of-type,.has-transparent + #main > .page-title,.has-transparent + #main > div > .page-title,.has-transparent + #main .page-header-wrapper:first-of-type .page-title{padding-top: 30px;}.header.show-on-scroll,.stuck .header-main{height:70px!important}.stuck #logo img{max-height: 70px!important}.header-bg-color {background-color: rgba(255,255,255,0.9)}.header-bottom {background-color: #ffffff}.header-bottom-nav > li > a{line-height: 16px }@media (max-width: 549px) {.header-main{height: 70px}#logo img{max-height: 70px}}/* Color */.accordion-title.active, .has-icon-bg .icon .icon-inner,.logo a, .primary.is-underline, .primary.is-link, .badge-outline .badge-inner, .nav-outline > li.active> a,.nav-outline >li.active > a, .cart-icon strong,[data-color='primary'], .is-outline.primary{color: #0d4e24;}/* Color !important */[data-text-color="primary"]{color: #0d4e24!important;}/* Background Color */[data-text-bg="primary"]{background-color: #0d4e24;}/* Background */.scroll-to-bullets a,.featured-title, .label-new.menu-item > a:after, .nav-pagination > li > .current,.nav-pagination > li > span:hover,.nav-pagination > li > a:hover,.has-hover:hover .badge-outline .badge-inner,button[type="submit"], .button.wc-forward:not(.checkout):not(.checkout-button), .button.submit-button, .button.primary:not(.is-outline),.featured-table .title,.is-outline:hover, .has-icon:hover .icon-label,.nav-dropdown-bold .nav-column li > a:hover, .nav-dropdown.nav-dropdown-bold > li > a:hover, .nav-dropdown-bold.dark .nav-column li > a:hover, .nav-dropdown.nav-dropdown-bold.dark > li > a:hover, .header-vertical-menu__opener ,.is-outline:hover, .tagcloud a:hover,.grid-tools a, input[type='submit']:not(.is-form), .box-badge:hover .box-text, input.button.alt,.nav-box > li > a:hover,.nav-box > li.active > a,.nav-pills > li.active > a ,.current-dropdown .cart-icon strong, .cart-icon:hover strong, .nav-line-bottom > li > a:before, .nav-line-grow > li > a:before, .nav-line > li > a:before,.banner, .header-top, .slider-nav-circle .flickity-prev-next-button:hover svg, .slider-nav-circle .flickity-prev-next-button:hover .arrow, .primary.is-outline:hover, .button.primary:not(.is-outline), input[type='submit'].primary, input[type='submit'].primary, input[type='reset'].button, input[type='button'].primary, .badge-inner{background-color: #0d4e24;}/* Border */.nav-vertical.nav-tabs > li.active > a,.scroll-to-bullets a.active,.nav-pagination > li > .current,.nav-pagination > li > span:hover,.nav-pagination > li > a:hover,.has-hover:hover .badge-outline .badge-inner,.accordion-title.active,.featured-table,.is-outline:hover, .tagcloud a:hover,blockquote, .has-border, .cart-icon strong:after,.cart-icon strong,.blockUI:before, .processing:before,.loading-spin, .slider-nav-circle .flickity-prev-next-button:hover svg, .slider-nav-circle .flickity-prev-next-button:hover .arrow, .primary.is-outline:hover{border-color: #0d4e24}.nav-tabs > li.active > a{border-top-color: #0d4e24}.widget_shopping_cart_content .blockUI.blockOverlay:before { border-left-color: #0d4e24 }.woocommerce-checkout-review-order .blockUI.blockOverlay:before { border-left-color: #0d4e24 }/* Fill */.slider .flickity-prev-next-button:hover svg,.slider .flickity-prev-next-button:hover .arrow{fill: #0d4e24;}/* Background Color */[data-icon-label]:after, .secondary.is-underline:hover,.secondary.is-outline:hover,.icon-label,.button.secondary:not(.is-outline),.button.alt:not(.is-outline), .badge-inner.on-sale, .button.checkout, .single_add_to_cart_button, .current .breadcrumb-step{ background-color:#ce8f33; }[data-text-bg="secondary"]{background-color: #ce8f33;}/* Color */.secondary.is-underline,.secondary.is-link, .secondary.is-outline,.stars a.active, .star-rating:before, .woocommerce-page .star-rating:before,.star-rating span:before, .color-secondary{color: #ce8f33}/* Color !important */[data-text-color="secondary"]{color: #ce8f33!important;}/* Border */.secondary.is-outline:hover{border-color:#ce8f33}.success.is-underline:hover,.success.is-outline:hover,.success{background-color: #95c623}.success-color, .success.is-link, .success.is-outline{color: #95c623;}.success-border{border-color: #95c623!important;}/* Color !important */[data-text-color="success"]{color: #95c623!important;}/* Background Color */[data-text-bg="success"]{background-color: #95c623;}.alert.is-underline:hover,.alert.is-outline:hover,.alert{background-color: #2e9b34}.alert.is-link, .alert.is-outline, .color-alert{color: #2e9b34;}/* Color !important */[data-text-color="alert"]{color: #2e9b34!important;}/* Background Color */[data-text-bg="alert"]{background-color: #2e9b34;}body{font-family:"Montserrat", sans-serif}body{font-weight: 0}.nav > li > a {font-family:"Lato", sans-serif;}.mobile-sidebar-levels-2 .nav > li > ul > li > a {font-family:"Lato", sans-serif;}.nav > li > a {font-weight: 700;}.mobile-sidebar-levels-2 .nav > li > ul > li > a {font-weight: 700;}h1,h2,h3,h4,h5,h6,.heading-font, .off-canvas-center .nav-sidebar.nav-vertical > li > a{font-family: "Lalezar", sans-serif;}h1,h2,h3,h4,h5,h6,.heading-font,.banner h1,.banner h2{font-weight: 0;}.alt-font{font-family: "Dancing Script", sans-serif;}.alt-font{font-weight: 400!important;}.label-new.menu-item > a:after{content:"New";}.label-hot.menu-item > a:after{content:"Hot";}.label-sale.menu-item > a:after{content:"Sale";}.label-popular.menu-item > a:after{content:"Popular";}</style></head>
<body class="home page-template-default page page-id-358 lightbox nav-dropdown-has-arrow nav-dropdown-has-shadow nav-dropdown-has-border">
<a class="skip-link screen-reader-text" href="#main">Skip to content</a>
<div id="wrapper">
<header id="header" class="header has-sticky sticky-jump">
<div class="header-wrapper">
<div id="masthead" class="header-main ">
<div class="header-inner flex-row container logo-left medium-logo-center" role="navigation">
<div id="logo" class="flex-col logo">
<a href="https://deca.eco/" title="DECA" rel="home">
<img width="1020" height="340" src="https://deca.eco/wp-content/uploads/2022/08/LogoWhiteBackground-1400x467.png" class="header_logo header-logo" alt="DECA" /><img width="1020" height="340" src="https://deca.eco/wp-content/uploads/2022/08/LogoWhiteBackground-1400x467.png" class="header-logo-dark" alt="DECA" /></a>
</div>
<div class="flex-col show-for-medium flex-left">
<ul class="mobile-nav nav nav-left ">
<li class="nav-icon has-icon">
<a href="#" data-open="#main-menu" data-pos="left" data-bg="main-menu-overlay" data-color class="is-small" aria-label="Menu" aria-controls="main-menu" aria-expanded="false">
<i class="icon-menu"></i>
</a>
</li> </ul>
</div>
<div class="flex-col hide-for-medium flex-left
flex-grow">
<ul class="header-nav header-nav-main nav nav-left nav-divided nav-uppercase">
</ul>
</div>
<div class="flex-col hide-for-medium flex-right">
<ul class="header-nav header-nav-main nav nav-right nav-divided nav-uppercase">
<li class="html header-button-1">
<div class="header-button">
<a rel="noopener noreferrer" href="https://app.uniswap.org/#/swap?inputCurrency=ETH&outputCurrency=0x3556a5005d5411603e0115efd9b875fdfb3ad7e9&chain=mainnet" target="_blank" class="button primary" style="border-radius:99px;">
<span>Get Deca</span>
</a>
</div>
</li>
<li class="header-search header-search-dropdown has-icon has-dropdown menu-item-has-children">
<a href="#" aria-label="Search" class="is-small"><i class="icon-search"></i></a>
<ul class="nav-dropdown nav-dropdown-default">
<li class="header-search-form search-form html relative has-icon">
<div class="header-search-form-wrapper">
<div class="searchform-wrapper ux-search-box relative is-normal"><form method="get" class="searchform" action="https://deca.eco/" role="search">
<div class="flex-row relative">
<div class="flex-col flex-grow">
<input type="search" class="search-field mb-0" name="s" value id="s" placeholder="Search…" />
</div>
<div class="flex-col">
<button type="submit" class="ux-search-submit submit-button secondary button icon mb-0" aria-label="Submit">
<i class="icon-search"></i> </button>
</div>
</div>
<div class="live-search-results text-left z-top"></div>
</form>
</div> </div>
</li> </ul>
</li>
<li id="menu-item-563" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-563 menu-item-design-default"><a target="_blank" rel="noopener noreferrer" href="https://docs.deca.eco" class="nav-top-link">Docs</a></li>
<li id="menu-item-553" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-553 menu-item-design-default"><a target="_blank" rel="noopener noreferrer" href="https://git.decentralizedscience.org/DECA" class="nav-top-link">Devs</a></li>
<li id="menu-item-564" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-564 menu-item-design-default"><a target="_blank" rel="noopener noreferrer" href="https://snapshot.org/#/decentralizedcarbon.eth" class="nav-top-link">DAO</a></li>
<li id="menu-item-562" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-562 menu-item-design-default"><a target="_blank" rel="noopener noreferrer" href="https://forum.deca.eco" class="nav-top-link">Forum</a></li>
<li id="menu-item-383" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-383 menu-item-design-default"><a rel="httpsdevdecaecofaqs" href="https://deca.eco/faqs/" class="nav-top-link">FAQs</a></li>
<li class="header-divider"></li><li class="html header-button-2">
<div class="header-button">
<a rel="noopener noreferrer" href="https://www.geckoterminal.com/eth/pools/0x883d2d3d9c669f07eccd31f63f77363219e8cc3a" target="_blank" class="button secondary" style="border-radius:99px;">
<span>MARKET</span>
</a>
</div>
</li>
<li class="header-divider"></li><li class="html header-social-icons ml-0">
<div class="social-icons follow-icons"><a href="https://www.facebook.com/decaeco" target="_blank" data-label="Facebook" rel="noopener noreferrer nofollow" class="icon primary button circle facebook tooltip" title="Follow on Facebook" aria-label="Follow on Facebook"><i class="icon-facebook"></i></a><a href="https://twitter.com/decaeco" target="_blank" data-label="Twitter" rel="noopener noreferrer nofollow" class="icon primary button circle twitter tooltip" title="Follow on Twitter" aria-label="Follow on Twitter"><i class="icon-twitter"></i></a><a href="https://www.youtube.com/watch?v=nZqYonk54PE" target="_blank" rel="noopener noreferrer nofollow" data-label="YouTube" class="icon primary button circle youtube tooltip" title="Follow on YouTube" aria-label="Follow on YouTube"><i class="icon-youtube"></i></a><a href="https://t.me/deca_currency" target="_blank" data-label="Telegram" rel="noopener noreferrer nofollow" class="icon primary button circle telegram tooltip" title="Follow on Telegram" aria-label="Follow on Telegram"><i class="icon-telegram"></i></a></div></li> </ul>
</div>
<div class="flex-col show-for-medium flex-right">
<ul class="mobile-nav nav nav-right ">
<li class="header-search header-search-dropdown has-icon has-dropdown menu-item-has-children">
<a href="#" aria-label="Search" class="is-small"><i class="icon-search"></i></a>
<ul class="nav-dropdown nav-dropdown-default">
<li class="header-search-form search-form html relative has-icon">
<div class="header-search-form-wrapper">
<div class="searchform-wrapper ux-search-box relative is-normal"><form method="get" class="searchform" action="https://deca.eco/" role="search">
<div class="flex-row relative">
<div class="flex-col flex-grow">
<input type="search" class="search-field mb-0" name="s" value id="s" placeholder="Search…" />
</div>
<div class="flex-col">
<button type="submit" class="ux-search-submit submit-button secondary button icon mb-0" aria-label="Submit">
<i class="icon-search"></i> </button>
</div>
</div>
<div class="live-search-results text-left z-top"></div>
</form>
</div> </div>
</li> </ul>
</li>
</ul>
</div>
</div>
<div class="container"><div class="top-divider full-width"></div></div>
</div>
<div class="header-bg-container fill"><div class="header-bg-image fill"></div><div class="header-bg-color fill"></div></div> </div>
</header>
<main id="main" class>
<div id="content" class="content-area page-wrapper" role="main">
<div class="row row-main">
<div class="large-12 col">
<div class="col-inner">
<section class="section dark has-parallax" id="section_1548878391">
<div class="bg section-bg fill bg-fill " data-parallax-container=".section" data-parallax-background data-parallax="-7">
</div>
<div class="section-content relative">
<div id="text-2902714613" class="text">
<h2><span style="font-size: 200%;">DECA PROTOCOL</span></h2>
<style>
#text-2902714613 {
font-size: 1.55rem;
line-height: 0.75;
text-align: center;
}
@media (min-width:550px) {
#text-2902714613 {
font-size: 1.9rem;
}
}
</style>
</div>
<div id="gap-1539916402" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-1539916402 {
padding-top: 30px;
}
</style>
</div>
<div class="row align-center" id="row-395597330">
<div id="col-90667072" class="col medium-10 small-12 large-9">
<div class="col-inner text-center">
<a rel="noopener noreferrer" href="https://docs.google.com/presentation/d/1H4V5X0X-9jnulwmmQBKk7PiStqKoPh_t_h7F0R3kLw0/edit?usp=sharing" target="_blank" class="button white is-bevel is-large" style="border-radius:22px;padding:5px 25px 5px 25px;">
<span>DECA 2.0 Protocol</span>
</a>
<a rel="noopener noreferrer" href="http://dev.deca.eco/wp-content/uploads/2022/08/Whitepaper1.2_EN.pdf" target="_blank" class="button white is-bevel" style="border-radius:22px;padding:5px 25px 5px 25px;">
<span>DECA 1.2 (Legacy)</span>
</a>
</div>
</div>
</div>
</div>
<style>
#section_1548878391 {
padding-top: 30px;
padding-bottom: 30px;
min-height: 500px;
}
#section_1548878391 .section-bg-overlay {
background-color: rgba(0, 0, 0, 0.15);
}
#section_1548878391 .section-bg.bg-loaded {
background-image: url(https://deca.eco/wp-content/uploads/2023/03/gayatri-malhotra-CI9N__WXvrA-unsplash-1-scaled-e16594261513631.jpg);
}
#section_1548878391 .section-bg {
background-position: 0% 0%;
}
#section_1548878391 .ux-shape-divider--top svg {
height: 150px;
--divider-top-width: 100%;
}
#section_1548878391 .ux-shape-divider--bottom svg {
height: 150px;
--divider-width: 100%;
}
@media (min-width:550px) {
#section_1548878391 {
min-height: 600px;
}
#section_1548878391 .section-bg-overlay {
background-color: rgba(0, 0, 0, 0.09);
}
}
</style>
</section>
<section class="section" id="section_1986710982">
<div class="bg section-bg fill bg-fill bg-loaded">
</div>
<div class="section-content relative">
<div id="gap-1373767495" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-1373767495 {
padding-top: 30px;
}
</style>
</div>
<div class="row align-center" id="row-1377504392">
<div id="col-1237058617" class="col medium-10 small-12 large-9">
<div class="col-inner text-center">
<h6>security</h6>
<h2><span style="font-size: 150%;">Smart Contract audit by Quantstamp</span></h2>
<p>DECA always meets the highest safety standards. Quantstamp is the leader in blockchain security, having performed over 250 audits and secured over $200 billion in value. The company has audited clients like Ethereum, Solana, OpenSea, Avalanche & Binance Smart Chain.</p>
<a rel="noopener noreferrer" href="https://certificate.quantstamp.com/full/deca-d-ecentralized-c-arbon-tokens-itde-initial-token-distribution-event" target="_blank" class="button primary is-underline box-shadow-1-hover">
<span>DECA AUDIT</span>
</a>
</div>
</div>
</div>
</div>
<style>
#section_1986710982 {
padding-top: 38px;
padding-bottom: 38px;
}
#section_1986710982 .ux-shape-divider--top svg {
height: 150px;
--divider-top-width: 100%;
}
#section_1986710982 .ux-shape-divider--bottom svg {
height: 150px;
--divider-width: 100%;
}
</style>
</section>
<section class="section dark" id="section_1648617699">
<div class="bg section-bg fill bg-fill ">
<div class="section-bg-overlay absolute fill"></div>
</div>
<div class="section-content relative">
<div id="gap-675105852" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-675105852 {
padding-top: 30px;
}
</style>
</div>
<div class="row align-center" id="row-588036306">
<div id="col-1832043325" class="col medium-7 small-12 large-5">
<div class="col-inner text-center">
<div id="text-168174535" class="text">
<h1>Partners and Supporters</h1>
<style>
#text-168174535 {
font-size: 1.35rem;
line-height: 1.5;
}
</style>
</div>
</div>
</div>
</div>
</div>
<style>
#section_1648617699 {
padding-top: 0px;
padding-bottom: 0px;
min-height: 290px;
background-color: #7a9c59;
}
#section_1648617699 .section-bg-overlay {
background-color: rgba(0, 0, 0, 0.16);
}
#section_1648617699 .section-bg.bg-loaded {
background-image: url(https://deca.eco/wp-content/uploads/2022/08/arthur-poulin-NhU0nUR7920-unsplash-scaled.jpg);
}
#section_1648617699 .section-bg {
background-position: 58% 64%;
}
#section_1648617699 .ux-shape-divider--top svg {
height: 150px;
--divider-top-width: 100%;
}
#section_1648617699 .ux-shape-divider--bottom svg {
height: 150px;
--divider-width: 100%;
}
@media (min-width:550px) {
#section_1648617699 {
min-height: 194px;
}
}
</style>
</section>
<section class="section" id="section_141174347">
<div class="bg section-bg fill bg-fill bg-loaded">
</div>
<div class="section-content relative">
<div id="gap-415714668" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-415714668 {
padding-top: 30px;
}
</style>
</div>
<div class="row row-large" id="row-1159977198">
<div id="col-556379258" class="col medium-4 small-12 large-4">
<div class="col-inner text-center">
<div class="img has-hover x md-x lg-x y md-y lg-y" id="image_1231651273">
<div class="img-inner dark">
<img width="820" height="312" src="https://deca.eco/wp-content/uploads/2022/08/NIII.png" class="attachment-large size-large" alt decoding="async" fetchpriority="high" srcset="https://deca.eco/wp-content/uploads/2022/08/NIII.png 820w, https://deca.eco/wp-content/uploads/2022/08/NIII-800x304.png 800w, https://deca.eco/wp-content/uploads/2022/08/NIII-768x292.png 768w" sizes="(max-width: 820px) 100vw, 820px" />
</div>
<style>
#image_1231651273 {
width: 100%;
}
</style>
</div>
<div id="text-1573619586" class="text">
Innovative Hydrogen Solutions Inc. is a team of professionals supported by expert scientists dedicated to the development of hydrogen technologies.
<style>
#text-1573619586 {
font-size: 0.95rem;
}
</style>
</div>
<div id="gap-376748574" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-376748574 {
padding-top: 30px;
}
</style>
</div>
<a rel="noopener noreferrer" href="https://www.innovativehydrogen.com/" target="_blank" class="button primary is-underline">
<span>INNOVATIVE HYDROGEN SOLUTIONS</span>
</a>
</div>
</div>
<div id="col-244400049" class="col medium-4 small-12 large-4">
<div class="col-inner text-center">
<div class="img has-hover x md-x lg-x y md-y lg-y" id="image_1812906064">
<div class="img-inner dark">
<img width="820" height="312" src="https://deca.eco/wp-content/uploads/2022/08/MAXCOIN-LOGO.png" class="attachment-large size-large" alt decoding="async" srcset="https://deca.eco/wp-content/uploads/2022/08/MAXCOIN-LOGO.png 820w, https://deca.eco/wp-content/uploads/2022/08/MAXCOIN-LOGO-800x304.png 800w, https://deca.eco/wp-content/uploads/2022/08/MAXCOIN-LOGO-768x292.png 768w" sizes="(max-width: 820px) 100vw, 820px" />
</div>
<style>
#image_1812906064 {
width: 100%;
}
</style>
</div>
<div id="text-937236031" class="text">
Maxcoin is an open source, old school (no pre-mine) community driven cryptocurrency featuring next generation encryption SHA-3/Keccak with Schnorr Signatures.
<style>
#text-937236031 {
font-size: 0.95rem;
}
</style>
</div>
<div id="gap-2118998305" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-2118998305 {
padding-top: 30px;
}
</style>
</div>
<a rel="noopener noreferrer" href="https://maxcoinproject.net/" target="_blank" class="button primary is-underline">
<span>MAXCOIN PROJECT</span>
</a>
</div>
</div>
<div id="col-2121523205" class="col medium-4 small-12 large-4">
<div class="col-inner text-center">
<div class="img has-hover x md-x lg-x y md-y lg-y" id="image_570697494">
<div class="img-inner dark">
<img width="820" height="312" src="https://deca.eco/wp-content/uploads/2022/08/NSI-LOGO-2.png" class="attachment-large size-large" alt decoding="async" srcset="https://deca.eco/wp-content/uploads/2022/08/NSI-LOGO-2.png 820w, https://deca.eco/wp-content/uploads/2022/08/NSI-LOGO-2-800x304.png 800w, https://deca.eco/wp-content/uploads/2022/08/NSI-LOGO-2-768x292.png 768w" sizes="(max-width: 820px) 100vw, 820px" />
</div>
<style>
#image_570697494 {
width: 100%;
}
</style>
</div>
<div id="text-2118372709" class="text">
NSI is looking to be a step ahead in the field of security systems and advanced cryptography to provide solutions against threats into the digital world.
<style>
#text-2118372709 {
font-size: 0.95rem;
}
</style>
</div>
<div id="gap-1131419684" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-1131419684 {
padding-top: 30px;
}
</style>
</div>
<a rel="noopener noreferrer" href="https://neetsec.com/" target="_blank" class="button primary is-underline">
<span>NEETSEC INTERNATIONAL INC</span>
</a>
</div>
</div>
</div>
<div class="message-box relative" style="padding-top:65px;padding-bottom:65px;"><div class="message-box-bg-image bg-fill fill" style="background-image:url(https://deca.eco/wp-content/uploads/2022/08/2746091-1400x788.jpg);"></div><div class="message-box-bg-overlay bg-fill fill"></div><div class="container relative"><div class="inner last-reset">
<div id="text-3968341336" class="text">
<h2>Official DECA Address</h2>
<style>
#text-3968341336 {
font-size: 2.35rem;
line-height: 1.75;
text-align: center;
color: rgb(255, 255, 255);
}
#text-3968341336 > * {
color: rgb(255, 255, 255);
}
</style>
</div>
<div id="text-2394474570" class="text">
0x3556a5005d5411603e0115efd9b875fdfb3ad7e9
<style>
#text-2394474570 {
font-size: 1.7rem;
text-align: center;
color: rgb(255, 255, 255);
}
#text-2394474570 > * {
color: rgb(255, 255, 255);
}
</style>
</div>
<a rel="noopener noreferrer" href="https://etherscan.io/token/0x3556a5005d5411603e0115efd9b875fdfb3ad7e9" target="_blank" class="button white is-underline expand" style="padding:0px 0px 0px 0px;">
<span>view on ETHERSCAN</span>
</a>
</div></div></div>
</div>
<style>
#section_141174347 {
padding-top: 20px;
padding-bottom: 20px;
}
#section_141174347 .ux-shape-divider--top svg {
height: 150px;
--divider-top-width: 100%;
}
#section_141174347 .ux-shape-divider--bottom svg {
height: 150px;
--divider-width: 100%;
}
@media (min-width:550px) {
#section_141174347 {
padding-top: 55px;
padding-bottom: 55px;
}
}
</style>
</section>
<section class="section dark" id="section_2052003562">
<div class="bg section-bg fill bg-fill ">
<div class="effect-sparkle bg-effect fill no-click"></div>
</div>
<div class="section-content relative">
<div id="gap-348158842" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-348158842 {
padding-top: 30px;
}
</style>
</div>
<div class="row align-center" id="row-1741825517">
<div id="col-2082184656" class="col medium-10 small-12 large-12">
<div class="col-inner text-center">
<div id="text-2328707835" class="text">
<h1>"COLLABORATION, DECENTRALIZATION
AND DIGITAL DEMOCRACY:
THREE KEYS TO COMBAT CLIMATE CHANGE".</h1>
<style>
#text-2328707835 {
font-size: 1.35rem;
text-align: center;
}
@media (min-width:550px) {
#text-2328707835 {
font-size: 1.7rem;
}
}
</style>
</div>
</div>
</div>
</div>
</div>
<style>
#section_2052003562 {
padding-top: 30px;
padding-bottom: 30px;
min-height: 300px;
}
#section_2052003562 .section-bg-overlay {
background-color: rgba(0, 0, 0, 0.15);
}
#section_2052003562 .section-bg.bg-loaded {
background-image: url(https://deca.eco/wp-content/uploads/2022/08/lisa-yount-zcZPjDqG-Ao-unsplash-1-scaled-e1659425976378.jpg);
}
#section_2052003562 .ux-shape-divider--top svg {
height: 150px;
--divider-top-width: 100%;
}
#section_2052003562 .ux-shape-divider--bottom svg {
height: 150px;
--divider-width: 100%;
}
@media (min-width:550px) {
#section_2052003562 {
min-height: 400px;
}
#section_2052003562 .section-bg-overlay {
background-color: rgba(0, 0, 0, 0.09);
}
}
</style>
</section>
<div id="gap-471138029" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-471138029 {
padding-top: 30px;
}
</style>
</div>
<div id="gap-1964446738" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-1964446738 {
padding-top: 30px;
}
</style>
</div>
<div class="row large-columns-3 medium-columns-1 small-columns-1 slider row-slider slider-nav-reveal slider-nav-push" data-flickity-options="{"imagesLoaded": true, "groupCells": "100%", "dragThreshold" : 5, "cellAlign": "left","wrapAround": true,"prevNextButtons": true,"percentPosition": true,"pageDots": false, "rightToLeft": false, "autoPlay" : false}">
<div class="col post-item">
<div class="col-inner">
<a href="https://deca.eco/2022/12/01/deca-updates-2022/" class="plain">
<div class="box box-normal box-text-bottom box-blog-post has-hover">
<div class="box-image">
<div class="image-cover" style="padding-top:56.25%;">
<img width="600" height="400" src="https://deca.eco/wp-content/uploads/2022/12/pexels-roberto-nickson-2559941-600x400.jpg" class="attachment-medium size-medium wp-post-image" alt decoding="async" srcset="https://deca.eco/wp-content/uploads/2022/12/pexels-roberto-nickson-2559941-600x400.jpg 600w, https://deca.eco/wp-content/uploads/2022/12/pexels-roberto-nickson-2559941-1200x800.jpg 1200w, https://deca.eco/wp-content/uploads/2022/12/pexels-roberto-nickson-2559941-768x512.jpg 768w, https://deca.eco/wp-content/uploads/2022/12/pexels-roberto-nickson-2559941-1536x1024.jpg 1536w, https://deca.eco/wp-content/uploads/2022/12/pexels-roberto-nickson-2559941-2048x1365.jpg 2048w" sizes="(max-width: 600px) 100vw, 600px" /> </div>
</div>
<div class="box-text text-center">
<div class="box-text-inner blog-post-inner">
<h5 class="post-title is-large ">DECA updates 2022</h5>
<div class="is-divider"></div>
<p class="from_the_blog_excerpt ">After a prolonged pandemic and the economic effects of this and other global stresses, the [...] </p>
</div>
</div>
<div class="badge absolute top post-date badge-outline">
<div class="badge-inner">
<span class="post-date-day">01</span><br>
<span class="post-date-month is-xsmall">Dec</span>
</div>
</div>
</div>
</a>
</div>
</div><div class="col post-item">
<div class="col-inner">
<a href="https://deca.eco/2022/12/01/deca-alliance-with-maxcoin/" class="plain">
<div class="box box-normal box-text-bottom box-blog-post has-hover">
<div class="box-image">
<div class="image-cover" style="padding-top:56.25%;">
<img width="800" height="304" src="https://deca.eco/wp-content/uploads/2022/12/D83755D4-C276-4FE4-BD8D-62413241842C_4_5005_c-800x304.jpeg" class="attachment-medium size-medium wp-post-image" alt="Maxcoin Logo" decoding="async" srcset="https://deca.eco/wp-content/uploads/2022/12/D83755D4-C276-4FE4-BD8D-62413241842C_4_5005_c-800x304.jpeg 800w, https://deca.eco/wp-content/uploads/2022/12/D83755D4-C276-4FE4-BD8D-62413241842C_4_5005_c-768x292.jpeg 768w, https://deca.eco/wp-content/uploads/2022/12/D83755D4-C276-4FE4-BD8D-62413241842C_4_5005_c.jpeg 820w" sizes="(max-width: 800px) 100vw, 800px" /> </div>
</div>
<div class="box-text text-center">
<div class="box-text-inner blog-post-inner">
<h5 class="post-title is-large ">DECA alliance with Maxcoin</h5>
<div class="is-divider"></div>
<p class="from_the_blog_excerpt ">DECA alliance with Maxcoin. The project announces its expansion through key partnerships with major crypto [...] </p>
</div>
</div>
<div class="badge absolute top post-date badge-outline">
<div class="badge-inner">
<span class="post-date-day">01</span><br>
<span class="post-date-month is-xsmall">Dec</span>
</div>
</div>
</div>
</a>
</div>
</div><div class="col post-item">
<div class="col-inner">
<a href="https://deca.eco/2022/11/30/deca-decentralized-climate-foundation-relationship/" class="plain">
<div class="box box-normal box-text-bottom box-blog-post has-hover">
<div class="box-image">
<div class="image-cover" style="padding-top:56.25%;">
<img width="800" height="195" src="https://deca.eco/wp-content/uploads/2022/11/DCF-LOGO-1024x249-2-800x195.png" class="attachment-medium size-medium wp-post-image" alt decoding="async" srcset="https://deca.eco/wp-content/uploads/2022/11/DCF-LOGO-1024x249-2-800x195.png 800w, https://deca.eco/wp-content/uploads/2022/11/DCF-LOGO-1024x249-2-768x187.png 768w, https://deca.eco/wp-content/uploads/2022/11/DCF-LOGO-1024x249-2.png 1024w" sizes="(max-width: 800px) 100vw, 800px" /> </div>
</div>
<div class="box-text text-center">
<div class="box-text-inner blog-post-inner">
<h5 class="post-title is-large ">DECA & Decentralized Climate Foundation relationship</h5>
<div class="is-divider"></div>
<p class="from_the_blog_excerpt ">DECA is now an even more decentralized and secure project. After their ICO phase the [...] </p>
</div>
</div>
<div class="badge absolute top post-date badge-outline">
<div class="badge-inner">
<span class="post-date-day">30</span><br>
<span class="post-date-month is-xsmall">Nov</span>
</div>
</div>
</div>
</a>
</div>
</div><div class="col post-item">
<div class="col-inner">
<a href="https://deca.eco/2022/11/30/deca-has-renewed-its-image/" class="plain">
<div class="box box-normal box-text-bottom box-blog-post has-hover">
<div class="box-image">
<div class="image-cover" style="padding-top:56.25%;">
<img width="800" height="267" src="https://deca.eco/wp-content/uploads/2022/08/LogoWhiteBackground-800x267.png" class="attachment-medium size-medium wp-post-image" alt decoding="async" srcset="https://deca.eco/wp-content/uploads/2022/08/LogoWhiteBackground-800x267.png 800w, https://deca.eco/wp-content/uploads/2022/08/LogoWhiteBackground-1400x467.png 1400w, https://deca.eco/wp-content/uploads/2022/08/LogoWhiteBackground-768x256.png 768w, https://deca.eco/wp-content/uploads/2022/08/LogoWhiteBackground.png 1500w" sizes="(max-width: 800px) 100vw, 800px" /> </div>
</div>
<div class="box-text text-center">
<div class="box-text-inner blog-post-inner">
<h5 class="post-title is-large ">DECA has renewed its image</h5>
<div class="is-divider"></div>
<p class="from_the_blog_excerpt ">DECA has completely renewed its image to adapt it to this new decentralized era. During [...] </p>
</div>
</div>
<div class="badge absolute top post-date badge-outline">
<div class="badge-inner">
<span class="post-date-day">30</span><br>
<span class="post-date-month is-xsmall">Nov</span>
</div>
</div>
</div>
</a>
</div>
</div><div class="col post-item">
<div class="col-inner">
<a href="https://deca.eco/2022/08/09/deca-is-now-on-uniswap-%f0%9f%a6%84/" class="plain">
<div class="box box-normal box-text-bottom box-blog-post has-hover">
<div class="box-image">
<div class="image-cover" style="padding-top:56.25%;">
<img width="800" height="400" src="https://deca.eco/wp-content/uploads/2022/08/Uniswap-800x400.jpeg" class="attachment-medium size-medium wp-post-image" alt decoding="async" srcset="https://deca.eco/wp-content/uploads/2022/08/Uniswap-800x400.jpeg 800w, https://deca.eco/wp-content/uploads/2022/08/Uniswap-768x384.jpeg 768w, https://deca.eco/wp-content/uploads/2022/08/Uniswap.jpeg 1400w" sizes="(max-width: 800px) 100vw, 800px" /> </div>
</div>
<div class="box-text text-center">
<div class="box-text-inner blog-post-inner">
<h5 class="post-title is-large ">DECA is now on Uniswap! 🦄</h5>
<div class="is-divider"></div>
<p class="from_the_blog_excerpt ">DECA is now on Uniswap! 🦄 Finally! 🙌 We are the Decentralized Climate Foundation and we are [...] </p>
</div>
</div>
<div class="badge absolute top post-date badge-outline">
<div class="badge-inner">
<span class="post-date-day">09</span><br>
<span class="post-date-month is-xsmall">Aug</span>
</div>
</div>
</div>
</a>
</div>
</div><div class="col post-item">
<div class="col-inner">
<a href="https://deca.eco/2022/08/09/deca-will-be-managed-by-a-foundation/" class="plain">
<div class="box box-normal box-text-bottom box-blog-post has-hover">
<div class="box-image">
<div class="image-cover" style="padding-top:56.25%;">
<img width="533" height="400" src="https://deca.eco/wp-content/uploads/2022/08/OA-533x400.png" class="attachment-medium size-medium wp-post-image" alt decoding="async" srcset="https://deca.eco/wp-content/uploads/2022/08/OA-533x400.png 533w, https://deca.eco/wp-content/uploads/2022/08/OA-1067x800.png 1067w, https://deca.eco/wp-content/uploads/2022/08/OA-768x576.png 768w, https://deca.eco/wp-content/uploads/2022/08/OA.png 1200w" sizes="(max-width: 533px) 100vw, 533px" /> </div>
</div>
<div class="box-text text-center">
<div class="box-text-inner blog-post-inner">
<h5 class="post-title is-large ">DECA will be managed by a Foundation</h5>
<div class="is-divider"></div>
<p class="from_the_blog_excerpt ">DECA will be managed by a Foundation We are pleased to inform you of the [...] </p>
</div>
</div>
<div class="badge absolute top post-date badge-outline">
<div class="badge-inner">
<span class="post-date-day">09</span><br>
<span class="post-date-month is-xsmall">Aug</span>
</div>
</div>
</div>
</a>
</div>
</div></div>
<div id="gap-273424825" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-273424825 {
padding-top: 30px;
}
</style>
</div>
<section class="section dark" id="section_621402004">
<div class="bg section-bg fill bg-fill ">
</div>
<div class="section-content relative">
<div class="row align-center" id="row-403283825">
<div id="col-596736216" class="col medium-12 small-12 large-10">
<div class="col-inner text-center">
<div id="text-1106832375" class="text">
<h1>JOIN NOW</h1>
DECA is a community of free, conscious and united people!
<style>
#text-1106832375 {
font-size: 1rem;
line-height: 0.75;
}
@media (min-width:550px) {
#text-1106832375 {
font-size: 1.2rem;
}
}
</style>
</div>
<div id="gap-1488583780" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-1488583780 {
padding-top: 30px;
}
</style>
</div>
<div class="social-icons follow-icons" style="font-size:116%"><a href="https://twitter.com/decaeco" target="_blank" data-label="Twitter" rel="noopener noreferrer nofollow" class="icon button circle is-outline twitter tooltip" title="Follow on Twitter" aria-label="Follow on Twitter"><i class="icon-twitter"></i></a><a href="/cdn-cgi/l/email-protection#f99a96978d989a8db99d9c9a98d79c9a96" data-label="E-mail" rel="nofollow" class="icon button circle is-outline email tooltip" title="Send us an email" aria-label="Send us an email"><i class="icon-envelop"></i></a><a href="https://www.youtube.com/channel/UC-HId3XrWUFuJcyK8DL8ZEQ" target="_blank" rel="noopener noreferrer nofollow" data-label="YouTube" class="icon button circle is-outline youtube tooltip" title="Follow on YouTube" aria-label="Follow on YouTube"><i class="icon-youtube"></i></a><a href="https://t.me/deca_currency" target="_blank" data-label="Telegram" rel="noopener noreferrer nofollow" class="icon button circle is-outline telegram tooltip" title="Follow on Telegram" aria-label="Follow on Telegram"><i class="icon-telegram"></i></a></div>
</div>
<style>
#col-596736216 > .col-inner {
margin: 0px 0px -39px 0px;
}
</style>
</div>
</div>
</div>
<style>
#section_621402004 {
padding-top: 39px;
padding-bottom: 39px;
background-color: rgb(40, 55, 71);
}
#section_621402004 .section-bg.bg-loaded {
background-image: url(https://deca.eco/wp-content/uploads/2022/08/gayatri-malhotra-CI9N__WXvrA-unsplash-1-scaled-e1659426151363.jpg);
}
#section_621402004 .ux-shape-divider--top svg {
height: 150px;
--divider-top-width: 100%;
}
#section_621402004 .ux-shape-divider--bottom svg {
height: 150px;
--divider-width: 100%;
}
</style>
</section>
<div id="gap-1167203166" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-1167203166 {
padding-top: 30px;
}
@media (min-width:850px) {
#gap-1167203166 {
padding-top: 59px;
}
}
</style>
</div>
<section class="section dark" id="section_1321703155">
<div class="bg section-bg fill bg-fill ">
</div>
<div class="section-content relative">
<div class="row align-center" id="row-1003326897">
<div id="col-2109895043" class="col medium-9 small-12 large-7">
<div class="col-inner text-center">
<div id="gap-2088413034" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-2088413034 {
padding-top: 50px;
}
@media (min-width:550px) {
#gap-2088413034 {
padding-top: 30px;
}
}
</style>
</div>
<div id="text-885342535" class="text">
<h2 class="uppercase">how to get deca</h2>
<style>
#text-885342535 {
font-size: 1.95rem;
line-height: 1.05;
text-align: center;
}
</style>
</div>
<div id="gap-483831236" class="gap-element clearfix" style="display:block; height:auto;">
<style>
#gap-483831236 {
padding-top: 15px;
}
</style>
</div>
<div class="video video-fit mb" style="padding-top:52%;"><p><iframe loading="lazy" title="Quick DECA Tutorial - Metamask & Uniswap" width="1020" height="765" src="https://www.youtube.com/embed/nZqYonk54PE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
</div>
</div>
</div>
</div>
</div>
<style>
#section_1321703155 {
padding-top: 50px;
padding-bottom: 50px;
background-color: rgb(93, 100, 54);
}
#section_1321703155 .section-bg.bg-loaded {
background-image: url(https://deca.eco/wp-content/uploads/2022/08/ken-smith-bd5OBE29Oec-unsplash-scaled.jpg);
}
#section_1321703155 .ux-shape-divider--top svg {
height: 150px;
--divider-top-width: 100%;
}
#section_1321703155 .ux-shape-divider--bottom svg {
height: 150px;
--divider-width: 100%;
}
@media (min-width:550px) {
#section_1321703155 {
padding-top: 50px;
padding-bottom: 50px;
}
}
@media (min-width:850px) {
#section_1321703155 {
padding-top: 0px;
padding-bottom: 0px;
}
}
</style>
</section>
<div class="is-divider divider clearfix" style="margin-top:0px;margin-bottom:0px;max-width:100%;height:1px;"></div>
<section class="section" id="section_1503366490">
<div class="bg section-bg fill bg-fill bg-loaded">
</div>
<div class="section-content relative">
<h4><strong>About DECA</strong></h4>
<p>The main ecosystem that helps to combat climate change! You can be part of our community!</p>
<a rel="noopener noreferrer" href="https://dev.deca.eco/general-disclamer/" target="_blank" class="button secondary is-outline is-large expand" style="border-radius:99px;padding:0px 70px 0px 13px;">
<span>Disclamer</span>
</a>
</div>
<style>
#section_1503366490 {
padding-top: 0px;
padding-bottom: 0px;
}
#section_1503366490 .ux-shape-divider--top svg {
height: 150px;
--divider-top-width: 100%;
}
#section_1503366490 .ux-shape-divider--bottom svg {
height: 150px;
--divider-width: 100%;
}
</style>
</section>
<div class="is-divider divider clearfix" style="margin-top:0px;margin-bottom:0px;max-width:100%;height:1px;"></div>
</div>
</div>
</div>
</div>
</main>
<footer id="footer" class="footer-wrapper">
<div class="absolute-footer dark medium-text-center small-text-center">
<div class="container clearfix">
<div class="footer-primary pull-left">
<div class="copyright-footer">
2023 © <strong> DECA PROTOCOL </strong> </div>
</div>
</div>
</div>
<a href="#top" class="back-to-top button icon invert plain fixed bottom z-1 is-outline hide-for-medium circle" id="top-link" aria-label="Go to top"><i class="icon-angle-up"></i></a>
</footer>
</div>
<div id="main-menu" class="mobile-sidebar no-scrollbar mfp-hide">
<div class="sidebar-menu no-scrollbar ">
<ul class="nav nav-sidebar nav-vertical nav-uppercase" data-tab="1">
<li class="html header-button-1">
<div class="header-button">
<a rel="noopener noreferrer" href="https://app.uniswap.org/#/swap?inputCurrency=ETH&outputCurrency=0x3556a5005d5411603e0115efd9b875fdfb3ad7e9&chain=mainnet" target="_blank" class="button primary" style="border-radius:99px;">
<span>Get Deca</span>
</a>
</div>
</li>
<li class="html header-button-2">
<div class="header-button">
<a rel="noopener noreferrer" href="https://www.geckoterminal.com/eth/pools/0x883d2d3d9c669f07eccd31f63f77363219e8cc3a" target="_blank" class="button secondary" style="border-radius:99px;">
<span>MARKET</span>
</a>
</div>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-563"><a target="_blank" rel="noopener noreferrer" href="https://docs.deca.eco">Docs</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-553"><a target="_blank" rel="noopener noreferrer" href="https://git.decentralizedscience.org/DECA">Devs</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-564"><a target="_blank" rel="noopener noreferrer" href="https://snapshot.org/#/decentralizedcarbon.eth">DAO</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-562"><a target="_blank" rel="noopener noreferrer" href="https://forum.deca.eco">Forum</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-383"><a rel="httpsdevdecaecofaqs" href="https://deca.eco/faqs/">FAQs</a></li>
<li class="html header-social-icons ml-0">
<div class="social-icons follow-icons"><a href="https://www.facebook.com/decaeco" target="_blank" data-label="Facebook" rel="noopener noreferrer nofollow" class="icon primary button circle facebook tooltip" title="Follow on Facebook" aria-label="Follow on Facebook"><i class="icon-facebook"></i></a><a href="https://twitter.com/decaeco" target="_blank" data-label="Twitter" rel="noopener noreferrer nofollow" class="icon primary button circle twitter tooltip" title="Follow on Twitter" aria-label="Follow on Twitter"><i class="icon-twitter"></i></a><a href="https://www.youtube.com/watch?v=nZqYonk54PE" target="_blank" rel="noopener noreferrer nofollow" data-label="YouTube" class="icon primary button circle youtube tooltip" title="Follow on YouTube" aria-label="Follow on YouTube"><i class="icon-youtube"></i></a><a href="https://t.me/deca_currency" target="_blank" data-label="Telegram" rel="noopener noreferrer nofollow" class="icon primary button circle telegram tooltip" title="Follow on Telegram" aria-label="Follow on Telegram"><i class="icon-telegram"></i></a></div></li> </ul>
</div>
</div>
<link rel="stylesheet" id="flatsome-effects-css" href="https://deca.eco/wp-content/themes/flatsome/assets/css/effects.css?ver=3.15.7" type="text/css" media="all" />
<style id="wp-block-paragraph-inline-css" type="text/css">
.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}p.has-background{padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}
</style>
<style id="wp-block-heading-inline-css" type="text/css">
h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}
</style>
<style id="global-styles-inline-css" type="text/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;}
</style>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="text/javascript" src="https://deca.eco/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=5.7.4" id="swv-js"></script>
<script type="text/javascript" id="contact-form-7-js-extra">
/* <![CDATA[ */
var wpcf7 = {"api":{"root":"https:\/\/deca.eco\/wp-json\/","namespace":"contact-form-7\/v1"}};
/* ]]> */
</script>
<script type="text/javascript" src="https://deca.eco/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.7.4" id="contact-form-7-js"></script>
<script type="text/javascript" src="https://deca.eco/wp-content/themes/flatsome/inc/extensions/flatsome-live-search/flatsome-live-search.js?ver=3.15.7" id="flatsome-live-search-js"></script>
<script type="text/javascript" src="https://deca.eco/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js?ver=3.1.2" id="wp-polyfill-inert-js"></script>
<script type="text/javascript" src="https://deca.eco/wp-includes/js/dist/vendor/regenerator-runtime.min.js?ver=0.13.11" id="regenerator-runtime-js"></script>
<script type="text/javascript" src="https://deca.eco/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0" id="wp-polyfill-js"></script>
<script type="text/javascript" src="https://deca.eco/wp-includes/js/hoverIntent.min.js?ver=1.10.2" id="hoverIntent-js"></script>
<script type="text/javascript" id="flatsome-js-js-extra">
/* <![CDATA[ */
var flatsomeVars = {"theme":{"version":"3.15.7"},"ajaxurl":"https:\/\/deca.eco\/wp-admin\/admin-ajax.php","rtl":"","sticky_height":"70","assets_url":"https:\/\/deca.eco\/wp-content\/themes\/flatsome\/assets\/js\/","lightbox":{"close_markup":"<button title=\"%title%\" type=\"button\" class=\"mfp-close\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"28\" height=\"28\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"feather feather-x\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"><\/line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"><\/line><\/svg><\/button>","close_btn_inside":false},"user":{"can_edit_pages":false},"i18n":{"mainMenu":"Main Menu","toggleButton":"Toggle"},"options":{"cookie_notice_version":"1","swatches_layout":false,"swatches_box_select_event":false,"swatches_box_behavior_selected":false,"swatches_box_update_urls":"1","swatches_box_reset":false,"swatches_box_reset_extent":false,"swatches_box_reset_time":300,"search_result_latency":"0"}};
/* ]]> */
</script>
<script type="text/javascript" src="https://deca.eco/wp-content/themes/flatsome/assets/js/flatsome.js?ver=2ba06bae7e21001b4413f16ac4e08981" id="flatsome-js-js"></script>
<!--[if IE]>