-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpodcasts.html
More file actions
718 lines (714 loc) · 37.2 KB
/
Copy pathpodcasts.html
File metadata and controls
718 lines (714 loc) · 37.2 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Future Tech | Podcasts</title>
<link rel="stylesheet" href="./styles/main.css" />
<script src="./scripts/main.js" type="module"></script>
</head>
<body>
<header class="header" data-js-header>
<div class="header__promo">
<div class="header__promo-inner container">
<a class="header__promo-link" href="/">
<span class="icon icon--yellow-arrow">Subscribe to our Newsletter For New & latest Blogs and Resources</span>
</a>
</div>
</div>
<div class="header__body">
<div class="header__body-inner container">
<a
class="header__logo logo"
href="/"
aria-label="Home"
title="Home"
>
<img
class="logo__image"
src="./images/logo.svg"
alt=""
width="179" height="50"
/>
</a>
<div class="header__overlay" data-js-header-overlay>
<nav class="header__menu">
<ul class="header__menu-list">
<li class="header__menu-item">
<a class="header__menu-link" href="./index.html">Home</a>
</li>
<li class="header__menu-item">
<a class="header__menu-link" href="./news.html">News</a>
</li>
<li class="header__menu-item">
<a class="header__menu-link is-active" href="./podcasts.html">Podcasts</a>
</li>
<li class="header__menu-item">
<a class="header__menu-link" href="./resources.html">Resources</a>
</li>
</ul>
</nav>
<a class="header__contact-us-link button button--accent" href="./contacts.html">
Contact Us
</a>
</div>
<button
class="header__burger-button burger-button visible-mobile"
type="button"
aria-label="Open menu"
title="Open menu"
data-js-header-burger-button
>
<span class="burger-button__line"></span>
<span class="burger-button__line"></span>
<span class="burger-button__line"></span>
</button>
</div>
</div>
</header>
<main>
<section class="hero-alt" aria-labelledby="podcasts-title">
<header class="hero-alt__header">
<div class="hero-alt__header-inner container">
<h1 class="hero-alt__title" id="podcasts-title">
Unlock the World of Artificial Intelligence <span class="hero-alt__title-hidden-part">through Podcasts</span>
</h1>
<p class="hero-alt__subtitle h1 hidden-mobile" aria-hidden="true">
through Podcasts
</p>
<p class="hero-alt__description">Dive deep into the AI universe with our collection of insightful podcasts. Explore the latest trends, breakthroughs, and discussions on artificial intelligence. Whether you're an enthusiast or a professional, our AI podcasts offer a gateway to knowledge and innovation.</p>
</div>
</header>
<div class="hero-alt__body">
<ul class="list">
<li class="list__item">
<div class="card container">
<div class="card__preview">
<div class="card__preview-main">
<img
class="card__preview-icon"
src="./images/podcasts/icon-1.svg"
alt=""
width="80" height="80" loading="lazy"
/>
<div class="card__preview-info">
<h2 class="card__preview-title h3">AI Revolution</h2>
<div
class="card__rating-view rating-view"
aria-label="Rating 5 star"
title="Rating 5 star"
>
<div class="rating-view__star is-active"></div>
<div class="rating-view__star is-active"></div>
<div class="rating-view__star is-active"></div>
<div class="rating-view__star is-active"></div>
<div class="rating-view__star is-active"></div>
</div>
</div>
</div>
<div class="card__preview-extra">
<div class="card__cell tile">
<h3 class="card__cell-subtitle">Host</h3>
<p class="card__cell-description h6">Dr. Sarah Mitchell</p>
<a class="card__cell-link button" href="/">
<span class="icon icon--yellow-arrow">Listen Podcast</span>
</a>
</div>
</div>
</div>
<div class="card__body">
<div class="card__grid card__grid--3-cols">
<div class="card__cell card__cell--wide">
<div class="video-player" data-js-video-player>
<video
class="video-player__video"
src="./videos/example.mp4"
width="917" height="412"
poster="./images/videos/poster-1.jpg"
data-js-video-player-video
></video>
<div
class="video-player__panel video-player__panel--center is-active"
data-js-video-player-panel
>
<button
class="video-player__play-button"
type="button"
aria-label="Play video"
title="Play video"
data-js-video-player-play-button
>
<svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5625 29C0.5625 13.2944 13.2944 0.5625 29 0.5625C44.7056 0.5625 57.4375 13.2944 57.4375 29C57.4375 44.7056 44.7056 57.4375 29 57.4375C13.2944 57.4375 0.5625 44.7056 0.5625 29ZM41.4663 26.1318C43.7167 27.382 43.7167 30.6183 41.4663 31.8685L25.1248 40.9471C22.9377 42.1621 20.25 40.5807 20.25 38.0788V19.9215C20.25 17.4196 22.9377 15.8381 25.1248 17.0531L41.4663 26.1318Z" fill="white"/>
</svg>
</button>
</div>
</div>
</div>
<div class="card__cell card__cell--wide">
<h3 class="card__cell-title h4">Delves into the transformative impact of AI</h3>
<p class="card__cell-description">Join Dr. Sarah Mitchell as she delves into the transformative impact of AI on industries, featuring expert interviews and real-world case studies. Explore the possibilities of AI in healthcare, finance, and more.</p>
</div>
<div class="card__cell tile">
<p class="card__cell-title">Total Episodes</p>
<p class="card__cell-description h6">50</p>
</div>
<div class="card__cell tile">
<p class="card__cell-title">Average Episode Length</p>
<p class="card__cell-description h6">30 min</p>
</div>
<div class="card__cell tile">
<p class="card__cell-title">Release Frequency</p>
<p class="card__cell-description h6">Weekly</p>
</div>
</div>
</div>
</div>
</li>
<li class="list__item">
<div class="card container">
<div class="card__preview">
<div class="card__preview-main">
<img
class="card__preview-icon"
src="./images/podcasts/icon-1.svg"
alt=""
width="80" height="80" loading="lazy"
/>
<div class="card__preview-info">
<h2 class="card__preview-title h3">AI Revolution</h2>
<div
class="card__rating-view rating-view"
aria-label="Rating 5 star"
title="Rating 5 star"
>
<div class="rating-view__star is-active"></div>
<div class="rating-view__star is-active"></div>
<div class="rating-view__star is-active"></div>
<div class="rating-view__star is-active"></div>
<div class="rating-view__star is-active"></div>
</div>
</div>
</div>
<div class="card__preview-extra">
<div class="card__cell tile">
<h3 class="card__cell-subtitle">Host</h3>
<p class="card__cell-description h6">Dr. Sarah Mitchell</p>
<a class="card__cell-link button" href="/">
<span class="icon icon--yellow-arrow">Listen Podcast</span>
</a>
</div>
</div>
</div>
<div class="card__body">
<div class="card__grid card__grid--3-cols">
<div class="card__cell card__cell--wide">
<div class="video-player" data-js-video-player>
<video
class="video-player__video"
src="./videos/example.mp4"
width="917" height="412"
poster="./images/videos/poster-1.jpg"
data-js-video-player-video
></video>
<div
class="video-player__panel video-player__panel--center is-active"
data-js-video-player-panel
>
<button
class="video-player__play-button"
type="button"
aria-label="Play video"
title="Play video"
data-js-video-player-play-button
>
<svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5625 29C0.5625 13.2944 13.2944 0.5625 29 0.5625C44.7056 0.5625 57.4375 13.2944 57.4375 29C57.4375 44.7056 44.7056 57.4375 29 57.4375C13.2944 57.4375 0.5625 44.7056 0.5625 29ZM41.4663 26.1318C43.7167 27.382 43.7167 30.6183 41.4663 31.8685L25.1248 40.9471C22.9377 42.1621 20.25 40.5807 20.25 38.0788V19.9215C20.25 17.4196 22.9377 15.8381 25.1248 17.0531L41.4663 26.1318Z" fill="white"/>
</svg>
</button>
</div>
</div>
</div>
<div class="card__cell card__cell--wide">
<h3 class="card__cell-title h4">Delves into the transformative impact of AI</h3>
<p class="card__cell-description">Join Dr. Sarah Mitchell as she delves into the transformative impact of AI on industries, featuring expert interviews and real-world case studies. Explore the possibilities of AI in healthcare, finance, and more.</p>
</div>
<div class="card__cell tile">
<p class="card__cell-title">Total Episodes</p>
<p class="card__cell-description h6">50</p>
</div>
<div class="card__cell tile">
<p class="card__cell-title">Average Episode Length</p>
<p class="card__cell-description h6">30 min</p>
</div>
<div class="card__cell tile">
<p class="card__cell-title">Release Frequency</p>
<p class="card__cell-description h6">Weekly</p>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</section>
<section class="section" aria-labelledby="podcasts-videos-title">
<header class="section__header">
<div class="section__header-inner container">
<div class="section__header-info">
<p class="section__subtitle tag">Stay Informed with Fresh Content</p>
<h2 class="section__title" id="podcasts-videos-title">Latest Podcast Episodes</h2>
</div>
</div>
</header>
<div class="section__body">
<ul class="bordered-grid bordered-grid--3-cols container">
<li class="bordered-grid__item">
<div class="video-card">
<div class="video-card__player video-player" data-js-video-player>
<video
class="video-player__video video-player__video--small"
src="./videos/example.mp4"
width="470" height="390"
poster="./images/videos/poster-1.jpg"
data-js-video-player-video
></video>
<div class="video-player__panel is-active" data-js-video-player-panel>
<button
class="video-player__play-button"
type="button"
aria-label="Play video"
title="Play video"
data-js-video-player-play-button
>
<svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5625 29C0.5625 13.2944 13.2944 0.5625 29 0.5625C44.7056 0.5625 57.4375 13.2944 57.4375 29C57.4375 44.7056 44.7056 57.4375 29 57.4375C13.2944 57.4375 0.5625 44.7056 0.5625 29ZM41.4663 26.1318C43.7167 27.382 43.7167 30.6183 41.4663 31.8685L25.1248 40.9471C22.9377 42.1621 20.25 40.5807 20.25 38.0788V19.9215C20.25 17.4196 22.9377 15.8381 25.1248 17.0531L41.4663 26.1318Z" fill="white"/>
</svg>
</button>
<div class="video-player__duration">2.30 min</div>
</div>
</div>
<div class="video-card__body">
<h3 class="video-card__title h5">Mars Exploration: Unveiling Alien Landscapes</h3>
<div class="video-card__description">
<p>Embark on a journey through the Red Planet's breathtaking landscapes and uncover the mysteries of Mars.</p>
</div>
</div>
<a class="video-card__link button" href="/">
<span class="icon icon--yellow-arrow">Listen Podcast</span>
</a>
</div>
</li>
<li class="bordered-grid__item">
<div class="video-card">
<div class="video-card__player video-player" data-js-video-player>
<video
class="video-player__video video-player__video--small"
src="./videos/example.mp4"
width="470" height="390"
poster="./images/videos/poster-1.jpg"
data-js-video-player-video
></video>
<div class="video-player__panel is-active" data-js-video-player-panel>
<button
class="video-player__play-button"
type="button"
aria-label="Play video"
title="Play video"
data-js-video-player-play-button
>
<svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5625 29C0.5625 13.2944 13.2944 0.5625 29 0.5625C44.7056 0.5625 57.4375 13.2944 57.4375 29C57.4375 44.7056 44.7056 57.4375 29 57.4375C13.2944 57.4375 0.5625 44.7056 0.5625 29ZM41.4663 26.1318C43.7167 27.382 43.7167 30.6183 41.4663 31.8685L25.1248 40.9471C22.9377 42.1621 20.25 40.5807 20.25 38.0788V19.9215C20.25 17.4196 22.9377 15.8381 25.1248 17.0531L41.4663 26.1318Z" fill="white"/>
</svg>
</button>
<div class="video-player__duration">2.30 min</div>
</div>
</div>
<div class="video-card__body">
<h3 class="video-card__title h5">Mars Exploration: Unveiling Alien Landscapes</h3>
<div class="video-card__description">
<p>Embark on a journey through the Red Planet's breathtaking landscapes and uncover the mysteries of Mars.</p>
</div>
</div>
<a class="video-card__link button" href="/">
<span class="icon icon--yellow-arrow">Listen Podcast</span>
</a>
</div>
</li>
<li class="bordered-grid__item">
<div class="video-card">
<div class="video-card__player video-player" data-js-video-player>
<video
class="video-player__video video-player__video--small"
src="./videos/example.mp4"
width="470" height="390"
poster="./images/videos/poster-1.jpg"
data-js-video-player-video
></video>
<div class="video-player__panel is-active" data-js-video-player-panel>
<button
class="video-player__play-button"
type="button"
aria-label="Play video"
title="Play video"
data-js-video-player-play-button
>
<svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5625 29C0.5625 13.2944 13.2944 0.5625 29 0.5625C44.7056 0.5625 57.4375 13.2944 57.4375 29C57.4375 44.7056 44.7056 57.4375 29 57.4375C13.2944 57.4375 0.5625 44.7056 0.5625 29ZM41.4663 26.1318C43.7167 27.382 43.7167 30.6183 41.4663 31.8685L25.1248 40.9471C22.9377 42.1621 20.25 40.5807 20.25 38.0788V19.9215C20.25 17.4196 22.9377 15.8381 25.1248 17.0531L41.4663 26.1318Z" fill="white"/>
</svg>
</button>
<div class="video-player__duration">2.30 min</div>
</div>
</div>
<div class="video-card__body">
<h3 class="video-card__title h5">Mars Exploration: Unveiling Alien Landscapes</h3>
<div class="video-card__description">
<p>Embark on a journey through the Red Planet's breathtaking landscapes and uncover the mysteries of Mars.</p>
</div>
</div>
<a class="video-card__link button" href="/">
<span class="icon icon--yellow-arrow">Listen Podcast</span>
</a>
</div>
</li>
<li class="bordered-grid__item">
<div class="video-card">
<div class="video-card__player video-player" data-js-video-player>
<video
class="video-player__video video-player__video--small"
src="./videos/example.mp4"
width="470" height="390"
poster="./images/videos/poster-1.jpg"
data-js-video-player-video
></video>
<div class="video-player__panel is-active" data-js-video-player-panel>
<button
class="video-player__play-button"
type="button"
aria-label="Play video"
title="Play video"
data-js-video-player-play-button
>
<svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5625 29C0.5625 13.2944 13.2944 0.5625 29 0.5625C44.7056 0.5625 57.4375 13.2944 57.4375 29C57.4375 44.7056 44.7056 57.4375 29 57.4375C13.2944 57.4375 0.5625 44.7056 0.5625 29ZM41.4663 26.1318C43.7167 27.382 43.7167 30.6183 41.4663 31.8685L25.1248 40.9471C22.9377 42.1621 20.25 40.5807 20.25 38.0788V19.9215C20.25 17.4196 22.9377 15.8381 25.1248 17.0531L41.4663 26.1318Z" fill="white"/>
</svg>
</button>
<div class="video-player__duration">2.30 min</div>
</div>
</div>
<div class="video-card__body">
<h3 class="video-card__title h5">Mars Exploration: Unveiling Alien Landscapes</h3>
<div class="video-card__description">
<p>Embark on a journey through the Red Planet's breathtaking landscapes and uncover the mysteries of Mars.</p>
</div>
</div>
<a class="video-card__link button" href="/">
<span class="icon icon--yellow-arrow">Listen Podcast</span>
</a>
</div>
</li>
<li class="bordered-grid__item">
<div class="video-card">
<div class="video-card__player video-player" data-js-video-player>
<video
class="video-player__video video-player__video--small"
src="./videos/example.mp4"
width="470" height="390"
poster="./images/videos/poster-1.jpg"
data-js-video-player-video
></video>
<div class="video-player__panel is-active" data-js-video-player-panel>
<button
class="video-player__play-button"
type="button"
aria-label="Play video"
title="Play video"
data-js-video-player-play-button
>
<svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5625 29C0.5625 13.2944 13.2944 0.5625 29 0.5625C44.7056 0.5625 57.4375 13.2944 57.4375 29C57.4375 44.7056 44.7056 57.4375 29 57.4375C13.2944 57.4375 0.5625 44.7056 0.5625 29ZM41.4663 26.1318C43.7167 27.382 43.7167 30.6183 41.4663 31.8685L25.1248 40.9471C22.9377 42.1621 20.25 40.5807 20.25 38.0788V19.9215C20.25 17.4196 22.9377 15.8381 25.1248 17.0531L41.4663 26.1318Z" fill="white"/>
</svg>
</button>
<div class="video-player__duration">2.30 min</div>
</div>
</div>
<div class="video-card__body">
<h3 class="video-card__title h5">Mars Exploration: Unveiling Alien Landscapes</h3>
<div class="video-card__description">
<p>Embark on a journey through the Red Planet's breathtaking landscapes and uncover the mysteries of Mars.</p>
</div>
</div>
<a class="video-card__link button" href="/">
<span class="icon icon--yellow-arrow">Listen Podcast</span>
</a>
</div>
</li>
<li class="bordered-grid__item">
<div class="video-card">
<div class="video-card__player video-player" data-js-video-player>
<video
class="video-player__video video-player__video--small"
src="./videos/example.mp4"
width="470" height="390"
poster="./images/videos/poster-1.jpg"
data-js-video-player-video
></video>
<div class="video-player__panel is-active" data-js-video-player-panel>
<button
class="video-player__play-button"
type="button"
aria-label="Play video"
title="Play video"
data-js-video-player-play-button
>
<svg width="58" height="58" viewBox="0 0 58 58" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.5625 29C0.5625 13.2944 13.2944 0.5625 29 0.5625C44.7056 0.5625 57.4375 13.2944 57.4375 29C57.4375 44.7056 44.7056 57.4375 29 57.4375C13.2944 57.4375 0.5625 44.7056 0.5625 29ZM41.4663 26.1318C43.7167 27.382 43.7167 30.6183 41.4663 31.8685L25.1248 40.9471C22.9377 42.1621 20.25 40.5807 20.25 38.0788V19.9215C20.25 17.4196 22.9377 15.8381 25.1248 17.0531L41.4663 26.1318Z" fill="white"/>
</svg>
</button>
<div class="video-player__duration">2.30 min</div>
</div>
</div>
<div class="video-card__body">
<h3 class="video-card__title h5">Mars Exploration: Unveiling Alien Landscapes</h3>
<div class="video-card__description">
<p>Embark on a journey through the Red Planet's breathtaking landscapes and uncover the mysteries of Mars.</p>
</div>
</div>
<a class="video-card__link button" href="/">
<span class="icon icon--yellow-arrow">Listen Podcast</span>
</a>
</div>
</li>
</ul>
</div>
</section>
<section class="about" aria-labelledby="about-title">
<div class="about__inner container">
<header class="about__header">
<img
class="about__icon"
src="./images/about/icon.svg"
alt=""
width="150" height="150" loading="lazy"
/>
<div class="about__info">
<p class="about__subtitle tag">Learn, Connect, and Innovate</p>
<h2 class="about__title" id="about-title">Be Part of the Future Tech Revolution</h2>
</div>
<div class="about__description">
<p>Immerse yourself in the world of future technology. Explore our comprehensive resources, connect with fellow tech enthusiasts, and drive innovation in the industry. Join a dynamic community of forward-thinkers.</p>
</div>
</header>
<ul class="about__list">
<li class="about__item">
<a class="about-card tile" href="/">
<h3 class="about-card__title circle-icon">Resource Access</h3>
<div class="about-card__description">
<p>Visitors can access a wide range of resources, including ebooks, whitepapers, reports.</p>
</div>
</a>
</li>
<li class="about__item">
<a class="about-card tile" href="/">
<h3 class="about-card__title circle-icon">Resource Access</h3>
<div class="about-card__description">
<p>Visitors can access a wide range of resources, including ebooks, whitepapers, reports.</p>
</div>
</a>
</li>
<li class="about__item">
<a class="about-card tile" href="/">
<h3 class="about-card__title circle-icon">Resource Access</h3>
<div class="about-card__description">
<p>Visitors can access a wide range of resources, including ebooks, whitepapers, reports.</p>
</div>
</a>
</li>
</ul>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__inner container">
<div class="footer__body">
<nav class="footer__menu">
<div class="footer__menu-column">
<a class="footer__menu-main-link h6" href="/">Home</a>
<ul class="footer__menu-list">
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Features</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Blogs</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Resources</a>
<span class="badge">New</span>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Testimonials</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Contact Us</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Newsletter</a>
</li>
</ul>
</div>
<div class="footer__menu-column">
<a class="footer__menu-main-link h6" href="/">News</a>
<ul class="footer__menu-list">
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Trending Stories</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Featured Videos</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Technology</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Health</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Politics</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Environment</a>
</li>
</ul>
</div>
<div class="footer__menu-column">
<a class="footer__menu-main-link h6" href="/">Blogs</a>
<ul class="footer__menu-list">
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Quantum Computing</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">AI Ethics</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Space Exploration</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Biotechnology</a>
<span class="badge">New</span>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Renewable Energy</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">Biohacking</a>
</li>
</ul>
</div>
<div class="footer__menu-column">
<a class="footer__menu-main-link h6" href="/">Podcasts</a>
<ul class="footer__menu-list">
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">AI Revolution</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">AI Revolution</a>
<span class="badge">New</span>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">TechTalk AI</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link" href="/">AI Conversations</a>
</li>
</ul>
</div>
<div class="footer__menu-column">
<a class="footer__menu-main-link h6" href="/">Resources</a>
<ul class="footer__menu-list">
<li class="footer__menu-item">
<a class="footer__menu-link button" href="/">
<span class="icon icon--yellow-arrow">Whitepapers</span>
</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link button" href="/">
<span class="icon icon--yellow-arrow">Ebooks</span>
</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link button" href="/">
<span class="icon icon--yellow-arrow">Reports</span>
</a>
</li>
<li class="footer__menu-item">
<a class="footer__menu-link button" href="/">
<span class="icon icon--yellow-arrow">Research Papers</span>
</a>
</li>
</ul>
</div>
</nav>
</div>
<div class="footer__extra">
<div class="footer__extra-menu">
<ul class="footer__extra-menu-list">
<li class="footer__extra-menu-item">
<a class="footer__extra-menu-link" href="/">Terms & Conditions</a>
</li>
<li class="footer__extra-menu-item">
<a class="footer__extra-menu-link" href="/">Privacy Policy</a>
</li>
</ul>
</div>
<div class="footer__soc1als soc1als">
<ul class="soc1als__list">
<li class="soc1als__item">
<a
class="soc1als__link"
href="/"
target="_blank"
aria-label="Twitter"
title="Twitter"
>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21.0571 7.18114C21.0664 7.39235 21.0664 7.59395 21.0664 7.80515C21.0756 14.2084 16.3712 21.6004 7.76793 21.6004C5.23048 21.6004 2.73933 20.842 0.600098 19.4212C0.970528 19.4692 1.34096 19.4884 1.71139 19.4884C3.81358 19.4884 5.86021 18.7588 7.51789 17.4052C5.51756 17.3668 3.75802 16.0132 3.14681 14.0356C3.85063 14.1796 4.57296 14.1508 5.25826 13.9492C3.08198 13.5076 1.51691 11.5204 1.50765 9.20675C1.50765 9.18755 1.50765 9.16835 1.50765 9.14915C2.15591 9.52355 2.88751 9.73475 3.62837 9.75395C1.58174 8.33315 0.942746 5.50114 2.18369 3.28353C4.5637 6.31714 8.06427 8.15075 11.8241 8.35235C11.4445 6.67234 11.9631 4.90594 13.1762 3.71553C15.0561 1.88193 18.0196 1.97793 19.7977 3.92673C20.8441 3.71553 21.8535 3.31233 22.7704 2.74593C22.4185 3.86913 21.6869 4.81954 20.7145 5.42434C21.6406 5.30914 22.5481 5.04994 23.4001 4.66594C22.7704 5.64514 21.9739 6.48994 21.0571 7.18114Z" fill="white"/>
</svg>
</a>
</li>
<li class="soc1als__item">
<a
class="soc1als__link"
href="/"
target="_blank"
aria-label="Medium"
title="Medium"
>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.5374 12.2281C13.5374 15.9988 10.5069 19.0556 6.76883 19.0556C3.03073 19.0556 0 15.9981 0 12.2281C0 8.45806 3.0305 5.40039 6.76883 5.40039C10.5072 5.40039 13.5374 8.45737 13.5374 12.2281Z" fill="white"/>
<path d="M20.9627 12.2285C20.9627 15.7778 19.4474 18.6563 17.5783 18.6563C15.7091 18.6563 14.1938 15.7778 14.1938 12.2285C14.1938 8.67922 15.7089 5.80078 17.578 5.80078C19.4472 5.80078 20.9625 8.67829 20.9625 12.2285" fill="white"/>
<path d="M24 12.228C24 15.4073 23.4672 17.9862 22.8097 17.9862C22.1522 17.9862 21.6196 15.408 21.6196 12.228C21.6196 9.04797 22.1525 6.46973 22.8097 6.46973C23.467 6.46973 24 9.04774 24 12.228Z" fill="white"/>
</svg>
</a>
</li>
<li class="soc1als__item">
<a
class="soc1als__link"
href="/"
target="_blank"
aria-label="LinkedIn"
title="LinkedIn"
>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.8647 1.59961H3.13554C2.72832 1.59961 2.33777 1.76138 2.04982 2.04933C1.76187 2.33728 1.6001 2.72783 1.6001 3.13505V20.8642C1.6001 21.2714 1.76187 21.6619 2.04982 21.9499C2.33777 22.2378 2.72832 22.3996 3.13554 22.3996H20.8647C21.2719 22.3996 21.6624 22.2378 21.9504 21.9499C22.2383 21.6619 22.4001 21.2714 22.4001 20.8642V3.13505C22.4001 2.72783 22.2383 2.33728 21.9504 2.04933C21.6624 1.76138 21.2719 1.59961 20.8647 1.59961ZM7.79965 19.3186H4.67243V9.38516H7.79965V19.3186ZM6.23388 8.00861C5.87915 8.00661 5.53296 7.89958 5.239 7.70102C4.94504 7.50246 4.71649 7.22127 4.58219 6.89294C4.44789 6.56461 4.41386 6.20386 4.48439 5.8562C4.55492 5.50855 4.72686 5.18958 4.9785 4.93955C5.23014 4.68952 5.5502 4.51964 5.8983 4.45134C6.2464 4.38304 6.60693 4.41939 6.93439 4.5558C7.26185 4.6922 7.54156 4.92255 7.73823 5.21778C7.9349 5.51301 8.03971 5.85988 8.03943 6.21461C8.04278 6.45211 7.99827 6.68784 7.90857 6.90777C7.81887 7.1277 7.68582 7.32732 7.51733 7.49473C7.34884 7.66215 7.14837 7.79392 6.92787 7.88221C6.70736 7.97049 6.47134 8.01348 6.23388 8.00861ZM19.3263 19.3273H16.2005V13.9005C16.2005 12.3001 15.5202 11.8061 14.642 11.8061C13.7147 11.8061 12.8047 12.5052 12.8047 13.9409V19.3273H9.67743V9.39239H12.6848V10.7689H12.7252C13.0271 10.1579 14.0844 9.11361 15.6979 9.11361C17.4428 9.11361 19.3278 10.1493 19.3278 13.1826L19.3263 19.3273Z" fill="white"/>
</svg>
</a>
</li>
</ul>
</div>
<p class="footer__copyright">© <time datetime="2024">2024</time> FutureTech. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>