-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
1097 lines (956 loc) · 49.2 KB
/
privacy.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-GB">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1,
shrink-to-fit=no"
/>
<meta
name="robots"
content="index, follow, max-image-preview:large,
max-snippet:-1, max-video-preview:-1"
/>
<title>Privacy Policy - The Macro Project</title>
<link rel="canonical" href="privacy.html" />
<meta property="og:locale" content="en_GB" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Privacy Policy" />
<meta
property="og:description"
content="Updated February 18, 2023 To Whom
Does this Policy apply? This policy applies to both website visitors and
customers (“you”), and is published by“us”,”we” The Macro Project, Inc.
The Macro Project adheres
to the Privacy Shield Principles, and its certification with the E.U.-U.S.
Privacy Shield program can be verified at www.privacyshield.gov. We
commit to protect all personal data that … Continued"
/>
<meta property="og:url" content="index.html" />
<meta property="og:site_name" content="themacroproject.gtihub.io" />
<link rel="dns-prefetch" href="http://cdn.jsdelivr.net/" />
<link rel="dns-prefetch" href="http://maps.googleapis.com/" />
<style>
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>
<link rel="stylesheet" id="wp-block-library-css" href="assets/css/dist/block-library/style.min6a4d.css" media="all" />
<style id="copia-gutenberg-blocks-heading-text-and-button-style-inline-css">
.wp-block-copia-gutenberg-blocks-heading-text-and-button .copia-cta-heading {
text-align: center;
}
.wp-block-copia-gutenberg-blocks-heading-text-and-button .copia-cta-text {
border: 0;
font-size: 20px;
font-weight: 400;
text-align: center;
}
.wp-block-copia-gutenberg-blocks-heading-text-and-button .hero__links {
align-content: center;
justify-content: center;
text-decoration: none;
}
</style>
<style id="copia-gutenberg-blocks-heading-text-button-and-right-image-style-inline-css">
.wp-block-copia-gutenberg-blocks-heading-text-button-and-right-image .row {
align-items: center;
justify-content: space-between;
}
.wp-block-copia-gutenberg-blocks-heading-text-button-and-right-image .hero__links a {
text-decoration: none;
}
</style>
<style id="copia-gutenberg-blocks-heading-text-button-and-left-image-style-inline-css">
.wp-block-copia-gutenberg-blocks-heading-text-button-and-left-image .row {
align-items: center;
justify-content: space-between;
}
.wp-block-copia-gutenberg-blocks-heading-text-button-and-left-image .hero__links a {
text-decoration: none;
}
</style>
<style id="copia-gutenberg-blocks-heading-text-and-bottom-image-style-inline-css">
.wp-block-copia-gutenberg-blocks-heading-text-and-bottom-image .copia-cta-heading {
text-align: center;
}
.wp-block-copia-gutenberg-blocks-heading-text-and-bottom-image .copia-cta-text {
border: 0;
font-size: 20px;
font-weight: 400;
text-align: center;
}
.wp-block-copia-gutenberg-blocks-heading-text-and-bottom-image .hero__links {
align-content: center;
justify-content: center;
text-decoration: none;
}
</style>
<style id="copia-gutenberg-blocks-heading-text-and-button-with-background-style-inline-css">
.wp-block-copia-gutenberg-blocks-heading-text-and-button-with-background .copia-cta-text {
border: 0;
font-size: 20px;
font-weight: 400;
}
.wp-block-copia-gutenberg-blocks-heading-text-and-button-with-background .hero__links {
text-decoration: none;
}
</style>
<style id="copia-gutenberg-blocks-full-image-style-inline-css"></style>
<style id="copia-gutenberg-blocks-cta-with-background-rounded-style-inline-css">
.wp-block-copia-gutenberg-blocks-cta-with-background-rounded .hero-wrapper {
align-items: center;
background-color: #000;
background-size: cover;
border-radius: 24px;
display: flex;
justify-content: center;
margin-left: auto;
margin-right: auto;
overflow: hidden;
padding: 7.25rem;
position: relative;
width: 100%;
}
.wp-block-copia-gutenberg-blocks-cta-with-background-rounded .hero-wrapper .hero-img {
height: 100%;
left: 0;
-o-object-fit: cover;
object-fit: cover;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
.wp-block-copia-gutenberg-blocks-cta-with-background-rounded .hero-wrapper .hero-content {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
z-index: 2;
}
.wp-block-copia-gutenberg-blocks-cta-with-background-rounded .hero-wrapper .hero-content .hero-title {
color: #fff;
font-weight: 600;
letter-spacing: 0;
max-width: 628px;
text-align: center;
}
.wp-block-copia-gutenberg-blocks-cta-with-background-rounded .hero-wrapper .hero-content .btn {
margin-bottom: 1.5rem;
}
.wp-block-copia-gutenberg-blocks-cta-with-background-rounded .hero-wrapper .hero-content .hero-disclaimer {
color: #fff;
font-size: 0.75rem;
font-weight: 400;
line-height: 1.024375rem;
padding: 0;
}
</style>
<style id="copia-gutenberg-blocks-pill-heading-text-and-right-image-rounded-style-inline-css">
.wp-block-copia-gutenberg-blocks-pill-heading-text-and-right-image-rounded .flex-container {
display: flex;
flex-direction: row;
}
.wp-block-copia-gutenberg-blocks-pill-heading-text-and-right-image-rounded .dark {
margin-left: 10px !important;
}
.wp-block-copia-gutenberg-blocks-pill-heading-text-and-right-image-rounded .light {
margin-right: 10px !important;
}
.wp-block-copia-gutenberg-blocks-pill-heading-text-and-right-image-rounded .card {
border-radius: 24px;
flex: 1 1 auto;
margin-top: 0;
width: calc(50% - 10px);
}
.wp-block-copia-gutenberg-blocks-pill-heading-text-and-right-image-rounded .card .title {
background: #363860;
border-radius: 11px;
color: #fff;
display: inline-block;
font-size: 13px;
letter-spacing: 0;
line-height: 22px;
margin-bottom: 20px;
padding: 0 10px;
}
.wp-block-copia-gutenberg-blocks-pill-heading-text-and-right-image-rounded .card .default-content {
max-width: 690px;
}
.wp-block-copia-gutenberg-blocks-pill-heading-text-and-right-image-rounded .card .default-content h2 {
margin-top: 0;
padding-top: 0;
}
.wp-block-copia-gutenberg-blocks-pill-heading-text-and-right-image-rounded .card .default-content p {
color: #666;
font-size: 0.85rem;
max-width: 90%;
}
</style>
<style id="copia-gutenberg-blocks-logos-style-inline-css">
.wp-block-copia-gutenberg-blocks-logos {
overflow: hidden;
padding: 1.75rem 0 5.5625rem;
}
.wp-block-copia-gutenberg-blocks-logos .swiper {
overflow: visible;
}
.wp-block-copia-gutenberg-blocks-logos .swiper-slide {
align-items: center;
display: flex;
height: auto;
justify-content: center;
}
</style>
<style id="copia-gutenberg-blocks-story-cards-style-inline-css">
.wp-block-copia-gutenberg-blocks-story-cards {
box-sizing: border-box;
padding: 5.5625rem 0 6.25rem;
}
.wp-block-copia-gutenberg-blocks-story-cards *,
.wp-block-copia-gutenberg-blocks-story-cards :after,
.wp-block-copia-gutenberg-blocks-story-cards :before {
box-sizing: border-box;
}
.wp-block-copia-gutenberg-blocks-story-cards .container {
max-width: 1316px;
}
.wp-block-copia-gutenberg-blocks-story-cards .swiper-slide {
height: auto;
}
.wp-block-copia-gutenberg-blocks-story-cards .swiper-pagination {
margin-top: 1.5rem;
position: relative;
}
.wp-block-copia-gutenberg-blocks-story-cards .swiper-pagination-bullet {
background-color: #e9ebec;
height: 8px;
margin: 0 4px;
opacity: 1;
transition: width 0.3s;
width: 8px;
}
.wp-block-copia-gutenberg-blocks-story-cards .swiper-pagination-bullet-active {
background-color: #979a9b;
border-radius: 200px;
width: 24px;
}
.wp-block-copia-gutenberg-blocks-story-cards .cards__main-title {
margin-bottom: 3rem;
text-align: center;
}
.wp-block-copia-gutenberg-blocks-story-cards .cards__item {
border: 1px solid #e9ebec;
border-radius: 20px;
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
padding: 1.75rem;
}
.wp-block-copia-gutenberg-blocks-story-cards .cards__item h3 {
margin-bottom: 2.1875rem;
}
.wp-block-copia-gutenberg-blocks-story-cards .cards__item a {
color: #1b00fb;
font-weight: 600;
margin-top: auto;
}
</style>
<style id="copia-gutenberg-blocks-stats-style-inline-css">
.wp-block-copia-gutenberg-blocks-stats .stats {
padding: 11.625rem 0;
text-align: center;
}
.wp-block-copia-gutenberg-blocks-stats .stats__title {
margin-bottom: 3.5rem;
}
.wp-block-copia-gutenberg-blocks-stats .stats__item-description,
.wp-block-copia-gutenberg-blocks-stats .stats__item-title {
margin-bottom: 0;
}
.wp-block-copia-gutenberg-blocks-stats .stats__item-description {
font-size: 1.5rem;
font-weight: 700;
line-height: 1.5rem;
}
</style>
<style id="copia-gutenberg-blocks-cta-style-inline-css">
.wp-block-copia-gutenberg-blocks-cta .cta {
padding: 10rem 0;
}
.wp-block-copia-gutenberg-blocks-cta .cta__heading {
color: inherit;
margin: 0 auto 1.5rem;
max-width: 624px;
}
</style>
<style id="copia-gutenberg-blocks-faqs-style-inline-css">
.wp-block-copia-gutenberg-blocks-faqs {
box-sizing: border-box;
padding: 5.5625rem 0 6.25rem;
}
.wp-block-copia-gutenberg-blocks-faqs *,
.wp-block-copia-gutenberg-blocks-faqs :after,
.wp-block-copia-gutenberg-blocks-faqs :before {
box-sizing: border-box;
}
.wp-block-copia-gutenberg-blocks-faqs .row .col-md:first-child .title-lg {
font-size: 2rem;
}
</style>
<style id="copia-gutenberg-blocks-quote-style-inline-css">
.wp-block-copia-gutenberg-blocks-quote .quote {
padding: 10.75rem 0;
}
.wp-block-copia-gutenberg-blocks-quote .quote__link {
color: #1b00fb;
font-weight: 600;
margin-left: auto;
margin-top: auto;
}
.wp-block-copia-gutenberg-blocks-quote .quote__meta {
display: flex;
}
.wp-block-copia-gutenberg-blocks-quote .quote h2 {
margin-bottom: 1.5rem;
}
.wp-block-copia-gutenberg-blocks-quote .quote p {
color: inherit;
font-weight: 400;
margin: 0;
}
.wp-block-copia-gutenberg-blocks-quote .quote .container {
max-width: 993px;
}
</style>
<link rel="stylesheet" id="classic-theme-styles-css" href="assets/css/classic-themes.min68b3.css" media="all" />
<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--color--primary: #525ddc;
--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--duotone--dark-grayscale: url("#wp-duotone-dark-grayscale");
--wp--preset--duotone--grayscale: url("#wp-duotone-grayscale");
--wp--preset--duotone--purple-yellow: url("#wp-duotone-purple-yellow");
--wp--preset--duotone--blue-red: url("#wp-duotone-blue-red");
--wp--preset--duotone--midnight: url("#wp-duotone-midnight");
--wp--preset--duotone--magenta-yellow: url("#wp-duotone-magenta-yellow");
--wp--preset--duotone--purple-green: url("#wp-duotone-purple-green");
--wp--preset--duotone--blue-orange: url("#wp-duotone-blue-orange");
--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;
}
:where(.is-layout-flex) {
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;
}
:where(.wp-block-columns.is-layout-flex) {
gap: 2em;
}
.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-columns.is-layout-flex) {
gap: 2em;
}
.wp-block-pullquote {
font-size: 1.5em;
line-height: 1.6;
}
</style>
<link rel="stylesheet" id="copia-swiper-css" href="cdn.jsdelivr.net/npm/swiper%408/swiper-bundle.min6a4d.css" media="all" />
<link rel="stylesheet" id="sage/app.css-css" href="app/themes/markup/dist/styles/app22f8.css" media="all" />
<script src="assets/js/jquery/jquery.mina7a0.js" id="jquery-core-js"></script>
<script src="assets/js/jquery/jquery-migrate.mind617.js" id="jquery-migrate-js"></script>
<style>
.recentcomments a {
display: inline !important;
padding: 0 !important;
margin: 0 !important;
}
</style>
<link rel="icon" href="favicon.png" sizes="32x32" />
<link rel="icon" href="favicon.png" sizes="192x192" />
<link rel="apple-touch-icon" href="favicon.png" />
<meta name="msapplication-TileImage" content="favicon.png" />
</head>
<body class="privacy-policy page-template page-template-template-container page page-id-75 wp-embed-responsive disclaimer-">
<div id="app">
<nav class="navbar navbar-default navbar-expand-lg sticky-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img style="width: 80%;" src="assets/images/logo_name_250.png" alt="themacroproject.github.io" class="brand__logo" />
</a>
<div class="collapse navbar-collapse justify-content-end" id="navbar">
<div class="navbar__inner py-lg-0 d-flex flex-column-reverse flex-lg-column">
<div id="navbarSupportedContent" class="menu-main-menu-container">
<ul id="menu-main-menu" class="nav navbar-nav ml-lg-auto" itemscope itemtype="http://www.schema.org/SiteNavigationElement">
<li id="menu-item-698" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-698 nav-item">
<a itemprop="url" target="_blank" href="https://medium.com/@themacroproject" class="nav-link"><span itemprop="name">Blog</span></a>
</li>
<li id="menu-item-698" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-698 nav-item">
<a itemprop="url" target="_blank" href="https://github.com/themacroproject" class="nav-link"><span itemprop="name">Github</span></a>
</li>
<li id="menu-item-698" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-698 nav-item">
<a itemprop="url" target="_blank" href="contact.html" class="nav-link"><span itemprop="name">Contact</span></a>
</li>
</ul>
</div>
</div>
</div>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbar"
aria-controls="navbar"
aria-expanded="false"
aria-label="Toggle
navigation"
>
<span class="menu-toggler">
<span class="menu-toggler-line line_1"></span>
<span class="menu-toggler-line line_2"></span>
<span class="menu-toggler-line line_3"></span>
</span>
</button>
</div>
</nav>
<main class="main">
<div class="container mt-10 mb-10">
<p>This Privacy Policy applies to the The Macro Project</p>
<p>
The Macro Project recognises the importance of maintaining your privacy. We value your privacy and appreciate your trust in us. This Policy describes how we treat user information we collect on
https://themacroproject.github.io and other offline sources. This Privacy Policy applies to current and former visitors to our website and to our online customers. By visiting and/or using our website, you agree to
this Privacy Policy.
</p>
<p>Information we collect</p>
<p>Contact information.</p>
<p>We might collect your name, email, mobile number, phone number, street, city, state, pincode, country and ip address.</p>
<p>Payment and billing information.</p>
<p>We might collect your billing name, billing address and payment method when you buy a ticket. We NEVER collect your credit card number or credit card expiry date or other details pertaining to your credit card on our
website. Credit card information will be obtained and processed by our online payment partner.</p>
<p>Information you post.</p>
<p>We collect information you post in a public space on our website or on a third party social media site belonging to The Macro Project.</p>
<p>Demographic information.</p>
<p>
We may collect demographic information about you, events you like, events you intend to participate in, tickets you buy, or any other information provided by your during the use of our website. We might collect this
as a part of a survey also.
</p>
<p>Other information.</p>
<p>
If you use our website, we may collect information about your IP address and the browser you're using. We might look at what site you came from, duration of time spent on our website, pages accessed or what site you
visit when you leave us. We might also collect the type of mobile device you are using, or the version of the operating system your computer or device is running.
</p>
<p>We collect information in different ways.</p>
<p>
We collect information directly from you.We collect information directly from you when you register for an event or buy tickets. We also collect information if you post a comment on our websites or ask us a question
through phone or email.
</p>
<p>We collect information from you passively.</p>
<p>
We use tracking tools like Google Analytics, Google Webmaster, browser cookies and web beacons for collecting information about your usage of our website. We get information about you from third parties.For example,
if you use an integrated social media feature on our websites. The third party social media site will give us certain information about you. This could include your name and email address.
</p>
<p>Use of your personal information</p>
<p>
We use information to contact you: We might use the information you provide to contact you for confirmation of a purchase on our website or for other promotional purposes. We use information to respond to your
requests or questions.We might use your information to confirm your registration for an event or contest.
</p>
<p>We use information to improve our products and services.</p>
<p>
We might use your information to customize your experience with us. This could include displaying content based upon your preferences. We use information to look at site trends and customer interests.We may use your
information to make our website and products better. We may combine information we get from you with information about you we get from third parties.
</p>
<p>We use information for security purposes.</p>
<p>We may use information to protect our company, our customers, or our websites.</p>
<p>We use information for marketing purposes.</p>
<p>We might send you information about special promotions or offers.</p>
<p>
We might also tell you about new features or products. These might be our own offers or products, or third party offers or products we think you might find interesting. Or, for example, if you buy tickets from us
we'll enroll you in our newsletter.
</p>
<p>We use information to send you transactional communications.We might send you emails or SMS about your account or a ticket purchase.</p>
<p>We use information as otherwise permitted by law.</p>
<p>Sharing of information with third parties</p>
<p>
We may share information with third parties who perform services on our behalf. We share information with vendors who help us manage our online registration process or payment processors or transactional message
processors. Some vendors may be located outside of India.
</p>
<p>
We may share information with the event organizers.We share your information with event organizers and other parties responsible for fulfilling the purchase obligation. The event organizers and other parties may use
the information we give them as described in their privacy policies.
</p>
<p>
We may share information with our business partners.This includes a third party who provide or sponsor an event, or who operates a venue where we hold events. Our partners use the information we give them as
described in their privacy policies.
</p>
<p>
We may share information if we think we have to in order to comply with the law or to protect ourselves.We will share information to respond to a court order or subpoena. We may also share it if a government agency
or investigatory body requests. Or, we might also share information when we are investigating potential fraud. We may share information with any successor to all or part of our business.For example, if part of our
business is sold we may give our customer list as part of that transaction.
</p>
We may share your information for reasons not described in this policy.We will tell you before we do this.
<p>
Email OptOut You can opt out of receiving our marketing emails.To stop receiving our promotional emails, please email [email protected]. It may take about ten days to process your request. Even if you opt out
of getting marketing messages, we will still be sending you transactional messages through email and SMS about your purchases.
</p>
<p>Third party sites</p>
<p>
If you click on one of the links to third party websites, you may be taken to websites we do not control. This policy does not apply to the privacy practices of those websites. Read the privacy policy of other
websites carefully. We are not responsible for these third party sites.
</p>
</div>
</main>
<div class="footer">
<div class="footer__default">
<div class="container">
<div class="row">
<div class="col-6 col-md-3">
<h6>Product</h6>
<ul>
<li>
<a href="products.html" aria-current="page">Overview</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
<div class="col-6 col-md-3 mt-5 mt-md-0">
<h6>Support</h6>
<ul>
<li>
<a href="https://www.patreon.com/themacroproject">Patreon</a>
</li>
<li>
<a href="https://tmp-docs.readthedocs.io/en/latest/module/usecases.html">Use Cases</a>
</li>
<li>
<a href="https://tmp-docs.readthedocs.io/">Documentation</a>
</li>
<li>
<a href="faq.html">FAQ</a>
</li>
</ul>
</div>
<div class="col-6 col-md-3 mt-5 mt-md-0">
<ul>
<h6>Legal</h6>
<li>
<a href="tnc.html">Terms And
Conditions</a>
</li>
<li>
<a href="privacy.html">Privacy Policy</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer__bottom">
<div class="container">
<div class="row align-items-center justify-content-between text-center">
<div class="col-md-auto">
<div class="footer__logo">
<img src="assets/images/logo_800.png" alt="Logo" />
</div>
</div>
<div class="footer__site-info col-md-auto text-center justify-content-center">
Made with ♥ in India
</div>
<div class="footer__copy col-md-auto">
© 2022 The Macro Project.
</div>
</div>
</div>
</div>
</div>
</div>
<script src="cdn.jsdelivr.net/npm/swiper%408/swiper-bundle.min6a4d.js" id="copia-script-js"></script>
<script src="assets/js/copia6a4d.js" id="copia-custom-js"></script>
<script id="sage/vendor.js-js-before">
(function (modules) {
function webpackJsonpCallback(data) {
var chunkIds = data[0];
var moreModules = data[1];
var executeModules = data[2];
var moduleId,
chunkId,
i = 0,
resolves = [];
for (; i < chunkIds.length; i++) {
chunkId = chunkIds[i];
if (Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {
resolves.push(installedChunks[chunkId][0]);
}
installedChunks[chunkId] = 0;
}
for (moduleId in moreModules) {
if (Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
modules[moduleId] = moreModules[moduleId];
}
}
if (parentJsonpFunction) parentJsonpFunction(data);
while (resolves.length) {
resolves.shift()();
}
deferredModules.push.apply(deferredModules, executeModules || []);
return checkDeferredModules();
}
function checkDeferredModules() {
var result;
for (var i = 0; i < deferredModules.length; i++) {
var deferredModule = deferredModules[i];
var fulfilled = true;
for (var j = 1; j < deferredModule.length; j++) {
var depId = deferredModule[j];
if (installedChunks[depId] !== 0) fulfilled = false;
}
if (fulfilled) {
deferredModules.splice(i--, 1);
result = __webpack_require__((__webpack_require__.s = deferredModule[0]));
}
}
return result;
}
var installedModules = {};
var installedChunks = {
"/scripts/manifest": 0,
};
var deferredModules = [];
function __webpack_require__(moduleId) {
if (installedModules[moduleId]) {