forked from RaccoonStrange/Wallone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.html
More file actions
836 lines (829 loc) · 61.5 KB
/
single.html
File metadata and controls
836 lines (829 loc) · 61.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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
<!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">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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=Fredoka&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/simple-adaptive-slider.css">
<link rel="stylesheet" href="assets/css/main.css">
<script src="assets/js/main.js" defer></script>
<title>Wallone - Обои</title>
</head>
<body>
<div class="container">
<aside>
<div class="left-menu">
<div class="logo">
<a href="index.html"><img src="assets/images/logo.png" alt="category" loading="lazy"></a>
<div class="logo-text">
<a href="index.html"><h3>Wallone</h3></a>
<a href="#">#someday</a>
</div>
</div>
<div class="categories">
<nav>
<input type="checkbox" name="menu" id="btn-menu1">
<label class="dropdown-label" for="btn-menu1">Основное</label>
<ul class="ul-category">
<li class="categ-row">
<a href="user_images.html">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Ваши изображения</p>
</a>
</li>
<li class="categ-row">
<a href="#">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Коллекция</p>
</a>
</li>
<li class="categ-row">
<a href="#">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Избранные</p>
</a>
</li>
</ul>
</nav>
<nav>
<input type="checkbox" name="menu" id="btn-menu">
<label class="dropdown-label" for="btn-menu">Категории</label>
<ul class="ul-category">
<li class="categ-row">
<a href="#">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Автомобили</p>
</a>
</li>
<li class="categ-row">
<a href="#">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Автомобили</p>
</a>
</li>
<li class="categ-row">
<a href="#">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Автомобили</p>
</a>
</li>
<li class="categ-row">
<a href="#">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Автомобили</p>
</a>
</li>
<li class="categ-row">
<a href="#">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Автомобили</p>
</a>
</li>
<li class="categ-row">
<a href="#">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Автомобили</p>
</a>
</li>
<li class="categ-row">
<a href="#">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Кошки</p>
</a>
</li>
<li class="categ-row">
<a href="#">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Аниме</p>
</a>
</li>
<li class="categ-row">
<a href="#">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Машины</p>
</a>
</li>
<li class="categ-row">
<a href="#">
<img src="assets/images/logo.png" alt="category" loading="lazy">
<p>Лето</p>
</a>
</li>
</ul>
</nav>
</div>
<div class="footer-left-menu">
<div class="site-information">
<p><a href="about_us.html">О сайте</a></p>
<p><a href="feedback.html">Связаться с нами</a></p>
<p><a href="privacy_policy.html">Политика конфиденциальности</a></p>
</div>
<div class="news">
<p>Новости проекта:</p>
<div class="messenger">
<a href="https://t.me/+QDWFgmYGcrw5MDg6"><img src="assets/images/icons/telegram.svg" width="40" height="40" alt="telegram"></a>
<a href="https://t.me/+QDWFgmYGcrw5MDg6"><img src="assets/images/icons/telegram.svg" width="40" height="40" alt="telegram"></a>
</div>
</div>
</div>
</div>
</aside>
<main class="content">
<div class="header-main">
<div class="search-input">
<form class="form-search" action="">
<label for="search" hidden></label>
<input type="search" placeholder="Поиск" id="search">
<button type="submit">
<svg width="24" height="24" viewBox="0 0 24 23" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21 21L15 15M17 10C17 10.9193 16.8189 11.8295 16.4672 12.6788C16.1154 13.5281 15.5998 14.2997 14.9497 14.9497C14.2997 15.5998 13.5281 16.1154 12.6788 16.4672C11.8295 16.8189 10.9193 17 10 17C9.08075 17 8.1705 16.8189 7.32122 16.4672C6.47194 16.1154 5.70026 15.5998 5.05025 14.9497C4.40024 14.2997 3.88463 13.5281 3.53284 12.6788C3.18106 11.8295 3 10.9193 3 10C3 8.14348 3.7375 6.36301 5.05025 5.05025C6.36301 3.7375 8.14348 3 10 3C11.8565 3 13.637 3.7375 14.9497 5.05025C16.2625 6.36301 17 8.14348 17 10Z" />
</svg>
</button>
</form>
<div class="tags grid">
<a href="#">#Popular</a>
<a href="#">#New</a>
<a href="#">#Oldest</a>
</div>
</div>
<div class="header-right">
<div class="languages mt-1">
<a href="/ru">ru</a>
<p class="lang-stick">|</p>
<a href="/en">en</a>
</div>
<div class="profile">
<div class="dropdown-profile">
<ul id="dropdown">
<div class="dropdown-profile-user-name dropdown-name-user">
<img class="" src="assets/images/UserName.png" alt="user-icon">
<p class="">Профиль</p>
</div>
<ul class="dropdown-profile-content">
<a href="login.html"><li>Вход</li></a>
<a href="register.html"><li>Регистрация</li></a>
<a class="border-top" href="logout"><li>Выход</li></a>
</ul>
</ul>
</div>
</div>
</div>
</div>
<div class="images fl-right">
<!-- <h2 class="h2-single-text">One Day</h2>-->
<div class="more-info-hover-image">
<div class="more-info-left-block-img">
<div class="slider">
<div class="slider__wrapper">
<div class="slider__items">
<div class="slider__item">
<img src="assets/images/anime/3.jpg">
</div>
<div class="slider__item">
<img src="assets/images/anime/3.jpg">
</div>
<div class="slider__item">
<img src="assets/images/anime/3.jpg">
</div>
<div class="slider__item">
<img src="assets/images/anime/3.jpg">
</div>
</div>
</div>
<a class="slider__control slider__control_prev" href="#" role="button" data-slide="prev"></a>
<a class="slider__control slider__control_next" href="#" role="button" data-slide="next"></a>
</div>
</div>
<div class="more-info-right-block-img">
<div class="author-post-image">
<div class="profile">
<div class="dropdown-profile-user-name dropdown-name-user">
<img class="" src="assets/images/UserName.png" alt="user-icon">
<div class="user-profile-text">
<p class="user-profile-name-text">
Шишаева Екатерина Александровна
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.3319 7.9975L15.769 6.59109C16.1973 6.18556 15.9976 5.46487 15.4357 5.3305L13.4779 4.83081L14.0298 2.89284C14.1858 2.3354 13.6602 1.80962 13.1029 1.96562L11.1656 2.51772L10.6661 0.559249C10.5339 0.00615489 9.80516 -0.196126 9.40594 0.225874L8 1.67406L6.59409 0.225905C6.19941 -0.191314 5.46762 -0.000157654 5.33394 0.55928L4.83444 2.51775L2.89709 1.96565C2.33969 1.80959 1.81425 2.33556 1.97019 2.89287L2.52209 4.83084L0.56428 5.33053C0.00215518 5.46494 -0.197189 6.18575 0.230999 6.59109L1.66803 7.9975L0.230999 9.40387C-0.197376 9.80941 0.00237399 10.5301 0.564249 10.6645L2.52206 11.1642L1.97016 13.1021C1.81419 13.6596 2.33981 14.1853 2.89706 14.0293L4.83437 13.4772L5.33387 15.4357C5.47259 16.0162 6.19937 16.1863 6.59403 15.7691L8 14.3316L9.40591 15.7691C9.79653 16.1906 10.5305 16.003 10.6661 15.4357L11.1656 13.4772L13.1029 14.0293C13.6603 14.1854 14.1857 13.6594 14.0298 13.1021L13.4779 11.1642L15.4357 10.6645C15.9978 10.53 16.1971 9.80925 15.7689 9.40387L14.3319 7.9975Z" fill="#3492C8"></path>
</svg>
</p>
<a class="user-profile-link" href="profile.html">Открыть профиль</a>
</div>
</div>
<ul class="dropdown-profile-content">
<a href="login.html"><li>Вход</li></a>
<a href="register.html"><li>Регистрация</li></a>
<a class="border-top" href="logout"><li>Выход</li></a>
</ul>
</div>
</div>
<h3 class="more-info-right-block-text-h3">Аниме</h3>
<p class="more-info-right-block-text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Error magnam maxime optio porro sapiente sint velit voluptas!
Culpa debitis esse et expedita necessitatibus, non numquam perferendis tempora totam vero.
Dicta?
</p>
<div class="more-category-post">
<div class="more-category-post-left">
<div class="post-category-row">
<img src="assets/images/logo.png">
<p>Просмотров:</p>
<p class="post-category-num">37</p>
</div>
<div class="post-category-row">
<img src="assets/images/logo.png">
<p>Скачиваний:</p>
<p class="post-category-num">5</p>
</div>
<div class="post-category-row">
<img src="assets/images/logo.png">
<p>Лайков:</p>
<p class="post-category-num">1</p>
</div>
</div>
<div class="more-category-post-right">
<div class="post-category-row">
<img src="assets/images/logo.png">
<div class="post-more-category-row">
<a href="#"><p>Машины</p></a>
<a href="#"><p>Машины</p></a>
<a href="#"><p>Машины</p></a>
</div>
</div>
<div class="post-category-row">
<img src="assets/images/logo.png">
<div class="post-more-category-row">
<a href="#"><p>Кошки</p></a>
<a href="#"><p>Инопланетяне</p></a>
<a href="#"><p>Машины</p></a>
<a href="#"><p>Космос</p></a>
<a href="#"><p>Посуда</p></a>
</div>
</div>
</div>
</div>
<div class="submit-post-image">
<div class="submit-post-input">
<div class="submit-post-input-left">
<input class="input-download" type="submit" value="Загрузить" title="Загрузить">
<button class="input-like" title="like">
<svg width="30" height="30" viewBox="0 0 22 24" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.3425 7.77795C3.56865 7.23198 3.90012 6.7359 4.31799 6.31804C4.73586 5.90017 5.23194 5.5687 5.7779 5.34255C6.32387 5.1164 6.90904 5 7.49999 5C8.09095 5 8.67611 5.1164 9.22208 5.34255C9.76805 5.5687 10.2641 5.90017 10.682 6.31804L12 7.63604L13.318 6.31804C14.1619 5.47412 15.3065 5.00001 16.5 5.00001C17.6935 5.00001 18.8381 5.47412 19.682 6.31804C20.5259 7.16196 21 8.30656 21 9.50004C21 10.6935 20.5259 11.8381 19.682 12.682L12 20.364L4.31799 12.682C3.90012 12.2642 3.56865 11.7681 3.3425 11.2221C3.11635 10.6762 2.99995 10.091 2.99995 9.50004C2.99995 8.90909 3.11635 8.32392 3.3425 7.77795Z"/>
</svg>
</button>
</div>
<div class="submit-post-input-right">
<a class="input-add_collection" href="#openModal" title="Добавить в коллекцию">Добавить в коллекцию</a>
<div id="openModal" class="modalDialog">
<div>
<a href="#close" id="close" title="Закрыть" class="close">
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
<path d="M6 6L18 18M6 18L18 6L6 18Z"/>
</svg>
</a>
<h2 class="h2-collection">Коллекции</h2>
<form action="">
<div class="collection-row">
<label for="">Создайте коллекцию</label>
<input type="text" placeholder="Машины">
</div>
<div class="collection-row">
<label for="">Выберите необходимую коллекцию</label>
<select name="" id="collection">
<option value="">Кошки</option>
<option value="">Аниме</option>
<option value="">Природа</option>
</select>
</div>
<small>Добавляйте тему в уже созданную коллекцию или создайте новую</small>
<div class="input-select">
<button>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5 13L9 17L19 7" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
</div>
</form>
</div>
</div>
<button class="input-star" titl`e="Добавить в избранное">
<svg width="30" height="30" viewBox="0 0 22 24" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
<path d="M12.951 2.92708C12.652 2.00608 11.349 2.00608 11.049 2.92708L9.53 7.60108C9.46458 7.80173 9.33735 7.97654 9.16653 8.10048C8.99571 8.22442 8.79005 8.29113 8.579 8.29108H3.665C2.697 8.29108 2.293 9.53108 3.077 10.1011L7.053 12.9891C7.2238 13.1132 7.3509 13.2883 7.41611 13.4891C7.48132 13.6899 7.48128 13.9063 7.416 14.1071L5.898 18.7811C5.598 19.7021 6.653 20.4691 7.436 19.8991L11.412 17.0111C11.5829 16.8869 11.7887 16.8199 12 16.8199C12.2113 16.8199 12.4171 16.8869 12.588 17.0111L16.564 19.8991C17.347 20.4691 18.402 19.7031 18.102 18.7811L16.584 14.1071C16.5187 13.9063 16.5187 13.6899 16.5839 13.4891C16.6491 13.2883 16.7762 13.1132 16.947 12.9891L20.923 10.1011C21.706 9.53108 21.304 8.29108 20.335 8.29108H15.42C15.2091 8.29092 15.0037 8.22411 14.8331 8.10018C14.6625 7.97626 14.5354 7.80157 14.47 7.60108L12.951 2.92708Z"/>
</svg>
</button>
</div>
</div>
<div class="submit-post-input-guest">
<div class="submit-post-input-left">
<input class="input-download" type="submit" value="Загрузить" title="Загрузить">
<button class="input-like" title="like">
<svg width="30" height="30" viewBox="0 0 22 24" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M3.3425 7.77795C3.56865 7.23198 3.90012 6.7359 4.31799 6.31804C4.73586 5.90017 5.23194 5.5687 5.7779 5.34255C6.32387 5.1164 6.90904 5 7.49999 5C8.09095 5 8.67611 5.1164 9.22208 5.34255C9.76805 5.5687 10.2641 5.90017 10.682 6.31804L12 7.63604L13.318 6.31804C14.1619 5.47412 15.3065 5.00001 16.5 5.00001C17.6935 5.00001 18.8381 5.47412 19.682 6.31804C20.5259 7.16196 21 8.30656 21 9.50004C21 10.6935 20.5259 11.8381 19.682 12.682L12 20.364L4.31799 12.682C3.90012 12.2642 3.56865 11.7681 3.3425 11.2221C3.11635 10.6762 2.99995 10.091 2.99995 9.50004C2.99995 8.90909 3.11635 8.32392 3.3425 7.77795Z"/>
</svg>
</button>
</div>
<div class="submit-post-input-right">
<a class="input-add_collection" href="#openmodalguest">Добавить в коллекцию</a>
<a href="#openmodalguest" class="input-star">
<button class="input-star" title="Добавить в избранное">
<svg width="30" height="30" viewBox="0 0 22 24" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg">
<path d="M12.951 2.92708C12.652 2.00608 11.349 2.00608 11.049 2.92708L9.53 7.60108C9.46458 7.80173 9.33735 7.97654 9.16653 8.10048C8.99571 8.22442 8.79005 8.29113 8.579 8.29108H3.665C2.697 8.29108 2.293 9.53108 3.077 10.1011L7.053 12.9891C7.2238 13.1132 7.3509 13.2883 7.41611 13.4891C7.48132 13.6899 7.48128 13.9063 7.416 14.1071L5.898 18.7811C5.598 19.7021 6.653 20.4691 7.436 19.8991L11.412 17.0111C11.5829 16.8869 11.7887 16.8199 12 16.8199C12.2113 16.8199 12.4171 16.8869 12.588 17.0111L16.564 19.8991C17.347 20.4691 18.402 19.7031 18.102 18.7811L16.584 14.1071C16.5187 13.9063 16.5187 13.6899 16.5839 13.4891C16.6491 13.2883 16.7762 13.1132 16.947 12.9891L20.923 10.1011C21.706 9.53108 21.304 8.29108 20.335 8.29108H15.42C15.2091 8.29092 15.0037 8.22411 14.8331 8.10018C14.6625 7.97626 14.5354 7.80157 14.47 7.60108L12.951 2.92708Z"/>
</svg>
</button>
</a>
<div class="modal-guest" id="openModalGuest">
<div class="modal-guest"></div>
</div>
</div>
</div>
<p><a class="rule-link" href="site_rules.html">Соблюдайте правила сайта</a> и делитесь изображением в социальных сетях</p>
</div>
</div>
</div>
<div class="advertisement">
</div>
<div class="row-img">
<div class="hover-image">
<img class="hover-img" src="assets/images/anime/2.jpg">
<div class="info">
<div class="item-icons">
<svg width="24" height="25" viewBox="0 0 24 25" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_293)">
<path d="M18.817 5.53528C16.1492 0.993952 8.32434 0 8.32434 0C8.32434 0 11.935 3.78387 7.32079 6.77601C4.40299 8.66452 3.24944 11.1185 4.49941 13.7988C5.45654 15.8518 7.4815 16.6881 9.6636 17C8.62076 15.1115 9.42789 12.8048 9.51717 12.5581C11.5564 15.5194 15.4099 12.5581 13.4742 9.33972C16.0099 9.86754 16.3885 14.0901 14.4421 16.7258C17.317 15.8587 19.2313 13.6788 19.7563 11.7355C20.3098 9.70302 19.8884 7.35181 18.817 5.53528Z"
fill="#F05454"/>
</g>
<defs>
<filter id="filter0_d_206_293" x="0" y="0" width="24" height="25"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_293"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_293"
result="shape"/>
</filter>
</defs>
</svg>
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_294)">
<path d="M11.588 0.556577L9.51309 4.69357L4.87067 5.35911C4.03815 5.47784 3.7045 6.48709 4.30824 7.06515L7.66692 10.2835L6.87253 14.8298C6.72954 15.6516 7.60973 16.2671 8.34692 15.8828L12.5 13.7362L16.6531 15.8828C17.3903 16.264 18.2705 15.6516 18.1275 14.8298L17.3331 10.2835L20.6918 7.06515C21.2955 6.48709 20.9619 5.47784 20.1293 5.35911L15.4869 4.69357L13.412 0.556577C13.0402 -0.180831 11.963 -0.190205 11.588 0.556577Z"
fill="#FFDD93"/>
</g>
<defs>
<filter id="filter0_d_206_294" x="0" y="0" width="25" height="24"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_294"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_294"
result="shape"/>
</filter>
</defs>
</svg>
</div>
<p>One Day</p>
<div class="info-profile">
<a href="profile.html">
<img src="assets/images/logo-user.png">
<h4>RaBerryOn</h4>
</a>
</div>
</div>
</div>
<div class="hover-image">
<img class="hover-img" src="assets/images/anime/1.png">
<div class="info">
<div class="item-icons">
<svg width="24" height="25" viewBox="0 0 24 25" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_293)">
<path d="M18.817 5.53528C16.1492 0.993952 8.32434 0 8.32434 0C8.32434 0 11.935 3.78387 7.32079 6.77601C4.40299 8.66452 3.24944 11.1185 4.49941 13.7988C5.45654 15.8518 7.4815 16.6881 9.6636 17C8.62076 15.1115 9.42789 12.8048 9.51717 12.5581C11.5564 15.5194 15.4099 12.5581 13.4742 9.33972C16.0099 9.86754 16.3885 14.0901 14.4421 16.7258C17.317 15.8587 19.2313 13.6788 19.7563 11.7355C20.3098 9.70302 19.8884 7.35181 18.817 5.53528Z"
fill="#F05454"/>
</g>
<defs>
<filter id="filter0_d_206_293" x="0" y="0" width="24" height="25"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_293"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_293"
result="shape"/>
</filter>
</defs>
</svg>
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_294)">
<path d="M11.588 0.556577L9.51309 4.69357L4.87067 5.35911C4.03815 5.47784 3.7045 6.48709 4.30824 7.06515L7.66692 10.2835L6.87253 14.8298C6.72954 15.6516 7.60973 16.2671 8.34692 15.8828L12.5 13.7362L16.6531 15.8828C17.3903 16.264 18.2705 15.6516 18.1275 14.8298L17.3331 10.2835L20.6918 7.06515C21.2955 6.48709 20.9619 5.47784 20.1293 5.35911L15.4869 4.69357L13.412 0.556577C13.0402 -0.180831 11.963 -0.190205 11.588 0.556577Z"
fill="#FFDD93"/>
</g>
<defs>
<filter id="filter0_d_206_294" x="0" y="0" width="25" height="24"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_294"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_294"
result="shape"/>
</filter>
</defs>
</svg>
</div>
<p>One Day</p>
<div class="info-profile">
<a href="profile.html">
<img src="assets/images/logo-user.png">
<h4>RaBerryOn</h4>
</a>
</div>
</div>
</div>
<div class="hover-image active-hover-image">
<img class="hover-img " src="assets/images/anime/3.jpg">
<div class="info"> <!--info active-hover-image-->
<div class="favourites">
<img src="assets/images/icons/star-favourites.svg">
</div>
<p>One Day</p>
<div class="info-profile">
<a href="profile.html">
<img src="assets/images/logo-user.png">
<h4>RaBerryOn</h4>
</a>
</div>
</div>
</div>
<div class="hover-image">
<img class="hover-img" src="assets/images/anime/4.jpg">
<div class="info">
<div class="item-icons">
<svg width="24" height="25" viewBox="0 0 24 25" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_293)">
<path d="M18.817 5.53528C16.1492 0.993952 8.32434 0 8.32434 0C8.32434 0 11.935 3.78387 7.32079 6.77601C4.40299 8.66452 3.24944 11.1185 4.49941 13.7988C5.45654 15.8518 7.4815 16.6881 9.6636 17C8.62076 15.1115 9.42789 12.8048 9.51717 12.5581C11.5564 15.5194 15.4099 12.5581 13.4742 9.33972C16.0099 9.86754 16.3885 14.0901 14.4421 16.7258C17.317 15.8587 19.2313 13.6788 19.7563 11.7355C20.3098 9.70302 19.8884 7.35181 18.817 5.53528Z"
fill="#F05454"/>
</g>
<defs>
<filter id="filter0_d_206_293" x="0" y="0" width="24" height="25"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_293"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_293"
result="shape"/>
</filter>
</defs>
</svg>
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_294)">
<path d="M11.588 0.556577L9.51309 4.69357L4.87067 5.35911C4.03815 5.47784 3.7045 6.48709 4.30824 7.06515L7.66692 10.2835L6.87253 14.8298C6.72954 15.6516 7.60973 16.2671 8.34692 15.8828L12.5 13.7362L16.6531 15.8828C17.3903 16.264 18.2705 15.6516 18.1275 14.8298L17.3331 10.2835L20.6918 7.06515C21.2955 6.48709 20.9619 5.47784 20.1293 5.35911L15.4869 4.69357L13.412 0.556577C13.0402 -0.180831 11.963 -0.190205 11.588 0.556577Z"
fill="#FFDD93"/>
</g>
<defs>
<filter id="filter0_d_206_294" x="0" y="0" width="25" height="24"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_294"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_294"
result="shape"/>
</filter>
</defs>
</svg>
</div>
<p>One Day</p>
<div class="info-profile">
<a href="profile.html">
<img src="assets/images/logo-user.png">
<h4>RaBerryOn</h4>
</a>
</div>
</div>
</div>
<div class="hover-image">
<img class="hover-img" src="assets/images/anime/2.jpg">
<div class="info">
<div class="item-icons">
<svg width="24" height="25" viewBox="0 0 24 25" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_293)">
<path d="M18.817 5.53528C16.1492 0.993952 8.32434 0 8.32434 0C8.32434 0 11.935 3.78387 7.32079 6.77601C4.40299 8.66452 3.24944 11.1185 4.49941 13.7988C5.45654 15.8518 7.4815 16.6881 9.6636 17C8.62076 15.1115 9.42789 12.8048 9.51717 12.5581C11.5564 15.5194 15.4099 12.5581 13.4742 9.33972C16.0099 9.86754 16.3885 14.0901 14.4421 16.7258C17.317 15.8587 19.2313 13.6788 19.7563 11.7355C20.3098 9.70302 19.8884 7.35181 18.817 5.53528Z"
fill="#F05454"/>
</g>
<defs>
<filter id="filter0_d_206_293" x="0" y="0" width="24" height="25"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_293"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_293"
result="shape"/>
</filter>
</defs>
</svg>
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_294)">
<path d="M11.588 0.556577L9.51309 4.69357L4.87067 5.35911C4.03815 5.47784 3.7045 6.48709 4.30824 7.06515L7.66692 10.2835L6.87253 14.8298C6.72954 15.6516 7.60973 16.2671 8.34692 15.8828L12.5 13.7362L16.6531 15.8828C17.3903 16.264 18.2705 15.6516 18.1275 14.8298L17.3331 10.2835L20.6918 7.06515C21.2955 6.48709 20.9619 5.47784 20.1293 5.35911L15.4869 4.69357L13.412 0.556577C13.0402 -0.180831 11.963 -0.190205 11.588 0.556577Z"
fill="#FFDD93"/>
</g>
<defs>
<filter id="filter0_d_206_294" x="0" y="0" width="25" height="24"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_294"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_294"
result="shape"/>
</filter>
</defs>
</svg>
</div>
<p>One Day</p>
<div class="info-profile">
<a href="profile.html">
<img src="assets/images/logo-user.png">
<h4>RaBerryOn</h4>
</a>
</div>
</div>
</div>
<div class="hover-image">
<img class="hover-img" src="assets/images/anime/1.png">
<div class="info">
<div class="item-icons">
<svg width="24" height="25" viewBox="0 0 24 25" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_293)">
<path d="M18.817 5.53528C16.1492 0.993952 8.32434 0 8.32434 0C8.32434 0 11.935 3.78387 7.32079 6.77601C4.40299 8.66452 3.24944 11.1185 4.49941 13.7988C5.45654 15.8518 7.4815 16.6881 9.6636 17C8.62076 15.1115 9.42789 12.8048 9.51717 12.5581C11.5564 15.5194 15.4099 12.5581 13.4742 9.33972C16.0099 9.86754 16.3885 14.0901 14.4421 16.7258C17.317 15.8587 19.2313 13.6788 19.7563 11.7355C20.3098 9.70302 19.8884 7.35181 18.817 5.53528Z"
fill="#F05454"/>
</g>
<defs>
<filter id="filter0_d_206_293" x="0" y="0" width="24" height="25"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_293"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_293"
result="shape"/>
</filter>
</defs>
</svg>
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_294)">
<path d="M11.588 0.556577L9.51309 4.69357L4.87067 5.35911C4.03815 5.47784 3.7045 6.48709 4.30824 7.06515L7.66692 10.2835L6.87253 14.8298C6.72954 15.6516 7.60973 16.2671 8.34692 15.8828L12.5 13.7362L16.6531 15.8828C17.3903 16.264 18.2705 15.6516 18.1275 14.8298L17.3331 10.2835L20.6918 7.06515C21.2955 6.48709 20.9619 5.47784 20.1293 5.35911L15.4869 4.69357L13.412 0.556577C13.0402 -0.180831 11.963 -0.190205 11.588 0.556577Z"
fill="#FFDD93"/>
</g>
<defs>
<filter id="filter0_d_206_294" x="0" y="0" width="25" height="24"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_294"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_294"
result="shape"/>
</filter>
</defs>
</svg>
</div>
<p>One Day</p>
<div class="info-profile">
<a href="profile.html">
<img src="assets/images/logo-user.png">
<h4>RaBerryOn</h4>
</a>
</div>
</div>
</div>
<div class="hover-image">
<img class="hover-img" src="assets/images/anime/3.jpg">
<div class="info">
<div class="item-icons">
<svg width="24" height="25" viewBox="0 0 24 25" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_293)">
<path d="M18.817 5.53528C16.1492 0.993952 8.32434 0 8.32434 0C8.32434 0 11.935 3.78387 7.32079 6.77601C4.40299 8.66452 3.24944 11.1185 4.49941 13.7988C5.45654 15.8518 7.4815 16.6881 9.6636 17C8.62076 15.1115 9.42789 12.8048 9.51717 12.5581C11.5564 15.5194 15.4099 12.5581 13.4742 9.33972C16.0099 9.86754 16.3885 14.0901 14.4421 16.7258C17.317 15.8587 19.2313 13.6788 19.7563 11.7355C20.3098 9.70302 19.8884 7.35181 18.817 5.53528Z"
fill="#F05454"/>
</g>
<defs>
<filter id="filter0_d_206_293" x="0" y="0" width="24" height="25"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_293"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_293"
result="shape"/>
</filter>
</defs>
</svg>
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_294)">
<path d="M11.588 0.556577L9.51309 4.69357L4.87067 5.35911C4.03815 5.47784 3.7045 6.48709 4.30824 7.06515L7.66692 10.2835L6.87253 14.8298C6.72954 15.6516 7.60973 16.2671 8.34692 15.8828L12.5 13.7362L16.6531 15.8828C17.3903 16.264 18.2705 15.6516 18.1275 14.8298L17.3331 10.2835L20.6918 7.06515C21.2955 6.48709 20.9619 5.47784 20.1293 5.35911L15.4869 4.69357L13.412 0.556577C13.0402 -0.180831 11.963 -0.190205 11.588 0.556577Z"
fill="#FFDD93"/>
</g>
<defs>
<filter id="filter0_d_206_294" x="0" y="0" width="25" height="24"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_294"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_294"
result="shape"/>
</filter>
</defs>
</svg>
</div>
<p>One Day</p>
<div class="info-profile">
<a href="profile.html">
<img src="assets/images/logo-user.png">
<h4>RaBerryOn</h4>
</a>
</div>
</div>
</div>
<div class="hover-image">
<img class="hover-img" src="assets/images/anime/4.jpg">
<div class="info">
<div class="item-icons">
<svg width="24" height="25" viewBox="0 0 24 25" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_293)">
<path d="M18.817 5.53528C16.1492 0.993952 8.32434 0 8.32434 0C8.32434 0 11.935 3.78387 7.32079 6.77601C4.40299 8.66452 3.24944 11.1185 4.49941 13.7988C5.45654 15.8518 7.4815 16.6881 9.6636 17C8.62076 15.1115 9.42789 12.8048 9.51717 12.5581C11.5564 15.5194 15.4099 12.5581 13.4742 9.33972C16.0099 9.86754 16.3885 14.0901 14.4421 16.7258C17.317 15.8587 19.2313 13.6788 19.7563 11.7355C20.3098 9.70302 19.8884 7.35181 18.817 5.53528Z"
fill="#F05454"/>
</g>
<defs>
<filter id="filter0_d_206_293" x="0" y="0" width="24" height="25"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_293"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_293"
result="shape"/>
</filter>
</defs>
</svg>
<svg width="25" height="24" viewBox="0 0 25 24" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g filter="url(#filter0_d_206_294)">
<path d="M11.588 0.556577L9.51309 4.69357L4.87067 5.35911C4.03815 5.47784 3.7045 6.48709 4.30824 7.06515L7.66692 10.2835L6.87253 14.8298C6.72954 15.6516 7.60973 16.2671 8.34692 15.8828L12.5 13.7362L16.6531 15.8828C17.3903 16.264 18.2705 15.6516 18.1275 14.8298L17.3331 10.2835L20.6918 7.06515C21.2955 6.48709 20.9619 5.47784 20.1293 5.35911L15.4869 4.69357L13.412 0.556577C13.0402 -0.180831 11.963 -0.190205 11.588 0.556577Z"
fill="#FFDD93"/>
</g>
<defs>
<filter id="filter0_d_206_294" x="0" y="0" width="25" height="24"
filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="2"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
<feBlend mode="normal" in2="BackgroundImageFix"
result="effect1_dropShadow_206_294"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_206_294"
result="shape"/>
</filter>
</defs>
</svg>
</div>
<p>One Day</p>
<div class="info-profile">
<a href="profile.html">
<img src="assets/images/logo-user.png">
<h4>RaBerryOn</h4>
</a>
</div>
</div>
</div>
</div>
</div>
</main>
<a href="#" class="scroll_top" id="scroll_top" title="Наверх"></a>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>-->
<!--<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>-->
<!--<script src="assets/js/onclick.js"></script>-->
<script src="assets/js/btn_up-down.js"></script>
<script src="https://kit.fontawesome.com/a5a9f64acd.js" crossorigin="anonymous"></script>
<script defer src="assets/js/simple-adaptive-slider.js"></script>
<script src="assets/js/infinite-scrolling.js"></script>
<script src="assets/js/close_scroll.js"></script>
</body>
</html>