-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestt.html
2481 lines (2481 loc) · 133 KB
/
testt.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="vi" dir="ltr">
<head>
<meta charset="utf-8"/>
<meta name="description" content="Không gian văn hóa Hồ Chí Minh"/>
<meta name="MobileOptimized" content="width"/>
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
<meta http-equiv="x-ua-compatible" content="ie=edge"/>
<!-- <link rel="icon" href="/sites/default/files/favicon-ce.ico" type="image/vnd.microsoft.icon"/> -->
<title>Không gian văn hóa Hồ Chí Minh</title>
<!-- <link rel="stylesheet" media="all" href="/sites/default/files/css/css_5VYm2K9LZUhfOGNybVrc5VMs1IYQ_zDhd3zAzNV7Q0A.css"/> --> -->
<link rel="stylesheet" media="all" href="/stylee.css"/>
<!-- <link rel="stylesheet" media="all" href="//stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"/>
<link rel="stylesheet" media="print" href="/sites/default/files/css/css_Y4H_4BqmgyCtG7E7YdseTs2qvy9C34c51kBamDdgark.css"/>
<link rel="stylesheet" media="all" href="/sites/default/files/css/css_-tpzWwNsyxjHnf2m-_b7Pg5Kz8rMJ3g8F_MR6qCGwR8.css"/> --> -->
<!-- <link rel="stylesheet" media="all" href="//fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"/> -->
</head>
<body class="layout-no-sidebars page-node-1787 path-frontpage node--type-home">
<a href="#main-content" class="visually-hidden-focusable">Skip to main content
</a>
<div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
<div id="page-wrapper">
<div id="page">
<header id="header" class="header" role="banner" aria-label="Site header">
<div class="message_exceptionnel"></div>
<div class="headerContent">
<div class="header__left">
<button class="c-hamburger c-hamburger--htx">
<span>toggle menu</span>
</button>
<div class="close_txt">Close</div>
<div class="header__siteNameBloc">
<div class="header__siteNameBloc__name">
<a href="/en" title="Home" rel="home" class="navbar-brand">
<!-- <img src="/themes/custom/portail/images/LOCO-CE-baselineEN_enligne.svg" alt="Portail Culturespaces"> -->
</a>
</div>
</div>
<div class="header__menuBlock">
<div class="header__menuBlock__menu">
<div class="navbar-collapse" id="basic-navbar-nav">
<nav role="navigation" aria-labelledby="block-portail-main-menu-menu" id="block-portail-main-menu" class="block block-menu navigation menu--main">
<h2 class="visually-hidden" id="block-portail-main-menu-menu">Navigation principale</h2>
<ul class="clearfix nav navbar-nav">
<li class="nav-item menu-item--expanded dropdown">
<a href="" class="nav-link dropdown-toggle nav-link-" data-bs-toggle="dropdown" aria-expanded="false" aria-haspopup="true">About us</a>
<ul class="dropdown-menu">
<li class="dropdown-item">
<a href="/en/about-us/our-history" class="nav-link--en-about-us-our-history" data-drupal-link-system-path="node/1175">Our history</a>
</li>
<li class="dropdown-item">
<a href="/en/about-us/our-values" class="nav-link--en-about-us-our-values" data-drupal-link-system-path="node/1177">Our values</a>
</li>
<li class="dropdown-item">
<a href="/en/about-us/our-areas-expertise" class="nav-link--en-about-us-our-areas-expertise" data-drupal-link-system-path="node/1176">Our areas of expertise</a>
</li>
<li class="dropdown-item">
<a href="/en/about-us/our-specialisations" class="nav-link--en-about-us-our-specialisations" data-drupal-link-system-path="propos/nos-metiers">Our specialisations</a>
</li>
<li class="dropdown-item">
<a href="/en/about-us/management-team" class="nav-link--en-about-us-management-team" data-drupal-link-system-path="propos/lequipe-dirigeante">The management team</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="/en/network" class="nav-link nav-link--en-network" data-drupal-link-system-path="node/1788">Network</a>
</li>
<li class="nav-item">
<a href="/en/our-projects" class="nav-link nav-link--en-our-projects" data-drupal-link-system-path="nos-projets">Our projects</a>
</li>
<li class="nav-item">
<a href="/en/exhibitions" class="nav-link nav-link--en-exhibitions" data-drupal-link-system-path="node/1466">Exhibitions</a>
</li>
<li class="nav-item menu-item--expanded dropdown">
<a href="" class="nav-link dropdown-toggle nav-link-" data-bs-toggle="dropdown" aria-expanded="false" aria-haspopup="true">Professional areas</a>
<ul class="dropdown-menu">
<li class="dropdown-item">
<a href="https://presse.culturespaces.com/fr/?lang=fra" class="nav-link-https--presseculturespacescom-fr-langfra">Press</a>
</li>
<li class="dropdown-item">
<a href="/en/professional-areas/professionals" class="nav-link--en-professional-areas-professionals" data-drupal-link-system-path="node/1031">Tourism professionals</a>
</li>
<li class="dropdown-item">
<a href="/en/professional-areas/schools" class="nav-link--en-professional-areas-schools" data-drupal-link-system-path="node/300">Schools</a>
</li>
<li class="dropdown-item">
<a href="/en/professional-areas/event-hire-locations" class="nav-link--en-professional-areas-event-hire-locations" data-drupal-link-system-path="node/1789">Event hire locations</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
<div class="menuBlock__social">
<div id="block-social" class="block block-block-content block-block-content18a7f7a5-d11b-4a80-a92a-4266da8d81f1">
<div class="content">
<div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item">
<div class="topFooterContainer">
<h3>FOLLOW US</h3>
<ul class="topFooterContainer__list">
<li>
<a class="topFooterContainer__list__facebook" href="https://www.facebook.com/culturespaces/?locale=fr_FR" target="_blank">facebook</a>
</li>
<li>
<a class="topFooterContainer__list__insta" href="https://www.instagram.com/culturespaces/" target="_blank">insta</a>
</li>
<li>
<a class="topFooterContainer__list__ln" href="https://fr.linkedin.com/company/culturespaces" target="_blank">linkedin</a>
</li>
<li>
<a class="topFooterContainer__list__tiktok" href="https://www.tiktok.com/@culturespaces" target="_blank">tiktok</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="search_block">
<form onsubmit="return process();">
<input id="keys" type="text" name="search" placeholder="Search">
<a href="" class="search_btn"></a>
</form>
</div>
<div class="header__menuBlock__language">
<nav class="language-switcher-language-url nav links-inline">
<span hreflang="fr" data-drupal-link-system-path="node/1787" class="fr nav-link">
<a href="/fr/node/1787" class="language-link" hreflang="fr" data-drupal-link-system-path="node/1787">Fr</a>
</span>
<span hreflang="en" data-drupal-link-system-path="node/1787" class="en nav-link is-active">
<a href="/en/node/1787" class="language-link is-active" hreflang="en" data-drupal-link-system-path="node/1787">En</a>
</span>
</nav>
</div>
</div>
</div>
<div class="header__right">
<div class="header__menuBlock__menu">
<div class="navbar-collapse" id="basic-navbar-nav">
<nav role="navigation" aria-labelledby="block-portail-main-menu-menu" id="block-portail-main-menu" class="block block-menu navigation menu--main">
<h2 class="visually-hidden" id="block-portail-main-menu-menu">Navigation principale</h2>
<ul class="clearfix nav navbar-nav">
<li class="nav-item menu-item--expanded dropdown">
<a href="" class="nav-link dropdown-toggle nav-link-" data-bs-toggle="dropdown" aria-expanded="false" aria-haspopup="true">About us</a>
<ul class="dropdown-menu">
<li class="dropdown-item">
<a href="/en/about-us/our-history" class="nav-link--en-about-us-our-history" data-drupal-link-system-path="node/1175">Our history</a>
</li>
<li class="dropdown-item">
<a href="/en/about-us/our-values" class="nav-link--en-about-us-our-values" data-drupal-link-system-path="node/1177">Our values</a>
</li>
<li class="dropdown-item">
<a href="/en/about-us/our-areas-expertise" class="nav-link--en-about-us-our-areas-expertise" data-drupal-link-system-path="node/1176">Our areas of expertise</a>
</li>
<li class="dropdown-item">
<a href="/en/about-us/our-specialisations" class="nav-link--en-about-us-our-specialisations" data-drupal-link-system-path="propos/nos-metiers">Our specialisations</a>
</li>
<li class="dropdown-item">
<a href="/en/about-us/management-team" class="nav-link--en-about-us-management-team" data-drupal-link-system-path="propos/lequipe-dirigeante">The management team</a>
</li>
</ul>
</li>
<li class="nav-item">
<a href="/en/network" class="nav-link nav-link--en-network" data-drupal-link-system-path="node/1788">Network</a>
</li>
<li class="nav-item">
<a href="/en/our-projects" class="nav-link nav-link--en-our-projects" data-drupal-link-system-path="nos-projets">Our projects</a>
</li>
<li class="nav-item">
<a href="/en/exhibitions" class="nav-link nav-link--en-exhibitions" data-drupal-link-system-path="node/1466">Exhibitions</a>
</li>
<li class="nav-item menu-item--expanded dropdown">
<a href="" class="nav-link dropdown-toggle nav-link-" data-bs-toggle="dropdown" aria-expanded="false" aria-haspopup="true">Professional areas</a>
<ul class="dropdown-menu">
<li class="dropdown-item">
<a href="https://presse.culturespaces.com/fr/?lang=fra" class="nav-link-https--presseculturespacescom-fr-langfra">Press</a>
</li>
<li class="dropdown-item">
<a href="/en/professional-areas/professionals" class="nav-link--en-professional-areas-professionals" data-drupal-link-system-path="node/1031">Tourism professionals</a>
</li>
<li class="dropdown-item">
<a href="/en/professional-areas/schools" class="nav-link--en-professional-areas-schools" data-drupal-link-system-path="node/300">Schools</a>
</li>
<li class="dropdown-item">
<a href="/en/professional-areas/event-hire-locations" class="nav-link--en-professional-areas-event-hire-locations" data-drupal-link-system-path="node/1789">Event hire locations</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
</div>
<div class="header__language">
<nav class="language-switcher-language-url nav links-inline">
<span hreflang="fr" data-drupal-link-system-path="node/1787" class="fr nav-link">
<a href="/fr/node/1787" class="language-link" hreflang="fr" data-drupal-link-system-path="node/1787">Fr</a>
</span>
<span hreflang="en" data-drupal-link-system-path="node/1787" class="en nav-link is-active">
<a href="/en/node/1787" class="language-link is-active" hreflang="en" data-drupal-link-system-path="node/1787">En</a>
</span>
</nav>
</div>
</div>
</div>
</header>
<div class="highlighted">
<aside class="container section clearfix" role="complementary"></aside>
</div>
<div id="main-wrapper" class="layout-main-wrapper clearfix">
<div id="main" class="container">
<div class="row row-offcanvas row-offcanvas-left clearfix">
<main class="main-content col order-last" id="content" role="main">
<section class="section">
<a id="main-content" tabindex="-1"></a>
<div id="block-portail-content" class="block block-system block-system-main-block">
<div class="content">
<div class="pageHome">
<div class="w1380">
<div class="home__mav swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<!-- <img src="/sites/default/files/styles/home_diaporama/public/2023-02/46570_2.jpg?itok=QU1eNi_5" alt=""/> -->
<div class="description">
<a href="/en/about-us/our-areas-expertise">
<p class="title">Who are we? </p>
<div class="s_title">
<p>The leading private cultural operator in the management of monuments, museums, art centres and temporary exhibitions.</p>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<!-- <img src="/sites/default/files/styles/home_diaporama/public/2023-09/3939.jpg?itok=Ijef71ls" alt=""/> -->
<div class="description">
<a href="/en/about-us/our-areas-expertise">
<p class="title">Who are we?</p>
<div class="s_title">
<p>The leading private cultural operator in the management of monuments, museums, art centres and temporary exhibitions.</p>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<!-- <img src="/sites/default/files/styles/home_diaporama/public/2023-09/adlklee_espiller_231_1.jpg?itok=FwGTFXss" alt=""/> -->
<div class="description">
<a href="/en/about-us/our-areas-expertise">
<p class="title">Who are we?</p>
<div class="s_title">
<p>One of the pioneers of immersive digital exhibitions and a world leader in the creation of digital art centres in France and abroad.</p>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<!-- <img src="/sites/default/files/styles/home_diaporama/public/2023-02/fdl_image.png?itok=r9ByeKi6" alt=""/> -->
<div class="description">
<a href="/en/about-us/our-areas-expertise">
<p class="title">Who are we? </p>
<div class="s_title">
<p>One of the pioneers of immersive digital exhibitions and a world leader in the creation of digital art centres in France and abroad.</p>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<!-- <img src="/sites/default/files/styles/home_diaporama/public/2023-09/bdldali_vpinson_104_4.jpg?itok=M0LVbrZi" alt=""/> -->
<div class="description">
<a href="/en/about-us/our-areas-expertise">
<p class="title">Who are we?</p>
<div class="s_title">
<p>One of the pioneers of immersive digital exhibitions and a world leader in the creation of digital art centres in France and abroad.</p>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<!-- <img src="/sites/default/files/styles/home_diaporama/public/2023-09/cdlvermeer-vangogh_vpinson_364_1-min.jpg?itok=6AjhpigI" alt=""/> -->
<div class="description">
<a href="/en/about-us/our-areas-expertise">
<p class="title">Who are we?</p>
<div class="s_title">
<p>One of the pioneers of immersive digital exhibitions and a world leader in the creation of digital art centres in France and abroad.</p>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<!-- <img src="/sites/default/files/styles/home_diaporama/public/2023-09/hdlklimt_espiller_103_1.jpg?itok=Bv2KXUYl" alt=""/> -->
<div class="description">
<a href="/en/about-us/our-areas-expertise">
<p class="title">Who are we?</p>
<div class="s_title">
<p>One of the pioneers of immersive digital exhibitions and a world leader in the creation of digital art centres in France and abroad.</p>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<!-- <img src="/sites/default/files/styles/home_diaporama/public/2023-09/pxdlklimt_vpinson_052.jpg?itok=gyxcQRMg" alt=""/> -->
<div class="description">
<a href="/en/about-us/our-areas-expertise">
<p class="title">Who are we?</p>
<div class="s_title">
<p>One of the pioneers of immersive digital exhibitions and a world leader in the creation of digital art centres in France and abroad.</p>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<!-- <img src="/sites/default/files/styles/home_diaporama/public/2023-09/_ah_1715-min.jpg?itok=8vP-N8Q5" alt=""/> -->
<div class="description">
<a href="/en/about-us/our-areas-expertise">
<p class="title">Who are we?</p>
<div class="s_title">
<p>One of the pioneers of immersive digital exhibitions and a world leader in the creation of digital art centres in France and abroad.</p>
</div>
</a>
</div>
</div>
<div class="swiper-slide">
<!-- <img src="/sites/default/files/styles/home_diaporama/public/2023-09/tdlseoulklimt_071_tmonet_.jpg?itok=KKtyveRo" alt=""/> -->
<div class="description">
<a href="/en/about-us/our-areas-expertise">
<p class="title">Who are we?</p>
<div class="s_title">
<p>One of the pioneers of immersive digital exhibitions and a world leader in the creation of digital art centres in France and abroad.</p>
</div>
</a>
</div>
</div>
</div>
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</div>
<div class="chiffres">
<div class="chiffre">
<span class="title">10</span>
<span class="s_title">sites managed</span>
</div>
<div class="chiffre">
<span class="title">6</span>
<span class="s_title">million visitors</span>
</div>
<div class="chiffre">
<span class="title">400</span>
<span class="s_title">collaborators</span>
</div>
<div class="chiffre">
<span class="title">34</span>
<span class="s_title">exhibitions per year</span>
</div>
</div>
<div class="bloc_actus swiper-container france" data-aos="fade-up" data-aos-duration="1000">
<h2>What 's new in France</h2>
<div class="items swiper-wrapper">
<div class="item swiper-slide">
<div class="partLeft">
<div class="hover_bg"></div>
<!-- <img src="/sites/default/files/styles/825x510/public/2024-01/mucha_2.jpg?itok=zTmEtfeX" alt=""/> -->
</div>
<div class="partRight">
<div class="titre">
Hôtel de Caumont - Centre d'Art,<br>Aix-en-Provence
</div>
<div class="desc">
<h3>
<strong>Mucha, Maître de l'Art Nouveau</strong>
</h3>
<p>Organised in collaboration with the Mucha Foundation, the Hôtel de Caumont is this year devoting its winter exhibition to the great master of Art Nouveau, Alphonse Mucha (1860-1939).</p>
</div>
<a href="https://www.caumont-centredart.com/en/mucha" class="enPlus">Find out more</a>
</div>
</div>
<div class="item swiper-slide">
<div class="partLeft">
<div class="hover_bg"></div>
<!-- <img src="/sites/default/files/styles/825x510/public/2023-04/cdltintin_espiller_056_1.jpg?itok=E02ROq4S" alt=""/> -->
</div>
<div class="partRight">
<div class="titre">
Carrières des Lumières,<br>Les Baux-de-Provence
</div>
<div class="desc">
<h3>
<strong>Tintin: the Immersive Adventure</strong>
</h3>
<p>Following the success of ‘TINTIN, L’AVENTURE IMMERSIVE’ presented in the Atelier des Lumières in Paris in 2022, this unique digital work devoted to the adventures of Tintin, the fruit of a collaboration between Culturespaces and Tintinimaginatio, is in the Carrières des Lumières in 2023.</p>
</div>
<a href="https://www.carrieres-lumieres.com/fr/tintin" class="enPlus">Find out more</a>
</div>
</div>
<div class="item swiper-slide">
<div class="partLeft">
<div class="hover_bg"></div>
<!-- <img src="/sites/default/files/styles/825x510/public/2023-04/simulation_vermeer_c_culturespaces.jpg?itok=Vn8jzmiq" alt=""/> -->
</div>
<div class="partRight">
<div class="titre">
Carrières des Lumières,<br>Les Baux-de-Provence
</div>
<div class="desc">
<h3>
<strong>From Vermeer to Van Gogh, the Dutch Masters</strong>
</h3>
<p>This digital exhibition presents the genius of the painters of the North through a complete immersion in authentic paintings that are faithful representations of nature and its themes.Explore the reality of daily life, following in the footsteps of the great masters who represented the ordinary in an extraordinary way.</p>
</div>
<a href="https://www.carrieres-lumieres.com/en/node/1033" class="enPlus">Find out more</a>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
<div class="bloc_actus swiper-container international" data-aos="fade-up" data-aos-duration="1000">
<h2>International news</h2>
<div class="items swiper-wrapper">
<div class="item swiper-slide">
<div class="partLeft">
<div class="hover_bg"></div>
<!-- <img src="/sites/default/files/styles/825x510/public/2023-10/destinationcosmos_006_marijnvanlaerhoven.jpg?itok=ZuoN5Oij" alt=""/> -->
</div>
<div class="partRight">
<div class="titre">
Fabrique des Lumières, <br>Amsterdam
</div>
<div class="desc">
<h3>
<strong>Destination Cosmos: The Immersive Space Experience</strong>
</h3>
<p>‘Destination Cosmos: The Immersive Space Experience’ guides you through a maze of stars, planets, nebulae and supernovae. From the European Space Center in Kourou (French Guiana) to stepping into Neil Armstrong’s shoes as he walks on the Moon and the first robot ‘selfie ’on Mars, we’ll take you beyond the frontiers of our solar system to experience the immensity of our universe.</p>
</div>
<a href="https://www.fabrique-lumieres.com/en/destination-cosmos" class="enPlus">Find out more</a>
</div>
</div>
<div class="item swiper-slide">
<div class="partLeft">
<div class="hover_bg"></div>
<img src="/sites/default/files/styles/825x510/public/2023-10/hdlchagall_029_mark_zhelezoglo_for_hall_des_lumieres_2.jpg?itok=uGeLthUR" alt=""/>
</div>
<div class="partRight">
<div class="titre">
Hall des Lumières,<br>New York
</div>
<div class="desc">
<h3>
<strong>Chagall, Paris – New York</strong>
</h3>
<p>The immersive exhibition is devoted to the prolific and unclassifiable painter, Marc Chagall (1887–1985) at the Hall des Lumières during Autumn 2023. This unique digital exhibition will present his entire oeuvre, revealing a work rooted in its times, at the crossroads of the artistic and cultural novelties of his century and in constant renewal.</p>
</div>
<a href="https://www.halldeslumieres.com/en/chagall-paris-new-york" class="enPlus">Find out more</a>
</div>
</div>
<div class="item swiper-slide">
<div class="partLeft">
<div class="hover_bg"></div>
<img src="/sites/default/files/styles/825x510/public/2023-04/dali_fdl.jpg?itok=eWqNB6Bh" alt=""/>
</div>
<div class="partRight">
<div class="titre">
Fabrique des Lumières, <br>Amsterdam
</div>
<div class="desc">
<h3>
<strong>Dalí, the Endless Enigma</strong>
</h3>
<p>In this exhibition, the psychedelic works by one of the world’s most grandiose artists of all time come at you from all sides simultaneously, supported by the sounds of Pink Floyd.</p>
</div>
<a href="https://www.fabrique-lumieres.com/en/node/1206" class="enPlus">Find out more</a>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
<div class="chapo_home">
<div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item">
<h2>“My goal: to make heritage attractive to a wide audience. Digital technology is above all an opportunity for culture, not an adversary.”</h2>
<p>Bruno Monnier, President of Culturespaces</p>
</div>
</div>
<div class="mises_block" data-aos="fade-up" data-aos-duration="2000">
<ul class="mises_en_avant">
<li class="item">
<div class="partRight">
<p class="title">Culturespaces supports...</p>
<p class="s_title">Culture for Children</p>
<div class="desc">
<p>Its goal is to promote social inclusion through culture and allow the most vulnerable children to have access to art and heritage to awaken, develop and reveal their creativity.</p>
</div>
<a href="https://www.culture-enfance.org/en" class="enPlus">Find out more</a>
</div>
<div class="partLeft">
<div class="hover_bg"></div>
<img src="/sites/default/files/styles/825x510/public/2023-02/rectangle_81.jpg?itok=F2Xb8Dvz" alt=""/>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
</div>
</div>
</div>
<footer>
<div class="footer__social">
<div id="block-social" class="block block-block-content block-block-content18a7f7a5-d11b-4a80-a92a-4266da8d81f1">
<div class="content">
<div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-hidden field__item">
<div class="topFooterContainer">
<h3>FOLLOW US</h3>
<ul class="topFooterContainer__list">
<li>
<a class="topFooterContainer__list__facebook" href="https://www.facebook.com/culturespaces/?locale=fr_FR" target="_blank">facebook</a>
</li>
<li>
<a class="topFooterContainer__list__insta" href="https://www.instagram.com/culturespaces/" target="_blank">insta</a>
</li>
<li>
<a class="topFooterContainer__list__ln" href="https://fr.linkedin.com/company/culturespaces" target="_blank">linkedin</a>
</li>
<li>
<a class="topFooterContainer__list__tiktok" href="https://www.tiktok.com/@culturespaces" target="_blank">tiktok</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="footer__menu">
<section class="row region region-footer">
<nav role="navigation" aria-labelledby="block-pieddepage-menu" id="block-pieddepage" class="block block-menu navigation menu--footer">
<h2 class="visually-hidden" id="block-pieddepage-menu">Pied de page</h2>
<ul class="clearfix nav navbar-nav">
<li class="nav-item">
<a href="/en/credits" class="nav-link nav-link--en-credits" data-drupal-link-system-path="node/889">Credits</a>
</li>
<li class="nav-item">
<a href="/en/terms-use" class="nav-link nav-link--en-terms-use" data-drupal-link-system-path="node/890">Terms of use</a>
</li>
<li class="nav-item">
<a href="/en/data-protection-policy" class="nav-link nav-link--en-data-protection-policy" data-drupal-link-system-path="node/1128">Data Protection Policy</a>
</li>
<li class="nav-item">
<a href="mailto:[email protected]" class="nav-link nav-link-mailtomessageculturespacescom">Contact us</a>
</li>
<li class="nav-item">
<a href="/en/newsletter" class="nav-link nav-link--en-newsletter" data-drupal-link-system-path="node/1805">Newsletter</a>
</li>
<li class="nav-item">
<a href="/en/contact-us" class="nav-link nav-link--en-contact-us" data-drupal-link-system-path="node/1794">SAV</a>
</li>
</ul>
</nav>
</section>
</div>
</footer>
</div>
</div>
</div>
<script type="application/json" data-drupal-selector="drupal-settings-json">
{
"path": {
"baseUrl": "\/",
"scriptPath": null,
"pathPrefix": "en\/",
"currentPath": "node\/1787",
"currentPathIsAdmin": false,
"isFront": true,
"currentLanguage": "en"
},
"pluralDelimiter": "\u0003",
"suppressDeprecationErrors": true,
"tacjs": {
"dialog": {
"privacyUrl": "\/politique-protection-donnees",
"readmoreLink": "",
"hashtag": "#tarteaucitron",
"cookieName": "rgpdce",
"orientation": "middle",
"bodyPosition": "bottom",
"showAlertSmall": false,
"cookieslist": true,
"showIcon": false,
"iconSrc": "",
"iconPosition": "BottomLeft",
"adblocker": false,
"DenyAllCta": true,
"AcceptAllCta": true,
"highPrivacy": true,
"handleBrowserDNTRequest": true,
"removeCredit": false,
"moreInfoLink": true,
"useExternalCss": true,
"useExternalJs": true,
"cookieDomain": "",
"mandatory": true,
"closePopup": false,
"groupServices": false,
"customCloserId": "",
"serviceDefaultState": "wait",
"mandatoryCta": 0
},
"services": {
"myfeelback": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"doubleclick": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"userpilot": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"piwikpro": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"pinterestpixel": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"elfsight": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"plezi": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"smartsupp": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"sharpspring": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"pardot": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"openwebanalytics": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"xandr": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"xandrsegment": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"xandrconversion": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"helloasso": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"podcloud": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"facebookpost": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"amplitude": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"abtasty": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"metrica": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"addthis": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"addtoanyfeed": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"addtoanyshare": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"aduptech_ads": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"aduptech_conversion": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"aduptech_retargeting": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"alexa": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"amazon": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"calameo": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"clicky": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"clicmanager": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"compteur": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"contentsquare": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"crazyegg": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"clarity": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"criteo": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"criteoonetag": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"artetv": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"dailymotion": {
"status": false,
"readMore": "",
"readmoreLink": "",
"languages": {
"fr": 0,
"en": 0
},
"needConsent": false
},
"datingaffiliation": {
"status": false,