-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
739 lines (698 loc) · 42.3 KB
/
Copy pathabout.html
File metadata and controls
739 lines (698 loc) · 42.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>About Avarch</title>
<link rel="icon" href="img/icons/Avarch.gif" type="image/gif">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="ionicons/css/ionicons.min.css" rel="stylesheet">
<!-- main css -->
<link href="css/style.css" rel="stylesheet">
<!-- <link href="css/main.css" rel="stylesheet"> -->
<style>
.animate-fade-up {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.animate-fade-up.is-visible {
opacity: 1;
transform: translateY(0);
}
</style>
<!-- modernizr -->
<script src="js/modernizr.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="pre-container">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</div>
</div>
<!-- end Preloader -->
<div class="container-fluid">
<!-- box-header -->
<header class="box-header">
<div class="box-logo">
<a href="index.html"><img src="img/icons/Avarch.gif" width="80" alt="Logo"></a>
</div>
<!-- box-nav -->
<a class="box-primary-nav-trigger" href="#0">
<span class="box-menu-text">Menu</span><span class="box-menu-icon"></span>
</a>
</header>
<!-- end box-header -->
<!-- nav -->
<nav>
<ul class="box-primary-nav">
<li class="box-label">about us</li>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">about us</a> <i class="ion-ios-circle-filled color"></i></li>
<li><a href="associate-partner.html">Associates & Partners</a>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">contact us</a></li>
<li class="box-label">Follow me</li>
<li class="box-social"><a href="https://twitter.com/ether_world" target="_blank"><i
class="ion-social-twitter"></i></a></li>
<li class="box-social"><a href="https://www.youtube.com/channel/UCnceAY-vAQsO8TgGAj5SGFA" target="_blank"><i
class="ion-social-youtube"></i></a></li>
<li class="box-social"><a href="https://github.com/AvarchLLC" target="_blank"><i
class="ion-social-github"></i></a></li>
<li class="box-social"><a href="https://www.instagram.com/etherworld.co/" target="_blank"><i
class="ion-social-instagram-outline"></i></a></li>
<li class="box-social"><a href="https://www.facebook.com/etherworld2017" target="_blank"><i
class="ion-social-facebook"></i></a></li>
<li class="box-social"><a href="#0"><i class="ion-social-dribbble"></i></a></li>
<li class="box-social"><a href="https://www.linkedin.com/company/etherworld/" target="_blank"><i
class="ion-social-linkedin"></i></a></li>
</ul>
</nav>
<!-- end nav -->
</div>
<!-- Top Header Image -->
<div class="top-bar aboutusimg animate-fade-up">
</div>
<!-- end Top Header Image -->
<!-- Main container -->
<section class="container animate-fade-up delay-1" style="padding: 60px 15px 40px; display: flex; flex-direction: column; gap: 24px; text-align: left;">
<div style="margin-bottom: -10px;">
<span class="vision-label" style="font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;"><span class="vision-num" style="color: #FFB400;">01</span> <span class="vision-text" style="color: #111;">ABOUT US</span></span>
</div>
<h2 style="font-family: 'Poppins', sans-serif; font-size: clamp(32px, 5vw, 42px); font-weight: 700; color: #111; margin-bottom: 10px;">Blockchain Products & Services</h2>
<p class="vision-paragraph" style="font-weight: 500 !important; color: #111; font-size: 24px; max-width: none;">
Avarch is a software consultancy company providing blockchain products and services.
</p>
<p class="vision-paragraph" style="font-size: 20px; color: #444; max-width: none;">
From blockchain media publishing to blockchain explorer services. Avarch is fostering the next generation developers to learn, contribute and expand the horizon of the blockchain ecosystem.
</p>
<p class="vision-paragraph" style="font-size: 20px; color: #444; max-width: none;">
Our projects include <a href="https://etherworld.co/" style="color: #FFB400; font-weight: 600; text-decoration: none;">EtherWorld</a>, a website helping thousands of mainstream users to follow the latest changes of the blockchain and enables them to contribute to the growing ecosystem, and <a href="https://eipsinsight.com/" style="color: #FFB400; font-weight: 600; text-decoration: none;">EIPsInsight</a> an EIP focused data analytics website.
</p>
<p class="vision-paragraph" style="font-size: 20px; color: #444; max-width: none;">
Avarch is a leading software company providing services to the Ethereum Blockchain. We engage potential developers in learning the concept of blockchain development, providing the opportunity to contribute to novice projects. We publish <a href="https://etherworld.co/tag/enigma/" style="color: #FFB400; font-weight: 600; text-decoration: none;">technical blogs</a>, produce <a href="https://www.youtube.com/channel/UCnceAY-vAQsO8TgGAj5SGFA/playlists" style="color: #FFB400; font-weight: 600; text-decoration: none;">ELI5 videos</a> and share in-depth <a href="https://etherworld.co/tag/research/" style="color: #FFB400; font-weight: 600; text-decoration: none;">research reports</a> on blockchain protocols.
</p>
</section>
<!-- Premium Quote Section -->
<section class="vision-panel animate-fade-up delay-2" style="background-color: #FAFAFA;">
<div class="vision-card">
<div style="max-width: 900px; margin: 0 auto; text-align: center;">
<h3 style="font-size: clamp(28px, 4vw, 42px); font-family: 'Poppins', sans-serif; font-weight: 600; color: #111; line-height: 1.4; margin-bottom: 30px; text-transform: none;">
"Blockchain is a very deep subject. Keep building and maintain consistency in learning the process. Everyone can make a difference."
</h3>
<p style="font-family: 'Poppins', sans-serif; font-size: 18px; color: #666; font-weight: 500;">
— Pooja Ranjan
</p>
</div>
</div>
</section>
<!-- About The Founder using Premium Grid -->
<section class="vision-panel animate-fade-up delay-3">
<div class="vision-card" style="max-width: 1000px; margin: 0 auto; padding: 0 20px;">
<div class="vision-grid" style="grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;">
<div class="vision-left-col">
<div class="vision-header-col" style="margin-bottom: 20px;">
<div class="vision-label-mask">
<span class="vision-label"><span class="vision-num">02</span> <span class="vision-text">LEADERSHIP</span></span>
</div>
<div class="vision-heading-mask">
<h2 class="vision-heading" style="font-size: 36px; margin-top: 10px;">Our Founder</h2>
</div>
</div>
<div class="vision-content-col">
<p class="vision-paragraph" style="font-size: 17px; color: #444; margin-bottom: 20px;">
Pooja Ranjan is Herder in chief of Ethereum Cat Herders and Founder of Avarch LLC. She became part of the blockchain community in 2016 by learning about the Ethereum blockchain. Founded Avarch LLC in 2017 with <a href="https://www.etherworld.co/" style="color: #FFB400; font-weight: 600; text-decoration: none;">EtherWorld</a> as her first project to create awareness about blockchain technology. Publishing technical content, project updates and latest news, EtherWorld is one of the leading blockchain publishing websites...
</p>
<a href="aboutfounder.html" style="display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 600; color: #111; text-decoration: underline; text-underline-offset: 4px;">Read More</a>
</div>
</div>
<div class="vision-graphic-col" style="display: flex; justify-content: center; align-items: center;">
<img src="./img/about_pooja_ranjan.png" alt="Founder image" style="width: 100%; max-width: 320px; border-radius: 50%; object-fit: cover; aspect-ratio: 1/1; box-shadow: 0 20px 40px rgba(0,0,0,0.08);">
</div>
</div>
</div>
</section>
<!-- About team -->
<!-- <h3>Meet our Team</h3>
<section style="margin: 100px 0px;">
<div class="row">
Team member
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="./img/about_pooja_ranjan.png" alt="card image"></p>
<h4 class="card-title font-brew">Pooja Ranjan</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title"></h4>
<p class="card-text">
Pooja Ranjan is Herder-in-chief at Ethereum Cat Herders supporting the Ethereum
blockchain with project management & process improvement. She is the Founder of a
blockchain publishing website <a href="EtherWorld.co" target="blank"
class="dashed-underline">EtherWorld</a> and also co-founded Eth2 blockchain
explorer
<a href="blockaction.io" target="blank" class="dashed-underline">
BlockAction.
</p>
<ul class="list-inline mt-24">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://twitter.com/poojaranjan19">
<i class="fa fa-twitter fs-34"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://github.com/poojaranjan">
<i class="fa fa-github fs-34"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
Team member
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="../img/general/about_hudson.png" alt="card image"></p>
<h4 class="card-title font-brew">Samarth Agarwal</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title"></h4>
<p class="card-text">Pooja Ranjan is Herder-in-chief at Ethereum Cat Herders supporting
the Ethereum
blockchain with project management & process improvement. She is the Founder of a
blockchain publishing website <a href="EtherWorld.co" target="blank"
class="dashed-underline">EtherWorld</a> and also co-founded Eth2 blockchain
explorer</p>
<ul class="list-inline mt-24">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://twitter.com/hudsonjameson">
<i class="fa fa-twitter fs-34"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="">
<i class="fa fa-github fs-34"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
Team member
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="../img/general/about_tim.png" alt="card image"></p>
<h4 class="card-title font-brew">Tim Beiko</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title"></h4>
<p class="card-text" style="opacity: 0;">Lorem ipsum dolor sit amet, consectetur
adipiscing elit, </p>
<ul class="list-inline mt-24">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://twitter.com/TimBeiko">
<i class="fa fa-twitter fs-34"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="#">
<i class="fa fa-github fs-34"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
Team member
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="../img/general/about_alita_moore.png" alt="card image">
</p>
<h4 class="card-title font-brew">Alita Moore</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title"></h4>
<p class="card-text">Software engineer and Peep and EIP Interviewer</p>
<ul class="list-inline mt-24">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="#">
<i class="fa fa-twitter fs-34"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://github.com/alita-moore">
<i class="fa fa-github fs-34"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
Team member
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="../img/general/about_no_pic.png" alt="card image"></p>
<h4 class="card-title font-brew">William Schwab</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title"></h4>
<p class="card-text" style="opacity: 0;">Lorem ipsum dolor sit amet, consectetur
adipiscing elit, </p>
<ul class="list-inline mt-24">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://twitter.com/William94029369">
<i class="fa fa-twitter fs-34"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://github.com/wschwab">
<i class="fa fa-github fs-34"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
Team member
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="../img/general/about_brent_allsop.png"
alt="card image"></p>
<h4 class="card-title font-brew">Brent Allsop</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title"></h4>
<p class="card-text">Co-Founder of <a href="https://www.canonizer.com" target="blank"
class="dashed-underline">Canonizer</a>. Software Engineer. Building and tracking
consensus facilitator.</p>
<ul class="list-inline mt-24">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://twitter.com/Brent_Allsop">
<i class="fa fa-twitter fs-34"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://github.com/BrentAllsop">
<i class="fa fa-github fs-34"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
Team member
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="../img/general/about_ed.jpeg" alt="card image"></p>
<h4 class="card-title font-brew">Edson Allyon</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title"></h4>
<p class="card-text">Product Manager @dHedgeDAO. Software Engineer, Ethereum ecosystem
contributor</p>
<ul class="list-inline mt-24">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://twitter.com/relativeread">
<i class="fa fa-twitter fs-34"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://github.com/edsonayllon">
<i class="fa fa-github fs-34"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
Team member
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="../img/general/about_jim_bennett.png" alt="card image">
</p>
<h4 class="card-title font-brew">Jim Bennett</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title"></h4>
<p class="card-text">Co-Founder of <a href="https://www.canonizer.com" target="blank"
class="dashed-underline">Canonizer</a>. MBA. Building and tracking consensus
facilitator.</p>
<ul class="list-inline mt-24">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://twitter.com/JimBforMayor">
<i class="fa fa-twitter fs-34"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://github.com/CanonizerJim">
<i class="fa fa-github fs-34"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
Team member
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="../img/general/about_charlie.jpg" alt="card image"></p>
<h4 class="card-title font-brew">Charles St. Louis </h4>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title"></h4>
<p class="card-text">COO of <a href="http://element.fi/" target="blank"
class="dashed-underline">Element Finance</a>. MBA. Building and tracking
consensus facilitator.</p>
<ul class="list-inline mt-24">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://twitter.com/CharlieStLouis">
<i class="fa fa-twitter fs-34"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://github.com/CPSTL">
<i class="fa fa-github fs-34"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
Team member
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="../img/general/about_lane.jpg" alt="card image"></p>
<h4 class="card-title font-brew">Lane Rettig</h4>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title"></h4>
<p class="card-text" style="opacity: 0;">Lorem ipsum dolor sit amet, consectetur
adipiscing elit, </p>
<ul class="list-inline mt-24">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://twitter.com/lrettig">
<i class="fa fa-twitter fs-34"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank" href="">
<i class="fa fa-github fs-34"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
Team Member
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="image-flip" ontouchstart="this.classList.toggle('hover');">
<div class="mainflip">
<div class="frontside">
<div class="card">
<div class="card-body text-center">
<p><img class=" img-fluid" src="../img/general/about_shane_lightowler.png"
alt="card image"></p>
<h4 class="card-title font-brew">Shane Lightowler </h4>
</div>
</div>
</div>
<div class="backside">
<div class="card">
<div class="card-body text-center mt-4">
<h4 class="card-title"></h4>
<p class="card-text" style="opacity: 0;">Lorem ipsum dolor sit amet, consectetur
adipiscing elit, </p>
<p class="card-text">Ethereum enthusiast and Eulerbeats OG</p>
<ul class="list-inline mt-24">
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://twitter.com/Coldsnap">
<i class="fa fa-twitter fs-34"></i>
</a>
</li>
<li class="list-inline-item">
<a class="social-icon text-xs-center" target="_blank"
href="https://github.com/shanelightowler">
<i class="fa fa-github fs-34"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- Social Links -->
<section class="vision-panel" style="padding-top: 0; border-top: none;">
<div class="vision-card" style="display: flex; justify-content: center;">
<ul class="social-ul" style="display: flex; gap: 20px; list-style: none; padding: 0; margin: 0;">
<li class="box-social"><a href="https://twitter.com/ether_world" target="_blank" style="color: #111; font-size: 24px;"><i class="ion-social-twitter"></i></a></li>
<li class="box-social"><a href="https://www.youtube.com/channel/UCnceAY-vAQsO8TgGAj5SGFA" target="_blank" style="color: #111; font-size: 24px;"><i class="ion-social-youtube"></i></a></li>
<li class="box-social"><a href="https://github.com/AvarchLLC" target="_blank" style="color: #111; font-size: 24px;"><i class="ion-social-github"></i></a></li>
<li class="box-social"><a href="https://www.instagram.com/etherworld.co/" target="_blank" style="color: #111; font-size: 24px;"><i class="ion-social-instagram-outline"></i></a></li>
<li class="box-social"><a href="https://www.facebook.com/etherworld2017" target="_blank" style="color: #111; font-size: 24px;"><i class="ion-social-facebook"></i></a></li>
<li class="box-social"><a href="#0" style="color: #111; font-size: 24px;"><i class="ion-social-dribbble"></i></a></li>
<li class="box-social"><a href="https://www.linkedin.com/company/etherworld/" target="_blank" style="color: #111; font-size: 24px;"><i class="ion-social-linkedin"></i></a></li>
</ul>
</div>
</section>
<!-- end Social Links -->
<!-- 07 COMPACT PREMIUM FOOTER (Apple, Vercel, Framer & Linear Inspired) -->
<footer class="avarch-compact-footer">
<div class="compact-footer-container">
<div class="compact-footer-top">
<!-- Left Column: Organization logo -->
<div class="compact-footer-left">
<a href="index.html" class="compact-footer-logo">
<span class="compact-footer-logo-text">Avarch</span>
</a>
</div>
<!-- Right Column: Navigation + Social Icons -->
<div class="compact-footer-right">
<nav class="compact-footer-nav" aria-label="Footer Navigation">
<a href="index.html" class="compact-nav-link">Home</a>
<a href="about.html" class="compact-nav-link">About</a>
<a href="projects.html" class="compact-nav-link">Projects</a>
<a href="associate-partner.html" class="compact-nav-link">Associates & Partners</a>
<a href="contact.html" class="compact-nav-link">Contact</a>
</nav>
<div class="compact-footer-social">
<a href="https://github.com/AvarchLLC" target="_blank" aria-label="GitHub" class="compact-social-btn">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path></svg>
</a>
<a href="https://www.youtube.com/channel/UCnceAY-vAQsO8TgGAj5SGFA" target="_blank" aria-label="YouTube" class="compact-social-btn">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"></path><polygon points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"></polygon></svg>
</a>
<a href="https://www.linkedin.com/company/etherworld/" target="_blank" aria-label="LinkedIn" class="compact-social-btn">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path><rect x="2" y="9" width="4" height="12"></rect><circle cx="4" cy="4" r="2"></circle></svg>
</a>
<a href="https://www.instagram.com/etherworld.co/" target="_blank" aria-label="Instagram" class="compact-social-btn">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line></svg>
</a>
<a href="https://twitter.com/ether_world" target="_blank" aria-label="Twitter / X" class="compact-social-btn">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"></path></svg>
</a>
</div>
</div>
</div>
<!-- Thin Divider -->
<div class="compact-footer-divider"></div>
<!-- Bottom Row: Left © 2026 Organization Name, Right Back to Top ↑ -->
<div class="compact-footer-bottom">
<div class="compact-footer-copy">© 2026 Avarch</div>
<a href="#0" class="compact-footer-backtop" onclick="window.scrollTo({top: 0, behavior: 'smooth'}); return false;">Back to Top ↑</a>
</div>
</div>
</footer>
<!-- back to top -->
<a href="#0" class="cd-top"><i class="ion-android-arrow-up"></i></a>
<!-- end back to top -->
<!-- jQuery -->
<script src="js/jquery-2.1.1.js"></script>
<!-- plugins -->
<script src="js/bootstrap.min.js"></script>
<script src="js/vendors.js"></script>
<script src="js/main.js"></script>
<script src="js/menu.js"></script>
<script src="js/animated-headline.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<!-- custom script -->
<script src="js/custom.js"></script>
<!-- google analytics -->
<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', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-76796224-1', 'auto');
ga('send', 'pageview');
</script>
<!-- scroll animation script -->
<script>
document.addEventListener("DOMContentLoaded", function() {
var observer = new IntersectionObserver(function(entries) {
entries.forEach(function(entry) {
if (entry.isIntersecting) {
// Small delay to ensure it waits for preloader on initial elements if needed
setTimeout(function() {
entry.target.classList.add('is-visible');
}, 100);
observer.unobserve(entry.target);
}
});
}, { threshold: 0.15 });
document.querySelectorAll('.animate-fade-up').forEach(function(el) {
observer.observe(el);
});
});
</script>
</body>
</html>