-
Notifications
You must be signed in to change notification settings - Fork 0
/
en.html
executable file
·738 lines (702 loc) · 30.3 KB
/
en.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-26619483-11"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-26619483-11');
</script>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>ChainImpact: Blockchain Solutions for Real World Problems</title>
<link rel="icon" href="assets/img/favicon.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css" >
<!-- Icon -->
<link rel="stylesheet" type="text/css" href="assets/fonts/line-icons.css">
<!-- Slicknav -->
<link rel="stylesheet" type="text/css" href="assets/css/slicknav.css">
<!-- Owl carousel -->
<link rel="stylesheet" type="text/css" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/owl.theme.css">
<!-- Slick Slider -->
<link rel="stylesheet" type="text/css" href="assets/css/slick.css" >
<link rel="stylesheet" type="text/css" href="assets/css/slick-theme.css" >
<!-- Animate -->
<link rel="stylesheet" type="text/css" href="assets/css/animate.css">
<!-- Main Style -->
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<!-- Responsive Style -->
<link rel="stylesheet" type="text/css" href="assets/css/responsive.css">
<style media="screen">
/* Set the size of the div element that contains the map */
#map {
height: 500px; /* The height is 400 pixels */
width: 100%; /* The width is the width of the web page */
}
</style>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAwhZzuyEgx0QiF4Jj8Bavq0zLxrQDFcdE"></script>
<script type="text/javascript">
// When the window has finished loading create our google map below
google.maps.event.addDomListener(window, 'load', init);
function init() {
// Basic options for a simple Google Map
// For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions
// var chainimpact = {lat: 43.59421589999999, lng: 1.4477524999999787};
var mapOptions = {
// How zoomed in you want the map to start at (always required)
zoom: 11,
// The latitude and longitude to center the map (always required)
center: new google.maps.LatLng(43.5942, 1.4477), // New York
// How you would like to style the map.
// This is where you would paste any style found on Snazzy Maps.
styles: [
{
"stylers": [
{
"hue": "#ff1a00"
},
{
"invert_lightness": true
},
{
"saturation": -100
},
{
"lightness": 33
},
{
"gamma": 0.5
}
]
},
{
"featureType": "water",
"elementType": "geometry",
"stylers": [
{
"color": "#273f87"
}
]
}
]
};
// Get the HTML DOM element that will contain your map
// We are using a div with id="map" seen below in the <body>
var mapElement = document.getElementById('map');
// Create the Google Map using our element and options defined above
var map = new google.maps.Map(mapElement, mapOptions);
// Let's also add a marker while we're at it
var marker = new google.maps.Marker({
position: new google.maps.LatLng(43.5942, 1.4477),
map: map,
title: 'ChainImpact',
icon: 'https://chainimpact.io/assets/img/marker.png'
});
}
</script>
<!-- Start of Async Drift Code -->
<script>
"use strict";
!function() {
var t = window.driftt = window.drift = window.driftt || [];
if (!t.init) {
if (t.invoked) return void (window.console && console.error && console.error("Drift snippet included twice."));
t.invoked = !0, t.methods = [ "identify", "config", "track", "reset", "debug", "show", "ping", "page", "hide", "off", "on" ],
t.factory = function(e) {
return function() {
var n = Array.prototype.slice.call(arguments);
return n.unshift(e), t.push(n), t;
};
}, t.methods.forEach(function(e) {
t[e] = t.factory(e);
}), t.load = function(t) {
var e = 3e5, n = Math.ceil(new Date() / e) * e, o = document.createElement("script");
o.type = "text/javascript", o.async = !0, o.crossorigin = "anonymous", o.src = "https://js.driftt.com/include/" + n + "/" + t + ".js";
var i = document.getElementsByTagName("script")[0];
i.parentNode.insertBefore(o, i);
};
}
}();
drift.SNIPPET_VERSION = '0.3.1';
drift.load('b259e5dg87f9');
</script>
<!-- End of Async Drift Code -->
</head>
<body>
<!-- Header Area wrapper Starts -->
<header id="header-wrap">
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg fixed-top scrolling-navbar indigo">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#main-navbar" aria-controls="main-navbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
<span class="icon-menu"></span>
<span class="icon-menu"></span>
<span class="icon-menu"></span>
</button>
<a href="index.html" class="navbar-brand"><img style="width: 150px;" src="assets/img/logo-cw-02.png" alt=""></a>
</div>
<div class="collapse navbar-collapse" id="main-navbar">
<ul class="navbar-nav mr-auto w-100 justify-content-left clearfix">
<li class="nav-item active">
<a class="nav-link" href="#hero-area">
Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services">
Services
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#team">
Team
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">
Work
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">
Contact
</a>
</li>
</ul>
</div>
</div>
<!-- Mobile Menu Start -->
<ul class="mobile-menu navbar-nav">
<li>
<a class="page-scroll" href="#hero-area">
Home
</a>
</li>
<li>
<a class="page-scroll" href="#services">
Services
</a>
</li>
<li>
<a class="page-scroll" href="#team">
Team
</a>
</li>
<li>
<a class="page-scroll" href="#projects">
Work
</a>
</li>
<li>
<a class="page-scroll" href="#contact">
Contact
</a>
</li>
</ul>
<!-- Mobile Menu End -->
</nav>
<!-- Navbar End -->
<!-- Hero Area Start -->
<div id="hero-area" class="hero-area-bg">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="contents text-center">
<h2 class="head-title wow fadeInUp">
<div class="logo">
<img src="assets/img/logo-w.png" alt="">
</div>
Blockchain Solutions <br> for Real World Problems
</h2>
<div class="header-button wow fadeInUp" data-wow-delay="0.3s">
<a href="#contact" class="btn btn-common">Contact Us Now</a>
</div>
</div>
<!-- <div class="img-thumb text-center wow fadeInUp" data-wow-delay="0.6s">
<img class="img-fluid" src="/home/felipe/code/chainimpact/chainimpact/images/pic02.jpg" alt="">
</div> -->
</div>
</div>
</div>
</div>
<!-- Hero Area End -->
</header>
<!-- Header Area wrapper End -->
<!-- Services Section Start -->
<section id="services" class="section-padding">
<div class="container">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Our Services</h2>
</div>
<div class="row">
<!-- Services item -->
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="0.3s">
<div class="icon">
<i class="lni-cog"></i>
</div>
<div class="services-content">
<h3><a href="#">Blockchain Development</a></h3>
<p>We develop proof of concepts for early stage projects and we plan, execute and code smart contracts or full long-term projects.</p>
</div>
</div>
</div>
<!-- Services item -->
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="0.9s">
<div class="icon">
<i class="lni-briefcase"></i>
</div>
<div class="services-content">
<h3><a href="#">R&D and consulting</a></h3>
<p>We offer assistance in researching if blockchain is interesting for your specific use-case.</p>
</div>
</div>
</div>
<!-- Services item -->
<div class="col-md-6 col-lg-4 col-xs-12">
<div class="services-item wow fadeInRight" data-wow-delay="1.2s">
<div class="icon">
<i class="lni-pencil-alt"></i>
</div>
<div class="services-content">
<h3><a href="#">Training and Learning</a></h3>
<p>What's Blockchain? Bitcoin? Ethereum? Smart Contract? How and why to integrate blckchain to your core business? What are the advantages or disadvantages?</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section End -->
<!-- Feature Section Start -->
<div id="feature">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="text-wrapper">
<div>
<h2 class="title-hl wow fadeInLeft" data-wow-delay="0.3s">Our Technical Expertises</h2>
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="features-box wow fadeInLeft" data-wow-delay="0.3s">
<div class="features-icon">
<!-- <img src="assets/img/ethereum-logo-o-xs.png" alt=""> -->
<span class="">Ξ</span>
</div>
<div class="features-content">
<h4>
Ethereum
</h4>
<p>
open software platform based on blockchain technology for decentralized applications. Solidty, Vyper, Truffle
</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="features-box wow fadeInLeft" data-wow-delay="0.6s">
<div class="features-icon">
<img src="assets/img/hyper-xs.png" alt="">
</div>
<div class="features-content">
<h4>
Hyperledger
</h4>
<p>
An open source collaborative effort created to advance cross-industry blockchain technologies. Very suitable for products in finance, banking, Internet of Things, supply chains, manufacturing, and Technology.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="features-box wow fadeInLeft" data-wow-delay="0.9s">
<div class="features-icon">
<img src="assets/img/web3js-xs.png" alt="">
</div>
<div class="features-content">
<h4>
web3.js
</h4>
<p>
web3.js is a collection of libraries which allow you to interact with a local or remote ethereum node, using a HTTP or IPC connection. This is the bridge between traditional web protocols and blockchain.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="features-box wow fadeInLeft" data-wow-delay="1.2s">
<div class="features-icon">
<span class="">฿</span>
</div>
<div class="features-content">
<h4>
Cryptocurrency as Payment
</h4>
<p>
Bitcoin, Litecoin, Request, OMG, Nano and others can be used as very efficient payment methods for your business.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 padding-none">
<div class="feature-thumb wow fadeInRight" data-wow-delay="0.3s">
<img src="assets/img/bchain.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- Feature Section End -->
<!-- Team Section Start -->
<section id="team" class="section-padding text-center">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Our Team</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6 col-md-6 col-lg-4">
<!-- Team Item Starts -->
<div class="team-item text-center">
<div class="team-img">
<img class="img-fluid" src="assets/img/va.jpg" alt="">
<div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/vicente-almonacid/"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
<li><a href="https://twitter.com/v_almonacid"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="info-text">
<h3><a href="#">Vicente Almonacid</a></h3>
<p>PhD / Network and Communications Engineer</p>
<p>
<a href="https://drive.google.com/open?id=1WMmOKa5HLNmpapnqhWmGf8HB7gSocXBG">Cross-layer Design Applied to Small Satellites for Data Collection</a>
</p>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-sm-6 col-md-6 col-lg-4">
<!-- Team Item Starts -->
<div class="team-item text-center">
<div class="team-img">
<img class="img-fluid" src="assets/img/gf.jpg" alt="">
<div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/guillaume-figielski/"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="info-text">
<h3><a href="#">Guillaume Figelski</a></h3>
<p>CS Engineer <br>
Java / Solidity / V.R.</p>
<p>
<a href="http://girosense.com">girosense.com</a>
</p>
</div>
</div>
<!-- Team Item Ends -->
</div>
<div class="col-sm-6 col-md-6 col-lg-4">
<!-- Team Item Starts -->
<div class="team-item text-center">
<div class="team-img">
<img class="img-fluid" src="assets/img/ff.jpg" alt="">
<div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="https://www.linkedin.com/in/faraggi/"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
<li><a href="https://twitter.com/felipefaraggi"><i class="lni-twitter-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="info-text">
<h3><a href="#">Felipe Faraggi</a></h3>
<p>Entrepreneur / Python Developer / Solidity</p>
<p>
Solidity Documentation Translator
<a href="https://etheresante.com">etheresante.com</a> |
<a href="https://willty.com">willty.com</a> |
<a href="https://yagan.io">yagan.io</a>
</p>
</div>
</div>
<!-- Team Item Ends -->
</div>
</div>
</div>
</section>
<!-- Team Section End -->
<!-- Owl Slider Section Start -->
<!-- <section id="pricing" class="sloder-img section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Some of our previous work</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="slider-center slider wow fadeIn" data-wow-delay="0.5s">
<div>
<img class="img-fluid" src="assets/img/ss01.png" alt="">
</div>
<div>
<img class="img-fluid" src="assets/img/ss03.png" alt="">
</div>
<div>
<img class="img-fluid" src="assets/img/ss04.png" alt="">
</div>
<div>
<img class="img-fluid" src="assets/img/ss01b.png" alt="">
</div>
<div>
<img class="img-fluid" src="assets/img/ss02.png" alt="">
</div>
<div>
<img class="img-fluid" src="assets/img/ss05.jpg" alt="">
</div>
<div>
<img class="img-fluid" src="assets/img/ss06.jpg" alt="">
</div>
<div>
<img class="img-fluid" src="assets/img/ss07.jpg" alt="">
</div>
<div>
<img class="img-fluid" src="assets/img/ss08.jpg" alt="">
</div>
<div>
<img class="img-fluid" src="assets/img/ss09.jpg" alt="">
</div>
<div>
<img class="img-fluid" src="assets/img/ss10.jpg" alt="">
</div>
<div>
<img class="img-fluid" src="assets/img/ss11.jpg" alt="">
</div>
<div>
<img class="img-fluid" src="assets/img/ss12.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- Owl Slider Section End -->
<!-- Projets section Start -->
<section id="projects" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Some of our previous work</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="table wow fadeInLeft" data-wow-delay="0.5s">
<!-- <div class="title">
<h3>Medichain</h3>
</div> -->
<img src="assets/img/medichain-logo-xs.png" alt="">
<p class="price-value">Medical Blockchain <br> R&D | UI+UX Design</p>
<a href="https://medichain.herokuapp.com">medichain.herokuapp.com</a>
<p>Decetralized medical patient folder </p>
<br>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 active">
<div class="table wow fadeInUp" id="active-tb" data-wow-delay="1.2s">
<!-- <div class="title">
<h3>Legacy</h3>
</div> -->
<img src="assets/img/legacy-logo-xs.png" alt="">
<p class="price-value">Legacy Network</p>
<a href="https://legacy.network">legacy.network</a>
<p>Project, R&D, Whitepaper, Seed ICO, Advisors, code</p>
<p>Building a blockchain-based smart will solution for the digital era</p>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12">
<div class="table wow fadeInRight" data-wow-delay="1.2s">
<div class="title">
<h3>Others</h3>
</div>
<div class="pricing-header">
<p class="price-value">Other Projects</p>
</div>
<p>Many other Consulting and counsiling project and meetings with teams from different backgrounds and domains. </p>
</div>
</div>
</div>
</div>
</section>
<!-- projects Table Section End -->
<!-- Contact Section Start -->
<section id="contact" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-header text-center">
<h2 class="section-title wow fadeInDown" data-wow-delay="0.3s">Contact Us</h2>
</div>
</div>
</div>
<div class="row contact-form-area wow fadeInUp" data-wow-delay="0.4s">
<div class="col-md-6 col-lg-6 col-sm-12">
<div class="contact-block">
<form id="" method="POST" action="https://formspree.io/contact@chainimpact.io">
<div class="row">
<div class="col-md-6">
<input id="name" class="form-control" name="name" placeholder="Your Name">
</div>
<div class="col-md-6">
<input id="email" class="form-control" type="email" name="email" placeholder="Your email">
</div>
<div class="col-md-12">
<div class="form-group">
<textarea class="form-control" id="message" name="message" rows="5" placeholder="Your message"></textarea>
</div>
<div class="submit-button">
<button class="btn btn-common" id="form-submit" type="submit">Send</button>
</div>
</div>
</div>
</form>
</div>
</div>
<div class="col-md-6 col-lg-6 col-sm-12">
<div class="contact-right-area wow fadeIn">
<div class="contact-right">
<div class="single-contact">
<div class="contact-icon">
<i class="lni-map-marker"></i>
</div>
<p>Toulouse, France</p>
</div>
<div class="single-contact">
<div class="contact-icon">
<i class="lni-envelope"></i>
</div>
<p><a href="mailto:contact@chainimpact.io">contact@chainimpact.io</a></p>
</div>
<!-- <div class="single-contact">
<div class="contact-icon">
<i class="lni-phone-handset"></i>
</div>
<p><a href="#">+33 </a></p>
</div> -->
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section End -->
<!-- Map Section Start -->
<div class="map">
<div class="container-fulid">
<div id="map"></div>
</div>
</div>
<!-- Map Section End -->
<!-- Footer Section Start -->
<footer id="footer" class="footer-area section-padding">
<div class="container">
<div class="container">
<div class="row">
<div class="col-12 wow fadeInUp" data-wow-delay="0.2s">
<div class="footer-logo mb-3">
<img style="width: 150px;" src="assets/img/logo-cw-02.png" alt="">
</div>
</div>
<!-- <div class="col-lg-3 col-md-6 col-sm-12 col-xs-12 wow fadeInUp" data-wow-delay="0.4s">
<h3 class="footer-titel">Company</h3>
<ul>
<li><a href="#">Press Releases</a></li>
<li><a href="#">Mission</a></li>
<li><a href="#">Strategy</a></li>
</ul>
</div> -->
<!-- <div class="col-lg-3 col-md-6 col-sm-12 col-xs-12 wow fadeInUp" data-wow-delay="0.6s">
<h3 class="footer-titel">About</h3>
<ul>
<li><a href="#">Career</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Clients</a></li>
</ul>
</div> -->
<div style="text-align: center; margin-left: auto; margin-right: auto;" class="col-12 wow fadeInUp" data-wow-delay="0.8s">
<div class="social-icon">
<a class="twitter" href="https://twitter.com/chainimpactio"><i class="lni-twitter-filled"></i></a>
<a class="linkedin" href="https://www.linkedin.com/company/chainimpact/"><i class="lni-linkedin-filled"></i></a>
<a class="facebook" href="https://facebook.com/chainimpactio"><i class="lni-facebook-filled"></i></a>
<span style="" class="lang">
Languages: <a href="en.html">EN</a>, <a href="fr.html">FR</a>
</span>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- Footer Section End -->
<section id="copyright">
<div class="container">
<div class="row">
<div class="col-md-12">
<p>Copyright © ChainImpact</p>
</div>
</div>
</div>
</section>
<!-- Preloader -->
<div id="preloader">
<div class="loader" id="loader-1"></div>
</div>
<!-- End Preloader -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="assets/js/jquery-min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/owl.carousel.min.js"></script>
<script src="assets/js/slick.min.js"></script>
<script src="assets/js/wow.js"></script>
<script src="assets/js/jquery.nav.js"></script>
<script src="assets/js/scrolling-nav.js"></script>
<script src="assets/js/jquery.easing.min.js"></script>
<script src="assets/js/jquery.slicknav.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/form-validator.min.js"></script>
<script src="assets/js/contact-form-script.min.js"></script>
<script src="assets/js/map.js"></script>
<!-- <script type="text/javascript" src="//maps.googleapis.com/maps/api/js?key=AIzaSyAwhZzuyEgx0QiF4Jj8Bavq0zLxrQDFcdE"></script> -->
</body>
</html>