-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflash-site.html
More file actions
511 lines (487 loc) · 26.5 KB
/
flash-site.html
File metadata and controls
511 lines (487 loc) · 26.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Connecting the Caribbean." />
<!-- Add two link elements for favicon -->
<link rel="shortcut icon" type="image/png" href="assets/img/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="assets/img/favicon-16x16.png" sizes="16x16" />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="css/main.css" />
<!-- Script (not deferred to set the html background colour and remove "dark mode flicker" issue) -->
<script>
// DO NOT ADD OTHER SCRIPTS HERE
if (localStorage.getItem("theme")) {
let t = localStorage.getItem("theme");
const r = document.querySelector(':root');
t === "light" ? r.style.setProperty("--bg-body", "#fff") : r.style.setProperty("--bg-body", "#000");
}
</script>
<title>Flash | Bitcoin</title>
</head>
<body>
<header>
<div class="container">
<div class="logo-container">
<a href="#pg-download" class="no-style">
<img src="assets/img/logo-black.png" alt="Flash" class="light" />
<img src="assets/img/logo-white.png" alt="Flash" class="dark" />
</a>
</div>
<!-- Navigation -->
<nav>
<svg id="open-nav" class="nav-icon mobile-only" aria-label="close menu" width="41" height="15"
viewBox="0 0 41 15" xmlns="http://www.w3.org/2000/svg">
<line x1="2" y1="2" x2="39" y2="2" stroke="#161313" stroke-width="4" stroke-linecap="round" />
<line x1="15" y1="13" x2="39" y2="13" stroke="#161313" stroke-width="4" stroke-linecap="round" />
</svg>
<ul class="main-nav" id="main-nav" data-mob-state="closed">
<li class="mobile-only">
<svg id="close-nav" class="nav-icon" aria-label="close menu" width="26" height="26" viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg">
<path d="M23.2129 2L1.99969 23.2132" stroke="black" stroke-width="4" stroke-linecap="round" />
<path d="M2.21289 2L23.4261 23.2132" stroke="black" stroke-width="4" stroke-linecap="round" />
</svg>
</li>
<li class="darkmode-switch mobile-only">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true">
<use href="#lightbulb" class="lightbulb"></use>
</svg>
</li>
<li><a href="#pg-download" class="nav-link mobile-only active">Home</a></li>
<li><a href="#pg-about" class="nav-link">About</a></li>
<li><a href="/blog" class="nav-link">Blog</a></li>
<li><a href="#pg-contact" class="nav-link">Contact</a></li>
<li><a href="https://docs.getflash.io" target="_blank" rel="noopener noreferrer" class="nav-link">Docs</a>
<li><a href="#pg-faq" class="nav-link">FAQ</a></li>
<li><a href="mission.html" class="nav-link">Mission</a></li>
<li><a href="/rewards/index.html" class="nav-link">Rewards</a></li>
<li><a href="team.html" class="nav-link">Team</a></li>
</li>
</ul>
</nav>
<!-- End of Navigation -->
<div id="bitcoin-price" class="btc-widget">
<h3>Bitcoin Price:</h3>
<p>1 BTC = $ <span id="btc-value"></span> USD</p>
</div>
<div class="darkmode-switch desktop-only">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true">
<use href="#lightbulb" class="lightbulb"></use>
</svg>
<p class="desktop-only">Dark Mode <span id="darkmode-text">On</span></p>
</div>
</div>
</header>
<main>
<!-- Page: Download / Hero -->
<section id="pg-download" class="pg-download page">
<!-- Canvas drawn to via lightning.js -->
<canvas id="lightning-storm"></canvas>
<!-- City Background -->
<img class="banner-bg wide-bg" src="assets/img/kingston.svg" alt="">
<img class="banner-bg small-bg" src="assets/img/kingston-small.svg" alt="">
<!-- Content -->
<div class="container col-2-even">
<div class="banner-left">
<h1 class="banner-txt">Connecting the <span class="banner-highlight">Caribbean</span></h1>
<p class="slogan">Borderless Bitcoin at lightning speed</p>
<div class="downloads-container">
<a href="https://play.google.com/store/apps/details?id=com.lnflash" target="_blank" id="googleplay-link"
class="no-style">
<img src="assets/img/google-play-badge.png" alt="Get it on Google Play" />
</a>
<a href="https://apps.apple.com/jm/app/flash-send-spend-and-save/id6451129095" target="_blank"
id="appstore-link" class="no-style">
<img src="assets/img/ios-badge.png" alt="Download on the App Store" />
</a>
</div>
</div>
<div class="banner-right" id="videoContainer">
<video autoplay playsinline muted id="bannerVideo" class="banner-video">
<!-- Fill in sources via JS to avoid Firefox Android selecting .mov source over .webm -->
</video>
</div>
</div>
</section>
<!-- End of Page: Download / Hero -->
<!-- Page: About -->
<section id="pg-about" class="pg-about page">
<div class="about-banner divider">
<div class="container col-2-even">
<div class="about-banner-left">
<h2>Get Bitcoin Easily</h2>
<p>Get Bitcoin directly in the app, or at our flashpoint locations.</p>
<h2 class="mar-top-50">Be Your own Bank</h2>
<p>Made with convenience and ease of use in mind, Flash gives you the power of a bank in the palm of
your hand. *</p>
<h2 class="mar-top-50">No Signup Needed</h2>
<p>No ID, no Mobile Number, no Email. Just <a href="#pg-download">download Flash</a> and you are ready to
receive Flash! **</p>
<p class="about-note mar-top-50">* Not an actual bank account.</p>
<p class="about-note">** No ID, phone or email required to send and receive up to the trial account limit.
In order to secure and restore your account, it is strongly recommended that you provide a phone number or
email address. Additional information may be required for new personal accounts.</p>
</div>
<div class="about-banner-right">
<div id="flash-globe" class="flash-globe">
<!-- Inserted via JS -->
</div>
</div>
</div>
</div>
<div class="about-modes container" id="about-modes">
<h3 class="mar-top-60 mar-btm-5">Flash is for Everyone</h3>
<p>Buying, Selling, Building, Creating or Connecting - Flash can electrify whatever it is that you do in life.
</p>
<!-- Cards -->
<div class="cards">
<div class="card app active" tabindex="0">
<h3>Flash App</h3>
<p>Buy, sell, send & receive Bitcoin instantly</p>
<img src="assets/img/Crypto_Market.png" alt="" loading="lazy" />
</div>
<div class="card app" tabindex="0">
<h3>Flash Card</h3>
<p>Earn & redeem rewards with tap-to-pay cards</p>
<img src="assets/img/wallet.png" alt="" loading="lazy" />
</div>
<div class="card app" tabindex="0">
<h3>Flash Point</h3>
<p>A 21st century POS and eCommerce solution for the Caribbean</p>
<img src="assets/img/register.png" alt="" loading="lazy" />
</div>
</div>
<!-- End of Cards -->
<div class="card-msg-container">
<div class="card-msg">
<!-- Changed by JS -->
<p>Bitcoin gives you the power of a bank in the palm of your hand, without the need for a bank account.</p>
</div>
<svg height="100%" width="100%" xmlns="httphttp://www.w3.org/2000/svg">
<rect rx="0" r7="0" class="wiper" id="wiper" height="100%" />
<rect rx="0" r7="0" class="slider" id="slider-n" height="100%" />
<rect rx="0" r7="0" class="slider" id="slider-g" height="100%" />
<rect rx="0" r7="0" class="slider" id="slider-y" height="100%" />
<rect rx="12" ry="12" class="msg-border" height="100%" width="100%" stroke-linejoin="round"
stroke-linecap="round" />
</svg>
</div>
</div>
</section>
<!-- End of Page: About -->
<!-- Page: Product Showcase -->
<!-- <section id="pg-products" class="pg-products page">
<div class="divider product-divider">
<div class="container">
<h2>Our Products</h2>
<div class="product-showcase">
<div class="carousel-container">
<div class="carousel-track">
<div class="product-card">
<div class="product-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"></path>
</svg>
</div>
<h3>Mobile App</h3>
<p>Send Bitcoin instantly with near-zero fees. Experience the speed of Lightning Network technology.
</p>
<a href="#" class="product-link">Learn More</a>
</div>
<div class="product-card">
<div class="product-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="5" width="20" height="14" rx="2"></rect>
<line x1="2" y1="10" x2="22" y2="10"></line>
</svg>
</div>
<h3>Point of Sale</h3>
<p>Accept Bitcoin payments in your business with our easy-to-use point of sale system. No hidden fees.
</p>
<a href="#" class="product-link">Learn More</a>
</div>
<div class="product-card">
<div class="product-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="5" width="20" height="14" rx="2"></rect>
<path d="M2 10h20"></path>
<path d="M6 15h4"></path>
<path d="M14 15h.01"></path>
</svg>
</div>
<h3>Rewards Cards</h3>
<p>Tap-to-pay cards for your Bitcoin. Spend your crypto anywhere without needing a phone connection.
</p>
<a href="#" class="product-link">Learn More</a>
</div>
<div class="product-card">
<div class="product-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="12" y1="2" x2="12" y2="22"></line>
<path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"></path>
</svg>
</div>
<h3>Buy Bitcoin</h3>
<p>Send money across borders without the high fees. Connect with family anywhere in the Caribbean.</p>
<a href="#" class="product-link">Learn More</a>
</div>
</div>
<div class="carousel-controls">
<button class="carousel-btn prev-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="15 18 9 12 15 6"></polyline>
</svg>
</button>
<div class="carousel-indicators">
<button class="indicator active" data-index="0"></button>
<button class="indicator" data-index="1"></button>
<button class="indicator" data-index="2"></button>
<button class="indicator" data-index="3"></button>
</div>
<button class="carousel-btn next-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</button>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- End of Page: Product Showcase -->
<!-- Page: FAQ -->
<section id="pg-faq" class="page">
<div id="faq" class="faq divider">
<div class="container">
<h2>Frequently Asked Questions</h2>
<div class="accordion">
<!-- Inserted by JS. Edit content in faq.json -->
</div>
</div>
</div>
</section>
<!-- End of Page: FAQ -->
<!-- Page: Contact -->
<section id="pg-contact" class="pg-contact page">
<div class="container">
<div class="forms-bg" id="forms-bg">
<h2>Contact Us</h2>
<div class="col-2-even contact-content">
<!-- Text & Socials -->
<div class="contact-txt">
<h3>Got something to ask?</h3>
<p>Get in Touch</p>
<p class="contact-txt-para">Email us or complete the form if you have a specific query or would like to
know more about how Flash can be integrated into your business transaction pipeline.</p>
<div class="flash-email">
<svg id="icon-email" width="32" height="32" viewBox="0 0 32 32" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M28 7L16 18L4 7" stroke="white" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
<path
d="M4 7H28V24C28 24.2652 27.8946 24.5196 27.7071 24.7071C27.5196 24.8946 27.2652 25 27 25H5C4.73478 25 4.48043 24.8946 4.29289 24.7071C4.10536 24.5196 4 24.2652 4 24V7Z"
stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path d="M13.8186 16L4.30859 24.7175" stroke="white" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
<path d="M27.6897 24.7175L18.1797 16" stroke="white" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
<p>support@getflash.io</p>
</div>
<div class="socials">
<p>Follow Us!</p>
<a href="https://primal.net/p/npub1l080awn9wsw87ywm3flmpmccf5rmlvhd7vfgspj2pnavxupnlfesmflash"
target="_blank" class="no-style light">
<img src="assets/img/icon-nostr-black.png" alt="nostr link" loading="lazy">
</a>
<a href="https://primal.net/p/npub1l080awn9wsw87ywm3flmpmccf5rmlvhd7vfgspj2pnavxupnlfesmflash"
target="_blank" class="no-style dark">
<img src="assets/img/icon-nostr-white.png" alt="nostr link" loading="lazy">
</a>
<a href="https://x.com/LNFlash" target="_blank" class="no-style light">
<img src="assets/img/icon-x-black.png" alt="X (formerly twitter) link" loading="lazy">
</a>
<a href="https://x.com/LNFlash" target="_blank" class="no-style dark">
<img src="assets/img/icon-x-white.png" alt="X (formerly twitter) link" loading="lazy">
</a>
<a href="https://github.com/lnflash" target="_blank" class="no-style light">
<img src="assets/img/icon-github-black.png" alt="github link" loading="lazy">
</a>
<a href="https://github.com/lnflash" target="_blank" class="no-style dark">
<img src="assets/img/icon-github-white.png" alt="github link" loading="lazy">
</a>
<a href="https://www.linkedin.com/company/getflash-io" target="_blank" class="no-style light">
<img src="assets/img/icon-linkedin-black.png" alt="linkedin link" loading="lazy"
style="max-width: 50px;">>
</a>
<a href="https://www.linkedin.com/company/getflash-io" target="_blank" class="no-style dark">
<img src="assets/img/icon-linkedin-white.png" alt="linkedin link" loading="lazy"
style="max-width: 50px;">
</a>
<a href="https://www.instagram.com/getflash.io/" target="_blank" class="no-style light">
<img src="assets/img/icon-instagram-black.svg" alt="instagram link" loading="lazy">
</a>
<a href="https://www.instagram.com/getflash.io/" target="_blank" class="no-style dark">
<img src="assets/img/icon-instagram-white.svg" alt="instagram link" loading="lazy">
</a>
<a href="https://www.youtube.com/@LNFlash" target="_blank" class="no-style light">
<img src="assets/img/icon-youtube-black.svg" alt="youtube link" loading="lazy">
</a>
<a href="https://www.youtube.com/@LNFlash" target="_blank" class="no-style dark">
<img src="assets/img/icon-youtube-white.svg" alt="youtube link" loading="lazy">
</a>
</div>
</div>
<!-- Contact Form -->
<form class="contact-form" method="post">
<div class="formfields">
<label for="c-name">Name</label>
<input type="text" name="c-name" id="c-name" />
<label for="c-email">Email</label>
<input type="email" name="c-email" id="c-email" />
<label for="c-nostr">Nostr (optional)</label>
<input type="nostr" name="c-nostr" id="c-nostr" placeholder="npub1..." />
<label for="c-msg">Message</label>
<textarea name="c-msg" id="c-msg" class="c-msg" placeholder=""></textarea>
<div class="button-container">
<button id="send-msg-btn" class="button-1">
Send
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" aria-hidden="true"
xmlns="http://www.w3.org/2000/svg">
<path d="M11.25 10H6.25" stroke="black" stroke-linecap="round" stroke-linejoin="round" />
<path
d="M3.7881 17.2874C3.74416 17.4074 3.73807 17.538 3.77065 17.6616C3.80323 17.7852 3.87292 17.8958 3.97032 17.9786C4.06772 18.0613 4.18815 18.1122 4.31537 18.1244C4.4426 18.1366 4.57051 18.1095 4.68185 18.0468L17.8069 10.5397C17.9045 10.4857 17.986 10.4064 18.0427 10.3103C18.0994 10.2141 18.1293 10.1045 18.1293 9.99285C18.1293 9.8812 18.0994 9.7716 18.0427 9.67543C17.986 9.57925 17.9045 9.50002 17.8069 9.44597L4.68185 1.95769C4.57084 1.89561 4.44353 1.86887 4.31693 1.88105C4.19032 1.89323 4.07044 1.94374 3.9733 2.02585C3.87616 2.10796 3.80639 2.21775 3.7733 2.34057C3.7402 2.46338 3.74537 2.59336 3.7881 2.71316L6.24982 9.99988L3.7881 17.2874Z"
stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</button>
</div>
</div>
<div class="success-msg form-success">
<h2>Message Sent!</h2>
<svg id="success-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 564.13 190.74">
<g class="envelope">
<rect width="564.13" height="190.68" fill="none" />
<path d="m166.86,46.16l112.27,68.69c3.49,2.14,7.9,2.07,11.32-.17l103.7-67.92" fill="none"
fill-rule="evenodd" stroke="#000" stroke-miterlimit="10" stroke-width="4" />
<path
d="m129.27,59.88l.6-29.23s-.6-25.65,28.64-28.64h248.77s26.25-.6,28.64,28.64v129.45s.6,26.85-28.64,28.64h-248.77s-26.25.6-28.64-28.64v-37.03"
fill="none" fill-rule="evenodd" stroke="#000" stroke-miterlimit="10" stroke-width="4" />
<line x1="154.16" y1="72.2" x2="24.11" y2="72.2" fill="none" stroke="#000" stroke-miterlimit="10"
stroke-width="4" />
<line x1="153.56" y1="111.2" x2="75.41" y2="111.2" fill="none" stroke="#000" stroke-miterlimit="10"
stroke-width="4" />
</g>
</svg>
<p>Thanks for reaching out to us!</p>
</div>
<!-- Error Notice: Contact Form -->
<div class="error-msg form-error hidden">
<p>We're sorry! Something went wrong and your message didn't get sent.</p>
<div class="btn-container">
<button id="close-error-msg" class="button-2">Close</button>
</div>
</div>
</form>
<!-- End of Contact Form -->
</div>
</div>
</div>
</section>
<!-- End of Page: Contact -->
</main>
<footer>
<div class="footer-top">
<div class="container">
<div class="footer-links">
<a href="#pg-download" class="no-style">
<img src="assets/img/logo-black.png" alt="Flash" class="light logo" loading="lazy" />
<img src="assets/img/logo-white.png" alt="Flash" class="dark logo" loading="lazy" />
</a>
<a href="https://play.google.com/store/apps/details?id=com.lnflash" target="_blank" class="no-style">
<img src="assets/img/google-play-badge.png" alt="Get it on Google Play" class="badge" loading="lazy" />
</a>
<a href="https://apps.apple.com/jm/app/flash-send-spend-and-save/id6451129095" target="_blank"
class="no-style">
<img src="assets/img/ios-badge.png" alt="Download on the App Store" class="badge ios" loading="lazy" />
</a>
</div>
<div class="legal">
<div>
<a href="legal/terms.html">Terms & Conditions</a>
<a href="legal/privacy.html">Privacy Policy</a>
</div>
<p class="powered">Powered by Bitcoin.</p>
</div>
</div>
<div class="footer-mid">
<div class="container">
<p class="copyright">2021 Flash<span>™</span> All rights reserved.
</p>
<p class="copyright"><span>©</span> 2023 Island Bitcoin C.A. de S.V. </p>
</div>
</div>
<div class="footer-btm">
<div class="container">
<p>Island Bitcoin C.A. de S.V. entity is regulated by BCR and by the Superintendent of the Financial System of
El Salvador. For unresolved queries or complaints, please contact atencionalusuario@ssf.gob.sv</p>
</div>
</div>
</footer>
<!-- SVG Icons - DO NOT DELETE -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" style="display: none">
<symbol>
<g id="plus">
<rect class="vert" x="8" y="0" width="4" height="20" rx="2" ry="2" />
<rect class="hori" x="8" y="0" width="4" height="20" rx="2" ry="2" transform="translate(0 20) rotate(-90)" />
</g>
</symbol>
<symbol>
<rect id="minus" x="8" y="0" width="4" height="20" rx="2" ry="2" transform="translate(0 20) rotate(-90)" />
</symbol>
</svg>
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" style="display: none">
<symbol>
<g id="lightbulb">
<path class="stroke" d="M8.25 21.75H15.75" stroke="white" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
<path class="stroke fill"
d="M7.37824 15.6563C6.48665 14.9598 5.76449 14.0703 5.266 13.0546C4.76751 12.039 4.50566 10.9236 4.50012 9.79219C4.47762 5.72719 7.75512 2.34375 11.8192 2.25C13.3942 2.21185 14.9412 2.67066 16.2408 3.56132C17.5403 4.45198 18.5264 5.72927 19.0591 7.21196C19.5918 8.69464 19.644 10.3074 19.2084 11.8215C18.7728 13.3355 17.8715 14.674 16.6323 15.6469C16.359 15.8588 16.1375 16.1302 15.9846 16.4404C15.8318 16.7507 15.7516 17.0917 15.7501 17.4375V18C15.7501 18.1989 15.6711 18.3897 15.5304 18.5303C15.3898 18.671 15.199 18.75 15.0001 18.75H9.00011C8.8012 18.75 8.61044 18.671 8.46978 18.5303C8.32913 18.3897 8.25011 18.1989 8.25011 18V17.4375C8.24976 17.0939 8.17104 16.7548 8.01996 16.4462C7.86888 16.1375 7.64941 15.8673 7.37824 15.6563Z"
fill="black" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
<path class="stroke" d="M12.75 5.25C14.625 5.56594 16.1822 7.125 16.5 9" stroke="white" stroke-linecap="round"
stroke-linejoin="round" />
</g>
</symbol>
</svg>
<!-- jQuery CDN -->
<script src="https://code.jquery.com/jquery-3.7.0.min.js"
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
<!-- Local jQuery (uncomment if prefer not to use CDN and comment out CDN instead) -->
<!-- <script src="js/jquery-3.6.4.min.js"></script> -->
<!-- GSAP & Plugins CDN -->
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/MotionPathPlugin.min.js"></script>
<!-- Custom JS -->
<script src="js/globeSvg.js"></script>
<script src="js/main.js"></script>
<script src="js/faqFetch.js"></script>
<script src="js/lightning.js"></script>
<script src="js/btcTracker.js"></script>
<script src="//code.tidio.co/0kbm4jqybxrrarlw7cjflhnb8fzv6lyt.js" async></script>
<script src="js/productCarousel.js"></script>
</body>
</html>