-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1875 lines (1821 loc) · 110 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
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
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
href="FindUrFix%20Favicon%20RGB.png"
sizes="16x16"
type="image/png"
/>
<link
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet"
/>
<title>FindUrFix</title>
</head>
<body>
<style>
body{
cursor: pointer;
}
</style>
<header class="text-gray-700 body-font">
<div
class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center"
>
<a
class="flex title-font font-medium items-center text-gray-900 mb-4 md:mb-0"
>
<img
src="FindUrFix%20Black%20Logo%20RGB.png"
width="150px"
height="200px"
/>
<!-- <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-10 h-10 text-white p-2 bg-teal-500 rounded-full" viewBox="0 0 24 24">
<path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"></path>
</svg>
<span class="ml-3 text-xl">FindUrFix</span>-->
</a>
<nav
class="md:ml-auto flex flex-wrap items-center text-base justify-center"
>
<a href="#soumya" class="mr-1 hover:text-gray-900" style="color:black;"><b>How it Works?</b></a>
<div class="p-10">
<div class="dropdown inline-block relative">
<button class="bg-gray-300 text-gray-700 py-2 px-4 rounded inline-flex items-center">
<span class="mr-1 hover:text-gray-900" style="color:black;"><b>Categories</b></span>
<svg class="fill-current h-4 w-4" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z"/> </svg>
</button>
<ul class="dropdown-menu absolute hidden text-gray-700 pt-1">
<li class=""><a class="rounded-t bg-gray-200 hover:bg-gray-400 py-2 px-4 block whitespace-no-wrap" href="#1"><b>Movies</b></a></li>
<li class=""><a class="bg-gray-200 hover:bg-gray-400 py-2 px-4 block whitespace-no-wrap" href="#2"><b>TV Shows</b></a></li>
<li class=""><a class="rounded-b bg-gray-200 hover:bg-gray-400 py-2 px-4 block whitespace-no-wrap" href="#3"><b>Books</b></a></li>
<li class=""><a class="rounded-b bg-gray-200 hover:bg-gray-400 py-2 px-4 block whitespace-no-wrap" href="#4"><b>Music</b></a></li>
</ul>
</div>
</div>
<!-- <a class="mr-5 hover:text-gray-900">Our App</a>-->
<a href="#first" class="mr-5 hover:text-gray-900" style="color:black;"><b>Our Story</b></a>
<!-- <a href="#keyword" class="mr-5 hover:text-gray-900">Keywords</a> -->
<a id="con" href="#contact" class="mr-5 hover:text-gray-900" style="color:black;"><b>Contact Us</b></a>
</nav>
<button
class="inline-flex items-center bg-gray-200 border-0 py-1 px-3 focus:outline-none hover:bg-gray-300 rounded text-base mt-4 md:mt-0" style="color:black;"
>
<b>Download App</b>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-1"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
</div>
<style>
.py-24 {
padding-top: 4rem;
padding-bottom: 4rem;
}
.p-10 {
padding: 0;
}
.bg-gray-300 {
/* --bg-opacity: 1; */
background-color:#fff;
}
.dropdown:hover .dropdown-menu {
display: block;
}
*, ::after, ::before {
/* box-sizing: border-box; */
border-width: 0;
border-style: solid;
border-color: #e2e8f0;
}
</style>
</header>
<section class="text-gray-700 body-font f" style=" height:90vh;display:flex;background-size:cover background-repeat: no-repeat;background-size:100% 100%; width: auto;
" >
<style>
@media (max-width: 768px) {
.f {
height:75vh !important;
background-image:url('bg-mobile.png') !important;
}
#con{
margin-left: 12px;
}
}
.f{
background-image:url('bg-head.png');
}
</style>
<div
class="container mx-auto flex px-5 py-8 md:flex-row flex-col items-center" style="display:flex;"
>
<div
class="lg:flex-grow md:w-1/2 lg:pr-24 md:pr-16 flex flex-col md:items-start md:text-left mb-16 md:mb-0 items-center text-center" style="margin: auto;padding:0 !important;"
>
<h1
class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900" style="color: white;"
>
<b>When you're binge-ing and wondering 'Whats next?'</b>
</h1>
<p
class="mb-8 leading-relaxed"
style="text-align: justify !important;color:#EDF2F7;"
>
A community of like minded people, with similar tastes who are
willing to share movies, books, music and shows that they're
passionate about, with anybody who is willing to give them a listen.
Help people find their fix, and they'll help you find yours!
</p>
<!-- <div class="flex w-full md:justify-start justify-center">
<input class="bg-gray-100 rounded mr-4 border border-gray-400 focus:outline-none focus:border-teal-500 text-base px-4 lg:w-full xl:w-1/2 w-2/4 md:w-full" placeholder="Placeholder" type="text">
<button class="inline-flex text-white bg-teal-500 border-0 py-2 px-6 focus:outline-none hover:bg-teal-600 rounded text-lg">Button</button>
</div>
<p class="text-sm mt-2 text-gray-500 mb-8 w-full">Neutra shabby chic ramps, viral fixie.</p>-->
<div class="flex lg:flex-row md:flex-col">
<button
class="bg-gray-200 inline-flex py-3 px-5 rounded-lg items-center hover:bg-gray-300 focus:outline-none"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
class="w-6 h-6"
viewBox="0 0 512 512"
>
<path
d="M99.617 8.057a50.191 50.191 0 00-38.815-6.713l230.932 230.933 74.846-74.846L99.617 8.057zM32.139 20.116c-6.441 8.563-10.148 19.077-10.148 30.199v411.358c0 11.123 3.708 21.636 10.148 30.199l235.877-235.877L32.139 20.116zM464.261 212.087l-67.266-37.637-81.544 81.544 81.548 81.548 67.273-37.64c16.117-9.03 25.738-25.442 25.738-43.908s-9.621-34.877-25.749-43.907zM291.733 279.711L60.815 510.629c3.786.891 7.639 1.371 11.492 1.371a50.275 50.275 0 0027.31-8.07l266.965-149.372-74.849-74.847z"
></path>
</svg>
<span class="ml-4 flex items-start flex-col leading-none">
<span class="text-xs text-gray-600 mb-1">Get it on</span>
<span class="title-font font-medium">Google Play</span>
</span>
</button>
<button
class="bg-gray-200 inline-flex py-3 px-5 rounded-lg items-center lg:ml-4 md:ml-0 ml-4 md:mt-4 mt-0 lg:mt-0 hover:bg-gray-300 focus:outline-none"
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
class="w-6 h-6"
viewBox="0 0 305 305"
>
<path
d="M40.74 112.12c-25.79 44.74-9.4 112.65 19.12 153.82C74.09 286.52 88.5 305 108.24 305c.37 0 .74 0 1.13-.02 9.27-.37 15.97-3.23 22.45-5.99 7.27-3.1 14.8-6.3 26.6-6.3 11.22 0 18.39 3.1 25.31 6.1 6.83 2.95 13.87 6 24.26 5.81 22.23-.41 35.88-20.35 47.92-37.94a168.18 168.18 0 0021-43l.09-.28a2.5 2.5 0 00-1.33-3.06l-.18-.08c-3.92-1.6-38.26-16.84-38.62-58.36-.34-33.74 25.76-51.6 31-54.84l.24-.15a2.5 2.5 0 00.7-3.51c-18-26.37-45.62-30.34-56.73-30.82a50.04 50.04 0 00-4.95-.24c-13.06 0-25.56 4.93-35.61 8.9-6.94 2.73-12.93 5.09-17.06 5.09-4.64 0-10.67-2.4-17.65-5.16-9.33-3.7-19.9-7.9-31.1-7.9l-.79.01c-26.03.38-50.62 15.27-64.18 38.86z"
></path>
<path
d="M212.1 0c-15.76.64-34.67 10.35-45.97 23.58-9.6 11.13-19 29.68-16.52 48.38a2.5 2.5 0 002.29 2.17c1.06.08 2.15.12 3.23.12 15.41 0 32.04-8.52 43.4-22.25 11.94-14.5 17.99-33.1 16.16-49.77A2.52 2.52 0 00212.1 0z"
></path>
</svg>
<span class="ml-4 flex items-start flex-col leading-none">
<span class="text-xs text-gray-600 mb-1">Download on the</span>
<span class="title-font font-medium">App Store</span>
</span>
</button>
</div>
</div>
<div class="lg:max-w-lg lg:w-full md:w-1/2 w-5/6" style="display: flex;">
<img
class="object-cover object-center rounded" id="phone"
width="500px"
height="500px"
style="margin: auto;"
alt="hero"
src="newphone.png"
/>
<style>
@media (max-width: 768px) {
#phone {
display:none;
}
}
</style>
</div>
</div>
</section>
<section id="soumya" class="text-gray-700 body-font">
<h1
class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900" style="text-align: center;margin:auto auto -35px auto;"
>
<b>How it Works?</b>
</h1>
<div class="container px-5 py-20 mx-auto flex flex-wrap">
<div class="flex relative pt-10 pb-20 sm:items-center md:w-2/3 mx-auto">
<div
class="h-full w-6 absolute inset-0 flex items-center justify-center"
>
<div class="h-full w-1 bg-gray-200 pointer-events-none"></div>
</div>
<div
class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-teal-500 text-white relative z-10 title-font font-medium text-sm"
>
1
</div>
<div
class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row"
>
<div
class="flex-shrink-0 w-24 h-24 bg-teal-100 text-teal-500 rounded-full inline-flex items-center justify-center"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-12 h-12"
viewBox="0 0 24 24"
>
<img src="signup.png" style="max-width: 100%; border-radius: 50%;">
</svg>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-gray-900 mb-1 text-xl">
Log In/Sign Up
</h2>
<p class="leading-relaxed">
Download our app from the Appstore/Playstore and create an account. Pick a super unique username and choose an avatar that matches your personality best.
</p>
</div>
</div>
</div>
<div class="flex relative pb-20 sm:items-center md:w-2/3 mx-auto">
<div
class="h-full w-6 absolute inset-0 flex items-center justify-center"
>
<div class="h-full w-1 bg-gray-200 pointer-events-none"></div>
</div>
<div
class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-teal-500 text-white relative z-10 title-font font-medium text-sm"
>
2
</div>
<div
class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row"
>
<div
class="flex-shrink-0 w-24 h-24 bg-teal-100 text-teal-500 rounded-full inline-flex items-center justify-center"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-12 h-12"
viewBox="0 0 24 24"
>
<img src="category.png" style="max-width: 100%; border-radius: 50%;">
<circle cx="12" cy="5" r="3"></circle>
<path d="M12 22V8M5 12H2a10 10 0 0020 0h-3"></path>
</svg>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-gray-900 mb-1 text-xl">
Category Selection
</h2>
<p class="leading-relaxed">
You can choose to be a mentor or a mentee for genres of books, movies, TV shows and music of your choice. And don't worry, you can always change your selections.
</p>
</div>
</div>
</div>
<div class="flex relative pb-20 sm:items-center md:w-2/3 mx-auto">
<div
class="h-full w-6 absolute inset-0 flex items-center justify-center"
>
<div class="h-full w-1 bg-gray-200 pointer-events-none"></div>
</div>
<div
class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-teal-500 text-white relative z-10 title-font font-medium text-sm"
>
3
</div>
<div
class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row"
>
<div
class="flex-shrink-0 w-24 h-24 bg-teal-100 text-teal-500 rounded-full inline-flex items-center justify-center"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-12 h-12"
viewBox="0 0 24 24"
>
<img src="Interact.png" style="max-width: 100%; border-radius: 50%;">
<path d="M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2"></path>
<circle cx="12" cy="7" r="4"></circle>
</svg>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-gray-900 mb-1 text-xl">
Interact
</h2>
<p class="leading-relaxed">
We'll match you to mentors and mentees in your chosen categories and you can start conversing with them immediately. You can get matched with new mentors, go back to old ones, talk to new mentees and much more.
</p>
</div>
</div>
</div>
<div class="flex relative pb-10 sm:items-center md:w-2/3 mx-auto">
<div
class="h-full w-6 absolute inset-0 flex items-center justify-center"
>
<div class="h-full w-1 bg-gray-200 pointer-events-none"></div>
</div>
<div
class="flex-shrink-0 w-6 h-6 rounded-full mt-10 sm:mt-0 inline-flex items-center justify-center bg-teal-500 text-white relative z-10 title-font font-medium text-sm"
>
4
</div>
<div
class="flex-grow md:pl-8 pl-6 flex sm:items-center items-start flex-col sm:flex-row"
>
<div
class="flex-shrink-0 w-24 h-24 bg-teal-100 text-teal-500 rounded-full inline-flex items-center justify-center"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-12 h-12"
viewBox="0 0 24 24"
>
<img src="Explore.png" style="max-width: 100%; border-radius: 50%;">
<path d="M22 12h-4l-3 9L9 3l-3 9H2"></path>
</svg>
</div>
<div class="flex-grow sm:pl-6 mt-6 sm:mt-0">
<h2 class="font-medium title-font text-gray-900 mb-1 text-xl">
Explore
</h2>
<p class="leading-relaxed">
Our home page exists so you can explore tastes and share your interests with our bingeverse. Post, comment, recommend and let your passions fly!
</p>
</div>
</div>
</div>
</div>
</section>
<section id="keyword" class="text-gray-700 body-font" id="adj"style="display:flex;background-image: url('key.png'); background-repeat: no-repeat;background-size: 100% ;
"
>
<div class="container px-5 py-24 mx-auto" style="margin: auto;">
<h1
class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900" style="text-align: center;margin:auto auto 80px auto; color: white;"
>
<b>Often used Keywords on FindUrFix App</b>
</h1>
<div class="flex flex-wrap sm:-m-4 -mx-4 -mb-10 -mt-4">
<div class="p-4 md:w-1/3 md:mb-0 mb-6 flex">
<div class="w-12 h-12 inline-flex items-center justify-center rounded-full bg-teal-100 text-teal-500 mb-4 flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-6 h-6" viewBox="0 0 24 24">
<path d="M22 12h-4l-3 9L9 3l-3 9H2"></path>
</svg>
<img src="Bingeverse.png" style="max-width: 150%; border-radius: 50%;">
</div>
<div class="flex-grow pl-6 wt">
<h2 class="text-gray-900 text-lg title-font font-medium mb-2 wt" >Bingeverse</h2>
<p class="leading-relaxed text-base">Our amazing community of mentors and mentees who share their passions, interests and recommendations for books, music, movies and TV shows with each other. </p>
<!--
<a class="mt-3 text-teal-500 inline-flex items-center">Learn More
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 ml-2" viewBox="0 0 24 24">
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
-->
</div>
</div>
<div class="p-4 md:w-1/3 md:mb-0 mb-6 flex">
<div class="w-12 h-12 inline-flex items-center justify-center rounded-full bg-teal-100 text-teal-500 mb-4 flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-6 h-6" viewBox="0 0 24 24">
<circle cx="6" cy="6" r="3"></circle>
<circle cx="6" cy="18" r="3"></circle>
<path d="M20 4L8.12 15.88M14.47 14.48L20 20M8.12 8.12L12 12"></path>
</svg>
<img src="Mentor.png" style="max-width: 150%; border-radius: 50%;">
</div>
<div class="flex-grow pl-6 wt" >
<h2 class="text-gray-900 text-lg title-font font-medium mb-2 wt" >Mentor's</h2>
<p class="leading-relaxed text-base">Meet our saviors, giving us recommendations for any and every genre, so you dont have to think twice before picking something for your binge watching needs. </p>
<!--
<a class="mt-3 text-teal-500 inline-flex items-center">Learn More
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 ml-2" viewBox="0 0 24 24">
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
-->
</div>
</div>
<div class="p-4 md:w-1/3 md:mb-0 mb-6 flex">
<div class="w-12 h-12 inline-flex items-center justify-center rounded-full bg-teal-100 text-teal-500 mb-4 flex-shrink-0">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-6 h-6" viewBox="0 0 24 24">
<path d="M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2"></path>
<circle cx="12" cy="7" r="4"></circle>
</svg>
<img src="Mentee.png" style="max-width: 150%; border-radius: 50%;">
</div>
<div class="flex-grow pl-6 wt">
<h2 class="text-gray-900 text-lg title-font font-medium mb-2 wt" >Mentee's</h2>
<p class="leading-relaxed text-base">Say hello to our users looking to explore new genres and develop interests, from reading classic novels to watching sci-fi movies.</p>
<!--
<a class="mt-3 text-teal-500 inline-flex items-center">Learn More
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 ml-2" viewBox="0 0 24 24">
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
-->
</div>
</div>
<style>
@media (min-width: 768px) {
.wt {
color: white;
}
}
</style>
</div>
</div>
<br><br><br>
</section>
<section class="text-gray-700 body-font" id="#cat">
<div class="container px-5 py-24 mx-auto" >
<h1
class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900" style="text-align: center;margin:auto auto 40px auto;"
>
<b>Categories</b>
</h1>
<div class="flex flex-wrap -m-4">
<div id="1" class="p-4 md:w-1/4" style="display: flex;
">
<div class="h-full border-2 border-gray-200 hover:bg-gray-400 rounded-lg overflow-hidden" style="margin:auto;">
<img class="lg:h-36 md:h-36 w-full object-cover object-center" style="max-width:89%;display:block;margin:auto;" src="movies.svg" alt="blog">
<div class="p-6">
<h2 class="tracking-widest text-xs title-font font-medium text-gray-500 mb-1">CATEGORY 1</h2>
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">Movies</h1>
<p class="leading-relaxed mb-3">Drama, Comedy, Thriller/Crime, Romance, Action, Horror, Adventure/Mystery, Family, Fantasy, Sci-Fi, Animation, Musical, History/War, Sports, Anime.</p>
<!--
<div class="flex items-center flex-wrap ">
<a class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0">Learn More
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span class="text-gray-600 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1 border-r-2 border-gray-300">
<svg class="w-4 h-4 mr-1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24">
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path>
<circle cx="12" cy="12" r="3"></circle>
</svg>1.2K
</span>
<span class="text-gray-600 inline-flex items-center leading-none text-sm">
<svg class="w-4 h-4 mr-1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24">
<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"></path>
</svg>6
</span>
</div>
-->
</div>
</div>
</div>
<div id="2" class="p-4 md:w-1/4">
<div class="h-full border-2 border-gray-200 hover:bg-gray-400 rounded-lg overflow-hidden">
<img class="lg:h-36 md:h-36 w-full object-cover object-center" style="max-width:63%;display:block;margin:auto;" src="tv.svg" alt="blog">
<div class="p-6">
<h2 class="tracking-widest text-xs title-font font-medium text-gray-500 mb-1">CATEGORY 2</h2>
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">TV Shows</h1>
<p class="leading-relaxed mb-3">Family, Reality Shows, Action, Drama, Comedies, Sci-fi, Crime, Romance, Thriller, Horror, Teen, Animae, Food & Travel, Science & Nature, Makeover Shows.</p>
<!--
<div class="flex items-center flex-wrap">
<a class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0">Learn More
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span class="text-gray-600 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1 border-r-2 border-gray-300">
<svg class="w-4 h-4 mr-1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24">
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path>
<circle cx="12" cy="12" r="3"></circle>
</svg>1.2K
</span>
<span class="text-gray-600 inline-flex items-center leading-none text-sm">
<svg class="w-4 h-4 mr-1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24">
<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"></path>
</svg>6
</span>
</div>
-->
</div>
</div>
</div>
<div id="3" class="p-4 md:w-1/4">
<div class="h-full border-2 border-gray-200 hover:bg-gray-400 rounded-lg overflow-hidden">
<img class="lg:h-36 md:h-36 w-full object-cover object-center" style="max-width: 74.5%;display:block;margin:auto;" src="books.svg" alt="blog">
<div class="p-6">
<h2 class="tracking-widest text-xs title-font font-medium text-gray-500 mb-1">CATEGORY 3</h2>
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">Books</h1>
<p class="leading-relaxed mb-3"><i>Fiction</i>- Classics, Crime/Mystery, Horror/Thriller, Historical Fiction, Science Fiction, Young Adult, Fantasy, Romance, Humor. <br><i>Non Fiction</i>- Biography/Autobiography/Memoir, Self Help, Business, Art and History, Health and Wellness, Travel, Cooking and Baking.</p>
<!--
<div class="flex items-center flex-wrap ">
<a class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0">Learn More
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span class="text-gray-600 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1 border-r-2 border-gray-300">
<svg class="w-4 h-4 mr-1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24">
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path>
<circle cx="12" cy="12" r="3"></circle>
</svg>1.2K
</span>
<span class="text-gray-600 inline-flex items-center leading-none text-sm">
<svg class="w-4 h-4 mr-1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24">
<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"></path>
</svg>6
</span>
</div>
-->
</div>
</div>
</div>
<div id="4" class="p-4 md:w-1/4">
<div class="h-full border-2 border-gray-200 hover:bg-gray-400 rounded-lg overflow-hidden">
<img class="lg:h-36 md:h-36 w-full object-cover object-center" style="max-width:100%;display:block;margin:auto;" src="music%201-01.svg" alt="blog">
<div class="p-6">
<h2 class="tracking-widest text-xs title-font font-medium text-gray-500 mb-1">CATEGORY 4</h2>
<h1 class="title-font text-lg font-medium text-gray-900 mb-3">Music</h1>
<p class="leading-relaxed mb-3"><i>International Music</i>- Hip Hop/Rap, Pop, Indie Rock, Country, Contemporary R & B, Punk, House, Techno, K-Pop. <br><i>Indian Music</i>- Punjabi, DJ Music, Emotional & Romantic, Unplugged/ Reprise, Ghazals, Indian Sufi Music, Indie.</p>
<!--
<div class="flex items-center flex-wrap">
<a class="text-indigo-500 inline-flex items-center md:mb-2 lg:mb-0">Learn More
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
<span class="text-gray-600 mr-3 inline-flex items-center lg:ml-auto md:ml-0 ml-auto leading-none text-sm pr-3 py-1 border-r-2 border-gray-300">
<svg class="w-4 h-4 mr-1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24">
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path>
<circle cx="12" cy="12" r="3"></circle>
</svg>1.2K
</span>
<span class="text-gray-600 inline-flex items-center leading-none text-sm">
<svg class="w-4 h-4 mr-1" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24">
<path d="M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z"></path>
</svg>6
</span>
</div>
-->
</div>
</div>
</div>
</div>
</div>
</section>
<section id="first" class="text-gray-700 body-font" style="background-repeat: no-repeat;background-size:cover;width: 100%;">
<div class="container px-5 py-15 mx-auto"><br/><br/>
<h1
class="title-font sm:text-4xl text-3xl mb-4 font-medium text-gray-900" style="text-align: center;margin:auto auto 30px auto;"
>
<b>Our Story</b>
</h1>
<div class="xl:w-1/2 lg:w-3/4 w-full mx-auto text-center">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
class="inline-block w-8 h-8 text-gray-400 mb-8"
viewBox="0 0 975.036 975.036"
>
<path
d="M925.036 57.197h-304c-27.6 0-50 22.4-50 50v304c0 27.601 22.4 50 50 50h145.5c-1.9 79.601-20.4 143.3-55.4 191.2-27.6 37.8-69.399 69.1-125.3 93.8-25.7 11.3-36.8 41.7-24.8 67.101l36 76c11.6 24.399 40.3 35.1 65.1 24.399 66.2-28.6 122.101-64.8 167.7-108.8 55.601-53.7 93.7-114.3 114.3-181.9 20.601-67.6 30.9-159.8 30.9-276.8v-239c0-27.599-22.401-50-50-50zM106.036 913.497c65.4-28.5 121-64.699 166.9-108.6 56.1-53.7 94.4-114.1 115-181.2 20.6-67.1 30.899-159.6 30.899-277.5v-239c0-27.6-22.399-50-50-50h-304c-27.6 0-50 22.4-50 50v304c0 27.601 22.4 50 50 50h145.5c-1.9 79.601-20.4 143.3-55.4 191.2-27.6 37.8-69.4 69.1-125.3 93.8-25.7 11.3-36.8 41.7-24.8 67.101l35.9 75.8c11.601 24.399 40.501 35.2 65.301 24.399z"
></path>
</svg>
<p class="leading-relaxed text-lg" style="text-align: justify;">
We were lazying in bed on yet another Sunday, having spent a total of 26 minutes on picking a feel good rom-com, every second of which the pizza grew cold and our binge watching hopes diluted. <br>
Don't we all face this on the daily? We browse endless lists of the Top 'n' books we should read right now and the latest pop charts we should be grooving to but we don't find recommendations that are perfectly curated for our taste.<br>
Which is exactly why FindUrFix took birth. To build a community of like minded people, with similar tastes who are willing to share movies, books, music and shows that they're passionate about, with anybody who is willing to give them a listen. <br>
So the next time you're looking for the perfect show to binge watch, all you have to do is ask. The next time you come across the perfect song, come be a mentor and spread the love. Help people find their fix, and they'll help you find yours.
</p>
<span
class="inline-block h-1 w-10 rounded bg-teal-500 mt-8 mb-6"
></span>
<h2
class="text-gray-900 font-medium title-font tracking-wider text-sm"
>
<b > Jeevika Sahajwani & Priyanka Gyanchandani </b>
</h2>
<p class="text-gray-500">Co-Founder & Director</p>
<br />
<br />
</div>
</div>
</section>
<section class="try" id="contact" >
<div
class="max-w-screen-xl mt-24 px-8 grid gap-8 grid-cols-1 md:grid-cols-2 md:px-12 lg:px-16 xl:px-32 py-16 mx-auto bg-gray-100 text-gray-900 rounded-lg shadow-lg"
>
<div class="flex flex-col justify-between">
<div>
<h2 class="text-4xl lg:text-5xl font-bold leading-tight">
Contact Us
</h2>
<!--
<div class="text-gray-700 mt-8">
Or Send us an
<span class="underline">email</span> instead.
</div>
-->
</div>
<div class="mt-8 text-center">
<svg
class="w-full"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
id="ae37f038-3a9e-4b82-ad68-fc94ba16af2a"
data-name="Layer 1"
viewBox="0 0 1096 574.74"
>
<defs>
<linearGradient
id="eb6c86d6-45fa-49e0-9a60-1b0612516196"
x1="819.07"
y1="732.58"
x2="819.07"
y2="560.46"
gradientUnits="userSpaceOnUse"
>
<stop offset="0" stop-color="gray" stop-opacity="0.25" />
<stop offset="0.54" stop-color="gray" stop-opacity="0.12" />
<stop offset="1" stop-color="gray" stop-opacity="0.1" />
</linearGradient>
<pattern
id="ad310e25-2b04-44c8-bb7b-982389166780"
data-name="New Pattern 3"
width="36.88"
height="49.48"
patternUnits="userSpaceOnUse"
viewBox="0 0 36.88 49.48"
>
<rect width="36.88" height="49.48" fill="none" />
<path d="M4.33,13.19c4.5,0,4.51-7,0-7s-4.52,7,0,7Z" />
<path d="M4.51,17.16c4.51,0,4.52-7,0-7s-4.51,7,0,7Z" />
<path d="M4.51,20.94c4.51,0,4.52-7,0-7s-4.51,7,0,7Z" />
<path d="M3.38,24.72c4.51,0,4.51-7,0-7s-4.51,7,0,7Z" />
<path
d="M1.09,28.29l.2.38a3.52,3.52,0,0,0,4.78,1.25,3.58,3.58,0,0,0,1.26-4.79l-.19-.37A3.52,3.52,0,0,0,2.35,23.5a3.59,3.59,0,0,0-1.26,4.79Z"
/>
<path
d="M1.49,30.1l.18.57a3.73,3.73,0,0,0,1.61,2.09,3.59,3.59,0,0,0,2.7.35A3.54,3.54,0,0,0,8.42,28.8l-.18-.56a3.68,3.68,0,0,0-1.61-2.1,3.61,3.61,0,0,0-2.69-.35A3.56,3.56,0,0,0,1.49,30.1Z"
/>
<path
d="M1.58,33.88v.38a3.54,3.54,0,0,0,3.5,3.5,3.56,3.56,0,0,0,3.5-3.5v-.38a3.54,3.54,0,0,0-3.5-3.5,3.57,3.57,0,0,0-3.5,3.5Z"
/>
<path d="M4.89,42.3c4.51,0,4.51-7,0-7s-4.51,7,0,7Z" />
<path
d="M1.77,42v.19a3.54,3.54,0,0,0,3.5,3.5,3.56,3.56,0,0,0,3.5-3.5V42a3.54,3.54,0,0,0-3.5-3.5A3.56,3.56,0,0,0,1.77,42Z"
/>
<path d="M6,49.29c4.5,0,4.51-7,0-7s-4.52,7,0,7Z" />
<path d="M10,14.14c4.5,0,4.51-7,0-7s-4.52,7,0,7Z" />
<path d="M6.59,20.94c4.51,0,4.52-7,0-7s-4.51,7,0,7Z" />
<path d="M8.48,27c4.51,0,4.51-7,0-7s-4.51,7,0,7Z" />
<path d="M8.48,29.26c4.51,0,4.51-7,0-7s-4.51,7,0,7Z" />
<path d="M14.91,33.79c4.5,0,4.51-7,0-7s-4.51,7,0,7Z" />
<path d="M9.81,38.52c4.5,0,4.51-7,0-7s-4.52,7,0,7Z" />
<path d="M10.56,45.13c4.51,0,4.51-7,0-7s-4.51,7,0,7Z" />
<path d="M10.56,49.48c4.51,0,4.51-7,0-7s-4.51,7,0,7Z" />
<path d="M12.83,18.12c2.57,0,2.58-4,0-4s-2.58,4,0,4Z" />
<path d="M13,20.39c2.57,0,2.58-4,0-4s-2.58,4,0,4Z" />
<path d="M13.1,21v.19a2,2,0,0,0,4,0V21a2,2,0,0,0-4,0Z" />
<path d="M15.1,25.87c2.57,0,2.58-4,0-4s-2.58,4,0,4Z" />
<path d="M16.61,11.07a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path d="M21.71,16.55a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path d="M16.85,8.94V8.56a1,1,0,0,0-2,0v.38a1,1,0,0,0,2,0Z" />
<path d="M16.48,4.78V4.59a1,1,0,0,0-2,0v.19a1,1,0,0,0,2,0Z" />
<path d="M15.48,2a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path d="M10.56,2a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path d="M10.37,4.65a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path d="M7.35,6.16a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path d="M11.88,7.1h.38a1,1,0,0,0,0-2h-.38a1,1,0,0,0,0,2Z" />
<path
d="M13.28,11l.57,1.32a1,1,0,0,0,1.37.36,1,1,0,0,0,.36-1.37L15,10a1,1,0,0,0-1.37-.36A1,1,0,0,0,13.28,11Z"
/>
<path
d="M18.44,19.33v.19a1,1,0,0,0,2,0v-.19a1,1,0,0,0-2,0Z"
/>
<path
d="M20.68,24.93l.19.38c.57,1.15,2.3.14,1.72-1l-.19-.38c-.57-1.15-2.3-.14-1.72,1Z"
/>
<path
d="M22.13,29.38a2.48,2.48,0,0,0-.84,1.86,1,1,0,0,0,2,0,.56.56,0,0,1,.25-.44,1,1,0,0,0,0-1.42,1,1,0,0,0-1.41,0Z"
/>
<path
d="M20.32,33.41l-.54,1.71c-.38,1.23,1.55,1.76,1.93.53l.54-1.71c.38-1.23-1.55-1.76-1.93-.53Z"
/>
<path d="M19.44,37h-.19a1,1,0,0,0,0,2h.19a1,1,0,0,0,0-2Z" />
<path
d="M17.64,41.5l-.19.38c-.58,1.15,1.15,2.16,1.72,1l.19-.38c.58-1.15-1.15-2.16-1.72-1Z"
/>
<path d="M15.8,47.87v.56a1,1,0,0,0,2,0v-.56a1,1,0,0,0-2,0Z" />
<path d="M14.34,49.43a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path d="M14.34,41.31a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path
d="M17.13,36.47a2,2,0,0,0,1-1.64,1,1,0,0,0-2,0c0-.13.19-.2,0-.08-1.15.58-.14,2.3,1,1.72Z"
/>
<path d="M17.37,31.29a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path d="M18.12,28.46a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path
d="M19,24.94l.19-.38c.58-1.15-1.15-2.16-1.72-1l-.19.38c-.58,1.15,1.15,2.16,1.72,1Z"
/>
<path d="M17.93,16a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path
d="M24.64,16.05l.57.94a1,1,0,0,0,1.72-1L26.37,15a1,1,0,0,0-1.73,1Z"
/>
<path
d="M34.88,29.72v.19a1,1,0,0,0,2,0v-.19a1,1,0,0,0-2,0Z"
/>
<path d="M24,39.23a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path d="M22.85,29a1,1,0,0,0,0-2,1,1,0,0,0,0,2Z" />
<path
d="M18.24,21.9l.57-.56c.93-.89-.48-2.3-1.41-1.41l-.58.56c-.93.89.49,2.3,1.42,1.41Z"
/>
</pattern>
<linearGradient
id="a964f849-fa65-4178-8cc4-fb8fb10b3617"
x1="462.91"
y1="660.68"
x2="462.91"
y2="559.69"
xlink:href="#eb6c86d6-45fa-49e0-9a60-1b0612516196"
/>
</defs>
<title>contact us</title>
<g opacity="0.1">
<ellipse
cx="479.42"
cy="362.12"
rx="11.38"
ry="14.9"
fill="#3f3d56"
/>
<path
d="M540.43,461a18,18,0,0,0,2.38-9.11c0-8.23-5.1-14.9-11.39-14.9S520,443.68,520,451.91a18,18,0,0,0,2.38,9.11,18.61,18.61,0,0,0,0,18.21,18.61,18.61,0,0,0,0,18.21,17.94,17.94,0,0,0-2.38,9.11c0,8.22,5.1,14.9,11.38,14.9s11.39-6.68,11.39-14.9a17.94,17.94,0,0,0-2.38-9.11,18.61,18.61,0,0,0,0-18.21,18.61,18.61,0,0,0,0-18.21Z"
transform="translate(-52 -162.63)"
fill="#3f3d56"
/>
<ellipse
cx="479.42"
cy="271.07"
rx="11.38"
ry="14.9"
fill="#3f3d56"
/>
<ellipse
cx="479.42"
cy="252.86"
rx="11.38"
ry="14.9"
fill="#3f3d56"
/>
<path
d="M488.82,290.86a53.08,53.08,0,0,1-4.24-6.24l29.9-4.91-32.34.24a54.62,54.62,0,0,1-1-43.2l43.39,22.51-40-29.42a54.53,54.53,0,1,1,90,61,54.54,54.54,0,0,1,6.22,9.94L541.92,321l41.39-13.89a54.53,54.53,0,0,1-8.79,51.2,54.52,54.52,0,1,1-85.7,0,54.52,54.52,0,0,1,0-67.42Z"
transform="translate(-52 -162.63)"
fill="#667eea"
/>
<path
d="M586.19,324.57a54.27,54.27,0,0,1-11.67,33.71,54.52,54.52,0,1,1-85.7,0C481.51,349,586.19,318.45,586.19,324.57Z"
transform="translate(-52 -162.63)"
opacity="0.1"
/>
</g>
<g opacity="0.1">
<ellipse
cx="612.28"
cy="330.26"
rx="8.51"
ry="11.13"
fill="#3f3d56"
/>
<path
d="M671,445.26a13.43,13.43,0,0,0,1.77-6.8c0-6.15-3.81-11.14-8.5-11.14s-8.51,5-8.51,11.14a13.33,13.33,0,0,0,1.78,6.8,13.9,13.9,0,0,0,0,13.61,13.9,13.9,0,0,0,0,13.61,13.33,13.33,0,0,0-1.78,6.8c0,6.15,3.81,11.14,8.51,11.14s8.5-5,8.5-11.14a13.43,13.43,0,0,0-1.77-6.8,14,14,0,0,0,0-13.61,14,14,0,0,0,0-13.61Z"
transform="translate(-52 -162.63)"
fill="#3f3d56"
/>
<ellipse
cx="612.28"
cy="262.22"
rx="8.51"
ry="11.13"
fill="#3f3d56"
/>
<ellipse
cx="612.28"
cy="248.61"
rx="8.51"
ry="11.13"
fill="#3f3d56"
/>
<path
d="M632.44,318.11a39,39,0,0,1-3.17-4.66l22.35-3.67-24.17.18a40.84,40.84,0,0,1-.78-32.29L659.1,294.5l-29.91-22a40.75,40.75,0,1,1,67.29,45.6,41.2,41.2,0,0,1,4.65,7.43l-29,15.07,30.93-10.38a40.76,40.76,0,0,1-6.57,38.26,40.74,40.74,0,1,1-64,0,40.74,40.74,0,0,1,0-50.38Z"
transform="translate(-52 -162.63)"
fill="#667eea"
/>
<path
d="M705.2,343.3a40.57,40.57,0,0,1-8.72,25.19,40.74,40.74,0,1,1-64,0C627,361.56,705.2,338.73,705.2,343.3Z"
transform="translate(-52 -162.63)"
opacity="0.1"
/>
</g>
<g opacity="0.1">
<ellipse
cx="1038.58"
cy="322.12"
rx="11.38"
ry="14.9"
fill="#3f3d56"
/>
<path
d="M1081.57,421a18,18,0,0,1-2.38-9.11c0-8.23,5.1-14.9,11.39-14.9s11.38,6.67,11.38,14.9a18,18,0,0,1-2.38,9.11,18.61,18.61,0,0,1,0,18.21,18.61,18.61,0,0,1,0,18.21,17.94,17.94,0,0,1,2.38,9.11c0,8.22-5.1,14.9-11.38,14.9s-11.39-6.68-11.39-14.9a17.94,17.94,0,0,1,2.38-9.11,18.61,18.61,0,0,1,0-18.21,18.61,18.61,0,0,1,0-18.21Z"
transform="translate(-52 -162.63)"
fill="#3f3d56"
/>
<ellipse
cx="1038.58"
cy="231.07"
rx="11.38"
ry="14.9"
fill="#3f3d56"
/>
<ellipse
cx="1038.58"
cy="212.86"
rx="11.38"
ry="14.9"
fill="#3f3d56"
/>
<path
d="M1133.18,250.86a53.08,53.08,0,0,0,4.24-6.24l-29.9-4.91,32.34.24a54.62,54.62,0,0,0,1-43.2l-43.39,22.51,40-29.42a54.53,54.53,0,1,0-90,61,54.54,54.54,0,0,0-6.22,9.94L1080.08,281l-41.39-13.89a54.53,54.53,0,0,0,8.79,51.2,54.52,54.52,0,1,0,85.7,0,54.52,54.52,0,0,0,0-67.42Z"
transform="translate(-52 -162.63)"
fill="#667eea"
/>
<path
d="M1035.81,284.57a54.27,54.27,0,0,0,11.67,33.71,54.52,54.52,0,1,0,85.7,0C1140.49,309,1035.81,278.45,1035.81,284.57Z"
transform="translate(-52 -162.63)"
opacity="0.1"
/>
</g>
<g opacity="0.1">
<ellipse
cx="928.72"
cy="324.26"
rx="8.51"
ry="11.13"
fill="#3f3d56"
/>
<path
d="M974,439.26a13.43,13.43,0,0,1-1.77-6.8c0-6.15,3.81-11.14,8.5-11.14s8.51,5,8.51,11.14a13.33,13.33,0,0,1-1.78,6.8,13.9,13.9,0,0,1,0,13.61,13.9,13.9,0,0,1,0,13.61,13.33,13.33,0,0,1,1.78,6.8c0,6.15-3.81,11.14-8.51,11.14s-8.5-5-8.5-11.14a13.43,13.43,0,0,1,1.77-6.8,14,14,0,0,1,0-13.61,14,14,0,0,1,0-13.61Z"
transform="translate(-52 -162.63)"
fill="#3f3d56"
/>
<ellipse
cx="928.72"
cy="256.22"
rx="8.51"
ry="11.13"
fill="#3f3d56"
/>
<ellipse
cx="928.72"
cy="242.61"
rx="8.51"
ry="11.13"
fill="#3f3d56"
/>
<path
d="M1012.56,312.11a39,39,0,0,0,3.17-4.66l-22.35-3.67,24.17.18a40.84,40.84,0,0,0,.78-32.29L985.9,288.5l29.91-22a40.75,40.75,0,1,0-67.29,45.6,41.2,41.2,0,0,0-4.65,7.43l29,15.07L942,324.23a40.76,40.76,0,0,0,6.57,38.26,40.74,40.74,0,1,0,64,0,40.74,40.74,0,0,0,0-50.38Z"
transform="translate(-52 -162.63)"
fill="#667eea"
/>
<path
d="M939.8,337.3a40.57,40.57,0,0,0,8.72,25.19,40.74,40.74,0,1,0,64,0C1018,355.56,939.8,332.73,939.8,337.3Z"
transform="translate(-52 -162.63)"
opacity="0.1"
/>
</g>
<g opacity="0.1">
<ellipse
cx="61.59"
cy="322.12"
rx="11.38"
ry="14.9"
fill="#3f3d56"
/>
<path
d="M122.59,421a18,18,0,0,0,2.38-9.11c0-8.23-5.1-14.9-11.38-14.9s-11.38,6.67-11.38,14.9a18,18,0,0,0,2.37,9.11,18.67,18.67,0,0,0,0,18.21,18.67,18.67,0,0,0,0,18.21,17.93,17.93,0,0,0-2.37,9.11c0,8.22,5.09,14.9,11.38,14.9S125,474.77,125,466.55a17.94,17.94,0,0,0-2.38-9.11,18.61,18.61,0,0,0,0-18.21,18.61,18.61,0,0,0,0-18.21Z"
transform="translate(-52 -162.63)"
fill="#3f3d56"
/>
<ellipse
cx="61.59"
cy="231.07"
rx="11.38"
ry="14.9"
fill="#3f3d56"
/>
<ellipse
cx="61.59"
cy="212.86"
rx="11.38"
ry="14.9"
fill="#3f3d56"