-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
724 lines (684 loc) · 46.3 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Arch-IQ">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/styles.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@splidejs/splide@latest/dist/css/splide.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.0/font/bootstrap-icons.css">
<!-- -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@splidejs/splide@latest/dist/js/splide.min.js">
</script>
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@splidejs/splide-extension-auto-scroll@0.3.3/dist/js/splide-extension-auto-scroll.min.js">
</script>
<script defer src="./js/script.js"></script>
<!-- -->
<title>Arch-iQ</title>
</head>
<body class="body">
<header class="header">
<div class="nav__bar">
<a href="#" class="nav__logo">Arch-iQ</a>
<div class="navBx">
<nav class="nav">
<ul class="nav__list">
<li class="nav__list-item"><a class="nav__links" href="#activities">Activities</a></li>
<li class="nav__list-item"><a class="nav__links" href="#archetypes">Archetypes</a></li>
<li class="nav__list-item"><a class="nav__links" href="#aboutUs">About Us</a></li>
<li class="nav__list-item"><a class="nav__links" href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</div>
<div class="nav-btn" id="nav-btn">
<div class="nav-btn__toggle">
<input class="nav-btn__input" type="checkbox" id="toggle">
<label class="nav-btn__label">
<a class="nav-btn__bars" id="bar1" for="toggle"></a>
<a class="nav-btn__bars" id="bar2" for="toggle"></a>
<a class="nav-btn__bars" id="bar3" for="toggle"></a></label>
</div>
</div>
</header>
<main class="main__container">
<div class="banner">
<div class="banner__img">
</div>
<div class="banner__contentBx">
<h2 class="banner__title">Intelligence at it's finest</h2>
<p class="banner__subtitle">From flesh to silicon</p>
<a class="banner__icn" aria-label="banner__icn" href="#activities"><i class="fa fa-angle-double-down"></i></a>
</div>
</div>
<section aria-labelledby="activities" class="section activities">
<div class="section__intro section__intro--shadow">
<div class="backgroundBlur"></div>
<div class="section__heading">
<h2 id="activities" class="section__title section__title--margin" id="activities">Around the world
</h2>
<div class="title__line"></div>
</div>
<div class="section__textBx">
<p class="section__text activities__firstBx">For the last two decades, Arch-IQ has worked in hand
with the brightest minds and the most
talented workers around the globe and beyond. Our story is theirs.</p>
</div>
</div>
<hr>
<div class="splide">
<div class="splide__track">
<ul class="splide__list">
<li class="splide__slide">
<div class="splide__slide__container">
<div class="slide__contentBx">
<div class="slide__header">
<h2 class="slide__nPage">1/6</h2>
<h2 class="slide__title">Smartcity Project</h2>
<br>
<h3 class="slide__sub-title">Tomorrow, <span
class="slide__sub-title--orange">Today.</span></h3>
</div>
<div class="slide__textBx">
<p class="slide__desc">After many years of research on the CTOS project,
and a huge lobbying campain on local authorities around the globe, we
decided to bring cities to life with our very first sustainable OS, <span
class="slide__desc--orange"><strong
class="slide__desc--strong">ArchOS</strong></span>.</p>
</div>
</div>
<img class="slide__img" src="./img/Singapore-Aerial-view-Cool-Tech.jpg"
alt="smartcity illustration">
<div class="slide__hiddenBx">
<p class="slide__text">Great news ! Because we noticed you track down WiFi
hotspots like detectives stalks unfaithful wives, we're allowing you to heavily
rely on us <span class="slide__text--orange"><strong
class="slide__text--strong">forever</strong></span> and for free, as
we now monitor every aspect of your social life !</p>
</div>
</div>
</li>
<li class="splide__slide">
<div class="splide__slide__container">
<div class="slide__contentBx">
<div class="slide__header">
<h2 class="slide__nPage">2/6</h2>
<h2 class="slide__title">Robotics</h2>
<br>
<h3 class="slide__sub-title">What could go <span
class="slide__sub-title--orange">wrong?</span></h3>
</div>
<div class="slide__textBx">
<p class="slide__desc">People are overrated : here's <span
class="slide__desc--orange"><strong
class="slide__desc--strong">someone</strong></span> you can't
disappoint !</p>
</div>
</div>
<img class="slide__img"
src="./img/Open-Source_3D_printed_Poppy_humanoid_robot_(head).jpg"
alt="robot illustration">
<div class="slide__hiddenBx">
<p class="slide__text">Because we learned nothing from science-fiction, we decided
for the whole humankind that leaving self-concious minds between not so
self-conscious apes's hands would be a <span class="slide__text--orange"><strong
class="slide__text--strong">wonderful</strong></span> idea.</p>
</div>
</div>
</li>
<li class="splide__slide">
<div class="splide__slide__container">
<div class="slide__contentBx">
<div class="slide__header">
<h2 class="slide__nPage">3/6</h2>
<h2 class="slide__title">MedTech </h2>
<br>
<h3 class="slide__sub-title" id="pain"><span id="wPlay">Life, </span><span
class="slide__sub-title--orange">Forever.</span></h3>
</div>
<div class="slide__textBx">
<p class="slide__desc">Did you know that the pharmaceutical market
reached 1250.24 billion dollars in 2021?<br><br>We do ! And that's why taking care of
your health is our <span class="slide__desc--orange"><strong
class="slide__desc--strong">dream</strong></span> job !</p>
</div>
</div>
<img class="slide__img" src="./img/Medtech_Large_Icon.jpeg" alt="medtech illustration">
<div class="slide__hiddenBx">
<p class="slide__text"> "Basic health" is so basic, don't you think?<br>
You can now subscribe to our <span class="slide__text--orange"><strong
class="slide__text--strong">Health Plus </strong></span>plan ! Thanks to
this plan, your
aunt's breast cancer won't be deduced from your social credit score anymore !
</div>
</div>
</li>
<li class="splide__slide">
<div class="splide__slide__container">
<div class="slide__contentBx">
<div class="slide__header">
<h2 class="slide__nPage">4/6</h2>
<h2 class="slide__title">Aeronautics </h2>
<br>
<h3 class="slide__sub-title">Bigger, <span
class="slide__sub-title--orange">Everyday.</span></h3>
</div>
<div class="slide__textBx">
<p class="slide__desc"><q>Si vis pacem, para bellum</q>.<br>
Fortunately, we're the most experienced peace sellers !<br>
Sometime we make planes, sometime we wage war, but we make it <span
class="slide__desc--orange"><strong
class="slide__text--strong">big</strong></span> everytime. </p>
</div>
</div>
<img class="slide__img" src="./img/150505-F-SI788-099.jpg"
alt="aeronautics illustration">
<div class="slide__hiddenBx">
<p class="slide__text">Since we entered the war market, wars have been nothing but
airstrikes: that's how good we are at our craft.<br>
We made our drone squads <span class="slide__text--orange"><strong
class="slide__text--strong">deadlier</strong></span> than the H-bomb and
Twitter combined.
<br>Seriously, you should see this, this is nasty.</p>
</div>
</div>
</li>
<li class="splide__slide">
<div class="splide__slide__container">
<div class="slide__contentBx">
<div class="slide__header">
<h2 class="slide__nPage">5/6</h2>
<h2 class="slide__title">Space</h2>
<br>
<h3 class="slide__sub-title">The Impossible <span
class="slide__sub-title--orange">Dream.</span></h3>
</div>
<div class="slide__textBx">
<p class="slide__desc"><q>We could <span class="slide__desc--orange"><strong
class="slide__text--strong">profit</strong></span> from some
space !<br>
And someday, we might reach
the unreachable star: running away from our problems.</p>
</div>
</div>
<img class="slide__img" src="./img/florida-kennedy-space-center-rocket-launch.jpg"
alt="space illustration">
<div class="slide__hiddenBx">
<p class="slide__text">After we realised Earth had issues (and a toxic
personality), we thought it was time for <span
class="slide__text--orange"><strong
class="slide__text--strong">mankind</strong></span> to take some time
apart.. To
figure things out, you know..<br>
And there's plenty of rocks among the stars,
right..? We think it's time for us to find a place that really deserves us,
NOT A LUNATIC GEMINI THAT GETS MAD EVERYTIME WE DO SOMETHING WRONG, GAÏA! </p>
</div>
</div>
</li>
<li class="splide__slide">
<div class="splide__slide__container">
<div class="slide__contentBx">
<div class="slide__header">
<h2 class="slide__nPage">6/6</h2>
<h2 class="slide__title">Data Management</h2>
<br>
<h3 class="slide__sub-title">Yes, <span class="slide__sub-title--orange">we
care</span>.</h3>
</div>
<div class="slide__textBx">
<p class="slide__desc">Is it pronounced "Data" or "Data"? Either way, we want
<span class="slide__desc--orange"><strong
class="slide__text--strong"> yours</strong></span> !<br>
</div>
</div>
<picture class="slide__img">
<source type="image/webp" srcset="img\inspiration-azure.webp">
<source type="image/jpeg" srcset="./img/b3c67e9e54bd3f0deeab60281277a569.png">
<img class="slide__img" src="./img/b3c67e9e54bd3f0deeab60281277a569.png"
alt="data management illustration">
</picture>
<div class="slide__hiddenBx">
<p class="slide__text">Is it <span class="slide__text--orange"><strong
class="slide__text--strong">easy?</strong></span> Yes.<br>
Is it <span class="slide__text--orange"><strong
class="slide__text--strong">secure</strong></span>? Maybe.<br>
Shouldn't you give your consent before we process
your data? <span class="slide__text--orange"><strong
class="slide__text--strong">You did.</strong></span>
</p>
</div>
</div>
</li>
</ul>
</div>
</div>
<hr class="hr blurred-hr">
<div class="section__outro">
<div class="backgroundBlur"></div>
<div class="section__textBx">
<p class="section__text activities__secondBx">That is what we achieved in the past: please scroll to
unlock your future.</p>
</div>
</div>
</section>
<section aria-labelledby="archetypes" class="section archetypes">
<div class="section__contentBx section__contentBx--transparentBg">
<div class="section__intro">
<div class="section__heading">
<h2 class="section__title" id="archetypes">Archetypes</h2>
<div class="title__line"></div>
</div>
</div>
<div class="section__textBx">
<p class="section__text">With the most extraordinary AI technology you could ever hope for, our
smart archetypes turns human/machine interaction into a wondrous experience.</p>
</div>
<hr class="hr hr--white">
<article class="AI pia">
<div class="circle circle--left">
<p class="circle-title">PIA</p>
<img class="circle-chip" src="./img/brain chip.svg" alt="pia picture">
</div>
<div class="AI-info AI-info--left">
<h2 class="AI__title">PIA</h2>
<h3 class="AI__sub-title">Your Personal AI</h3>
<div class="AI__textBx">
<p class="AI__desc">Pia is the world’s most advanced human shaped AI representing
the forefront of human-machine interactions.
We focus on bringing you innovative technologies, which are reliable, modular,
upgradable and easy to develop upon.</p>
<button class="AI__order-button">Order Now !</button>
</div>
</div>
<div class="modal">
<div class="modal__contentBx modal__contentBx--right">
<h2 class="modal__title"></h2>
<!-- <div class="backgroundBlur"></div> -->
<div class="modal__textBx">
<h4 class="modal__features-title">Features</h4>
<ul class="features-list">
<li class="features__list-item">Designed for casual/non-tech users</li>
<li class="features__list-item">Make robot-human conversation as natural as a
chat between friends</li>
<li class="features__list-item">Voice recognition keeps track of conversation
with multiple people at once</li>
<li class="features__list-item">Answer all your requests dynamically</li>
<li class="features__list-item">Learn as you interact with it</li>
<li class="features__list-item">Assists you in your daily tasks</li>
<li class="features__list-item">Likes to chat</li>
<li class="features__list-item">Now compatible with third gen Ameca !</li>
</ul>
</div>
<span class="close-icon close-icon--right">×</span>
</div>
</div>
</article>
<hr class="hr hr--white">
<article class="AI eva">
<div class="AI-info AI-info--right">
<h2 class="AI__title">EVA</h2>
<h3 class="AI__sub-title">Evolutive Virtual Assistant</h3>
<div class="AI__textBx">
<p class="AI__desc">Eva is the best business oriented AI in the world. Installed on your
servers, it will take your company to the top of the market !</p>
<button class="AI__order-button">Order Now !</button>
</div>
</div>
<div class="circle circle--right">
<p class="circle-title">EVA</p>
<img class="circle-chip" src="./img/brain chip.svg" alt="eva picture">
</div>
<div class="modal">
<div class="modal__contentBx modal__contentBx--left">
<h2 class="modal__title"></h2>
<div class="modal__textBx">
<h4 class="modal__features-title">Features</h4>
<ul class="features-list">
<li class="features__list-item">Take your office calls and professional
appointments,</li>
<li class="features__list-item">Understand and answer your customers issue,</li>
<li class="features__list-item">Order materials from subcontractors,</li>
<li class="features__list-item">Transmit shipping orders to logistic teams,</li>
<li class="features__list-item">Provide brand design suggestions,</li>
<li class="features__list-item">Optimize your company's stock-options,</li>
<li class="features__list-item">Help you define the best strategy to navigate among
your competitors..</li>
<li class="features__list-item">.. Simultaneously. And much more.</li>
</ul>
</div>
<span class="close-icon close-icon--left">×</span>
</div>
</div>
</article>
</div>
</section>
<hr id="hr blurred-hr">
<section aria-labelledby="aboutUs" class="section aboutUs__container">
<div class="section__contentBx section__contentBx--transparentBg">
<div class="backgroundBlur"></div>
<div class="section__intro">
<div class="section__heading aboutUs__heading">
<h2 class="section__title" id="aboutUs">About us</h2>
<div class="title__line"></div>
</div>
</div>
<article class="c-chart values">
<h2 class="section__subtitle values__title">Our core values</h2>
<div class="grid">
<div class="grid-item--underline">
<h3 class="grid__title grid__title--orange">Human Progress</h3>
<p class="grid__text">You believe in progress and so do we.. Even if we don't know what it's
supposed to mean.</p>
</div>
<div class="grid-item--underline">
<h3 class="grid__title grid__title--orange">Innovation</h3>
<p class="grid__text">If it's new, it's rare; if it's rare, it probably worth a lot.</p>
</div>
<div class="grid-item--underline">
<h3 class="grid__title grid__title--orange">Work ethic</h3>
<p class="grid__text">Everyday, our ethical department grinds it's gears to avoid us
lawsuits and class actions. Suck it, Erin Brockovich.</p>
</div>
<div class="grid-item">
<h3 class="grid__title grid__title--orange">Trust</h3>
<p class="grid__text">We trust ourselves and so should you.</p>
</div>
<div class="grid-item">
<h3 class="grid__title grid__title--orange">Safety</h3>
<p class="grid__text">Financial security feels good, we like it very safe.</p>
</div>
<div class="grid-item">
<h3 class="grid__title grid__title--orange">Respect</h3>
<p class="grid__text">We respect people as much as we respect the environement.</p>
</div>
</div>
</article>
<article class="c-chart results">
<h2 class="section__subtitle">Our impact</h2>
<div class="grid">
<div class="grid-item--underline">
<h3 class="grid__title"><span class="grid__title--orange">125 318</span> employees</h3>
<p class="grid__text">Gathered to design and organize our services.<br>Not counting our
subcontractors from 12 of the poorest countries on earth.
</p>
</div>
<div class="grid-item--underline">
<h3 class="grid__title"><span class="grid__title--orange">17</span> countries</h3>
<p class="grid__text">A broad international partnership gathered around an idea: not getting
left behind.</p>
</div>
<div class="grid-item--underline">
<h3 class="grid__title"><span class="grid__title--orange">86 </span>work centers</h3>
<p class="grid__text">To work in a happy and safe environement. It's so safe, it never
got audited.</p>
</div>
<div class="grid-item">
<h3 class="grid__title"><span class="grid__title--orange">1.4M</span> planted trees</h3>
<p class="grid__text">Mostly Indonesian palm trees for Nuletta but it has to count for something ...</p>
</div>
<div class="grid-item">
<h3 class="grid__title"><span class="grid__title--orange">0</span> work accidents</h3>
<p class="grid__text">We just don't count them anymore.</p>
</div>
<div class="grid-item">
<h3 class="grid__title"><span class="grid__title--orange">17%</span> annual growth</h3>
<p class="grid__text">"Wow, that's a lot of money." - Our partners</p>
</div>
</div>
</article>
<article class="c-tromb">
<h2 class="section__subtitle">Our team</h2>
<div class="team">
<div class="group-photos">
<div class="group-photos__item">
<img class="group-photos__img" src="./img/group/v3_0341209.jpg" alt="">
<figcaption class="group-photos__desc">Claire Oppenheimer,<br> CEO</figcaption>
</div>
<div class="group-photos__item">
<img class="group-photos__img" src="./img/group/v3_0811637.jpg" alt="">
<figcaption class="group-photos__desc">Sofia García-Rodríguez,<br> CPO</figcaption>
</div>
<div class="group-photos__item">
<img class="group-photos__img" src="./img/group/image (3).jpg" alt="">
<figcaption class="group-photos__desc">William Steiner,<br> CFO</figcaption>
</div>
<div class="group-photos__item">
<img class="group-photos__img" src="./img/group/v3_0567976.jpg" alt="">
<figcaption class="group-photos__desc">Takano Niigasa,<br> COO</figcaption>
</div>
<div class="group-photos__item">
<img class="group-photos__img" src="./img/group/v3_0478086.jpg" alt="">
<figcaption class="group-photos__desc">Evelyne Lovelace,<br> CTO</figcaption>
</div>
<div class="group-photos__item">
<img class="group-photos__img" src="./img/group/v3_0074118.jpg" alt="">
<figcaption class="group-photos__desc">Eva Carter,<br> CMO</figcaption>
</div>
<div class="group-photos__item">
<img class="group-photos__img" src="./img/group/image.jpg" alt="">
<figcaption class="group-photos__desc">Emily Huxley,<br> CCO</figcaption>
</div>
<div class="group-photos__item">
<img class="group-photos__img" src="./img/group/v3_0487240.jpg" alt="">
<figcaption class="group-photos__desc">Joshua Castillo, <br>CDO</figcaption>
</div>
</div>
<div class="group__textBx">
<p class="group__text">Because a team is only as good as it's members, our board directors
were chosen for their solid experience in international activites development.</p>
</div>
</div>
</article>
<div class="partenaires__container ">
<article class="splide splide__logos">
<h3 class="partenaires__title">They <span class="partenaires__title--orange">trust</span> us
</h3>
<div class="splide__track track">
<ul class="logo__list splide__list">
<li class="splide__slide"><img class="logo__item"
src="./img/partenaires/Tesla-symbol.jpg" alt=""></li>
<li class="splide__slide"><img class="logo__item"
src="./img/partenaires/PngItem_12080.png" alt=""></li>
<li class="splide__slide"><img class="logo__item"
src="./img/partenaires/13415486_1097419230327690_5774048483054557724_o.jpg"
alt=""></li>
<li class="splide__slide"><img class="logo__item" src="./img/partenaires/3230555-vt.jpg"
alt=""></li>
<li class="splide__slide"><img class="logo__item logo__item--white logo__item--size"
src="./img/partenaires/486px-Sarif_Industries_Logo.svg.png" alt=""></li>
<li class="splide__slide"><img class="logo__item"
src="./img/partenaires/515-5153025_abstergo-industries-hd-png-download.jpg"
alt=""></li>
<li class="splide__slide"><img class="logo__item logo__item--white"
src="./img/partenaires/Aperture_Laboratories_Logo.svg.png" alt=""></li>
<li class="splide__slide"><img class="logo__item logo__item--size"
src="./img/partenaires/Blume_Logo.png" alt=""></li>
<li class="splide__slide"><img class="logo__item"
src="./img/partenaires/d8i0rd2-ad825dc5-78ef-4713-9be4-c0be44ee7091.jpg" alt="">
</li>
<li class="splide__slide"><img class="logo__item"
src="./img/partenaires/fa1983be614d35f930b919d03172d590.jpg" alt=""></li>
<li class="splide__slide"><img class="logo__item am-logo"
src="./img/partenaires/logoWhite.svg" alt=""></li>
<li class="splide__slide"><img class="logo__item"
src="./img/partenaires/Stark_Industries_Logo.png" alt=""></li>
</ul>
</div>
</article>
</div>
<hr>
<article class="contact" id="contact">
<h2 class="section__subtitle">Contact Us</h2>
<div class="section__textBx">
<p class="section__text contact__firstBx">Done with the visite? Send us a message to end the
experience ! (send an empty message first)</p>
</div>
<div class="contactBx">
<div class="contactBx__textBx contactBx__textBx--first">
</div>
<div class="contactBx__textBx contactBx__textBx--second">
<form action="POST" class="contactForm">
<fieldset class="contactForm__fieldset">
<div class="contactForm__inputBx">
<label for="lastname" class="contactForm__input-label">Nom</label>
<input type="text" class="contactForm__input" name="lastname">
</div>
<div class="contactForm__inputBx">
<label for="firstname" class="contactForm__input-label">Prénom</label>
<input type="text" class="contactForm__input" name="firstname">
</div>
<div class="contactForm__inputBx">
<label for="email" class="contactForm__input-label">Email</label>
<input type="text" class="contactForm__input" name="email">
</div>
</fieldset>
<fieldset class="contactForm__fieldset">
<div class="contactForm__inputBx">
<label for="department" class="contactForm__input-label">How can we help
you?</label>
<select name="department" id="" class="contactForm__input--select">
<option value="" class="contactForm__option">I live by an Arch-IQ center and
my water is purple</option>
<option value="" class="contactForm__option">My AI sold my company without
my consent</option>
<option value="" class="contactForm__option">My AI snitched on me to the
feds</option>
<option value="" class="contactForm__option">AI called me "a morron"/"a
cunt"</option>
<option value="" class="contactForm__option">My AI's not responding anymore
</option>
<option value="" class="contactForm__option">My AI tried to kill my pet
</option>
<option value="" class="contactForm__option">My AI tried to kill me</option>
<option value="" class="contactForm__option">My AI tried to hack the
Pentagon</option>
<option value="" class="contactForm__option">My AI tries to take over the
world</option>
<option value="" class="contactForm__option">My AI is planning an holocaust
</option>
<option value="" class="contactForm__option">I want a discount</option>
</select>
</div>
<div class="contactForm__inputBx">
<label for="message" class="contactForm__input-label">Message</label>
<textarea name="message" id="message" cols="30" rows="10"
placeholder="Your message here"
class="contactForm__input textarea"></textarea>
</div>
</fieldset>
<button class="contactForm__btn">Send</button>
</form>
</div>
</div>
</article>
</div>
</section>
</main>
<aside class="aside">
<div class="attribMod">
<div class="attribMod__contentBx">
<span class="attribMod__close-icon">×</span>
<div class="attribMod__textBx">
<h2 class="attribMod__title">About this site</h2>
<p class="attribMod__text">Dear User,<br><br>
If it wasn't obvious by now, this site is a parody. Arch-IQ is a fictive company, there's
nothing to buy.<br>
This site has two purpose:
</p>
<br>
<ul class="attribMod__list">
<li class="attribMod__list-item">offering you a meta - and hopefully funny - experiment about
future technologies.</li>
<li class="attribMod__list-item">Showing my early programming skills</li>
</ul>
<br>
<p>
I hope you enjoyed navigating on this site as much as I enjoyed building it.
For more info about the Arch-IQ project, take a look at the <a href=""
class="attribMod__list-link">repo</a>. <br>
Also, you can find my other projects on <a href="" class="attribMod__list-link">github</a>.<br>
<br>
Again, thanks for visiting,<br>
Khadim Renahy-Mar
</p>
</div>
</div>
</div>
</aside>
<footer class="footer">
<div class="backgroundBlur"></div>
<div class="footer__lists">
<div class="footer__list">
<p class="footer__list-title">Products</p>
<ul class="list">
<li class="footer__list-item">Archetypes</li>
<li class="footer__list-item">Robots</li>
<li class="footer__list-item">Biotechs</li>
<li class="footer__list-item">Smarthomes</li>
<li class="footer__list-item">Aircrafts & Spacecrafts</li>
</ul>
</div>
<div class="footer__list">
<p class="footer__list-title">Services</p>
<ul class="list">
<li class="footer__list-item">For people</li>
<li class="footer__list-item">For companies</li>
<li class="footer__list-item">For cities</li>
</ul>
</div>
<div class="footer__list">
<p class="footer__list-title">Support</p>
<ul class="list">
<li class="footer__list-item">Community</li>
<li class="footer__list-item">Downloads</li>
<li class="footer__list-item">FAQ</li>
<li class="footer__list-item">GDPR</li>
</ul>
</div>
<div class="footer__list">
<p class="footer__list-title">Company</p>
<ul class="list">
<li class="footer__list-item">Our story</li>
<li class="footer__list-item">Newsletter</li>
<li class="footer__list-item">Student Programs</li>
<li class="footer__list-item">Careers</li>
</ul>
</div>
</div>
<ul class="footer__media">
<li class="footer__media-item"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
class="footer__media-item--svg">
<!--! Font Awesome Pro 6.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. -->
<path
d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" />
</svg></li>
<li class="footer__media-item"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"
class="footer__media-item--svg">
<!--! Font Awesome Pro 6.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. -->
<path
d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" />
</svg></li>
<li class="footer__media-item"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"
class="footer__media-item--svg">
<!--! Font Awesome Pro 6.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. -->
<path
d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" />
</svg></li>
<li class="footer__media-item"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"
class="footer__media-item--svg">
<!--! Font Awesome Pro 6.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. -->
<path
d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z" />
</svg></li>
</ul>
<p class="attribution">
Coded by <a href="https://github.com/KhadimRenahyMar" class="attribution__link">Khadim Renahy-Mar</a>.
</p>
</footer>
</body>
</html>