-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
3927 lines (3673 loc) · 258 KB
/
index.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-US">
<head>
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet'>
<title>Web Mount Studio - Web Solutions</title>
<meta http-equiv="content-type" content="text/html; charset=utf8" />
<meta name="description" content="Web Mount Studio specializes in Web, Graphics and Marketing. We work hard to build customized solutions that help you envision the future of your company in the present. From design and development to digital marketing, Our goal is to build solutions that fits your need." />
<!-- HREFLANG -->
<link rel="alternate" hreflang="fr-fr" href="https://www.webmountstudio.com/" />
<link rel="alternate" hreflang="en-us" href="index.html" />
<link rel="alternate" hreflang="en-gb" href="index.html" />
<link rel="alternate" hreflang="x-default" href="index.html" />
<link rel="canonical" href="index.html" />
<!-- END HREFLANG -->
<!-- OPEN GRAPH -->
<meta property="og:title" content="Webmount Studio" />
<meta property="og:type" content="website" />
<meta property="og:url" content="" />
<meta property="og:image" content="../AgenceMeV4/img/thumbnails/home_thumbnails.jpg" />
<!-- END OPEN GRAPH -->
<!-- FAVICON -->
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon4211.html?v=XBz6qPPxN3">
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x324211.html?v=XBz6qPPxN3">
<link rel="icon" type="image/png" sizes="194x194" href="../favicon-194x1944211.html?v=XBz6qPPxN3">
<link rel="icon" type="image/png" sizes="192x192" href="../android-chrome-192x1924211.html?v=XBz6qPPxN3">
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x164211.html?v=XBz6qPPxN3">
<link rel="manifest" href="https://www.agence-me.com/site.webmanifest?v=XBz6qPPxN3">
<link rel="mask-icon" href="https://www.agence-me.com/safari-pinned-tab.svg?v=XBz6qPPxN3" color="#2884f6">
<link rel="shortcut icon" href="https://www.agence-me.com/favicon.ico?v=XBz6qPPxN3">
<meta name="msapplication-TileColor" content="#2884f6">
<meta name="msapplication-TileImage" content="../mstile-144x1444211.html?v=XBz6qPPxN3">
<meta name="theme-color" content="#2884f6">
<!-- END FAVICON -->
<!-- LAYOUT STYLE -->
<link rel="stylesheet" type="text/css" href="../AgenceMeV4/css/src-common/common_style.css"/>
<!-- END LAYOUT STYLE -->
<!--FONT AWESOME -->
<link rel="stylesheet" type="text/css" href="../AgenceMeV4/css/all.css"/>
<!-- FONT AWESOME ENDS -->
<!-- HEADER -->
<link rel="stylesheet" type="text/css" href="../AgenceMeV4/css/src-common/header_style_desktop.css"/>
<link rel="stylesheet" type="text/css" href="../AgenceMeV4/css/src-common/header_style_responsive.css"/>
<!-- END HEADER -->
<!-- FOOTER -->
<link rel="stylesheet" type="text/css" href="../AgenceMeV4/css/src-common/footer_style_desktop.css"/>
<link rel="stylesheet" type="text/css" href="../AgenceMeV4/css/src-common/footer_style_responsive.css"/>
<!-- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous"> -->
<!-- END FOOTER -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="../AgenceMeV4/js/src-common/jquery-3.2.1.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','../../www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-43968145-1', 'auto');
ga('send', 'pageview');
</script>
<link rel="stylesheet" type="text/css" href="../AgenceMeV4/css/src-common/el_style.css"/>
<link rel="stylesheet" type="text/css" href="../AgenceMeV4/css/pages/home/home_style_desktop.css"/>
<link rel="stylesheet" type="text/css" href="../AgenceMeV4/css/pages/home/home_style_responsive.css"/>
</head>
<body>
<div id="tr-el">
<div class="container-slides">
<div class="slide"></div>
<div class="slide">
<div class="slg">
<div class="line">WEBMOUNT</div>
<div class="line">STUDIO</div>
</div>
</div>
</div>
</div>
<header id="header-desktop" class="style-home">
<!-- <div class="container-rs">
<div class="li-rs">
<a href="https://dribbble.com/AgenceMe" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 14">
<use xlink:href="https://www.agence-me.com/AgenceMeV4/svg/src-common/header/Dribbble-icn.svg#Dribbble-icn"></use>
</svg>
</a>
<a href="https://www.instagram.com/agenceme/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14">
<use xlink:href="https://www.agence-me.com/AgenceMeV4/svg/src-common/header/Instagram-icn.svg#Instagram-icn"></use>
</svg>
</a>
<a href="https://twitter.com/AgenceMe" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12">
<use xlink:href="https://www.agence-me.com/AgenceMeV4/svg/src-common/header/Twitter-icn.svg#Twitter-icn"></use>
</svg>
</a>
</div>
</div> -->
<a class="container-logo" href="index.html">
<img src="../AgenceMeV4/img/sphere_70.png">
</a>
<!-- <div class="container-vr">
V.4
</div> -->
</header>
<div id="nav-btn" class="style-home">
<div class="content">
<div class="text">
<span>M</span>
<span>E</span>
<span>N</span>
<span>U</span>
</div>
<div class="action">
<div class="bar"></div>
<div class="bar"></div>
</div>
</div>
</div>
<nav id="nav">
<div class="content">
<div class="head">
<a class="container-logo" href="index.html">
<img src="../AgenceMeV4/img/sphere_70.png">
</a>
<!-- <div class="container-vr">
V.5
</div> -->
</div>
<!-- <div class="container-rs">
<div class="li-rs">
<a href="https://dribbble.com/AgenceMe" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 14">
<use xlink:href="https://www.agence-me.com/AgenceMeV4/svg/src-common/header/Dribbble-icn.svg#Dribbble-icn"></use>
</svg>
</a>
<a href="https://www.instagram.com/agenceme/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14">
<use xlink:href="https://www.agence-me.com/AgenceMeV4/svg/src-common/header/Instagram-icn.svg#Instagram-icn"></use>
</svg>
</a>
<a href="https://twitter.com/AgenceMe" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12">
<use xlink:href="https://www.agence-me.com/AgenceMeV4/svg/src-common/header/Twitter-icn.svg#Twitter-icn"></use>
</svg>
</a>
</div>
</div> -->
<div class="container-prLink">
<ul class="page-home">
<li class="link-home">
<a data-content="el-home" class="delay" href="index.html">HOME</a>
</li>
<li class="link-projects">
<a data-content="el-projects">PROJECTS</a><span></span>
</li>
<li class="link-services">
<a data-content="el-services" class="delay" href="services-uiux-design.html">SERVICES</a>
</li>
<li class="link-team">
<a data-content="el-team" class="delay" href="our-team.html">TEAM</a>
</li>
<li class="link-contact">
<a data-content="el-contact" class="delay" href="quotes-website.html">CONTACT</a>
</li>
</ul>
</div>
<div class="container-contentLink">
<div class="wrapper-el">
<div class="el el-home">
<div class="container-text">
<h3>OUR JOB</h3>
<p>
At Webmount, From design and development to digital marketing, Our goal is to build solutions that fits your need. </p>
</div>
</div>
<div class="el el-projects">
<ul class="">
<li class="link-axa">
<a>ABOVE & BEYOND</a><span class="soon">SOON</span>
</li>
<li class="link-chauffeurprive">
<a>STAR TV</a><span class="soon">SOON</span>
</li>
<li class="link-axa">
<a target="_blank" href="https://thetestcenter.no/en/">VOLVO</a></span>
</li>
<!-- <li class="link-qonto" class="link-axa">
<a class="delay" href="web-development-agency-qonto.html">QONTO</a><span class="casestudy">CASE STUDY</span>
</li> -->
<!-- <li class="link-engie" >
<a>ENGIE</a><span class="soon">SOON</span>
</li> -->
<li class="" >
<a>OMEGA WATCHES</a><span class="soon">SOON</span>
</li>
<!-- <li class="" >
<a>OWKIN</a><span class="soon">SOON</span>
</li> -->
<li class="link-peech" >
<a>TUTOR AWARDS</a><span class="soon">SOON</span>
</li>
<li class="link-lefty" >
<a target="_blank" href="http://snagyt.com/">SNAGYT</a>
</li>
<li class="link-lefty" >
<a target="_blank" href="https://itunes.apple.com/ca/app/nest/id464988855?mt=8">NEST - iOS APP</a>
</li>
<li class="link-lefty" >
<a target="_blank" href=" https://play.google.com/store/apps/details?id=com.nest.android&hl=en_CA">NEST - ANDROID APP</a>
</li>
<li class="link-lefty" >
<a target="_blank" href="https://play.google.com/store/apps/details?id=com.iberia.android&hl=en">IBERIA - ANDROID APP</a>
</li>
<li class="link-lefty" >
<a target="_blank" href="https://itunes.apple.com/ca/app/iberia/id434825954?mt=8">IBERIA - iOS APP</a>
</li>
<li class="link-lefty" >
<a target="_blank" href="https://itunes.apple.com/ca/app/astrology-daily-horoscope/id806719182?mt=8">ASTROLOGY DAILY HOROSCOPE - iOS APP</a>
</li>
<!--
<li class="link-influence" >
<a target="_blank" href="https://dribbble.com/AgenceMe/projects/671147-Influencee">INFLUENCE</a><span class="soon">SOON </li>-->
<li class="link-gamology" >
<a target="_blank" href="http://restodirect.ca/">RESTO DIRECT</a>
</li>
<li class="link-chauffeurprive" >
<a target="_blank" href="https://gradesavers.com/">GRADE SAVERZ</a><!-- <span class="casestudy">CASE STUDY</span> -->
</li>
<li class="" >
<a target="_blank" href="https://www.lagstechsolutions.com/">LAGS TECH SOLUTIONS</a><!-- <span class="casestudy">CASE STUDY</span> -->
</li>
<li class="" >
<a target="_blank" href="http://securetis.com/">SECURETIS</a><!-- <span class="casestudy">CASE STUDY</span> -->
</li>
<li class="" >
<a>TIM LANDSCAPE</a><span class="soon">SOON</span>
</li>
<!-- <li class="link-alwaysdata" >
<a>KNOTWIDTH</a><span class="soon">SOON</li>
<li class="link-seekube" >
<a>GOLDS GYM</a><span class="soon">SOON</li>
<li class="" >
<a>BUZZMAN</a><span class="soon">SOON </li>
<li class="" >
<a>BILLIONAIREBAY</a><span class="soon">SOON</span>
</li> -->
<!-- <li class="" >
<a>NEXT WORLD CAP</a><span class="soon">SOON </li> -->
<li class="link-marks" >
<a target="_blank" href="https://www.timesaverz.com">TIME SAVERZ</a><!-- <span class="casestudy">CASE STUDY</span> -->
</li>
<li class="link-orange" >
<a target="_blank" href="http://www.laborfit.com.br">LABOR FIT</a><!-- <span class="casestudy">CASE STUDY</span> -->
</li>
<li class="link-mektoube" >
<a>MEKTOUBE</a><span class="soon">SOON
</li>
<li class="" >
<a>GOTZ'M</a><span class="soon">SOON </li>
<li class="" >
<a target="_blank" href="https://www.fitspro.com">FITSPRO</a> </li>
<li class="link-xola" >
<a>XOLA</a><span class="soon">SOON </li>
<li class="link-mondocteur" >
<a target="_blank" href="https://bowandarrow.com">BOW & ARROW</a>
</li>
<li class="link-freelance-republik" >
<a>FREELANCE REPUBLICK</a><span class="soon">SOON</span>
</li>
</ul>
</div>
<div class="el el-services">
<div class="container-text">
<h3>EFFICENCY, CREATIVITY AND PROXIMITY</h3>
<p>
It’s important for us to adhere to these three values, as they embody our agency and define the way that we work. </p>
</div>
</div>
<div class="el el-team">
<div class="container-text">
<h3>WHO ARE WE ?</h3>
<p>
An intimate team of UI / UX designers, full-stack developers and illustrators. </p>
</div>
</div>
<div class="el el-contact">
<div class="container-text">
<h3>HIRE US</h3>
<p>
Describe your project and leave us your contact info, we’ll get back to you within 24 hours. </p>
</div>
</div>
</div>
</div>
</div>
</nav>
<div id="nav-btn-mobile">
<div class="content">
<div class="container-bar">
<div class="bar"></div>
<div class="bar"></div>
</div>
<div class="container-text">
<span>MENU</span>
</div>
</div>
</div>
<div id="nav-mobile">
<div class="head">
<a class="container-logo" href="index.html">
<img src="../AgenceMeV4/img/sphere_70.png">
</a>
<!-- <div class="container-vr">
V.4
</div> -->
</div>
<div class="wrapper">
<div class="container container-linkPr">
<ul>
<li>
<a class="delay" href="index.html">HOME</a> </li>
<li>
<a class="link-delay" >PROJECTS</a>
<span></span>
</li>
<li>
<a class="delay" href="services-uiux-design.html">SERVICES</a> </li>
<li>
<a class="delay" href="our-team.html">TEAM</a> </li>
<li>
<a class="delay" href="quotes-website.html">CONTACT</a> </li>
</ul>
<div class="li-rs">
<a href="https://dribbble.com/AgenceMe" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 14">
<use xlink:href="https://www.agence-me.com/AgenceMeV4/svg/src-common/header/Dribbble-icn.svg#Dribbble-icn"></use>
</svg>
</a>
<a href="https://www.instagram.com/agenceme/" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 14">
<use xlink:href="https://www.agence-me.com/AgenceMeV4/svg/src-common/header/Instagram-icn.svg#Instagram-icn"></use>
</svg>
</a>
<a href="https://twitter.com/AgenceMe" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 12">
<use xlink:href="https://www.agence-me.com/AgenceMeV4/svg/src-common/header/Twitter-icn.svg#Twitter-icn"></use>
</svg>
</a>
</div>
</div>
<div class="container container-projects hide-right">
<div class="back">
<svg class="arrow" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7 11">
<use xlink:href="https://www.agence-me.com/AgenceMeV4/svg/pages/home/arrow-1.svg#arrow-1"></use>
</svg>
</div>
<ul>
<li class="link-axa">
<a>ABOVE & BEYOND</a><span class="soon">SOON</span>
</li>
<li class="link-chauffeurprive">
<a>STAR TV</a><span class="soon">SOON</span>
</li>
<li class="link-axa">
<a target="_blank" href="https://thetestcenter.no/en/">VOLVO</a></span>
</li>
<!-- <li class="link-qonto" class="link-axa">
<a class="delay" href="web-development-agency-qonto.html">QONTO</a><span class="casestudy">CASE STUDY</span>
</li> -->
<li class="link-engie" >
<a>ENGIE</a><span class="soon">SOON</span>
</li>
<li class="" >
<a>OMEGA WATCHES</a><span class="soon">SOON</span>
</li>
<li class="" >
<a>OWKIN</a><span class="soon">SOON</span>
</li>
<li class="link-peech" >
<a>TUTOR AWARDS</a><span class="soon">SOON</span>
</li>
<li class="link-lefty" >
<a target="_blank" href="http://snagyt.com/">SNAGYT</a>
</li>
<!--
<li class="link-influence" >
<a target="_blank" href="https://dribbble.com/AgenceMe/projects/671147-Influencee">INFLUENCE</a><span class="soon">SOON </li>-->
<li class="link-gamology" >
<a target="_blank" href="www.restodirect.ca">RESTO DIRECT</a>
</li>
<li class="link-chauffeurprive" >
<a target="_blank" class="delay" href="www.gradesaverz.com">GRADE SAVERZ</a><!-- <span class="casestudy">CASE STUDY</span> -->
</li>
<li class="" >
<a target="_blank" class="delay" href="https://www.lagstechsolutions.com/">LAGS TECH SOLUTIONS</a><!-- <span class="casestudy">CASE STUDY</span> -->
</li>
<li class="" >
<a target="_blank" class="delay" href="http://securetis.com/">SECURETIS</a><!-- <span class="casestudy">CASE STUDY</span> -->
</li>
<li class="" >
<a>TIM LANDSCAPE</a><span class="soon">SOON</span>
</li>
<li class="link-alwaysdata" >
<a>KNOTWIDTH</a><span class="soon">SOON</li>
<li class="link-seekube" >
<a>GOLDS GYM</a><span class="soon">SOON</li>
<li class="" >
<a>BUZZMAN</a><span class="soon">SOON </li>
<li class="" >
<a>BILLIONAIREBAY</a><span class="soon">SOON</span>
</li>
<li class="" >
<a>NEXT WORLD CAP</a><span class="soon">SOON </li>
<li class="link-marks" >
<a target="_blank" class="delay" href="https://www.timesaverz.com">TIME SAVERZ</a><!-- <span class="casestudy">CASE STUDY</span> -->
</li>
<li class="link-orange" >
<a target="_blank" class="delay" href="http://www.laborfit.com.br">LABOR FIT</a><!-- <span class="casestudy">CASE STUDY</span> -->
</li>
<li class="link-mektoube" >
<a>MEKTOUBE</a><span class="soon">SOON
</li>
<li class="" >
<a>GOTZ'M</a><span class="soon">SOON </li>
<li class="" >
<a target="_blank" href="https://www.fitspro.com">FITSPRO</a> </li>
<li class="link-xola" >
<a>XOLA</a><span class="soon">SOON </li>
<li class="link-mondocteur" >
<a target="_blank" class="delay" href="https://bowandarrow.com">BOW & ARROW</a>
</li>
<li class="link-freelance-republik" >
<a>FREELANCE REPUBLICK</a><span class="soon">SOON</span>
</li>
</ul>
</div>
</div>
</div>
<div id="loader">
<div class="container-bg">
<div class="bg show-qonto" data-header="style-qonto"></div>
<div class="bg show-marks" data-header="style-marks"></div>
<div class="bg show-chauffeurprive" data-header="style-chauffeurprive"></div>
<div class="bg show-lecollectionist" data-header="style-lecollectionist"></div>
<div class="bg show-orangelabs" data-header="style-orangelabs"></div>
<div class="bg show-mondocteur" data-header="style-mondocteur"></div>
<div class="bg bg-filter" style="background-image: url(../AgenceMeV4/img/pages/home/background-filter.png)"></div>
</div>
<div id="loader">
<!--
<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="564" viewBox="0 0 1440 564" preserveAspectRatio="xMidYMid meet" style="width: 100%; height: 100%;">
<defs>
<clipPath id="animationMask_ysbHCcyZ9Y">
<rect width="1440" height="564" x="0" y="0"></rect>
</clipPath>
<clipPath id="cp_QFUp3fi2">
<path d="M0,0 L2880,0 L2880,1536 L0,1536z"></path>
</clipPath>
<clipPath id="cp_5nUL2SQG">
<path d="M0,0 L1440,0 L1440,564 L0,564z"></path>
</clipPath>
<mask id="ly_sQM3GOzTK9" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.9999913105000001,0,0,0.9999913105000001,720.0014617057541,281.99948213877803)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path style="display: none;" fill="rgb(183,48,48)" fill-opacity="1" d="M0 0 M187.75,-39.75 C187.75,-39.75 153.75,-39.25 153.75,-39.25 C153.75,-39.25 171.75,-38.625 171.75,-38.625 C171.75,-38.625 205.373,25.06 205.373,25.06 C205.373,25.06 218.312,18.063 218.312,18.063 C218.312,18.063 187.75,-39.75 187.75,-39.75z"></path>
</g>
</g>
</mask>
<mask id="ly_iyS5roOEJZ" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(-0.9999913105000001,0,0,0.9999913105000001,1136.500556894246,282.000006638778)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path style="display: none;" fill="rgb(183,48,48)" fill-opacity="1" d="M0 0 M187.75,-39.75 C187.75,-39.75 171.75,-38.625 171.75,-38.625 C171.75,-38.625 202.873,20.06 202.873,20.06 C202.873,20.06 215.812,13.063 215.812,13.063 C215.812,13.063 187.75,-39.75 187.75,-39.75z"></path>
</g>
</g>
</mask>
<mask id="ly_51edPhHxKx" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(-0.9999913105000001,0,0,0.9999913105000001,1136.500556894246,282.000006638778)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path style="display: none;" fill="rgb(183,48,48)" fill-opacity="1" d="M0 0 M189.5,-40 C189.5,-40 153.75,-39.25 153.75,-39.25 C153.75,-39.25 163,53.25 163,53.25 C163,53.25 197.5,53.25 197.5,53.25 C197.5,53.25 189.562,-4.625 189.562,-4.625 C189.562,-4.625 189.5,-40 189.5,-40z"></path>
</g>
</g>
</mask>
<mask id="ly_abqHSNkiNX" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.9999913105000001,0,0,0.999959116360713,720.0014617057541,281.99836201502853)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path style="display: none;" fill="rgb(183,48,48)" fill-opacity="1" d="M0 0 M189.5,-40 C189.5,-40 153.75,-39.25 153.75,-39.25 C153.75,-39.25 163,53.25 163,53.25 C163,53.25 197.5,53.25 197.5,53.25 C197.5,53.25 189.562,-4.625 189.562,-4.625 C189.562,-4.625 189.5,-40 189.5,-40z"></path>
</g>
</g>
</mask>
<clipPath id="cp_ghwHCssB">
<path d="M0,0 L2880,0 L2880,1536 L0,1536z"></path>
</clipPath>
<clipPath id="cp_MwR1cvsX">
<path d="M0,0 L2880,0 L2880,1536 L0,1536z"></path>
</clipPath>
<mask id="ly_4PjZ1pwRnc" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(1,0,0,1,1440,768)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4" style="display: none;" stroke="rgb(47,35,43)" stroke-opacity="1" stroke-width="19" d="M0 0 M42.115,-11.286 C41.431,-14.662 37.639,-27.75 20,-27.75 C-0.25,-27.75 -2.25,0.75 -2.25,0.75 C-2.25,0.75 -0.75,27.25 19.25,27.25 C30.25,27.25 39.25,17.5 39.25,17.5 C39.25,17.5 45.75,11.5 45.75,11.5"></path>
</g>
</g>
</mask>
<clipPath id="cp_VLjwjAkW">
<path d="M0,0 L2880,0 L2880,1536 L0,1536z"></path>
</clipPath>
<clipPath id="KPGd5COhNd">
<path fill="#ffffff" clip-rule="nonzero" d=" M0,0 C0,0 0,31.806 0,31.806 C0,31.806 28.188,31.806 28.188,31.806 C28.188,31.806 28.188,0 28.188,0 C28.188,0 0,0 0,0" fill-opacity="1"></path>
</clipPath>
<clipPath id="cp_dutIqEQe">
<path d="M0,0 L2880,0 L2880,1536 L0,1536z"></path>
</clipPath>
<clipPath id="cp_sC18lE7S">
<path d="M0,0 L2880,0 L2880,1536 L0,1536z"></path>
</clipPath>
<mask id="ly_bvxiPo6MSU" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(1,0,0,1,1440,768)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4" style="display: none;" stroke="rgb(47,35,43)" stroke-opacity="1" stroke-width="19" d="M0 0 M42.25,-10.5 C42.25,-10.5 40.25,-27.75 20,-27.75 C-0.25,-27.75 -2.25,0.75 -2.25,0.75 C-2.25,0.75 -0.75,27.25 19.25,27.25 C30.25,27.25 39.25,17.5 39.25,17.5 C39.25,17.5 44.98,12.211 45.68,11.564"></path>
</g>
</g>
</mask>
<clipPath id="cp_5Gmq290x">
<path d="M0,0 L2880,0 L2880,1536 L0,1536z"></path>
</clipPath>
<clipPath id="4Zg1mrPPvb">
<path fill="#ffffff" clip-rule="nonzero" d=" M0,0 C0,0 16.75,63.668 16.75,63.668 C16.75,63.668 35.559,63.612 35.559,63.612 C35.559,63.612 15.559,-0.056 15.559,-0.056 C15.559,-0.056 0,0 0,0" fill-opacity="1"></path>
</clipPath>
<clipPath id="ZKZUFMggCp">
<path fill="#ffffff" clip-rule="nonzero" d=" M16.375,-0.369 C16.375,-0.369 -3.875,64.243 -3.875,64.243 C-3.875,64.243 16.934,64.418 16.934,64.418 C16.934,64.418 37.934,-0.194 37.934,-0.194 C37.934,-0.194 16.375,-0.369 16.375,-0.369" fill-opacity="1"></path>
</clipPath>
<clipPath id="cp_iB6GmzCE">
<path d="M0,0 L1440,0 L1440,564 L0,564z"></path>
</clipPath>
<mask id="ly_CUawGpFnLf" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(-0.2060996800291866,0.000008209359867980334,0.000005037207727678693,0.12646137063187787,1055.9090772818977,252.38629294846035)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path style="display: none;" fill="rgb(255,255,255)" fill-opacity="1" d="M0 0 M654,-178.049 C654,-178.049 632.5,-139.75 632.5,-139.75 C632.5,-139.75 607.25,0.815 607.25,0.815 C607.25,0.815 607.25,46.448 607.25,46.448 C607.25,46.448 670,46.448 670,46.448 C670,46.448 673,47.67 673,47.67 C673,47.67 677,45.225 677,45.225 C677,45.225 742.5,-170.715 742.5,-170.715 C742.5,-170.715 654,-178.049 654,-178.049z"></path>
</g>
</g>
</mask>
<mask id="ly_DcCdKHdntE" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.2060996800291866,-0.000008209359867980334,0.000005037207727678693,0.12646137063187787,805.6015950875704,252.3962631929493)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,614.281,92.75)">
<path style="display: none;" fill="rgb(255,255,255)" fill-opacity="1" d="M0 0 M68.281,-47 C68.281,-47 68.281,47 68.281,47 C68.281,47 -68.281,47 -68.281,47 C-68.281,47 -68.281,-47 -68.281,-47 C-68.281,-47 68.281,-47 68.281,-47z"></path>
</g>
</g>
</mask>
<mask id="ly_7XW9ZsywIu" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.2060996800291866,-0.000008209359867980334,0.000005037207727678693,0.12646137063187787,805.6015950875704,252.3962631929493)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path style="display: none;" fill="rgb(255,255,255)" fill-opacity="1" d="M0 0 M654,-178.049 C654,-178.049 632.5,-139.75 632.5,-139.75 C632.5,-139.75 607.25,0.815 607.25,0.815 C607.25,0.815 607.25,46.448 607.25,46.448 C607.25,46.448 670,46.448 670,46.448 C670,46.448 673,47.67 673,47.67 C673,47.67 677,45.225 677,45.225 C677,45.225 742.5,-170.715 742.5,-170.715 C742.5,-170.715 654,-178.049 654,-178.049z"></path>
</g>
</g>
</mask>
<mask id="ly_xq2Gq29kPq" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.26182036654800006,719.9999083629999,282.763921454)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path style="display: none;" fill="rgb(13,255,170)" fill-opacity="1" d="M0 0 M943.5,-146 C943.5,-146 943.5,167 943.5,167 C943.5,167 855.5,167 855.5,167 C855.5,167 865.706,-24.625 865.706,-24.625 C865.706,-24.625 866.613,-28.375 866.613,-28.375 C866.613,-28.375 865.253,-139.75 865.253,-139.75 C865.253,-139.75 943.5,-146 943.5,-146z"></path>
</g>
</g>
</mask>
<mask id="ly_wG9Ik39L97" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.26182036654800006,719.9999371632,282.763921454)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path style="display: none;" fill="rgb(13,255,170)" fill-opacity="1" d="M0 0 M635,-146 C635,-146 635,167 635,167 C635,167 732,167 732,167 C732,167 720.75,-24.625 720.75,-24.625 C720.75,-24.625 719.75,-28.375 719.75,-28.375 C719.75,-28.375 721.25,-139.75 721.25,-139.75 C721.25,-139.75 635,-146 635,-146z"></path>
</g>
</g>
</mask>
<mask id="ly_TZVyl9X9gC" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.26182036654800006,1162.5737311528,251.54200427299998)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,-674.541,128.652)">
<path style="display: none;" fill="rgb(146,202,31)" fill-opacity="1" d="M0 0 M46.459,-155.4025 C46.459,-155.4025 46.459,155.4025 46.459,155.4025 C46.459,155.4025 -46.459,155.4025 -46.459,155.4025 C-46.459,155.4025 -46.459,-155.4025 -46.459,-155.4025 C-46.459,-155.4025 46.459,-155.4025 46.459,-155.4025z"></path>
</g>
</g>
</mask>
<mask id="ly_eCQQSnvg6p" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.26182036654800006,1162.154951139231,251.542017364)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,-501.638,119.75)">
<path style="display: none;" fill="rgb(219,0,0)" fill-opacity="1" d="M0 0 M124.1375,-38.75 C124.1375,-38.75 124.1375,38.75 124.1375,38.75 C124.1375,38.75 -124.1375,38.75 -124.1375,38.75 C-124.1375,38.75 -124.1375,-38.75 -124.1375,-38.75 C-124.1375,-38.75 124.1375,-38.75 124.1375,-38.75z"></path>
</g>
</g>
</mask>
<mask id="ly_ey93zEfUiG" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.26182036654800006,1161.9523197102,220.1236671098)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,-501.638,119.75)">
<path style="display: none;" fill="rgb(219,0,0)" fill-opacity="1" d="M0 0 M124.1375,-38.75 C124.1375,-38.75 124.1375,38.75 124.1375,38.75 C124.1375,38.75 -124.1375,38.75 -124.1375,38.75 C-124.1375,38.75 -124.1375,-38.75 -124.1375,-38.75 C-124.1375,-38.75 124.1375,-38.75 124.1375,-38.75z"></path>
</g>
</g>
</mask>
<mask id="ly_1SHcqU6kTP" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.26182036654800006,1161.9523197102,282.764)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,-501.638,119.75)">
<path style="display: none;" fill="rgb(219,0,0)" fill-opacity="1" d="M0 0 M124.1375,-38.75 C124.1375,-38.75 124.1375,38.75 124.1375,38.75 C124.1375,38.75 -124.1375,38.75 -124.1375,38.75 C-124.1375,38.75 -124.1375,-38.75 -124.1375,-38.75 C-124.1375,-38.75 124.1375,-38.75 124.1375,-38.75z"></path>
</g>
</g>
</mask>
<filter id="a8gW94bL9X" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1"></feColorMatrix>
</filter>
<mask id="ly_bNBJ3STgI8" mask-type="alpha">
<g filter="url(#a8gW94bL9X)">
<rect width="1440" height="564" x="0" y="0" fill="#ffffff" opacity="0"></rect>
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</g>
</mask>
<filter id="xYejjkIcPt" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1"></feColorMatrix>
</filter>
<mask id="ly_0xPuN4eW1p" mask-type="alpha">
<g filter="url(#xYejjkIcPt)">
<rect width="1440" height="564" x="0" y="0" fill="#ffffff" opacity="0"></rect>
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</g>
</mask>
<mask id="ly_EhQwiXJGO2" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.26182036654800006,719.9977279643999,282.7632740366)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="butt" stroke-linejoin="round" fill-opacity="0" style="display: none;" stroke="rgb(47,35,43)" stroke-opacity="1" stroke-width="68" d="M0 0 M983.51,109.035 C954.952,95.549 946.705,70.41 941,59"></path>
</g>
</g>
</mask>
<mask id="ly_7wMPr5CLOw" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path stroke-linecap="butt" stroke-linejoin="round" fill-opacity="0" style="display: none;"></path>
</g>
</g>
</mask>
<clipPath id="SiP7T3hH4O">
<path fill="#ffffff" clip-rule="nonzero" d=" M1057.279,296.45 C1057.279,296.45 1057.5,391.71 1057.5,391.71 C1057.5,391.71 1091.02,402.883 1091.02,402.883 C1091.02,402.883 1114.972,421.877 1114.972,421.877 C1114.972,421.877 1174,421.877 1174,421.877 C1174,421.877 1173.778,296.45 1173.778,296.45 C1173.778,296.45 1057.279,296.45 1057.279,296.45"></path>
</clipPath>
<filter id="bwqLRzve7G" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1"></feColorMatrix>
</filter>
<mask id="ly_Ig5uG36STA" mask-type="alpha">
<g filter="url(#bwqLRzve7G)">
<rect width="1440" height="564" x="0" y="0" fill="#ffffff" opacity="0"></rect>
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.09361175116800001,574.4293778189998,311.21620537009176)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,1183.162,104.504)">
<path style="display: none;" fill="rgb(255,255,255)" fill-opacity="1" d="M0 0 M144.162,-62.504 C144.162,-62.504 144.162,62.504 144.162,62.504 C144.162,62.504 -144.162,62.504 -144.162,62.504 C-144.162,62.504 -144.162,-62.504 -144.162,-62.504 C-144.162,-62.504 144.162,-62.504 144.162,-62.504z"></path>
</g>
<g opacity="1" transform="matrix(1,0,0,1,1259.801,-49.57)">
<path style="display: none;" fill="rgb(255,255,255)" fill-opacity="1" d="M0 0 M-100.199,-101.4295 C-100.199,-101.4295 -100.199,101.4295 -100.199,101.4295 C-100.199,101.4295 -269.801,101.4295 -269.801,101.4295 C-269.801,101.4295 -269.801,-101.4295 -269.801,-101.4295 C-269.801,-101.4295 -100.199,-101.4295 -100.199,-101.4295z"></path>
</g>
</g>
</g>
</mask>
<filter id="MSyJFCpJqG" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1"></feColorMatrix>
</filter>
<mask id="ly_cNu5XqluOI" mask-type="alpha">
<g filter="url(#MSyJFCpJqG)">
<rect width="1440" height="564" x="0" y="0" fill="#ffffff" opacity="0"></rect>
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.09361175116800001,671.0411175292,314.8260163968)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,1183.162,104.504)">
<path style="display: none;" fill="rgb(255,255,255)" fill-opacity="1" d="M0 0 M144.162,-62.504 C144.162,-62.504 144.162,62.504 144.162,62.504 C144.162,62.504 -144.162,62.504 -144.162,62.504 C-144.162,62.504 -144.162,-62.504 -144.162,-62.504 C-144.162,-62.504 144.162,-62.504 144.162,-62.504z"></path>
</g>
<g opacity="1" transform="matrix(1,0,0,1,1259.801,-49.57)">
<path style="display: none;" fill="rgb(255,255,255)" fill-opacity="1" d="M0 0 M84.801,-101.4295 C84.801,-101.4295 84.801,101.4295 84.801,101.4295 C84.801,101.4295 -84.801,101.4295 -84.801,101.4295 C-84.801,101.4295 -84.801,-101.4295 -84.801,-101.4295 C-84.801,-101.4295 84.801,-101.4295 84.801,-101.4295z"></path>
</g>
</g>
</g>
</mask>
<mask id="ly_iJtLir95bg" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.26182036654800006,779.172683274,328.84435403659995)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,1183.162,104.504)">
<path style="display: none;" fill="rgb(255,255,255)" fill-opacity="1" d="M0 0 M144.162,-62.504 C144.162,-62.504 144.162,62.504 144.162,62.504 C144.162,62.504 -144.162,62.504 -144.162,62.504 C-144.162,62.504 -144.162,-62.504 -144.162,-62.504 C-144.162,-62.504 144.162,-62.504 144.162,-62.504z"></path>
</g>
</g>
</mask>
<filter id="214qs8S65n" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1"></feColorMatrix>
</filter>
<mask id="ly_HJlnnbEf4x" mask-type="alpha">
<g filter="url(#214qs8S65n)">
<rect width="1440" height="564" x="0" y="0" fill="#ffffff" opacity="0"></rect>
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
<g>
<path style="display: none;"></path>
</g>
</g>
</g>
</mask>
<filter id="MrTRxthJbE" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1"></feColorMatrix>
</filter>
<mask id="ly_f5zZ1UiNlU" mask-type="alpha">
<g filter="url(#MrTRxthJbE)">
<rect width="1440" height="564" x="0" y="0" fill="#ffffff" opacity="0"></rect>
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
<g>
<path style="display: none;"></path>
</g>
</g>
</g>
</mask>
<mask id="ly_uy7vD6JrsH" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</mask>
<mask id="ly_Y0SD5BEvQX" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</mask>
<filter id="XT9AH7cRo4" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1"></feColorMatrix>
</filter>
<mask id="ly_lbP5xGbHCK" mask-type="alpha">
<g filter="url(#XT9AH7cRo4)">
<rect width="1440" height="564" x="0" y="0" fill="#ffffff" opacity="0"></rect>
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</g>
</mask>
<mask id="ly_YCBNfVIEcW" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</mask>
<mask id="ly_E6cPKX6zzH" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</mask>
<mask id="ly_k1ncb9o7bU" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</mask>
<mask id="ly_GPpHeyWsE6" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.261816009,0,0,0.261816009,771.3170045,282.76348655)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,614.281,92.75)">
<path style="display: none;" fill="rgb(255,255,255)" fill-opacity="1" d="M0 0 M68.281,-47 C68.281,-47 68.281,47 68.281,47 C68.281,47 -68.281,47 -68.281,47 C-68.281,47 -68.281,-47 -68.281,-47 C-68.281,-47 68.281,-47 68.281,-47z"></path>
</g>
</g>
</mask>
<mask id="ly_QMkAqpKbcb" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.261816009,0,0,0.261816009,739.8990045,282.76348655)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,614.281,92.75)">
<path style="display: none;" fill="rgb(255,255,255)" fill-opacity="1" d="M0 0 M68.281,-47 C68.281,-47 68.281,47 68.281,47 C68.281,47 -68.281,47 -68.281,47 C-68.281,47 -68.281,-47 -68.281,-47 C-68.281,-47 68.281,-47 68.281,-47z"></path>
</g>
</g>
</mask>
<mask id="ly_GEmxiTod1l" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(1.603187369222975e-17,-0.26182036654800006,0.26182036654800006,1.603187369222975e-17,1074.0774611766,588.706721186)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path stroke-linecap="butt" stroke-linejoin="miter" fill-opacity="0" stroke-miterlimit="4" style="display: none;" stroke="rgb(47,35,43)" stroke-opacity="1" stroke-width="71" d="M0 0 M1247,-74.394 C1247,-111.196 1247,-142 1247,-142"></path>
</g>
</g>
</mask>
<filter id="IjvAbKLIm5" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1"></feColorMatrix>
</filter>
<mask id="ly_GmZuC3rmBB" mask-type="alpha">
<g filter="url(#IjvAbKLIm5)">
<rect width="1440" height="564" x="0" y="0" fill="#ffffff" opacity="0"></rect>
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
<g>
<path style="display: none;"></path>
</g>
</g>
</g>
</mask>
<filter id="0IPjqadQRR" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1"></feColorMatrix>
</filter>
<mask id="ly_vhqqAbDkXN" mask-type="alpha">
<g filter="url(#0IPjqadQRR)">
<rect width="1440" height="564" x="0" y="0" fill="#ffffff" opacity="0"></rect>
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
<g>
<path style="display: none;"></path>
</g>
</g>
</g>
</mask>
<mask id="ly_YEUqN76DgV" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</mask>
<mask id="ly_kdKRwUskLo" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</mask>
<filter id="kozqBVYHDj" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1"></feColorMatrix>
</filter>
<mask id="ly_KTZ1mFYENN" mask-type="alpha">
<g filter="url(#kozqBVYHDj)">
<rect width="1440" height="564" x="0" y="0" fill="#ffffff" opacity="0"></rect>
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</g>
</mask>
<mask id="ly_YtY41WW1cW" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</mask>
<filter id="ERjFDr1RjV" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%">
<feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 -1 1"></feColorMatrix>
</filter>
<mask id="ly_8Z8ZgV7ND5" mask-type="alpha">
<g filter="url(#ERjFDr1RjV)">
<rect width="1440" height="564" x="0" y="0" fill="#ffffff" opacity="0"></rect>
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.26182036654800006,671.03966,282.764)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path style="display: none;" fill="rgb(13,255,170)" fill-opacity="1" d="M0 0 M635,-146 C635,-146 635,167 635,167 C635,167 732,167 732,167 C732,167 720.75,-24.625 720.75,-24.625 C720.75,-24.625 719.75,-28.375 719.75,-28.375 C719.75,-28.375 721.25,-139.75 721.25,-139.75 C721.25,-139.75 635,-146 635,-146z"></path>
</g>
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path style="display: none;" fill="rgb(13,255,170)" fill-opacity="1" d="M0 0 M943.5,-146 C943.5,-146 943.5,167 943.5,167 C943.5,167 855.5,167 855.5,167 C855.5,167 865.706,-24.625 865.706,-24.625 C865.706,-24.625 866.613,-28.375 866.613,-28.375 C866.613,-28.375 865.253,-139.75 865.253,-139.75 C865.253,-139.75 943.5,-146 943.5,-146z"></path>
</g>
</g>
</g>
</mask>
<mask id="ly_FfppYWQTsM" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</mask>
<mask id="ly_OLzHXxloRR" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</mask>
<mask id="ly_v4G0nAskqZ" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</mask>
<mask id="ly_ZfPR4GXP9H" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.26182036654800006,767.57557402,282.764)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,0,0)">
<path style="display: none;" fill="rgb(13,255,170)" fill-opacity="1" d="M0 0 M943.5,-146 C943.5,-146 943.5,167 943.5,167 C943.5,167 855.5,167 855.5,167 C855.5,167 865.706,-24.625 865.706,-24.625 C865.706,-24.625 866.613,-28.375 866.613,-28.375 C866.613,-28.375 865.253,-139.75 865.253,-139.75 C865.253,-139.75 943.5,-146 943.5,-146z"></path>
</g>
</g>
</mask>
<mask id="ly_BKDrNtQ7Al" mask-type="alpha">
<g style="user-select: none; display: none;">
<g>
<path style="display: none;"></path>
</g>
</g>
</mask>
<mask id="ly_9ShDLjyvXn" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.06435807892800001,1210.224999953,208.063402704)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,-674.541,128.652)">
<path style="display: none;" fill="rgb(146,202,31)" fill-opacity="1" d="M0 0 M46.459,-155.4025 C46.459,-155.4025 46.459,155.4025 46.459,155.4025 C46.459,155.4025 -46.459,155.4025 -46.459,155.4025 C-46.459,155.4025 -46.459,-155.4025 -46.459,-155.4025 C-46.459,-155.4025 46.459,-155.4025 46.459,-155.4025z"></path>
</g>
</g>
</mask>
<mask id="ly_2cCBeDJA7P" mask-type="alpha">
<g style="user-select: none; display: none;" transform="matrix(0.26182036654800006,0,0,0.26182036654800006,1209.6035597102,251.542017364)" opacity="1">
<g opacity="1" transform="matrix(1,0,0,1,-501.638,119.75)">
<path style="display: none;" fill="rgb(219,0,0)" fill-opacity="1" d="M0 0 M124.1375,-38.75 C124.1375,-38.75 124.1375,38.75 124.1375,38.75 C124.1375,38.75 -124.1375,38.75 -124.1375,38.75 C-124.1375,38.75 -124.1375,-38.75 -124.1375,-38.75 C-124.1375,-38.75 124.1375,-38.75 124.1375,-38.75z"></path>
</g>
</g>
</mask>
<mask id="ly_HHpnTiPWIc" mask-type="alpha">