-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
586 lines (585 loc) · 25.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mythos</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<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=Source+Sans+3:wght@400;700&display=swap"
rel="stylesheet"
/>
<script type="module" src="/main.js"></script>
</head>
<body>
<a href="#main" class="visually-hidden">Skip to main content</a>
<header class="topnav">
<h2 class="visually-hidden">Header</h2>
<div class="wrapper topnav__wrapper">
<a href="/" class="topnav__homelink hover-fade">
<img
src="/img/logo-mythos.svg"
alt="Mythos front page"
class="topnav__logo"
width="128"
height="36"
/>
</a>
<nav>
<span id="nav-label" hidden>Navigation</span>
<div id="overlay" class="topnav__overlay"></div>
<button
id="btnOpen"
class="topnav__open"
aria-expanded="false"
aria-labelledby="nav-label"
>
<img src="img/hamburger.svg" alt="" width="30" height="23" />
</button>
<div
id="menuTopNav"
class="topnav__menu"
role="dialog"
aria-labelledby="nav-label"
>
<button id="btnClose" class="topnav__close">
<img src="img/close-button.svg" alt="" width="26" height="26" />
</button>
<ul class="topnav__links">
<li class="topnav__item">
<a href="" class="topnav__link">Home</a>
</li>
<li class="topnav__item">
<a href="" class="topnav__link">Features</a>
</li>
<li class="topnav__item">
<a href="" class="topnav__link">Pricing</a>
</li>
<li class="topnav__item">
<a href="" class="topnav__link">About</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<main id="main">
<article>
<section class="hero fb-wrapper">
<img
src="/img/hero-wave.svg"
alt=""
class="hero__wave fb-wrapper__full"
width="1440"
height="81"
/>
<div class="hero__content fb-wrapper__content">
<img
src="/img/unicorn.svg"
alt="unicorn with stars"
class="hero__image"
width="483"
height="486"
/>
<div class="hero__text">
<h1 class="hero__title">Find that elusive unicorn.</h1>
<p class="large">
Mythos will enable you to discover the newest startups to invest
in. Powered by AI, used by millions of humans.
</p>
<a href="" class="hero__button button primary">Free trial</a>
<a href="" class="hero__button button secondary">Pricing</a>
</div>
</div>
</section>
<section class="features">
<h2 class="visually-hidden">Features</h2>
<div class="wrapper features__wrapper">
<div class="features__item">
<img
src="/img/icon-asterisk.svg"
alt=""
width="43px"
height="48px"
class="features__icon"
/>
<h3 class="features__title">AI-powered matching</h3>
<p class="features__description">
Phasellus ac mi magna. Sed scelerisque, turpis vitae consequat
vehicula, sem turpis pretium tellus, tempor posuere turpis est
ac velit.
</p>
</div>
<div class="features__item">
<img
src="/img/icon-bell.svg"
alt=""
width="41px"
height="48px"
class="features__icon"
/>
<h3 class="features__title">Immediate notifications</h3>
<p class="features__description">
Mauris id vestibulum metus, ut pretium lacus. Phasellus ac mi
magna. Sed scelerisque, turpis vitae consequat vehicula, sem
turpis pretium tellus, tempor posuere turpis est ac velit.
</p>
</div>
<div class="features__item">
<img
src="/img/icon-payments.svg"
alt=""
width="60.57px"
height="48px"
class="features__icon"
/>
<h3 class="features__title">Protected payments</h3>
<p class="features__description">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
id vestibulum metus, ut pretium lacus.
</p>
</div>
</div>
</section>
<section class="fullwidth fw dark">
<div class="wrapper fullwidth__wrapper">
<h2 class="fullwidth__title">
Angel investment matching in real time.
</h2>
<p class="fullwidth__description fw__description medium">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris id
vestibulum metus, ut pretium lacus. Phasellus ac mi magna. Sed
scelerisque, turpis vitae.
</p>
<img
class="fullwidth__image"
src="/img/laptop-dashboard.svg"
alt="Laptop with dashbord on screen"
width="792px"
height="465px"
/>
</div>
</section>
<section class="alt-feature">
<div class="alt-feature__wrapper wrapper">
<div class="alt-feature__row">
<img
src="img/laptop-check.svg"
alt="laptop wiht green check mark"
class="alt-feature__image"
width="401"
height="242"
/>
<div class="alt-feature__text">
<h3 class="large">
<span>AI-Powered Matching</span>
Avoid human error
</h3>
<p class="medium">
Ut sapien lectus, vulputate vitae lacus vel, incidunt sodales
ipsum. Proin a sem molestie, pulvinar ante non, laoreet ipsum.
Sed nec pretium est. Nunc lectus sem.
</p>
</div>
</div>
<div class="alt-feature__row">
<img
src="img/tablet-phone.svg"
alt="tablet and phone"
class="alt-feature__image"
width="352"
height="345"
/>
<div class="alt-feature__text">
<h3 class="large">
<span>Immediate notifications</span>
Never miss an alert again
</h3>
<p class="medium">
Lorem ipsum dolor sit amet,
<a href="">consectetur adipiscing</a> elit. Sed purus neque,
tempor sit amet fringilla in, aliquam et justo. Aenean ac
porta urna. Nullam quis mattis mauris.
</p>
</div>
</div>
<div class="alt-feature__row">
<img
src="img/tablet-payments.svg"
alt="tablet with payments"
class="alt-feature__image"
width="242"
height="345"
/>
<div class="alt-feature__text">
<h3 class="large">
<span>Protected Payments</span>
Send payments from anywhere
</h3>
<p class="medium">
Ut sapien lectus, vulputate vitae lacus vel, tincidunt sodales
ipsum. <a href="">Proin a sem mattis</a>, pulvinar ante non,
laoreet ipsum. Sed nec pretium est. Nunc lectus sem.
</p>
</div>
</div>
</div>
</section>
<section class="testimonial dark">
<h2 class="visually-hidden">Testimonial</h2>
<div class="wrapper testimonial__wrapper">
<figure>
<svg
class="testimonial__icon"
width="78"
height="66"
viewBox="0 0 78 66"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
>
<path
d="M17.8829 66C11.922 66 7.41951 63.8319 4.37561 59.4957C1.45854 55.0319 0 48.8463 0 40.9391C0 31.8841 2.21951 23.913 6.65854 17.0261C11.0975 10.1391 17.8829 4.46377 27.0146 0L33.1024 12.2435C27.3951 15.1768 23.0829 18.5565 20.1659 22.3826C17.3756 26.0811 15.9805 30.8 15.9805 36.5391C16.361 36.4116 16.9951 36.3478 17.8829 36.3478C21.9414 36.3478 25.3658 37.6232 28.1561 40.1739C31.0731 42.5971 32.5317 45.9768 32.5317 50.313C32.5317 55.1594 31.1366 58.9855 28.3463 61.7913C25.5561 64.5971 22.0683 66 17.8829 66ZM62.7805 66C56.8195 66 52.3171 63.8319 49.2732 59.4957C46.3561 55.0319 44.8976 48.8463 44.8976 40.9391C44.8976 31.8841 47.1171 23.913 51.5561 17.0261C55.9951 10.1391 62.7805 4.46377 71.9122 0L78 12.2435C72.2927 15.1768 67.9805 18.5565 65.0634 22.3826C62.2731 26.0811 60.8781 30.8 60.8781 36.5391C61.2585 36.4116 61.8927 36.3478 62.7805 36.3478C66.839 36.3478 70.2634 37.6232 73.0537 40.1739C75.9707 42.5971 77.4293 45.9768 77.4293 50.313C77.4293 55.1594 76.0342 58.9855 73.2439 61.7913C70.4536 64.5971 66.9659 66 62.7805 66Z"
fill="#00D3D4"
/>
</svg>
<blockquote>
<p class="testimonial__quote">
When I first started Evermindly, it was a bootstrapped
business. However, we were quickly running out of money.
Thanks to Mythos, we were matched with investors for our seed
funding and have now secured a Series A round!
</p>
</blockquote>
<svg
class="testimonial__icon"
width="78"
height="66"
viewBox="0 0 78 66"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
>
<path
d="M17.8829 66C11.922 66 7.41951 63.8319 4.37561 59.4957C1.45854 55.0319 0 48.8463 0 40.9391C0 31.8841 2.21951 23.913 6.65854 17.0261C11.0975 10.1391 17.8829 4.46377 27.0146 0L33.1024 12.2435C27.3951 15.1768 23.0829 18.5565 20.1659 22.3826C17.3756 26.0811 15.9805 30.8 15.9805 36.5391C16.361 36.4116 16.9951 36.3478 17.8829 36.3478C21.9414 36.3478 25.3658 37.6232 28.1561 40.1739C31.0731 42.5971 32.5317 45.9768 32.5317 50.313C32.5317 55.1594 31.1366 58.9855 28.3463 61.7913C25.5561 64.5971 22.0683 66 17.8829 66ZM62.7805 66C56.8195 66 52.3171 63.8319 49.2732 59.4957C46.3561 55.0319 44.8976 48.8463 44.8976 40.9391C44.8976 31.8841 47.1171 23.913 51.5561 17.0261C55.9951 10.1391 62.7805 4.46377 71.9122 0L78 12.2435C72.2927 15.1768 67.9805 18.5565 65.0634 22.3826C62.2731 26.0811 60.8781 30.8 60.8781 36.5391C61.2585 36.4116 61.8927 36.3478 62.7805 36.3478C66.839 36.3478 70.2634 37.6232 73.0537 40.1739C75.9707 42.5971 77.4293 45.9768 77.4293 50.313C77.4293 55.1594 76.0342 58.9855 73.2439 61.7913C70.4536 64.5971 66.9659 66 62.7805 66Z"
fill="#00D3D4"
/>
</svg>
<div class="testimonial__author-wrapper">
<img
src="/img/author-1x.jpg"
alt="Headshot fo Janice Hsu"
srcset="/img/author-2x.jpg 2x, /img/author-3x.jpg 3x"
class="testimonial__author"
/>
<figcaption class="testimonial__author-caption">
<p class="medium testimonial__author-description">
Janice Hsu<br />
Founder and CEO, Evermindly
</p>
</figcaption>
</div>
</figure>
</div>
</section>
<section class="blog">
<div class="wrapper">
<h2 class="fw">Recent blog posts</h2>
<div class="blog__grid">
<article class="blog__item">
<img
width="774"
height="1032"
class="blog__image"
src="/img/blog/blog1-2x.jpg"
alt=""
srcset="/img/blog/blog1-3x.jpg 3x"
/>
<div class="blog__filter"></div>
<div class="blog__text">
<h3 class="blog__title">
<a href="">Navigating the Angel Investment Landscape</a>
</h3>
<p class="xsmall">
Vestibulum ultrices erat est, non imperdiet velit ultricies
a. Proin erat orci, lacinia a eros nec, ultricies rutrum
leo.
</p>
<div class="blog__meta">
<time datetime="2024-06-14">June 14, 2024</time>
<p>8 min read</p>
</div>
</div>
</article>
<article class="blog__item">
<img
width="1161"
height="774"
class="blog__image"
src="/img/blog/blog2-2x.jpg"
alt=""
srcset="/img/blog/blog2-3x.jpg 3x"
/>
<div class="blog__filter"></div>
<div class="blog__text">
<h3 class="blog__title">
<a href=""
>The Ultimate Guide to Finding Promising Startups to
Invest in</a
>
</h3>
<p class="xsmall">
Etiam interdum rhoncus eros id bibendum. Duis rutrum nisl
quis accumsan viverra. Morbi risus ante, convallis vel nulla
ut, iaculis maximus sapien.
</p>
<div class="blog__meta">
<time datetime="2024-05-21">May 21, 2024</time>
<p>15 min read</p>
</div>
</div>
</article>
<article class="blog__item">
<img
width="985"
height="774"
class="blog__image"
src="/img/blog/blog3-2x.jpg"
alt=""
srcset="/img/blog/blog3-3x.jpg 3x"
/>
<div class="blog__filter"></div>
<div class="blog__text">
<h3 class="blog__title">
<a href=""
>Industry Insights: How to Identify Emerging Trends</a
>
</h3>
<p class="xsmall">
Non imperdiet velit ultricies a. Proin erat orci, lacinia a
eros nec, ultricies rutrum leo.
</p>
<div class="blog__meta">
<time datetime="2024-05-09">May 9, 2024</time>
<p>11 min read</p>
</div>
</div>
</article>
<article class="blog__item">
<img
width="801"
height="1200"
class="blog__image"
src="/img/blog/blog4-2x.jpg"
alt=""
srcset="/img/blog/blog4-3x.jpg 3x"
/>
<div class="blog__filter"></div>
<div class="blog__text">
<h3 class="blog__title">
<a href=""
>Building Connections to Uncover Investment
Opportunities</a
>
</h3>
<p class="xsmall">
Duis rutrum nisl quis accumsan viverra. Morbi risus ante,
convallis vel nulla ut, iaculis maximus sapien.
</p>
<div class="blog__meta">
<time datetime="2024-04-18">April 18, 2024</time>
<p>18 min read</p>
</div>
</div>
</article>
<article class="blog__item">
<img
width="1200"
height="900"
class="blog__image"
src="/img/blog/blog5-2x.jpg"
alt=""
srcset="/img/blog/blog5-3x.jpg 3x"
/>
<div class="blog__filter"></div>
<div class="blog__text">
<h3 class="blog__title">
<a href="">Insider Tips for Finding Hidden Gems</a>
</h3>
<p class="xsmall">
Vestibulum ultrices erat est, non imperdiet velit ultricies
a. Proin erat orci.
</p>
<div class="blog__meta">
<time datetime="2024-03-30">March 30, 2024</time>
<p>9 min read</p>
</div>
</div>
</article>
</div>
</div>
</section>
<section class="fw-cta fw dark">
<div class="wrapper fw-cta__wrapper">
<h2 class="fw-cta__title">Get started with Mythos today</h2>
<p class="fw-cta__description fw__description large">
Contact us to find the next undiscovered unicorn.
</p>
<form class="form fw-cta__form">
<label for="email" class="form__label fw-cta__label"
>Email address</label
>
<input
type="email"
name="email"
id="txtEmail"
required
placeholder="test@test.com"
class="form__text fw-cta__text"
/>
<button type="submit" class="fw-cta__button button primary white">
Contact
</button>
</form>
</div>
</section>
</article>
</main>
<footer id="footer" class="footer">
<h2 class="visually-hidden">Footer</h2>
<div class="footer__wrapper wrapper">
<section class="footer__logo">
<a href="/" class="footer__homelink hover-fade">
<img
src="/img/logo-mythos-dark.svg"
alt="Mythos front page"
class="footer__logo-image"
width="128"
height="36"
/>
</a>
<p class="footer__copyright">© 2023 Mythos, LLC</p>
</section>
<section class="footer__column">
<h3 class="footer__column-title">Company</h3>
<ul class="footer__links">
<li class="footer__item">
<a href="#" class="footer__link">About</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">News & Press</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">Careers</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">Contact</a>
</li>
</ul>
</section>
<section class="footer__column">
<h3 class="footer__column-title">Support</h3>
<ul class="footer__links">
<li class="footer__item">
<a href="#" class="footer__link">Customer Support</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">Community Forum</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">Knowledge Base</a>
</li>
</ul>
</section>
<section class="footer__column">
<h3 class="footer__column-title">Follow</h3>
<ul class="footer__links">
<li class="footer__item">
<a href="#" class="footer__link">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="footer__social"
>
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
class="footer__social-path"
d="M459.4 151.7c.3 4.5 .3 9.1 .3 13.6 0 138.7-105.6 298.6-298.6 298.6-59.5 0-114.7-17.2-161.1-47.1 8.4 1 16.6 1.3 25.3 1.3 49.1 0 94.2-16.6 130.3-44.8-46.1-1-84.8-31.2-98.1-72.8 6.5 1 13 1.6 19.8 1.6 9.4 0 18.8-1.3 27.6-3.6-48.1-9.7-84.1-52-84.1-103v-1.3c14 7.8 30.2 12.7 47.4 13.3-28.3-18.8-46.8-51-46.8-87.4 0-19.5 5.2-37.4 14.3-53 51.7 63.7 129.3 105.3 216.4 109.8-1.6-7.8-2.6-15.9-2.6-24 0-57.8 46.8-104.9 104.9-104.9 30.2 0 57.5 12.7 76.7 33.1 23.7-4.5 46.5-13.3 66.6-25.3-7.8 24.4-24.4 44.8-46.1 57.8 21.1-2.3 41.6-8.1 60.4-16.2-14.3 20.8-32.2 39.3-52.6 54.3z"
/>
</svg>
Twitter
</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
class="footer__social"
>
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
class="footer__social-path"
d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z"
/>
</svg>
Facebook
</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
class="footer__social"
>
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
class="footer__social-path"
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"
/>
</svg>
Instagram
</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 576 512"
class="footer__social"
>
<!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
class="footer__social-path"
d="M549.7 124.1c-6.3-23.7-24.8-42.3-48.3-48.6C458.8 64 288 64 288 64S117.2 64 74.6 75.5c-23.5 6.3-42 24.9-48.3 48.6-11.4 42.9-11.4 132.3-11.4 132.3s0 89.4 11.4 132.3c6.3 23.7 24.8 41.5 48.3 47.8C117.2 448 288 448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zm-317.5 213.5V175.2l142.7 81.2-142.7 81.2z"
/>
</svg>
YouTube
</a>
</li>
</ul>
</section>
<section class="footer__column">
<h3 class="footer__column-title">Resources</h3>
<ul class="footer__links">
<li class="footer__item">
<a href="#" class="footer__link">Privacy Policy</a>
</li>
<li class="footer__item">
<a href="#" class="footer__link">Terms of Use</a>
</li>
</ul>
</section>
</div>
</footer>
</body>
</html>