-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
619 lines (598 loc) · 29.7 KB
/
blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
<!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.0">
<title>Marcho - Blog</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/blog.min.css">
</head>
<body>
<!-- === HEADER === -->
<header class="header">
<div class="container">
<div class="header__inner">
<a class="logo" href="#">
<img class="logo__image" src="images/logo.png" alt="logo" />
</a>
<nav class="menu">
<button class="menu__btn">
<span></span>
</button>
<ul class="menu__list">
<li class="menu__item">
<a class="menu__link" href="index.html"> home </a>
</li>
<li class="menu__item">
<a class="menu__link" href="shop.html"> shop </a>
</li>
<li class="menu__item">
<a class="menu__link" href="product.html"> product page </a>
</li>
<li class="menu__item">
<span class="menu__link menu__link--active"> blog </span>
</li>
<li class="menu__item">
<a class="menu__link" href="contacts.html"> contact </a>
</li>
</ul>
</nav>
<div class="user-nav">
<a class="user-nav__link" href="register.html">
<img
class="user-nav__image"
src="images/icons/user.svg"
alt="user icon"
/>
</a>
<a class="user-nav__link" href="#">
<img
class="user-nav__image"
src="images/icons/magnifying-glass.svg"
alt="magnifying glass icon"
/>
</a>
<a class="user-nav__link" href="#">
<img
class="user-nav__image"
src="images/icons/heart.svg"
alt="heart icon"
/>
<span class="user-nav__number">3</span>
</a>
<a class="user-nav__link" href="#">
<img
class="user-nav__image"
src="images/icons/cart.svg"
alt="cart icon"
/>
<span class="user-nav__number">7</span>
</a>
</div>
</div>
</div>
</header>
<!-- === / HEADER === -->
<main class="main">
<div class="top-banner">
<div
class="top-banner__container"
style="background-image: url('images/top-bg.jpg')"
>
<div class="container">
<h2 class="top-banner__title title">BLOG</h2>
<div class="breadcrumbs">
<ul class="breadcrumbs__list">
<li class="breadcrumbs__item">
<a class="breadcrumbs__link" href="index.html">Home</a>
</li>
<li class="breadcrumbs__item">
<span class="breadcrumbs__link">Blog</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- === BLOG-PAGE === -->
<section class="blog-page">
<div class="container">
<div class="blog-page__inner">
<div class="blog-page__content">
<div class="blog-page__item">
<a class="blog-page__item-link" href="blog-one.html">
<img
class="blog-page__img"
src="images/blog/blog-post-large.jpg"
alt="blog post cover image"
/>
</a>
<div class="blog-page__item-box">
<a class="blog-page__item-box-link" href="blog-one.html">
<h4 class="blog-page__item-title">
What are trending clothes in this autumn?
</h4>
</a>
<div class="blog__info blog-box">
<a class="blog-box__author" href="#"> By Admin </a>
<a class="blog-box__date" href="#"> 11 October, 2021 </a>
</div>
<p class="blog-page__item-text">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Iste,
molestias sunt necessitatibus odit consectetur deserunt ratione
dolorum quam recusandae quae quia, aperiam praesentium explicabo!
Laboriosam aliquam vero esse doloribus magni.
</p>
</div>
</div>
<div class="blog-page__item">
<a class="blog-page__item-link" href="blog-one.html">
<img
class="blog-page__img"
src="images/blog/blog-post-video.jpg"
alt="blog post video cover"
/>
</a>
<div class="blog-page__item-box">
<a class="blog-page__item-box-link" href="blog-one.html">
<h4 class="blog-page__item-title">
We made a nice little video through one of our local shops to
show you how it looks like offline!
</h4>
</a>
<div class="blog__info blog-box">
<a class="blog-box__author" href="#"> By Admin </a>
<a class="blog-box__date" href="#"> 07 October, 2021 </a>
</div>
<p class="blog-page__item-text">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Iste,
molestias sunt necessitatibus odit consectetur deserunt ratione
dolorum quam recusandae quae quia, aperiam praesentium explicabo!
Laboriosam aliquam vero esse doloribus magni.
</p>
</div>
</div>
<div class="blog-page__item blog-page__item--slider">
<div class="blog-page__slider">
<img
class="blog-page__img"
src="images/blog/blog-post-slider.jpg"
alt="blog post slide #1"
/>
<img
class="blog-page__img"
src="images/blog/blog-post-large.jpg"
alt="blog post slide #2"
/>
<img
class="blog-page__img"
src="images/blog/blog-post-video.jpg"
alt="blog post slide #3"
/>
</div>
<div class="blog-page__item-box">
<a class="blog-page__item-box-link" href="blog-one.html">
<h4 class="blog-page__item-title">
We made a nice little video through one of our local shops to
show you how it looks like offline!
</h4>
</a>
<div class="blog__info blog-box">
<a class="blog-box__author" href="#"> By Admin </a>
<a class="blog-box__date" href="#"> 07 October, 2021 </a>
</div>
<p class="blog-page__item-text">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Iste,
molestias sunt necessitatibus odit consectetur deserunt ratione
dolorum quam recusandae quae quia, aperiam praesentium explicabo!
Laboriosam aliquam vero esse doloribus magni.
</p>
</div>
</div>
<div class="blog-page__item blog-page__item--no-image">
<div class="blog-page__item-box">
<a class="blog-page__item-box-link" href="blog-one.html">
<h4 class="blog-page__item-title">
We made a nice little video through one of our local shops to
show you how it looks like offline!
</h4>
</a>
<div class="blog__info blog-box">
<a class="blog-box__author" href="#"> By Admin </a>
<a class="blog-box__date" href="#"> 07 October, 2021 </a>
</div>
<p class="blog-page__item-text">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Iste,
molestias sunt necessitatibus odit consectetur deserunt ratione
dolorum quam recusandae quae quia, aperiam praesentium explicabo!
Laboriosam aliquam vero esse doloribus magni.
</p>
</div>
</div>
</div>
<aside class="blog-page__aside">
<div class="filter-search filter__item">
<h3 class="filter-search__title filter__title">Search</h3>
<form class="filter-search__form" action="#">
<input
type="text"
class="filter-search__input"
placeholder="Search your keyword..."
/>
<button class="filter-search__btn" type="submit">
<img
class="filter-search__btn-img"
src="images/icons/magnifying-glass-white.svg"
alt="magnifying glass icon"
/>
</button>
</form>
</div>
<div class="person">
<img
class="person__image"
src="images/blog/ceo.jpg"
alt="CEO's photo"
/>
<div class="person__name">Pete J. Southern</div>
<div class="person__position">CEO & Founder</div>
<p class="person__text">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. At numquam
sed quaerat debitis ea aut provident, harum repellendus accusamus,
fugiat aspernatur sequi quam, perspiciatis voluptates adipisci neque
enim. Repudiandae, reiciendis.
</p>
<div class="person__social">
<a class="person__social-link" href="#">
<svg width="10" height="20" fill="none">
<path
d="M.32 10.65h2.17v9.03c0 .08.03.16.1.23.05.06.13.09.22.09h3.68c.08 0 .16-.03.22-.1.06-.05.1-.14.1-.22v-8.99h2.5a.32.32 0 0 0 .3-.28L10 7.09a.33.33 0 0 0-.19-.34.32.32 0 0 0-.13-.02H6.81V4.64c0-.62.33-.94 1-.94h1.87c.09 0 .17-.04.23-.1.06-.06.09-.14.09-.23V.33A.32.32 0 0 0 9.9.1a.32.32 0 0 0-.22-.1H6.97c-.45 0-2 .09-3.24 1.24A3.46 3.46 0 0 0 2.6 4.29v2.44H.32a.32.32 0 0 0-.23.1.32.32 0 0 0-.09.22v3.28c0 .08.03.17.1.23.05.06.13.1.22.1Z"
fill="#000"
/>
</svg>
</a>
<a class="person__social-link" href="#">
<svg width="23" height="20" fill="none">
<path
d="M22.48 2.3a8.4 8.4 0 0 1-1.11.44c.45-.54.79-1.18 1-1.87a.42.42 0 0 0 0-.24.4.4 0 0 0-.13-.19.35.35 0 0 0-.42-.03c-.8.5-1.67.87-2.58 1.09a4.7 4.7 0 0 0-5.5-1.03c-.63.3-1.2.76-1.67 1.32a5.35 5.35 0 0 0-1.19 4.13 12.1 12.1 0 0 1-4.8-1.51 12.83 12.83 0 0 1-3.87-3.38.37.37 0 0 0-.14-.11.35.35 0 0 0-.35.03.38.38 0 0 0-.12.13 5.5 5.5 0 0 0 .5 6.04 4.06 4.06 0 0 1-.65-.31.35.35 0 0 0-.37 0 .38.38 0 0 0-.13.14.41.41 0 0 0-.05.2v.06c0 .91.22 1.8.64 2.6a5.13 5.13 0 0 0 1.77 1.91 4.06 4.06 0 0 1-.37-.06.35.35 0 0 0-.2.02.37.37 0 0 0-.15.1.42.42 0 0 0-.08.38c.27.88.74 1.66 1.37 2.28.64.61 1.41 1.04 2.25 1.24a8.36 8.36 0 0 1-5.72 1.36.35.35 0 0 0-.23.05.39.39 0 0 0-.16.2.42.42 0 0 0 0 .26.4.4 0 0 0 .15.2A12.75 12.75 0 0 0 7.37 20c5.03 0 8.17-2.52 9.93-4.63a15.2 15.2 0 0 0 3.43-10 9.97 9.97 0 0 0 2.2-2.48.41.41 0 0 0-.02-.48.37.37 0 0 0-.2-.13.35.35 0 0 0-.23.03Z"
fill="#000"
/>
</svg>
</a>
<a class="person__social-link" href="#">
<svg width="20" height="20" fill="none">
<path
d="M10 0C7.28 0 6.94.01 5.87.06a7.31 7.31 0 0 0-2.42.47 4.9 4.9 0 0 0-1.76 1.15c-.52.5-.91 1.1-1.17 1.77a7.31 7.31 0 0 0-.46 2.42C.01 6.95 0 7.29 0 10c0 2.72.01 3.06.06 4.13.05 1.06.22 1.78.47 2.42a4.9 4.9 0 0 0 1.15 1.77c.55.55 1.11.9 1.77 1.16.64.24 1.36.4 2.43.46 1.06.05 1.4.06 4.12.06s3.06-.02 4.13-.06a7.48 7.48 0 0 0 2.42-.46 4.9 4.9 0 0 0 1.77-1.16c.51-.5.9-1.1 1.16-1.77.25-.64.4-1.37.46-2.43.05-1.06.06-1.4.06-4.13 0-2.72-.01-3.05-.06-4.1a7.49 7.49 0 0 0-.46-2.44 4.9 4.9 0 0 0-1.16-1.77c-.5-.51-1.1-.9-1.77-1.16-.78-.29-1.6-.44-2.43-.46C13.06 0 12.72 0 10 0Zm0 1.8c2.67 0 2.99.01 4.04.06.98.05 1.5.2 1.86.35.47.18.8.39 1.15.75.35.34.56.67.75 1.14.13.35.3.88.34 1.86.05 1.05.06 1.37.06 4.04s-.01 2.99-.06 4.04a5.69 5.69 0 0 1-.35 1.86 3.25 3.25 0 0 1-1.9 1.9c-.35.13-.89.3-1.87.34-1.06.05-1.37.06-4.04.06-2.68 0-3-.01-4.06-.06a5.74 5.74 0 0 1-1.86-.35 3.14 3.14 0 0 1-1.15-.75 3 3 0 0 1-.75-1.16 5.6 5.6 0 0 1-.35-1.86c-.04-1.04-.05-1.38-.05-4.03 0-2.67.01-3 .05-4.05.05-.98.21-1.52.35-1.87.16-.43.41-.83.75-1.15.32-.34.72-.6 1.15-.75.35-.13.88-.3 1.85-.34 1.06-.04 1.38-.06 4.05-.06l.04.03Zm0 3.06a5.13 5.13 0 1 0 0 10.26 5.13 5.13 0 0 0 0-10.25Zm0 8.47a3.33 3.33 0 1 1 0-6.66 3.33 3.33 0 0 1 0 6.66Zm6.54-8.67a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0Z"
fill="#000"
/>
</svg>
</a>
<a class="person__social-link" href="#">
<svg width="16" height="20" fill="none">
<path
d="M6.4 13.23c-.53 2.75-1.17 5.4-3.07 6.77-.6-4.16.86-7.3 1.53-10.6C3.72 7.46 5 3.58 7.42 4.54c2.97 1.18-2.58 7.17 1.15 7.92 3.89.78 5.48-6.75 3.06-9.2C8.15-.27 1.49 3.18 2.3 8.24c.2 1.24 1.48 1.62.5 3.33C.59 11.07-.1 9.3 0 6.97.15 3.13 3.46.44 6.78.07c4.2-.47 8.14 1.54 8.69 5.5.6 4.45-1.9 9.28-6.4 8.94-1.2-.1-1.72-.7-2.67-1.28Z"
fill="#000"
/>
</svg>
</a>
</div>
</div>
<div class="latest-posts">
<h3 class="latest-posts__title">latest posts</h3>
<div class="latest-posts__item">
<a class="latest-posts__img-link" href="#">
<img
class="latest-posts__img"
src="images/blog/latest-posts/latest-posts-1.jpg"
alt="миниатюра обложки поста"
/>
</a>
<div class="latest-posts__box">
<a class="latest-posts__title-link" href="#">
<h5 class="latest-posts__box-title">
Lorem ipsum dolor sit amet consectetur adipisicing.
</h5>
</a>
<a href="latest-posts__date-link">
<div class="latest-posts__date">20 Oct, 2021</div>
</a>
</div>
</div>
<div class="latest-posts__item">
<a class="latest-posts__img-link" href="#">
<img
class="latest-posts__img"
src="images/blog/latest-posts/latest-posts-2.jpg"
alt="миниатюра обложки поста"
/>
</a>
<div class="latest-posts__box">
<a class="latest-posts__title-link" href="#">
<h5 class="latest-posts__box-title">
Lorem ipsum dolor sit amet consectetur adipisicing.
</h5>
</a>
<div class="latest-posts__date">16 Oct, 2021</div>
</div>
</div>
<div class="latest-posts__item">
<a class="latest-posts__img-link" href="#">
<img
class="latest-posts__img"
src="images/blog/latest-posts/latest-posts-3.jpg"
alt="миниатюра обложки поста"
/>
</a>
<div class="latest-posts__box">
<a class="latest-posts__title-link" href="#">
<h5 class="latest-posts__box-title">
Lorem ipsum dolor sit amet consectetur adipisicing.
</h5>
</a>
<div class="latest-posts__date">10 Oct, 2021</div>
</div>
</div>
<div class="latest-posts__item">
<a class="latest-posts__img-link" href="#">
<img
class="latest-posts__img"
src="images/blog/latest-posts/latest-posts-4.jpg"
alt="миниатюра обложки поста"
/>
</a>
<div class="latest-posts__box">
<a class="latest-posts__title-link" href="#">
<h5 class="latest-posts__box-title">
Lorem ipsum dolor sit amet consectetur adipisicing.
</h5>
</a>
<div class="latest-posts__date">19 Sep, 2021</div>
</div>
</div>
</div>
<div class="filter-category filter__item">
<h3 class="filter-category__title filter__title">CATEGORY</h3>
<form class="filter-category__form">
<label class="filter-category__label">
<input class="filter-category__input" type="checkbox" />
<div class="filter-category__checkbox">
<span>Woman</span>
<span>48</span>
</div>
</label>
<label class="filter-category__label">
<input class="filter-category__input" type="checkbox" />
<div class="filter-category__checkbox">
<span>Man</span>
<span>30</span>
</div>
</label>
<label class="filter-category__label">
<input class="filter-category__input" type="checkbox" checked />
<div class="filter-category__checkbox">
<span>Sale Products</span>
<span>92</span>
</div>
</label>
<label class="filter-category__label">
<input class="filter-category__input" type="checkbox" />
<div class="filter-category__checkbox">
<span>Fashion</span>
<span>121</span>
</div>
</label>
<label class="filter-category__label">
<input class="filter-category__input" type="checkbox" />
<div class="filter-category__checkbox">
<span>Hot Dresses</span>
<span>52</span>
</div>
</label>
<label class="filter-category__label">
<input class="filter-category__input" type="checkbox" />
<div class="filter-category__checkbox">
<span>Accessories</span>
<span>88</span>
</div>
</label>
</form>
</div>
<div class="filter-tags filter__item">
<h3 class="filter-tags__title filter__title">Popular Tags</h3>
<form class="filter-tags__form">
<label class="filter-tags__label">
<input class="filter-tags__input" type="checkbox" />
<span class="filter-tags__checkbox"> Sweatshirt </span>
</label>
<label class="filter-tags__label">
<input class="filter-tags__input" type="checkbox" />
<span class="filter-tags__checkbox"> Accessories </span>
</label>
<label class="filter-tags__label">
<input class="filter-tags__input" type="checkbox" />
<span class="filter-tags__checkbox"> Fashion </span>
</label>
<label class="filter-tags__label">
<input class="filter-tags__input" type="checkbox" />
<span class="filter-tags__checkbox"> Dress </span>
</label>
<label class="filter-tags__label">
<input class="filter-tags__input" type="checkbox" />
<span class="filter-tags__checkbox"> T-Shirt </span>
</label>
<label class="filter-tags__label">
<input class="filter-tags__input" type="checkbox" />
<span class="filter-tags__checkbox"> Jewellery </span>
</label>
</form>
</div>
</aside>
</div>
</div>
</section>
<!-- === / BLOG-PAGE === -->
</main>
<!-- === FOOTER === -->
<footer class="footer">
<div class="container">
<div class="footer-top">
<div class="footer-top__item footer-top__contact">
<a class="logo footer-top__logo" href="#">
<img class="logo__image" src="images/logo-footer.png" alt="logo">
</a>
<a class="footer-top__address-link" href="contacts.html">
<address class="footer-top__address">
No. 342 - London Oxford Street,
012 United States
</address>
</a>
<a class="footer-top__email" href="mailto:your-email@gmail.com">
your-email@gmail.com
</a>
<a class="footer-top__phone" href="tel:+02838388393">
+0283 838 8393
</a>
<ul class="footer-top__social-list">
<li class="footer-top__social-item">
<a class="footer-top__social-link" href="https://www.facebook.com/" target="_blank">
<svg class="footer-top__social-image" width="12pt" height="19pt" viewBox="0 0 12 19">
<path
d="M 10.46875 10.6875 L 11 7.25 L 7.667969 7.25 L 7.667969 5.015625 C 7.667969 4.078125 8.132812 3.160156 9.625 3.160156 L 11.140625 3.160156 L 11.140625 0.230469 C 11.140625 0.230469 9.765625 0 8.449219 0 C 5.707031 0 3.910156 1.648438 3.910156 4.628906 L 3.910156 7.25 L 0.859375 7.25 L 0.859375 10.6875 L 3.910156 10.6875 L 3.910156 19 L 7.667969 19 L 7.667969 10.6875 Z M 10.46875 10.6875">
</svg>
</a>
</li>
<li class="footer-top__social-item">
<a class="footer-top__social-link" href="https://www.twitter.com/" target="_blank">
<svg class="footer-top__social-image" width="16pt" height="16pt" viewBox="0 0 16 16">
<path
d="M 14.355469 4.742188 C 14.367188 4.882812 14.367188 5.027344 14.367188 5.167969 C 14.367188 9.503906 11.066406 14.496094 5.035156 14.496094 C 3.175781 14.496094 1.453125 13.960938 0 13.027344 C 0.265625 13.054688 0.519531 13.066406 0.792969 13.066406 C 2.324219 13.066406 3.734375 12.546875 4.863281 11.664062 C 3.421875 11.632812 2.214844 10.691406 1.796875 9.390625 C 2 9.421875 2.203125 9.441406 2.417969 9.441406 C 2.710938 9.441406 3.003906 9.402344 3.277344 9.328125 C 1.777344 9.023438 0.648438 7.707031 0.648438 6.113281 L 0.648438 6.070312 C 1.085938 6.316406 1.59375 6.46875 2.132812 6.488281 C 1.25 5.898438 0.671875 4.894531 0.671875 3.757812 C 0.671875 3.148438 0.832031 2.589844 1.117188 2.101562 C 2.730469 4.089844 5.15625 5.390625 7.878906 5.53125 C 7.828125 5.289062 7.796875 5.035156 7.796875 4.78125 C 7.796875 2.976562 9.257812 1.503906 11.074219 1.503906 C 12.019531 1.503906 12.871094 1.898438 13.472656 2.539062 C 14.214844 2.394531 14.921875 2.121094 15.554688 1.746094 C 15.308594 2.507812 14.792969 3.148438 14.113281 3.554688 C 14.773438 3.480469 15.410156 3.300781 16 3.046875 C 15.554688 3.695312 14.996094 4.273438 14.355469 4.742188 Z M 14.355469 4.742188">
</svg>
</a>
</li>
<li class="footer-top__social-item">
<a class="footer-top__social-link" href="https://www.linkedin.com/" target="_blank">
<svg class="footer-top__social-image" width="14pt" height="16pt" viewBox="0 0 14 16">
<path
d="M 3.132812 14 L 0.230469 14 L 0.230469 4.652344 L 3.132812 4.652344 Z M 1.679688 3.378906 C 0.753906 3.378906 0 2.609375 0 1.679688 C 0 0.753906 0.753906 0 1.679688 0 C 2.609375 0 3.363281 0.753906 3.363281 1.679688 C 3.363281 2.609375 2.609375 3.378906 1.679688 3.378906 Z M 13.996094 14 L 11.101562 14 L 11.101562 9.449219 C 11.101562 8.367188 11.078125 6.976562 9.589844 6.976562 C 8.082031 6.976562 7.851562 8.152344 7.851562 9.371094 L 7.851562 14 L 4.953125 14 L 4.953125 4.652344 L 7.734375 4.652344 L 7.734375 5.929688 L 7.777344 5.929688 C 8.164062 5.195312 9.109375 4.417969 10.523438 4.417969 C 13.460938 4.417969 14 6.351562 14 8.867188 L 14 14 Z M 13.996094 14">
</svg>
</a>
</li>
<li class="footer-top__social-item">
<a class="footer-top__social-link" href="https://www.instagram.com/" target="_blank">
<svg width="20" height="20" fill="none">
<path
d="M10 0C7.28 0 6.94.01 5.87.06a7.31 7.31 0 0 0-2.42.47 4.9 4.9 0 0 0-1.76 1.15c-.52.5-.91 1.1-1.17 1.77a7.31 7.31 0 0 0-.46 2.42C.01 6.95 0 7.29 0 10c0 2.72.01 3.06.06 4.13.05 1.06.22 1.78.47 2.42a4.9 4.9 0 0 0 1.15 1.77c.55.55 1.11.9 1.77 1.16.64.24 1.36.4 2.43.46 1.06.05 1.4.06 4.12.06s3.06-.02 4.13-.06a7.48 7.48 0 0 0 2.42-.46 4.9 4.9 0 0 0 1.77-1.16c.51-.5.9-1.1 1.16-1.77.25-.64.4-1.37.46-2.43.05-1.06.06-1.4.06-4.13 0-2.72-.01-3.05-.06-4.1a7.49 7.49 0 0 0-.46-2.44 4.9 4.9 0 0 0-1.16-1.77c-.5-.51-1.1-.9-1.77-1.16-.78-.29-1.6-.44-2.43-.46C13.06 0 12.72 0 10 0Zm0 1.8c2.67 0 2.99.01 4.04.06.98.05 1.5.2 1.86.35.47.18.8.39 1.15.75.35.34.56.67.75 1.14.13.35.3.88.34 1.86.05 1.05.06 1.37.06 4.04s-.01 2.99-.06 4.04a5.69 5.69 0 0 1-.35 1.86 3.25 3.25 0 0 1-1.9 1.9c-.35.13-.89.3-1.87.34-1.06.05-1.37.06-4.04.06-2.68 0-3-.01-4.06-.06a5.74 5.74 0 0 1-1.86-.35 3.14 3.14 0 0 1-1.15-.75 3 3 0 0 1-.75-1.16 5.6 5.6 0 0 1-.35-1.86c-.04-1.04-.05-1.38-.05-4.03 0-2.67.01-3 .05-4.05.05-.98.21-1.52.35-1.87.16-.43.41-.83.75-1.15.32-.34.72-.6 1.15-.75.35-.13.88-.3 1.85-.34 1.06-.04 1.38-.06 4.05-.06l.04.03Zm0 3.06a5.13 5.13 0 1 0 0 10.26 5.13 5.13 0 0 0 0-10.25Zm0 8.47a3.33 3.33 0 1 1 0-6.66 3.33 3.33 0 0 1 0 6.66Zm6.54-8.67a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0Z" fill="#000"/>
</svg>
</a>
</li>
<li class="footer-top__social-item">
<a class="footer-top__social-link" href="https://www.pinterest.com/" target="_blank">
<svg class="footer-top__social-image" width="15pt" height="17pt" viewBox="0 0 15 17">
<path
d="M 6.90625 0.214844 C 3.433594 0.214844 0 2.488281 0 6.164062 C 0 8.5 1.339844 9.828125 2.152344 9.828125 C 2.488281 9.828125 2.679688 8.910156 2.679688 8.652344 C 2.679688 8.34375 1.878906 7.6875 1.878906 6.402344 C 1.878906 3.730469 3.949219 1.839844 6.632812 1.839844 C 8.9375 1.839844 10.644531 3.125 10.644531 5.484375 C 10.644531 7.25 9.921875 10.554688 7.585938 10.554688 C 6.742188 10.554688 6.023438 9.957031 6.023438 9.101562 C 6.023438 7.847656 6.917969 6.628906 6.917969 5.335938 C 6.917969 3.136719 3.738281 3.535156 3.738281 6.191406 C 3.738281 6.75 3.808594 7.367188 4.0625 7.875 C 3.59375 9.847656 2.640625 12.785156 2.640625 14.820312 C 2.640625 15.445312 2.730469 16.0625 2.792969 16.691406 C 2.90625 16.816406 2.851562 16.804688 3.027344 16.742188 C 4.734375 14.449219 4.671875 14 5.445312 11.003906 C 5.859375 11.78125 6.9375 12.199219 7.789062 12.199219 C 11.386719 12.199219 13 8.761719 13 5.664062 C 13 2.367188 10.09375 0.214844 6.90625 0.214844 Z M 6.90625 0.214844">
</svg>
</a>
</li>
</ul>
</div>
<div class="footer-top__item footer-top__nav">
<h6 class="footer-top__title">
Useful Links
</h6>
<ul class="footer-top__list">
<li class="footer-top__list-item">
<a class="footer-top__item-link" href="#">
About Us
</a>
</li>
<li class="footer-top__list-item">
<a class="footer-top__item-link" href="#">
Privacy Policy
</a>
</li>
<li class="footer-top__list-item">
<a class="footer-top__item-link" href="#">
Terms & Conditions
</a>
</li>
<li class="footer-top__list-item">
<a class="footer-top__item-link" href="contacts.html">
Contact Us
</a>
</li>
<li class="footer-top__list-item">
<a class="footer-top__item-link" href="#">
Help & Support
</a>
</li>
</ul>
</div>
<div class="footer-top__item footer-top__nav">
<h6 class="footer-top__title">
My Account
</h6>
<ul class="footer-top__list">
<li class="footer-top__list-item">
<a class="footer-top__item-link" href="login.html">
My Account
</a>
</li>
<li class="footer-top__list-item">
<a class="footer-top__item-link" href="#">
My Cart
</a>
</li>
<li class="footer-top__list-item">
<a class="footer-top__item-link" href="#">
My Wishlist
</a>
</li>
<li class="footer-top__list-item">
<a class="footer-top__item-link" href="register.html">
Registration
</a>
</li>
<li class="footer-top__list-item">
<a class="footer-top__item-link" href="#">
Check Out
</a>
</li>
</ul>
</div>
<div class="footer-top__item footer-top__item-form">
<h6 class="footer-top__title">
Subscribe Our Newsletter
</h6>
<p class="footer-top__text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Quis ipsum suspendisse ultrices gravida.
</p>
<form class="footer-top__form">
<input class="footer-top__form-input" type="email" placeholder="your e-mail address" required>
<button class="footer-top__form-button" type="submit">
SUBSCRIBE
</button>
</form>
</div>
</div>
<div class="footer-bottom">
<p class="footer-bottom__copyright">
© 2022 made by Alexey Tsaplin. All Rights Reserved.
</p>
<div class="footer-bottom__payments">
We Accept
<img class="footer-bottom__payments-icon" src="images/icons/mastercard.png" alt="mastercard icon">
<img class="footer-bottom__payments-icon" src="images/icons/visa.png" alt="visa icon">
<img class="footer-bottom__payments-icon" src="images/icons/paypal.png" alt="paypal icon">
</div>
</div>
</div>
</footer>
<!-- === / FOOTER === -->
<!-- === JAVASCRIPT === -->
<script src="js/main.min.js"></script>
<!-- === / JAVASCRIPT === -->
</body>
</html>