-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgsc.html
902 lines (819 loc) · 48.9 KB
/
gsc.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
<html lang="en">
<head>
<!-- Basic Meta Page Needs -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#6D4C41" />
<meta name="msapplication-TileColor" content="#6D4C41">
<meta name="msapplication-navbutton-color" content="#FFFFFF">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#6D4C41">
<meta content="text/html; charset=UTF-8" name="Content-Type" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description"
content="Kidjo - Smart Digital Playground, Ad Free Curated Premium Videos for Children, Kidjo TV Videos Children Ad Free Premium">
<meta name="author" content="kidjo.tv" />
<meta name="distribution" content="global" />
<meta name="resource-type" content="document" />
<meta name="language" content="en" />
<title>GSC - Kidjo TV</title>
<link rel="shortcut icon" type="image/png" href="assets/img/favicon.gif" />
<link rel="icon" type="image/x-icon" href="assets/img/favicon.gif" />
<!-- Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css"
integrity="sha256-GqiEX9BuR1rv5zPU5Vs2qS/NSHl1BJyBcjQYJ6ycwD4=" crossorigin="anonymous" />
<!-- Styles -->
<link href="css/styles.css" rel="stylesheet">
</head>
<body class="gsc">
<div class="overlay">
<img src="assets/img/homepage/logo-footer.png" class="lazy img-fluid logo-overlay" alt="logo-kidjo">
<span class="bree-bold">Smart Digital Playground</span>
</div>
<nav class="navbar navbar-light navbar-expand-md fixed-top bg-white shadow-sm">
<div class="container">
<a class="navbar-brand " href="index.html">
<img src="assets/img/homepage/logo-header.png" class="lazy img-fluid logo-header" alt="logo-kidjo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="product.html">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="faq.html">Help</a>
</li>
<li class="nav-item pd-right">
<a class="btn btn-orange" href="#">Login</a>
</li>
<li class="nav-item dropdown pd-left">
<a class="dropdown-toggle btn btn-white" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
En
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" name="fr" href="#">Fr</a>
<a class="dropdown-item" name="es" href="#">Es</a>
<a class="dropdown-item" name="de" href="#">De</a>
<a class="dropdown-item" name="it" href="#">It</a>
<a class="dropdown-item" name="ar" href="#">Ar</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
<section class="head-banner">
<div class="container">
<div class="row">
<div class="col-12 col-md-8">
<h1 class="title bree-bold">General Subscription Conditions</h1>
</div>
<div class="col-12 col-md-4">
<p class="update-time bree-serif">
Updated and Effective as of: <br>
Mar 23, 2020
</p>
</div>
</div>
</div>
</section>
<section class="content-gsc">
<div class="container">
<div class="box-content">
<h2 class="title-content">Article 1. Preamble</h2>
<p class="desc-title"></p>
<p class="content bree-light">
These General Subscription Conditions govern the relations between the company KIDJO Inc., an
American
company located at c/o Exco Us Atrium, 5670 Wilshire Blvd – Suite 1802 Los Angeles, CA 90036
(hereinafter referred to as “KIDJO Inc.”) and the consumers (hereafter referred to as the
“Customer”)
wishing to subscribe to the Content and Services accessible via the Application.<br><br>
The Customer is required to read these General Subscription Conditions (hereinafter referred to as
the
GSC) carefully before subscribing to the Content and Services proposed by KIDJO Inc. either via the
Website or via the Stores. <br><br>
In this regard, it is stated that the GSC apply to all Customers subscribing via the Website. For
Customers subscribing via Stores, they should, in relation to the method of Subscribing or
Unsubscribing, refer to the relevant Store terms and conditions, which they will find in the FAQ
links
on the Kidjo.tv website. <br><br>
The confirmation of the order by the Customer at the end of the order process implies adhesion to
and
full unreserved acceptance of these GSC. This is expressly recognized by the Customer when they tick
the
“I have read and accepted the GSC” box provided.<br><br>
The GSC are available on the Website at any time. The applicable GSC are those in force on the
Website
on the date of taking out a Subscription.
</p>
</div>
<div class="box-content">
<h2 class="title-content">Article 2. Purpose</h2>
<p class="desc-title"></p>
<p class="content bree-light">
The purpose of the GSC is to define the terms under which KIDJO Inc. provides access to the Content
and Services for the Customer and the conditions for Subscribing to Services set out below
</p>
</div>
<div class="box-content">
<h2 class="title-content">Article 3. Definitions</h2>
<p class="desc-title bree-light">
The terms below used in the GSC have the following meanings :
</p>
<div class="point-list bree-light">
<ul>
<li class="list-content">
“Subscription”: package providing access to the Content and Services offered by KIDJO Inc.
as
described in Article 4;
</li>
<li class="list-content">
“Application”: application named “Kidjo” providing access to Services and Content;
</li>
<li class="list-content">
“Customer”: refers to any physical adult person with a bank account who has taken out a
Subscription
to the Services and Content;
</li>
<li class="list-content">
“Content”: refers to over 1,500 videos (games, cartoons, etc.) offered by KIDJO Inc. as part
of the
Subscription and freely accessible;
</li>
<li class="list-content">
“Customer Account”: personal electronic portal accessible on the Website and/or a mobile
device,
from which the Customer can manage their Subscription and unsubscribe;
</li>
<li class="list-content">
“Parent Area”: allows the Customer to create up to three User profiles (first name, age,
Content,
customization with a photo) and make usage choices (including languages, viewing time,
backpack
management, etc.)
</li>
<li class="list-content">
“User Area”: personalized electronic portal accessible to Users allowing them to view
Content
</li>
<li class="list-content">
“Service”: all the online services allowing Customers to customize their use of the
Application;
</li>
<li class="list-content">
“Website”: the website published by KIDJO Inc. and accessible at www.kidjo.tv allowing
people to
take out a Subscription;
</li>
<li class="list-content">
“User”: refers to any physical person authorized to access the Content; this may be the
Customer or
minors under the responsibility of the Customer.
</li>
</ul>
</div>
</div>
<div class="box-content">
<h2 class="title-content">Article 4. Description of the Content and Services</h2>
<p class="desc-title bree-serif font-weight-bold">
4.1 Content
</p>
<div class="point-list bree-light">
<p class="text-content">
KIDJO Inc. offers Subscriptions to the Services and Content intended for children without
advertising, accessible via the Application.<br><br>
The Content is proposed according to the age of the User, language and Content-type.
Furthermore, the Content, videos, and games are divided into two categories:
</p>
<ul>
<li class="list-content">
“have fun”;
</li>
<li class="list-content">
“learn”.
</li>
</ul>
</div>
<p class="desc-title bree-serif font-weight-bold">
4.2 Services
</p>
<p class="sub-desc bree-serif font-weight-bold">
4.2.1 Parent Area
</p>
<div class="point-list bree-light">
<p class="text-content">
As part of the Subscription, the Parent Area gives Customers access to all the following
Services:
</p>
<ul>
<li class="list-content">
creation of up to three User Profiles;
</li>
<li class="list-content">
configuration of User Profiles (first name, age, content, customization with a photo);
</li>
<li class="list-content">
choice of language;
</li>
<li class="list-content">
choice of viewing time;
</li>
<li class="list-content">
choice of backpack settings (size, download preferences – WiFi or 3G/4G);
</li>
<li class="list-content">
sound preferences;
</li>
<li class="list-content">
choice of authorizing games or otherwise;
</li>
<li class="list-content">
choice of automatically viewing videos from the same series or otherwise;
</li>
<li class="list-content">
synchronization with the Customer Account (allowing deblocking of content once the
Subscription has been taken out).
</li>
</ul>
</div>
<p class="sub-desc bree-serif font-weight-bold">
4.2.2 User Area
</p>
<div class="point-list bree-light">
<p class="text-content">
As part of the Subscription, the User Area gives Users access to the Content.
</p>
</div>
</div>
<div class="box-content">
<h2 class="title-content">Article 5. Access to Services</h2>
<p class="desc-title bree-serif font-weight-bold">
5.1 Configuration
</p>
<div class="point-list bree-light">
<p class="text-content">
To be able to use the Services, the Customer must have a computer, mobile device or tablet with
a subscription to an internet service provider. The fees related to these elements are the sole
responsibility of the Customer.<br>
The Customer is informed that connection to the Website, mobile terminal and User and Customer
Areas is effected through the internet network. They are aware of the technical variations that
can affect this network and cause slowing down or unavailability making connection impossible.
KIDJO Inc. cannot be held liable for difficulties accessing the Website and Areas due to
disruption to the internet network.<br>
Moreover, the Customer must ensure that the configuration of their equipment is compatible with
the Services delivered by KIDJO Inc.
</p>
</div>
<p class="desc-title bree-serif font-weight-bold">
5.2 User Identification
</p>
<div class="point-list bree-light">
<p class="text-content">
The Customer and User Areas are accessible through a remote connection using user
identification. User identification is proof of the Customer’s identity and engages the Customer
for all use of the Website and/or the Services and/or Content.
</p>
</div>
<p class="desc-title bree-serif font-weight-bold">
5.3 Maintenance
</p>
<div class="point-list bree-light">
<p class="text-content">
The Customer understands and expressly accepts that KIDJO Inc. may restrict, limit or suspend
access to the Customer and User Areas during maintenance operations.<br><br>
Access to the Website may be temporarily interrupted during maintenance.<br><br>
To limit the consequences of such operations, the Customer may download Content in advance so
that it is available offline using the “Backpack” Service.
</p>
</div>
</div>
<div class="box-content">
<h2 class="title-content">Article 6. Subscription Process on the Website</h2>
<p class="desc-title bree-light">
An internet user who wishes to subscribe to the Content and Services proposed by KIDJO via the
Website must follow the following steps:
</p>
<div class="point-list bree-light">
<ol>
<li class="list-content">
Be 18 years old or older at the time of taking out the subscription;
</li>
<li class="list-content">
Click on the “log-in” button on the menu at the top of the page;
</li>
<li class="list-content">
Open an account by entering their email address and password;
</li>
<li class="list-content">
Choose their payment method (credit card, PayPal, or voucher);
</li>
<li class="list-content">
Confirm their unreserved acceptance of the GSC in force at the time of ordering by ticking
the appropriate box;
</li>
<li class="list-content">
Check all the information relating to the order, confirm payment and thus confirm the order
with obligation to pay.
</li>
</ol>
</div>
</div>
<div class="box-content">
<h2 class="title-content">Article 7. Confirmation of the Order on the Website</h2>
<p class="desc-title bree-light">
As soon as the order has been placed, the Customer is informed by a page of the Website that their
Subscription has been registered.
</p>
<div class="point-list bree-light">
<p class="text-content">
KIDJO Inc. reserves the right to refuse or cancel a Customer’s Subscription for any legitimate
reason, including in the following cases:
</p>
<ul>
<li class="list-content">
incorrect entry of bank details;
</li>
<li class="list-content">
refusal to pay by the Customer’s bank;
</li>
<li class="list-content">
fraud concerning the payment method or any other criminal offence of the same type by the
Customer.
</li>
</ul>
</div>
<p class="content bree-light">
The Customer must bear any costs required to resolve the problem, including in the event of refusal
to pay by their bank.
</p>
</div>
<div class="box-content">
<h2 class="title-content">Article 8. Absence of Right of Withdrawal</h2>
<p class="content bree-light">
As the Products and Services offered by KIDJO Inc. are digital content that is not provided on
physical media, the Customer recognizes that they have no right of withdrawal.<br><br>
Moreover, by accepting the GSC, the Customer recognizes that the Subscription is taken out as soon
as the order has been placed according to the methods set out in the GSC.
</p>
</div>
<div class="box-content">
<h2 class="title-content">Article 9. Term of the Subscription</h2>
<p class="content bree-light">
The Customer has access to the Services and Content as soon as the Subscription has been paid
for.<br><br>
The Subscription is renewed automatically from one month to the next unless the Customer
unsubscribes at least forty-eight (48) hours before the end of the renewal period and the
Subscription is from date to date.
</p>
</div>
<div class="box-content">
<h2 class="title-content">Article 10. Price</h2>
<p class="content bree-light">
The prices are provided in euros including tax. They include VAT and any reductions applicable at
the time of ordering.<br><br>
KIDJO Inc. reserves the right to change the prices displayed on the Website at any time. However,
prices are fixed and non-revisable with regard to the Customer once their Subscription has been
confirmed.
</p>
</div>
<div class="box-content">
<h2 class="title-content">Article 11. Payment terms</h2>
<p class="desc-title bree-serif font-weight-bold">
11.1 Payment Method
</p>
<div class="point-list bree-light">
<p class="text-content">
The payment relating to the Subscription is made by the Customer by either:
</p>
<ul>
<li class="list-content">
Bank card: Visa, Mastercard, or Carte Bleue, issued in France;
</li>
<li class="list-content">
Debit via the various stores;
</li>
<li class="list-content">
PayPal;
</li>
<li class="list-content">
Voucher issued by the partners of KIDJO Inc. for the benefit of the Customer, allowing a
Subscription for a limited period; it being at the Customer’s expense if they decide to
extend the Subscription beyond the initial period.
</li>
</ul>
</div>
<p class="content bree-light">
The payment is made as soon as the order is confirmed and the Subscription is payable in advance,
for each period, by automatic withdrawal on the bank card.<br><br>
The Customer recognizes and accepts that by communicating the information relating to the bank card,
KIDJO Inc. will debit their bank card according to the methods defined in the GSC.<br><br>
The Customer is required to update and/or modify by any means their bank details via their account
(from the Customer Area in the “Modify my Details” section) in the event that these details are no
longer valid.<br><br>
In the event of unsuccessful payment by bank card, except in the case of theft or blocking, our
secure payment service provider may be required to represent the payment until it is settled. In the
event of late payment or no payment, KIDJO Inc. reserves the right to cancel the Subscription in
accordance with Article 16.<br><br>
</p>
<p class="desc-title bree-serif font-weight-bold">
11.2 Vouchers
</p>
<p class="content bree-light">
The Customer may use vouchers. The validity of vouchers is limited in time at KIDJO Inc.’s
discretion. <br><br>
Vouchers are sent to the Customer by email. The Customer should keep the email containing them in
order to complete the relevant field at the time of ordering.
</p>
</div>
<div class="box-content">
<h2 class="title-content">Article 12. Customer’s Obligations</h2>
<p class="content bree-light">
The Customer recognizes having previously taken out the Subscription on the verification of the
suitability of the Services and/or Content with their needs and those of the User and recognizes
that all the information and advice necessary for him/her to commit to the Subscription has been
communicated to him/her by KIDJO Inc.<br><br>
The Customer undertakes to use the Website, Services, and Content in accordance with the
stipulations of the GSC. They undertake not to breach the intellectual property rights of KIDJO Inc.
or any third party.<br><br>
The Customer is solely responsible for the access to and use of the Website, Services and/or Content
by the Users. It is up to the Customer to ensure that all Users comply with the contractual access
and usage conditions of the Website, Services, and/or Content. The Customer is also solely
responsible for their internet access. It is up to the Customer to make provisions to maintain this
access.<br><br>
The use by the Customer of the Website and/or the Services and/or the Content is not limited
according to connection time. However, the use by the Customer of the Services and access to the
Content is limited in number to three (3) Users.
</p>
</div>
<div class="box-content">
<h2 class="title-content">Article 13. Intellectual Property</h2>
<p class="desc-title bree-serif font-weight-bold">
13.1 On the Website
</p>
<p class="content bree-light">
The Website and the brands, domain name, images, models, pictures, texts, photos, logos, graphic
charter, software, programs, search engine, and content databases on the Website are the exclusive
property of KIDJO Inc. and are protected by industrial or intellectual property rights.<br><br>
Any complete or partial reproduction and/or representation of one of these elements without the
express authorization of KIDJO Inc. is forbidden and will constitute fraud as sanctioned by the
French Intellectual Property Code.<br><br>
</p>
<p class="desc-title bree-serif font-weight-bold">
13.2 On the Content
</p>
<p class="content bree-light">
All published Content is videos and games that are under copyright, belonging to or licensed by
KIDJO Inc. <br><br>
The Services and Content are protected by intellectual property law. The use of the Services and
access to Content are personal, non-exclusive, non-transferable, not sub-licensable, and limited to
non-commercial use.
</p>
<div class="point-list bree-light">
<p class="text-content">
Consequently, the Customer undertakes not to:
</p>
<ul>
<li class="list-content">
copy, modify, alter, translate, reproduce, broadcast, sell, publish, or exploit in any way
whatsoever and in any form or on any media whatsoever, all or part of the Website and/or the
Services and/or Content of the Website;
</li>
<li class="list-content">
download, other than under the circumstances authorized by KIDJO Inc., and, more generally,
fix or reproduce on any media whatsoever, by any process whatsoever, all or part of the
Website and/or the Services and/or the Content;
</li>
<li class="list-content">
more generally, exploit and/or use all or part of the Website and/or the Services and/or the
Content by any means whatsoever and in any form whatsoever, for any purposes other than
those that are expressly authorized.
</li>
</ul>
</div>
<p class="content bree-light">
Any use of all or part of the Website and/or the Content by the Customer that is contrary to the GSC
will engage the Customer’s liability, including in regard to KIDJO Inc. and will be likely to expose
them to criminal and/or civil sanctions. <br><br>
Moreover, in the event of breach by the Customer of one of the obligations described above, KIDJO
Inc. will automatically be authorized, without giving notice, to suspend access to the Website
and/or to terminate the Subscription in accordance with Article 16 below.
</p>
</div>
<div class="box-content">
<h2 class="title-content">Article 14. Customer Data</h2>
<p class="content bree-light">
The personal data collected as part of the Subscription process and/or the use of the Services will
be subject to data processing in accordance with the General Data Protection Regulation (hereinafter
“GDPR”).<br>
The data controller for personal data is the company KIDJO Inc., domiciled at the address provided
above.<br><br>
The Customer is informed that the information gathered is subject to data processing for the purpose
of carrying out operations relating to the management of Customers concerning contracts,
Subscriptions, invoices, accounting and the management of Customer Accounts.<br><br>
KIDJO Inc. indicates the information required for carrying out these services with the following
sign: “*”. If the Customer does not complete the fields marked as required, they will be unable to
subscribe and will be unable to enjoy the Services provided by KIDJO Inc.
</p>
<div class="point-list bree-light">
<p class="text-content">
The recipients of the data are:
</p>
<ul>
<li class="list-content">
staff dealing with customer service, support, invoicing and marketing;
</li>
<li class="list-content">
sub-contractors of KIDJO Inc.
</li>
</ul>
</div>
<div class="point-list bree-light">
<p class="text-content">
In accordance with the GDPR, all physical persons have the right to:
</p>
<ul>
<li class="list-content">
access the data;
</li>
<li class="list-content">
rectify the data;
</li>
<li class="list-content">
remove information concerning them under the conditions set by Article 17 of the GDPR;
</li>
<li class="list-content">
limited processing;
</li>
<li class="list-content">
define general and special directives governing the way in which they wish their rights to
be exercised following their death;
</li>
<li class="list-content">
the portability of data.
</li>
</ul>
</div>
<p class="content bree-light">
The Customer may exercise these rights by providing proof of identity and contacting KIDJO Inc. at
the following email address:
<span><a href="mailto:[email protected]">[email protected]</a></span><br><br>
Finally, the Customer may, if necessary, make a claim to the CNIL (French data protection authority)
(<span><a href="https://www.cnil.fr/fr/plaintes"
target="_blank">https://www.cnil.fr/fr/plaintes</a></span>). To do so, the Customer may
contact the CNIL by mail or telephone (details available here: <span><a
href="https://www.cnil.fr/fr/vous-souhaitez-contacter-la-cnil"
target="_blank">https://www.cnil.fr/fr/vous-souhaitez-contacter-la-cnil</a></span>).
</p>
</div>
<div class="box-content">
<h2 class="title-content">Article 15. Liability</h2>
<p class="content bree-light">
The Customer is solely liable for the accuracy and veracity of all the information they enter at
each stage of the order, as well as during all stages after the conclusion of the contract.
</p>
<div class="point-list bree-light">
<p class="text-content">
KIDJO Inc. undertakes to put in place the means necessary to access the Website, the Services,
and the Contact according to a best-efforts obligation.<br>
KIDJO Inc. declines all liability in the following cases:
</p>
<ul>
<li class="list-content">
interruption to the Website, the occurrence of bugs or any other event making the Website
and/or the Services and/or the Content unusable;
</li>
<li class="list-content">
any inaccuracy or omission regarding the information available on the Website;
</li>
<li class="list-content">
in the event of failure of the Internet network and the inaccessibility of the Services
and/or the Content
</li>
</ul>
</div>
</div>
<div class="box-content">
<h2 class="title-content">Article 16. Termination</h2>
<p class="desc-title bree-serif font-weight-bold">
16.1 At the Customer’s Initiative
</p>
<p class="content bree-light">
The Customer may terminate the Subscription forty-eight (48) hours before the end of the month, free of charge, directly on the Website.<br><br>
The termination will take effect on the expiry date of the Subscription. <br><br>
<span class="font-weight-bold bree-serif">
Uninstalling the KIDJO Inc. Application will not terminate the Customer’s Subscription. If theCustomer uninstalls the KIDJO Inc. Application without cancelling their Subscription, their account will continue to be debited. The Subscription must be terminated explicitly according to the
procedure set out in the “how to cancel my subscription” section.
</span><br><br>
In the event of termination, the Customer is liable for the amount of the current Subscription period at the time of termination and the Customer and the User will continue to benefit from the Content and Services until the end of the period.<br><br>
If the Subscription has been taken out through a Store, it is up to the Customer to refer to the Store’s terms and conditions and to click on the appropriate links for terminating the Subscription.<br><br>
</p>
<p class="desc-title bree-serif font-weight-bold">
16.2 At KIDJO Inc.’s Initiative
</p>
<div class="point-list bree-light">
<p class="text-content">
KIDJO Inc. may terminate and/or suspend the Subscription at any time:
</p>
<ul>
<li class="list-content">
in the event of non-payment by the Customer;
</li>
<li class="list-content">
if the Customer does not update the information relating to the payment method used for the Subscription upon its expiry;
</li>
<li class="list-content">
if the Customer uses the Content and Services in breach of the GSC;
</li>
<li class="list-content">
if the Customer breaches any rights existing on the Content and the Services, including associated copyright;
</li>
<li class="list-content">
if the information communicated by the Customer with regard to the Subscription is incomplete, inaccurate or obsolete;
</li>
<li class="list-content">
in the event of the Customer’s failure to fulfil any one of the obligations incumbent on them under the GSC;
</li>
<li class="list-content">
in the event of circumstances considered force majeure lasting for more than one (1) month.
</li>
</ul>
<p class="content bree-light">
The termination or suspension of the Subscription will result in the immediate deactivation of the Services and access to the Content, with no right to compensation or refund. Termination will occur without prejudice to any action for damages that KIDJO Inc. could take against the Customer.
</p>
</div>
<p class="content bree-light">
Any use of all or part of the Website and/or the Content by the Customer that is contrary to the GSC
will engage the Customer’s liability, including in regard to KIDJO Inc. and will be likely to expose
them to criminal and/or civil sanctions. <br><br>
Moreover, in the event of breach by the Customer of one of the obligations described above, KIDJO
Inc. will automatically be authorized, without giving notice, to suspend access to the Website
and/or to terminate the Subscription in accordance with Article 16 below.
</p>
</div>
<div class="box-content">
<h2 class="title-content">Article 17. Mediation</h2>
<p class="content bree-light">
The Customer is informed that they may have recourse to mediation with the consumer mediation commission or existing sectoral mediation bodies or any alternative means of dispute settlement in the event of contestation.
</p>
</div>
<div class="box-content">
<h2 class="title-content">Article 18. Jurisdiction</h2>
<p class="content bree-light">
Any disputes resulting from the interpretation or execution of these GSC that cannot be resolved between the parties will be subject to the jurisdiction of the competent American courts.
</p>
</div>
</div>
</section>
<footer class="footer-kidjo">
<img src="assets/img/homepage/line-7.png" class="lazy img-fluid line-7" alt="line-7">
<div class="container">
<div class="text-center">
<img src="assets/img/homepage/logo-footer.png" class="lazy img-fluid logo-footer" alt="logo-kidjo">
</div>
<div class="terms-privacy">
<ul class="menu-privacy">
<li class="list-menu-privacy">
<a href="index.html">Home</a>
</li>
<li class="list-menu-privacy">
<a href="index.html#inPress">Press</a>
</li>
<li class="list-menu-privacy">
<a href="index.html#boxContact">Contact Us</a>
</li>
<li class="list-menu-privacy">
<a href="legal.html">Legal Notices</a>
</li>
<li class="list-menu-privacy">
<a href="privacy.html">Privacy Policy</a>
</li>
<li class="list-menu-privacy">
<a href="gsc.html">GSCs</a>
</li>
</ul>
</div>
<div class="store-kidjo">
<div class="container">
<div class="d-none d-sm-block">
<div class="row">
<div class="col-12 offset-md-1 col-md-2 box-store">
<a href="https://play.google.com/store/apps/details?id=net.kidjo.app.android">
<img src="assets/img/homepage/download-1.png" class="lazy img-fluid store"
alt="store">
</a>
</div>
<div class="col-12 col-md-2 box-store">
<a href="https://apps.apple.com/us/app/kidjo-tv-for-kids/id1095795448">
<img src="assets/img/homepage/download-2.png" class="lazy img-fluid store"
alt="store">
</a>
</div>
<div class="col-12 col-md-2 box-store">
<a href="#">
<img src="assets/img/homepage/download-3.png" class="lazy img-fluid store"
alt="store">
</a>
</div>
<div class="col-12 col-md-2 box-store">
<a href="https://www.amazon.com/Kidjo-Kids-Have-Fun-Learn/dp/B06X99VRWG">
<img src="assets/img/homepage/download-4.png" class="lazy img-fluid store"
alt="store">
</a>
</div>
<div class="col-12 col-md-2 box-store">
<a href="https://app.kidjo.tv/">
<img src="assets/img/homepage/download-5.png" class="lazy img-fluid store"
alt="store">
</a>
</div>
</div>
</div>
<div class="d-block d-sm-none">
<div class="row">
<div class="col-4 box-store">
<a href="https://play.google.com/store/apps/details?id=net.kidjo.app.android">
<img src="assets/img/homepage/download-1.png" class="lazy img-fluid store"
alt="store">
</a>
</div>
<div class="col-4 box-store">
<a href="https://apps.apple.com/us/app/kidjo-tv-for-kids/id1095795448">
<img src="assets/img/homepage/download-2.png" class="lazy img-fluid store"
alt="store">
</a>
</div>
<div class="col-4 box-store">
<a href="#">
<img src="assets/img/homepage/download-3.png" class="lazy img-fluid store"
alt="store">
</a>
</div>
</div>
</div>
<div class="d-block d-sm-none">
<div class="row">
<div class="col-4 offset-2 box-store">
<a href="https://www.amazon.com/Kidjo-Kids-Have-Fun-Learn/dp/B06X99VRWG">
<img src="assets/img/homepage/download-4.png" class="lazy img-fluid store"
alt="store">
</a>
</div>
<div class="col-4 box-store">
<a href="https://app.kidjo.tv/">
<img src="assets/img/homepage/download-5.png" class="lazy img-fluid store"
alt="store">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="social-links">
<a class="social-media facebook" href="https://www.facebook.com/Kidjotv/?fref=ts">
<i class="fab fa-facebook-f"></i>
</a>
<a class="social-media twitter" href="https://twitter.com/Kidjotv">
<i class="fab fa-twitter"></i>
</a>
</div>
<div class="copyright">
<p class="text-center">@2020 Kidjo Premium</p>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.lazyload/1.9.1/jquery.lazyload.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenMax.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TimelineMax.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/ScrollMagic.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.6/plugins/animation.gsap.min.js'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TweenLite.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/TimelineLite.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/plugins/CSSPlugin.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.0.2/plugins/BezierPlugin.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>