-
Notifications
You must be signed in to change notification settings - Fork 0
/
tnc.html
1402 lines (1265 loc) · 51.1 KB
/
tnc.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>Terms and Conditions - The Macro Project</title>
<link rel="canonical" href="tnc.html" />
<meta property="og:locale" content="en_GB" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Terms and Conditions" />
<meta
property="og:description"
content="The Macro Project Terms & Conditions These Terms and
Conditions (“Terms”) govern your use of the The Macro Project Service.
These Terms constitute an agreement between the User and The Macro
Project. If you do not accept these Terms, you may not use The
Macro Project. In addition to these Terms, your use of The Macro Project
is governed by our Privacy Policy. … Continued"
/>
<meta property="og:url" content="index.html" />
<meta property="og:site_name" content="themacroproject.github.io" />
<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"
/>
</head>
<body
class="page-template page-template-template-container page page-id-200255 wp-embed-responsive disclaimer- terms-and-conditions"
>
<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><strong>Terms & Conditions</strong></p>
TERMS OF SERVICE AGREEMENT
<p>LAST REVISION: [7-March-2023]</p>
<p>PLEASE READ THIS TERMS OF SERVICE AGREEMENT CAREFULLY. BY
USING THIS WEBSITE OR ORDERING PRODUCTS FROM THIS WEBSITE YOU
AGREE TO BE BOUND BY ALL OF THE TERMS AND CONDITIONS OF THIS
AGREEMENT.</p>
<p>This Terms of Service Agreement (the "Agreement") governs your use of this
website, https://themacroproject.github.io or https://github.com/themacroproject (the "Website"), The Macro Project ("Business Name")
offer of products for purchase on this Website, or your purchase of products
available on this Website. This Agreement includes, and incorporates by this
reference, the policies and guidelines referenced below. The Macro Project reserves
the right to change or revise the terms and conditions of this Agreement at any time
by posting any changes or a revised Agreement on this Website. The Macro Project
will alert you that changes or revisions have been made by indicating on the top of
this Agreement the date it was last revised. The changed or revised Agreement will
be effective immediately after it is posted on this Website. Your use of the Website
following the posting any such changes or of a revised Agreement will constitute
your acceptance of any such changes or revisions. The Macro Project encourages
you to review this Agreement whenever you visit the Website to make sure that you
understand the terms and conditions governing use of the Website. This Agreement
does not alter in any way the terms or conditions of any other written agreement you
may have with The Macro Project for other products or services. If you do not agree to
this Agreement (including any referenced policies or guidelines), please immediately
terminate your use of the Website. </p>
<p><b>I. PRODUCTS</b></p>
<p>Terms of Offer. This Website offers for sale certain products (the "Products"). By
placing an order for Products through this Website, you agree to the terms set forth
in this Agreement.</p>
<p>Customer Solicitation: Unless you notify our third party call center reps or direct
The Macro Project sales reps, while they are calling you, of your desire to opt out from
further direct company communications and solicitations, you are agreeing to
continue to receive further emails and call solicitations The Macro Project and its
designated in house or third party call team(s).</p>
Opt Out Procedure: We provide 3 easy ways to opt out of from future solicitations.
<p>1. You may use the opt out link found in any email solicitation that you may receive.</p>
<p>2. You may also choose to opt out, via sending your email address to: [email protected].</p>
<p>3. You may send a written remove request to [email protected].</p>
<p>Proprietary Rights. The Macro Project has MIT licence in the
Products. You may copy, reproduce, resell or redistribute any Product
manufactured and/or distributed by The Macro Project. The Macro Project also has
rights to all trademarks and trade dress and specific layouts of this webpage,
including calls to action, text placement, images and other information.</p>
<p>Sales Tax. If you purchase any Products, you will be responsible for paying any
applicable sales tax.</p>
<p><b>II. WEBSITE</b></p>
<p>Content; Intellectual Property; Third Party Links. In addition to making Products
available, this Website also offers information and marketing materials. This Website
also offers information, both directly and through indirect links to third-party websites,
about nutritional and dietary supplements. The Macro Project does not always create
the information offered on this Website; instead the information is often gathered
from other sources. To the extent that The Macro Project does create the content on
this Website, such content is protected by intellectual property laws of the India,
foreign nations, and international bodies. Unauthorized use of the material may
violate copyright, trademark, and/or other laws. You acknowledge that your use of
the content on this Website is for personal, noncommercial use. Any links to thirdparty websites are provided solely as a convenience to you. The Macro Project does
not endorse the contents on any such third-party websites. The Macro Project is not
responsible for the content of or any damage that may result from your access to or
reliance on these third-party websites. If you link to third-party websites, you do so at
your own risk.</p>
<p>Use of Website; The Macro Project is not responsible for any damages resulting from
use of this website by anyone. You will not use the Website for illegal purposes. You
will (1) abide by all applicable local, state, national, and international laws and
regulations in your use of the Website (including laws regarding intellectual
property), (2) not interfere with or disrupt the use and enjoyment of the Website by
other users, (3) not resell material on the Website, (4) not engage, directly or
indirectly, in transmission of "spam", chain letters, junk mail or any other type of