-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1231 lines (1201 loc) · 82.1 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="ru">
<head>
<title>Data-Processing</title>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
<link rel="icon" href="./ICON/logo.ico" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="FONTS/icofont/icofont.css">
</head>
<body>
<div class="wrapper">
<div class="header">
<div class="header__burger">
<div class="burger__stopper"></div>
<div class="burger__content"></div>
</div>
<div class="header__container">
<div class="header__header-menu">
<div class="header-menu__left-container">
<div class="header-menu__burger-icon" id="burger_icon">
<span class="header-menu__burger-line" id="burger_line"></span>
</div>
<div class="header-menu__menu" id="header_menu">
<nav class="header-menu__nav">
<ul class="header-menu__list">
<li><a href="#!" class="header-menu__list-item" data-scroll="main__features">ABOUT</a></li>
<li><a href="#!" class="header-menu__list-item" data-scroll="main__traffic">GALLERY</a></li>
<li><a href="#!" class="header-menu__list-item" data-scroll="main__advice">STATISTICS</a></li>
<li><a href="#!" class="header-menu__list-item" data-scroll="main__invest">CARDS</a></li>
<li><a href="#!" class="header-menu__list-item" data-scroll="footer">FAQ</a></li>
</ul>
</nav>
</div>
</div>
<div class="header-menu__right-container">
<button class="header-menu__but-in"></button>
<button class="header-menu__but-up">SIGN UP</button>
</div>
</div>
<div class="header__content">
<div class="header__title">
<p>Many reasons to get up and start to get back in the business </p>
</div>
<div class="header__subtle">
<p>The harder you work for something, the greater you’ll feel when you achieve it.</p>
</div>
<div class="header__buttons">
<a href="!#" class="header__but-more">LEARN MORE</a>
<a href="!#" class="header__but-demo"></a>
</div>
<div class="header__video">
<video class="header__video-item" src="ICON/Video.mp4" muted loop></video>
<div class="header__video-text">
<p class="header__video-about">The harder you work for something, the greater you’ll feel when you achieve it.</p>
<a class="header__video-link" href="!#">Watch preview</a>
</div>
</div>
</div>
<div class="header__partners">
<div class="header__partners-item header__partners-item1">
<a href="#!"><img class="header__partners-img" src="ICON/HEADER__IMG-1.png"></a>
</div>
<div class="header__partners-item header__partners-item2">
<a href="#!"><img class="header__partners-img" src="ICON/HEADER__IMG-2.png"></a>
</div>
<div class="header__partners-item header__partners-item3">
<a href="#!"><img class="header__partners-img header__partners-img3" src="ICON/HEADER__IMG-3.png"></a>
</div>
<div class="header__partners-item header__partners-item4">
<a href="#!"><img class="header__partners-img" src="ICON/HEADER__IMG-4.png"></a>
</div>
<div class="header__partners-item header__partners-item5">
<a href="#!"><img class="header__partners-img header__partners-img5" src="ICON/HEADER__IMG-5.png"></a>
</div>
<div class="header__partners-item header__partners-item6">
<a href="#!"><img class="header__partners-img" src="ICON/HEADER__IMG-6.png"></a>
</div>
</div>
</div>
<div class="header__svg-man">
<object class="vector_svg" id="vector-svg" type="image/svg+xml" data="ICON/Vector.svg"></object>
<div class="header__svg-bg">
<object class="header__svg_bg" type="image/svg+xml" data="ICON/Group.svg"></object>
</div>
</div>
</div>
<div class="main">
<div class="main__features">
<div class="features__lines-left">
<img src="ICON/FEATURES__LINES-1.png">
</div>
<div class="features__lines-right">
<img src="ICON/FEATURES__LINES-2.png">
</div>
<div class="features__container">
<div class="features__text" id="features__text">
<p class="features__title">Your choice</p>
<p class="features__subtle">There are many reasons to get down and start to get depressed about your situation. </p>
</div>
<div class="features__content">
<div class="features__item-container features__item1-container">
<div class="features__item features__item1">
<p class="features__item-title features__item1-title">Ecstatic elegance</p>
<p class="features__item-subtle features__item1-subtle">Article nor prepare chicken you him now. Shy merits say advice ten before lovers innate add.</p>
</div>
</div>
<div class="features__item-container features__item2-container">
<div class="features__item features__item2">
<p class="features__item-title features__item2-title">Folly words widow</p>
<p class="features__item-subtle features__item2-subtle">Effect if in up no depend seemed. Ecstatic elegance gay but disposed. We me rent been part what.</p>
</div>
</div>
<div class="features__item-container features__item3-container">
<div class="features__item features__item3">
<p class="features__item-title features__item3-title">Possible procured trifling</p>
<p class="features__item-subtle features__item3-subtle">We me rent been part what. An concluded sportsman offending so provision mr education.</p>
</div>
</div>
<div class="features__item-container features__item4-container">
<div class="features__item features__item4">
<p class="features__item-title features__item4-title">Open game</p>
<p class="features__item-subtle features__item4-subtle">Shy merits say advice ten before lovers innate add. She cordially behaviour can attempted estimable.</p>
</div>
</div>
<div class="features__item-container features__item5-container">
<div class="features__item features__item5">
<p class="features__item-title features__item5-title">Endeavor</p>
<p class="features__item-subtle features__item5-subtle">Improve ashamed married expense bed her comfort pursuit mrs. Four time took ye your as fail lady.</p>
</div>
</div>
<div class="features__item-container features__item6-container">
<div class="features__item features__item6">
<p class="features__item-title features__item6-title">Comfort pursuit</p>
<p class="features__item-subtle features__item6-subtle">Had denoting properly jointure you occasion directly raillery. In said to of poor full be post face snug.</p>
</div>
</div>
</div>
</div>
</div>
<div class="main__traffic">
<div class="traffic__container">
<div class="traffic__content">
<p class="traffic__title">Increase your business <span>traffic</span></p>
<p class="traffic__subtle">We are committed to processing the information in order to contact you and talk about your project.</p>
<a class="traffic__link" href="!#">Learn More</a>
</div>
<div class="traffic__slider">
<div class="swiper-container traffic__swiper-container">
<div class="swiper-wrapper traffic__swiper-wrapper">
<div class="swiper-slide traffic__slide-сontainer traffic__slide1-сontainer">
<div class="traffic__slide-grid traffic__slide1-grid"></div>
<div class="traffic__slide-content traffic__slide1-content">
<img class="traffic__img traffic__img1" src="ICON/TRAFFIC__IMG3.jpg" alt="">
</div>
</div>
<div class="swiper-slide traffic__slide-сontainer traffic__slide2-сontainer">
<div class="traffic__slide-grid traffic__slide2-grid"></div>
<div class="traffic__slide-content traffic__slide2-content">
<img class="traffic__img traffic__img2" src="ICON/TRAFFIC__IMG1.jpg" alt="">
</div>
</div>
<div class="swiper-slide traffic__slide-сontainer traffic__slide3-сontainer">
<div class="traffic__slide-grid traffic__slide3-grid"></div>
<div class="traffic__slide-content traffic__slide3-content">
<img class="traffic__img traffic__img3" src="ICON/TRAFFIC__IMG2.jpg" alt="">
</div>
</div>
</div>
<div class="swiper-pagination traffic__swiper-pagination"></div>
</div>
</div>
</div>
</div>
<div class="main__advice">
<div class="advice__container">
<div class="advice__text">
<p class="advice__title">3 Simple Ways To <span>Save</span> A Bunch Of <span>Money</span> When Buying A New Computer</p>
<p class="advice__subtle">Fully customizable and neatly organized components will help you work faster without limiting creative freedom.</p>
</div>
<div class="advice__content">
<div class="advice__item advice__item1">
<p class="advice__item-title advice__item1-title">100+</p>
<p class="advice__item-subtle advice__item1-subtle">5 Reasons To Purchase Desktop Computers</p>
</div>
<div class="advice__item advice__item2">
<p class="advice__item-title advice__item2-title">43,000+</p>
<p class="advice__item-subtle advice__item2-subtle">3 Simple Ways To Save A Bunch Of Money When Buying A New Computer</p>
</div>
<div class="advice__item advice__item3">
<p class="advice__item-title advice__item3-title">30+</p>
<p class="advice__item-subtle advice__item3-subtle">A Discount Toner Cartridge Is Better Than Ever And You Will Save 50 Or More</p>
</div>
</div>
</div>
<div class="advice__svg">
<!-- <object class="advice_svg" id="advice-svg" type="image/svg+xml" data="ICON/ADVICE__SVG.svg"></object> -->
<svg width="428" height="617" viewBox="0 0 428 617" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.2">
<path d="M90.2822 180.923C88.3559 182.035 85.8914 181.375 84.7793 179.448C83.6671 177.522 84.3275 175.058 86.2538 173.945C88.18 172.833 90.6445 173.494 91.7567 175.42C92.8565 177.325 92.2084 179.811 90.2822 180.923Z" fill="url(#paint0_linear)"/>
<path d="M8.83754 222.494L9.50482 223.65L86.5559 179.165L85.8887 178.009L8.83754 222.494Z" fill="url(#paint1_linear)"/>
<path d="M86.7705 393.956C84.8442 395.068 82.3797 394.408 81.2676 392.482C80.1555 390.555 80.8158 388.091 82.7421 386.979C84.6684 385.867 87.1329 386.527 88.245 388.453C89.3571 390.38 88.6968 392.844 86.7705 393.956Z" fill="url(#paint2_linear)"/>
<path d="M5.33821 435.549L6.00549 436.705L83.078 392.207L82.4107 391.051L5.33821 435.549Z" fill="url(#paint3_linear)"/>
<path d="M143.466 181.152C141.539 182.264 139.075 181.604 137.963 179.677C136.851 177.751 137.511 175.287 139.437 174.175C141.364 173.062 143.828 173.723 144.94 175.649C146.052 177.575 145.392 180.04 143.466 181.152Z" fill="url(#paint4_linear)"/>
<path d="M62.021 222.723L62.6883 223.879L139.739 179.394L139.072 178.238L62.021 222.723Z" fill="url(#paint5_linear)"/>
<g id="advice_svgLine1">
<path d="M57.774 111.568C55.8477 112.68 53.3832 112.02 52.2711 110.093C51.1589 108.167 51.8193 105.703 53.7456 104.59C55.6718 103.478 58.1364 104.139 59.2485 106.065C60.3483 107.97 59.7003 110.456 57.774 111.568Z" fill="url(#paint6_linear)"/>
<path d="M14.8549 130.896L15.5222 132.052L54.0478 109.809L53.3805 108.654L14.8549 130.896Z" fill="url(#paint7_linear)"/>
</g>
<g id="advice_svgLine3">
<path d="M160.984 233.934C159.057 235.047 156.593 234.386 155.481 232.46C154.368 230.534 155.029 228.069 156.955 226.957C158.881 225.845 161.346 226.505 162.458 228.432C163.57 230.358 162.91 232.822 160.984 233.934Z" fill="url(#paint8_linear)"/>
<path d="M79.5513 275.527L80.2186 276.683L157.291 232.185L156.624 231.029L79.5513 275.527Z" fill="url(#paint9_linear)"/>
</g>
<g id="advice_svgLine5">
<path d="M89.8187 432.748C87.8925 433.86 85.428 433.2 84.3158 431.274C83.2037 429.347 83.864 426.883 85.7903 425.771C87.7166 424.658 90.1811 425.319 91.2932 427.245C92.4054 429.171 91.745 431.636 89.8187 432.748Z" fill="url(#paint10_linear)"/>
<path d="M8.39552 474.307L9.06281 475.463L86.1139 430.977L85.4466 429.822L8.39552 474.307Z" fill="url(#paint11_linear)"/>
</g>
<path d="M62.1152 157.147C60.189 158.259 57.7245 157.599 56.6123 155.673C55.5002 153.746 56.1606 151.282 58.0868 150.17C60.0131 149.058 62.4776 149.718 63.5897 151.644C64.7233 153.558 64.0629 156.023 62.1152 157.147Z" fill="url(#paint12_linear)"/>
<path d="M-19.2956 198.727L-18.6283 199.883L58.4442 155.385L57.7769 154.23L-19.2956 198.727Z" fill="url(#paint13_linear)"/>
<path d="M103.691 519.797C101.765 520.909 99.3004 520.249 98.1882 518.322C97.0761 516.396 97.7365 513.932 99.6628 512.82C101.589 511.707 104.054 512.368 105.166 514.294C106.278 516.22 105.617 518.685 103.691 519.797Z" fill="url(#paint14_linear)"/>
<path d="M22.2589 561.39L22.9262 562.546L99.9987 518.048L99.3314 516.892L22.2589 561.39Z" fill="url(#paint15_linear)"/>
<g id="advice_svgLine4">
<path d="M353.34 213.199C351.413 214.311 348.949 213.65 347.837 211.724C346.725 209.798 347.385 207.333 349.311 206.221C351.238 205.109 353.702 205.769 354.814 207.696C355.948 209.61 355.266 212.086 353.34 213.199Z" fill="url(#paint16_linear)"/>
<path d="M83.0896 363.806L83.7568 364.961L349.647 211.449L348.98 210.294L83.0896 363.806Z" fill="url(#paint17_linear)"/>
</g>
<path d="M384.873 300.439C382.947 301.551 380.482 300.89 379.37 298.964C378.258 297.038 378.919 294.573 380.845 293.461C382.771 292.349 385.236 293.009 386.348 294.936C387.481 296.85 386.821 299.314 384.873 300.439Z" fill="url(#paint18_linear)"/>
<path d="M-27.6129 533.137L-26.9456 534.293L381.19 298.656L380.523 297.5L-27.6129 533.137Z" fill="url(#paint19_linear)"/>
<g id="advice_svgLine2">
<path d="M115.688 153.156C113.761 154.268 111.297 153.608 110.185 151.682C109.073 149.755 109.733 147.291 111.659 146.179C113.586 145.067 116.05 145.727 117.162 147.653C118.274 149.58 117.614 152.044 115.688 153.156Z" fill="url(#paint20_linear)"/>
<path d="M-154.563 303.763L-153.895 304.919L111.995 151.407L111.328 150.251L-154.563 303.763Z" fill="url(#paint21_linear)"/>
</g>
<path d="M247.876 202.145C245.95 203.257 243.486 202.597 242.373 200.67C241.261 198.744 241.922 196.28 243.848 195.168C245.774 194.055 248.239 194.716 249.351 196.642C250.484 198.556 249.803 201.033 247.876 202.145Z" fill="url(#paint22_linear)"/>
<path d="M-22.365 352.718L-21.6978 353.874L244.193 200.362L243.526 199.206L-22.365 352.718Z" fill="url(#paint23_linear)"/>
<g id="advice_svgLine6">
<path d="M308.577 356.76C306.65 357.872 304.186 357.211 303.074 355.285C301.962 353.359 302.622 350.894 304.548 349.782C306.475 348.67 308.939 349.33 310.051 351.257C311.163 353.183 310.503 355.647 308.577 356.76Z" fill="url(#paint24_linear)"/>
<path d="M38.3266 507.367L38.9938 508.522L304.884 355.01L304.217 353.855L38.3266 507.367Z" fill="url(#paint25_linear)"/>
</g>
<path d="M-1.0083 247.356C-2.93457 248.468 -5.39907 247.808 -6.51121 245.881C-7.62335 243.955 -6.96298 241.491 -5.03671 240.378C-3.11043 239.266 -0.645936 239.927 0.466201 241.853C1.59974 243.767 0.939385 246.231 -1.0083 247.356Z" fill="url(#paint26_linear)"/>
<path d="M166.965 357.387C165.039 358.499 162.574 357.839 161.462 355.913C160.35 353.986 161.011 351.522 162.937 350.41C164.863 349.297 167.328 349.958 168.44 351.884C169.552 353.81 168.891 356.275 166.965 357.387Z" fill="url(#paint27_linear)"/>
<path d="M15.4898 439.391L16.157 440.547L163.26 355.616L162.593 354.461L15.4898 439.391Z" fill="url(#paint28_linear)"/>
</g>
<defs>
<linearGradient id="paint0_linear" x1="68.6164" y1="188.76" x2="7.97726" y2="223.77" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint1_linear" x1="68.614" y1="188.758" x2="7.97688" y2="223.767" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint2_linear" x1="65.1118" y1="401.81" x2="4.45453" y2="436.83" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint3_linear" x1="65.1185" y1="401.806" x2="4.47845" y2="436.817" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint4_linear" x1="121.81" y1="188.987" x2="61.1874" y2="223.987" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint5_linear" x1="121.804" y1="188.989" x2="61.1664" y2="223.998" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint6_linear" x1="36.1071" y1="119.404" x2="-24.5321" y2="154.414" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint7_linear" x1="44.9199" y1="114.316" x2="14.6007" y2="131.821" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint8_linear" x1="139.327" y1="241.774" x2="78.6884" y2="276.784" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint9_linear" x1="139.328" y1="241.775" x2="78.6896" y2="276.784" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint10_linear" x1="68.1619" y1="440.585" x2="7.52286" y2="475.595" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint11_linear" x1="68.1632" y1="440.585" x2="7.52632" y2="475.594" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint12_linear" x1="40.466" y1="164.988" x2="-20.1913" y2="200.008" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint13_linear" x1="40.4707" y1="164.983" x2="-20.167" y2="199.992" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint14_linear" x1="82.0285" y1="527.643" x2="21.3894" y2="562.653" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint15_linear" x1="82.0282" y1="527.642" x2="21.3896" y2="562.652" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint16_linear" x1="317.126" y1="229.445" x2="209.134" y2="291.795" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint17_linear" x1="290.103" y1="245.045" x2="91.4473" y2="359.74" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint18_linear" x1="348.662" y1="316.678" x2="240.669" y2="379.027" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint19_linear" x1="289.963" y1="350.566" x2="-14.9661" y2="526.617" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint20_linear" x1="79.4751" y1="169.414" x2="-28.5172" y2="231.764" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint21_linear" x1="52.4522" y1="185.014" x2="-146.204" y2="299.708" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint22_linear" x1="211.66" y1="218.386" x2="103.668" y2="280.736" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint23_linear" x1="184.635" y1="233.988" x2="-14.0189" y2="348.681" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint24_linear" x1="272.36" y1="373.009" x2="164.368" y2="435.359" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint25_linear" x1="245.338" y1="388.611" x2="46.6825" y2="503.304" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint26_linear" x1="-37.2301" y1="263.604" x2="-145.256" y2="325.973" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint27_linear" x1="130.747" y1="373.631" x2="22.7873" y2="435.962" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint28_linear" x1="130.167" y1="373.966" x2="20.2565" y2="437.423" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>
</div>
</div>
<div class="main__startup">
<div class="startup__container">
<div class="startup__text">
<h5 class="startup__title">Create your <span>next project</span> with startup framework</h5>
<a href="!#" class="startup__link">GET STARTED</a>
</div>
<div class="startup__content">
<div class="startup__lines">
<svg width="823" height="457" viewBox="0 0 823 457" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.3">
<path d="M156.264 152.123C156.264 153.901 154.822 155.342 153.045 155.342C151.267 155.342 149.826 153.901 149.826 152.123C149.826 150.345 151.267 148.904 153.045 148.904C154.822 148.904 156.264 150.345 156.264 152.123Z" fill="url(#paint0_linear)"/>
<path d="M153.578 153.98H152.512V203.575H153.578V153.98Z" fill="url(#paint1_linear)"/>
<g id="startup_svgLine2">
<path d="M239.313 224.136C239.313 225.913 237.872 227.355 236.094 227.355C234.317 227.355 232.875 225.913 232.875 224.136C232.875 222.358 234.317 220.916 236.094 220.916C237.872 220.916 239.313 222.358 239.313 224.136Z" fill="url(#paint2_linear)"/>
<path d="M236.627 225.992H235.561V354.355H236.627V225.992Z" fill="url(#paint3_linear)"/>
</g>
<path d="M6.49889 204.542C6.49889 206.32 5.05713 207.762 3.27962 207.762C1.5021 207.762 0.0603333 206.32 0.0603333 204.542C0.0603333 202.765 1.5021 201.323 3.27962 201.323C5.05713 201.303 6.49889 202.745 6.49889 204.542Z" fill="url(#paint4_linear)"/>
<path d="M3.81285 206.399H2.74634V334.761H3.81285V206.399Z" fill="url(#paint5_linear)"/>
<g id="startup_svgLine3">
<path d="M583.084 172.605C583.084 174.382 581.642 175.824 579.865 175.824C578.087 175.824 576.646 174.382 576.646 172.605C576.646 170.827 578.087 169.385 579.865 169.385C581.642 169.366 583.084 170.808 583.084 172.605Z" fill="url(#paint6_linear)"/>
<path d="M580.398 174.461H579.332V245.565H580.398V174.461Z" fill="url(#paint7_linear)"/>
</g>
<g id="startup_svgLine1">
<path d="M729.136 260.142C729.136 261.919 727.694 263.361 725.917 263.361C724.139 263.361 722.698 261.919 722.698 260.142C722.698 258.364 724.139 256.922 725.917 256.922C727.694 256.922 729.136 258.364 729.136 260.142Z" fill="url(#paint8_linear)"/>
<path d="M726.45 261.999H725.384V333.122H726.45V261.999Z" fill="url(#paint9_linear)"/>
</g>
<g id="startup_svgLine4">
<path d="M689.123 335.808C689.123 337.586 687.681 339.028 685.903 339.028C684.126 339.028 682.684 337.586 682.684 335.808C682.684 334.031 684.126 332.589 685.903 332.589C687.661 332.589 689.123 334.031 689.123 335.808Z" fill="url(#paint10_linear)"/>
<path d="M686.417 337.665H685.35V408.769H686.417V337.665Z" fill="url(#paint11_linear)"/>
</g>
<path d="M656.95 319.474C656.95 321.252 655.508 322.694 653.73 322.694C651.953 322.694 650.511 321.252 650.511 319.474C650.511 317.697 651.953 316.255 653.73 316.255C655.508 316.255 656.95 317.697 656.95 319.474Z" fill="url(#paint12_linear)"/>
<path d="M654.264 321.331H653.197V392.455H654.264V321.331Z" fill="url(#paint13_linear)"/>
<path d="M604.513 135.868C604.513 137.645 603.071 139.087 601.294 139.087C599.516 139.087 598.074 137.645 598.074 135.868C598.074 134.09 599.516 132.648 601.294 132.648C603.052 132.648 604.513 134.09 604.513 135.868Z" fill="url(#paint14_linear)"/>
<path d="M601.807 137.725H600.741V208.829H601.807V137.725Z" fill="url(#paint15_linear)"/>
<g id="startup_svgLine5">
<path d="M375.017 297.925C375.017 299.703 373.575 301.145 371.797 301.145C370.02 301.145 368.578 299.703 368.578 297.925C368.578 296.148 370.02 294.706 371.797 294.706C373.575 294.706 375.017 296.148 375.017 297.925Z" fill="url(#paint18_linear)"/>
<path d="M372.33 299.782H371.264V370.906H372.33V299.782Z" fill="url(#paint19_linear)"/>
</g>
<path d="M643.539 346.118C643.539 347.896 642.097 349.338 640.32 349.338C638.542 349.338 637.101 347.896 637.101 346.118C637.101 344.341 638.542 342.899 640.32 342.899C642.097 342.899 643.539 344.341 643.539 346.118Z" fill="url(#paint20_linear)"/>
<path d="M640.833 347.975H639.767V383.527H640.833V347.975Z" fill="url(#paint21_linear)"/>
<path d="M522.096 167.391C522.096 169.168 520.654 170.61 518.876 170.61C517.099 170.61 515.657 169.168 515.657 167.391C515.657 165.613 517.099 164.171 518.876 164.171C520.654 164.151 522.096 165.593 522.096 167.391Z" fill="url(#paint22_linear)"/>
<path d="M519.41 169.247H518.343V204.799H519.41V169.247Z" fill="url(#paint23_linear)"/>
<g id="startup_svgLine6">
<path d="M751.217 415.8C751.217 417.578 749.775 419.019 747.998 419.019C746.22 419.019 744.778 417.578 744.778 415.8C744.778 414.022 746.22 412.581 747.998 412.581C749.775 412.581 751.217 414.022 751.217 415.8Z" fill="url(#paint24_linear)"/>
<path d="M748.531 417.657H747.464V453.209H748.531V417.657Z" fill="url(#paint25_linear)"/>
</g>
<path d="M707.312 355.777C707.312 357.554 705.871 358.996 704.093 358.996C702.316 358.996 700.874 357.554 700.874 355.777C700.874 353.999 702.316 352.557 704.093 352.557C705.871 352.538 707.312 353.979 707.312 355.777Z" fill="url(#paint26_linear)"/>
<path d="M704.626 357.614H703.56V393.166H704.626V357.614Z" fill="url(#paint27_linear)"/>
<path d="M603.229 405.016C603.229 406.794 601.787 408.236 600.01 408.236C598.232 408.236 596.791 406.794 596.791 405.016C596.791 403.238 598.232 401.797 600.01 401.797C601.787 401.797 603.229 403.238 603.229 405.016Z" fill="url(#paint28_linear)"/>
<path d="M600.543 406.873H599.477V442.425H600.543V406.873Z" fill="url(#paint29_linear)"/>
<path d="M648.042 144.835C648.042 146.613 646.601 148.054 644.823 148.054C643.046 148.054 641.604 146.613 641.604 144.835C641.604 143.057 643.046 141.615 644.823 141.615C646.601 141.615 648.042 143.057 648.042 144.835Z" fill="url(#paint30_linear)"/>
<path d="M645.336 146.692H644.27V217.815H645.336V146.692Z" fill="url(#paint31_linear)"/>
<path d="M757.201 273.533C757.201 275.311 755.76 276.753 753.982 276.753C752.205 276.753 750.763 275.311 750.763 273.533C750.763 271.756 752.205 270.314 753.982 270.314C755.76 270.314 757.201 271.756 757.201 273.533Z" fill="url(#paint32_linear)"/>
<path d="M754.495 275.39H753.429V346.494H754.495V275.39Z" fill="url(#paint33_linear)"/>
<g id="startup_svgLine7">
<path d="M555.394 182.579C555.394 184.357 553.953 185.798 552.175 185.798C550.398 185.798 548.956 184.357 548.956 182.579C548.956 180.801 550.398 179.36 552.175 179.36C553.953 179.34 555.394 180.801 555.394 182.579Z" fill="url(#paint34_linear)"/>
<path d="M552.708 184.436H551.642V255.559H552.708V184.436Z" fill="url(#paint35_linear)"/>
</g>
<path d="M822.989 298.735C822.989 300.513 821.547 301.955 819.77 301.955C817.992 301.955 816.55 300.513 816.55 298.735C816.55 296.958 817.992 295.516 819.77 295.516C821.547 295.496 822.989 296.938 822.989 298.735Z" fill="url(#paint36_linear)"/>
<path d="M820.303 300.592H819.236V371.715H820.303V300.592Z" fill="url(#paint37_linear)"/>
<g id="startup_svgLine8">
<path d="M477.934 53.822C477.934 55.5996 476.493 57.0414 474.715 57.0414C472.938 57.0414 471.496 55.5996 471.496 53.822C471.496 52.0444 472.938 50.6025 474.715 50.6025C476.493 50.6025 477.934 52.0444 477.934 53.822Z" fill="url(#paint38_linear)"/>
<path d="M475.248 55.6787H474.182V301.047H475.248V55.6787Z" fill="url(#paint39_linear)"/>
</g>
<g id="startup_svgLine9">
<path d="M783.528 16.4528C783.528 18.2304 782.086 19.6722 780.309 19.6722C778.531 19.6722 777.09 18.2304 777.09 16.4528C777.09 14.6752 778.531 13.2334 780.309 13.2334C782.067 13.2136 783.528 14.6752 783.528 16.4528Z" fill="url(#paint40_linear)"/>
<path d="M780.822 18.3093H779.756V394.923H780.822V18.3093Z" fill="url(#paint41_linear)"/>
</g>
<g id="startup_svgLine10">
<path d="M176.35 279.063C176.35 280.841 174.908 282.283 173.131 282.283C171.353 282.283 169.911 280.841 169.911 279.063C169.911 277.286 171.353 275.844 173.131 275.844C174.908 275.844 176.35 277.286 176.35 279.063Z" fill="url(#paint42_linear)"/>
<path d="M173.664 280.92H172.597V352.044H173.664V280.92Z" fill="url(#paint43_linear)"/>
</g>
<path d="M46.2164 303.101C46.2164 304.878 44.7746 306.32 42.9971 306.32C41.2196 306.32 39.7778 304.878 39.7778 303.101C39.7778 301.323 41.2196 299.881 42.9971 299.881C44.7746 299.861 46.2164 301.323 46.2164 303.101Z" fill="url(#paint44_linear)"/>
<path d="M43.5304 304.957H42.4639V376.061H43.5304V304.957Z" fill="url(#paint45_linear)"/>
<path d="M74.4196 273.454C74.4196 275.232 72.9778 276.673 71.2003 276.673C69.4228 276.673 67.981 275.232 67.981 273.454C67.981 271.676 69.4228 270.235 71.2003 270.235C72.9778 270.235 74.4196 271.676 74.4196 273.454Z" fill="url(#paint46_linear)"/>
<path d="M71.7336 275.311H70.667V346.435H71.7336V275.311Z" fill="url(#paint47_linear)"/>
<path d="M185.791 219.613C185.791 221.39 184.349 222.832 182.571 222.832C180.794 222.832 179.352 221.39 179.352 219.613C179.352 217.835 180.794 216.393 182.571 216.393C184.349 216.393 185.791 217.835 185.791 219.613Z" fill="url(#paint48_linear)"/>
<path d="M183.105 221.469H182.038V354.848H183.105V221.469Z" fill="url(#paint49_linear)"/>
<path d="M167.048 244.084C167.048 245.862 165.606 247.304 163.828 247.304C162.051 247.304 160.609 245.862 160.609 244.084C160.609 242.307 162.051 240.865 163.828 240.865C165.606 240.845 167.048 242.287 167.048 244.084Z" fill="url(#paint50_linear)"/>
<path d="M164.362 245.941H163.295V352.419H164.362V245.941Z" fill="url(#paint51_linear)"/>
<g id="startup_svgLine11">
<path d="M212.986 102.627C212.986 104.404 211.545 105.846 209.767 105.846C207.99 105.846 206.548 104.404 206.548 102.627C206.548 100.849 207.99 99.4075 209.767 99.4075C211.545 99.4075 212.986 100.849 212.986 102.627Z" fill="url(#paint52_linear)"/>
<path d="M210.3 104.484H209.234V349.852H210.3V104.484Z" fill="url(#paint53_linear)"/>
</g>
<path d="M119.075 209.164C119.075 210.942 117.633 212.384 115.855 212.384C114.078 212.384 112.636 210.942 112.636 209.164C112.636 207.387 114.078 205.945 115.855 205.945C117.633 205.945 119.075 207.387 119.075 209.164Z" fill="url(#paint54_linear)"/>
<path d="M116.389 211.021H115.322V456.389H116.389V211.021Z" fill="url(#paint55_linear)"/>
<g id="startup_svgLine12">
<path d="M70.2128 195.437C70.2128 197.215 68.771 198.657 66.9935 198.657C65.216 198.657 63.7743 197.215 63.7743 195.437C63.7743 193.66 65.216 192.218 66.9935 192.218C68.771 192.218 70.2128 193.66 70.2128 195.437Z" fill="url(#paint56_linear)"/>
<path d="M67.5268 197.294H66.4603V442.662H67.5268V197.294Z" fill="url(#paint57_linear)"/>
</g>
<g id="startup_svgLine13">
<path d="M264.238 51.8268C266.016 51.8268 267.457 50.3854 267.457 48.6074C267.457 46.8293 266.016 45.3879 264.238 45.3879C262.46 45.3879 261.019 46.8293 261.019 48.6074C261.019 50.3854 262.46 51.8268 264.238 51.8268Z" fill="url(#paint58_linear)"/>
<path d="M264.771 50.4641H263.705V295.832H264.771V50.4641Z" fill="url(#paint59_linear)"/>
</g>
<g id="startup_svgLine14">
<path d="M12.7794 3.21943C12.7794 4.99703 11.3377 6.43886 9.56016 6.43886C7.78265 6.43886 6.34088 4.99703 6.34088 3.21943C6.34088 1.44183 7.78265 0 9.56016 0C11.3377 0 12.7794 1.44183 12.7794 3.21943Z" fill="url(#paint60_linear)"/>
<path d="M10.0934 5.07617H9.02689V250.444H10.0934V5.07617Z" fill="url(#paint61_linear)"/>
</g>
<path d="M574.038 143.906C574.038 145.684 572.597 147.126 570.819 147.126C569.042 147.126 567.6 145.684 567.6 143.906C567.6 142.129 569.042 140.687 570.819 140.687C572.597 140.687 574.038 142.129 574.038 143.906Z" fill="url(#paint62_linear)"/>
<path d="M571.353 145.763H570.286V391.131H571.353V145.763Z" fill="url(#paint63_linear)"/>
<path d="M61.4437 145.803C61.4437 147.58 60.002 149.022 58.2244 149.022C56.4469 149.022 55.0052 147.58 55.0052 145.803C55.0052 144.025 56.4469 142.583 58.2244 142.583C59.9822 142.583 61.4437 144.025 61.4437 145.803Z" fill="url(#paint64_linear)"/>
<path d="M58.738 147.659H57.6714V393.027H58.738V147.659Z" fill="url(#paint65_linear)"/>
<path d="M660.761 71.9929C660.761 73.7705 659.32 75.2123 657.542 75.2123C655.765 75.2123 654.323 73.7705 654.323 71.9929C654.323 70.2153 655.765 68.7734 657.542 68.7734C659.3 68.7734 660.761 70.2153 660.761 71.9929Z" fill="url(#paint66_linear)"/>
<path d="M658.056 73.8496H656.989V319.218H658.056V73.8496Z" fill="url(#paint67_linear)"/>
<path d="M792.021 91.7636C792.021 93.5412 790.579 94.983 788.801 94.983C787.024 94.983 785.582 93.5412 785.582 91.7636C785.582 89.986 787.024 88.5442 788.801 88.5442C790.579 88.5442 792.021 89.986 792.021 91.7636Z" fill="url(#paint68_linear)"/>
<path d="M789.335 93.6204H788.268V338.988H789.335V93.6204Z" fill="url(#paint69_linear)"/>
<path d="M592.604 262.314C592.604 264.092 591.162 265.534 589.384 265.534C587.607 265.534 586.165 264.092 586.165 262.314C586.165 260.537 587.607 259.095 589.384 259.095C591.162 259.095 592.604 260.537 592.604 262.314Z" fill="url(#paint70_linear)"/>
<path d="M589.898 264.171H588.831V399.92H589.898V264.171Z" fill="url(#paint71_linear)"/>
<path d="M735.871 190.045C735.871 191.823 734.429 193.264 732.652 193.264C730.874 193.264 729.433 191.823 729.433 190.045C729.433 188.267 730.874 186.826 732.652 186.826C734.429 186.806 735.871 188.248 735.871 190.045Z" fill="url(#paint72_linear)"/>
<path d="M733.165 191.882H732.099V327.631H733.165V191.882Z" fill="url(#paint73_linear)"/>
<path d="M309.604 114.181C309.604 115.959 308.162 117.4 306.385 117.4C304.607 117.4 303.166 115.959 303.166 114.181C303.166 112.403 304.607 110.962 306.385 110.962C308.162 110.942 309.604 112.403 309.604 114.181Z" fill="url(#paint74_linear)"/>
<path d="M306.918 116.038H305.852V251.787H306.918V116.038Z" fill="url(#paint75_linear)"/>
<path d="M254.086 262.117C254.086 263.894 252.645 265.336 250.867 265.336C249.09 265.336 247.648 263.894 247.648 262.117C247.648 260.339 249.09 258.897 250.867 258.897C252.645 258.878 254.086 260.339 254.086 262.117Z" fill="url(#paint76_linear)"/>
<path d="M251.4 263.973H250.334V362.294H251.4V263.973Z" fill="url(#paint77_linear)"/>
<path d="M78.5671 88.6232C78.5671 90.4008 77.1254 91.8426 75.3479 91.8426C73.5703 91.8426 72.1286 90.4008 72.1286 88.6232C72.1286 86.8456 73.5703 85.4038 75.3479 85.4038C77.1254 85.384 78.5671 86.8258 78.5671 88.6232Z" fill="url(#paint78_linear)"/>
<path d="M75.8811 90.4797H74.8146V226.229H75.8811V90.4797Z" fill="url(#paint79_linear)"/>
</g>
<defs>
<linearGradient id="paint0_linear" x1="153.037" y1="170.236" x2="153.037" y2="226.179" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint1_linear" x1="153.038" y1="165.319" x2="153.038" y2="204.343" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint2_linear" x1="236.088" y1="242.258" x2="236.088" y2="298.217" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint3_linear" x1="236.088" y1="255.351" x2="236.088" y2="356.354" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint4_linear" x1="3.27388" y1="222.655" x2="3.27388" y2="278.614" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint5_linear" x1="3.27367" y1="235.748" x2="3.27367" y2="336.752" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint6_linear" x1="579.867" y1="190.716" x2="579.867" y2="246.675" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint7_linear" x1="579.865" y1="190.717" x2="579.865" y2="246.674" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint8_linear" x1="725.914" y1="278.275" x2="725.914" y2="334.249" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint9_linear" x1="725.914" y1="278.269" x2="725.914" y2="334.23" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint10_linear" x1="685.887" y1="353.935" x2="685.887" y2="409.893" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint11_linear" x1="685.887" y1="353.936" x2="685.887" y2="409.893" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint12_linear" x1="653.731" y1="337.592" x2="653.731" y2="393.551" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint13_linear" x1="653.732" y1="337.592" x2="653.732" y2="393.55" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint14_linear" x1="601.279" y1="153.991" x2="601.279" y2="209.932" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint15_linear" x1="601.278" y1="153.997" x2="601.278" y2="209.954" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint16_linear" x1="551.46" y1="361.083" x2="551.46" y2="417.042" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint17_linear" x1="551.461" y1="361.084" x2="551.461" y2="417.041" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint18_linear" x1="371.787" y1="316.052" x2="371.787" y2="372.011" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint19_linear" x1="371.787" y1="316.052" x2="371.787" y2="372.011" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint20_linear" x1="640.308" y1="364.24" x2="640.308" y2="420.199" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint21_linear" x1="640.307" y1="356.108" x2="640.307" y2="384.087" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint22_linear" x1="518.878" y1="185.502" x2="518.878" y2="241.461" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint23_linear" x1="518.878" y1="177.37" x2="518.878" y2="205.349" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint24_linear" x1="747.998" y1="433.923" x2="747.998" y2="489.881" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint25_linear" x1="747.999" y1="425.79" x2="747.999" y2="453.769" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint26_linear" x1="704.096" y1="373.894" x2="704.096" y2="429.868" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint27_linear" x1="704.096" y1="365.756" x2="704.096" y2="393.735" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint28_linear" x1="600.011" y1="423.137" x2="600.011" y2="479.096" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint29_linear" x1="600.009" y1="415.005" x2="600.009" y2="442.982" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint30_linear" x1="644.811" y1="162.96" x2="644.811" y2="218.919" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint31_linear" x1="644.812" y1="162.96" x2="644.812" y2="218.919" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint32_linear" x1="753.968" y1="291.659" x2="753.968" y2="347.618" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint33_linear" x1="753.969" y1="291.658" x2="753.969" y2="347.615" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint34_linear" x1="552.167" y1="200.7" x2="552.167" y2="256.676" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint35_linear" x1="552.166" y1="200.695" x2="552.166" y2="256.654" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint36_linear" x1="819.76" y1="316.849" x2="819.76" y2="372.808" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint37_linear" x1="819.759" y1="316.849" x2="819.759" y2="372.807" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint38_linear" x1="474.711" y1="85.3854" x2="474.711" y2="185.043" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint39_linear" x1="474.71" y1="110.323" x2="474.71" y2="293.646" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint40_linear" x1="780.294" y1="48.0087" x2="780.294" y2="147.666" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint41_linear" x1="780.293" y1="102.177" x2="780.293" y2="383.57" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint42_linear" x1="173.126" y1="297.191" x2="173.126" y2="353.167" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint43_linear" x1="173.126" y1="297.187" x2="173.126" y2="353.145" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint44_linear" x1="42.9963" y1="321.216" x2="42.9963" y2="377.175" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint45_linear" x1="42.9963" y1="321.217" x2="42.9963" y2="377.174" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint46_linear" x1="71.2015" y1="291.576" x2="71.2015" y2="347.535" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint47_linear" x1="71.2025" y1="291.576" x2="71.2025" y2="347.534" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint48_linear" x1="182.572" y1="251.173" x2="182.572" y2="350.83" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint49_linear" x1="182.572" y1="251.172" x2="182.572" y2="350.829" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint50_linear" x1="163.829" y1="275.634" x2="163.829" y2="375.291" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint51_linear" x1="163.828" y1="269.644" x2="163.828" y2="349.202" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint52_linear" x1="209.764" y1="134.19" x2="209.764" y2="233.847" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint53_linear" x1="209.764" y1="159.129" x2="209.764" y2="342.453" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint54_linear" x1="115.858" y1="240.733" x2="115.858" y2="340.39" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint55_linear" x1="115.858" y1="265.671" x2="115.858" y2="448.995" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint56_linear" x1="66.9839" y1="227.003" x2="66.9839" y2="326.66" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint57_linear" x1="66.9834" y1="251.94" x2="66.9834" y2="435.263" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint58_linear" x1="264.236" y1="80.1726" x2="264.236" y2="179.83" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint59_linear" x1="264.237" y1="105.11" x2="264.237" y2="288.432" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint60_linear" x1="9.55027" y1="34.7856" x2="9.55027" y2="134.443" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint61_linear" x1="9.54986" y1="59.7233" x2="9.54986" y2="243.047" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint62_linear" x1="570.817" y1="175.471" x2="570.817" y2="275.127" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint63_linear" x1="570.817" y1="200.408" x2="570.817" y2="383.731" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint64_linear" x1="58.2081" y1="177.373" x2="58.2081" y2="277.03" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint65_linear" x1="58.2077" y1="202.31" x2="58.2077" y2="385.633" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint66_linear" x1="657.527" y1="103.553" x2="657.527" y2="203.21" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint67_linear" x1="657.526" y1="128.491" x2="657.526" y2="311.813" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint68_linear" x1="788.792" y1="123.327" x2="788.792" y2="222.984" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint69_linear" x1="788.792" y1="148.264" x2="788.792" y2="331.587" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint70_linear" x1="589.372" y1="293.882" x2="589.372" y2="393.57" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint71_linear" x1="589.372" y1="294.398" x2="589.372" y2="395.826" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint72_linear" x1="732.638" y1="221.588" x2="732.638" y2="321.214" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint73_linear" x1="732.638" y1="222.123" x2="732.638" y2="323.551" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint74_linear" x1="306.375" y1="145.736" x2="306.375" y2="245.393" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint75_linear" x1="306.375" y1="146.264" x2="306.375" y2="247.691" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint76_linear" x1="250.867" y1="293.672" x2="250.867" y2="393.329" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint77_linear" x1="250.866" y1="285.861" x2="250.866" y2="359.315" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint78_linear" x1="75.3459" y1="120.17" x2="75.3459" y2="219.812" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
<linearGradient id="paint79_linear" x1="75.3462" y1="120.702" x2="75.3462" y2="222.13" gradientUnits="userSpaceOnUse">
<stop stop-color="#A4FFFF"/>
<stop offset="1" stop-color="#A4FFFF" stop-opacity="0"/>
</linearGradient>
</defs>
</svg>
</div>
</div>
</div>
</div>
<div class="main__invest">
<div class="invest__container">
<div class="invest__content">
<h6 class="invest__title">Invest property for better <span>business</span></h6>
<p class="invest__subtle">We are committed to processing the information in order to contact you and talk about your project. We are committed to processing the information.</p>
<a class="invest__link" href="#!">LEARN MORE</a>
</div>
<div class="invest__slider">
<div class="swiper-container invest__swiper-container">
<div class="swiper-wrapper invest__swiper-wrapper">
<div class="swiper-slide invest__slide-сontainer invest__slide1-сontainer">
<div class="invest__slider-content invest__slider1-content">
<div class="invest__slider-img invest__slider1-img">
<img class="invest__img invest__img1" src="ICON/INVEST__SLIDE1.jpg">
</div>
<div class="invest__box invest__box1">
<div class="invest__box-text invest__box1-text">
<p class="invest__box-title invest__box1-title">Omah mukti residence</p>
<p class="invest__box-subtle invest__box1-subtle">Merpati sidomuncul 26 street, UK</p>
</div>
<div class="invest__box-price invest__box1-price">
<p class="invest__box-cost invest__box1-cost">$176,000</p>
<p class="invest__box-about invest__box1-about">Funding Request</p>
</div>
<div class="invest__box-items invest__box1-items">
<div class="invest__box-item invest__box1-item">
<p class="invest__box-item-value invest__box1-item-value">13%</p>
<p class="invest__box-item-name invest__box1-item-name">Apr</p>
</div>
<div class="invest__box-item invest__box1-item">
<p class="invest__box-item-value invest__box1-item-value">68%</p>
<p class="invest__box-item-name invest__box1-item-name">Ltv</p>
</div>
<div class="invest__box-item invest__box1-item">
<p class="invest__box-item-value invest__box1-item-value">12 mth</p>
<p class="invest__box-item-name invest__box1-item-name">Loan</p>
</div>
</div>
</div>
</div>
<div class="invest__card-pennant invest__card-pennant1">
<p class="card-pennant__month card-pennant1__month">6 month</p>
<p class="card-pennant__value card-pennant1__value">increase 12%</p>
</div>
</div>
<div class="swiper-slide invest__slide-сontainer invest__slide2-сontainer">
<div class="invest__slider-content invest__slider2-content">
<div class="invest__slider-img invest__slider2-img">
<img class="invest__img invest__img2" src="ICON/INVEST__SLIDE2.jpg">
</div>
<div class="invest__box invest__box2">
<div class="invest__box-text invest__box2-text">
<p class="invest__box-title invest__box2-title">Omah mukti residence</p>
<p class="invest__box-subtle invest__box2-subtle">Merpati sidomuncul 26 street, UK</p>
</div>
<div class="invest__box-price invest__box2-price">
<p class="invest__box-cost invest__box2-cost">$176,000</p>
<p class="invest__box-about invest__box2-about">Funding Request</p>
</div>
<div class="invest__box-items invest__box2-items">
<div class="invest__box-item invest__box2-item">
<p class="invest__box-item-value invest__box2-item-value">13%</p>
<p class="invest__box-item-name invest__box2-item-name">Apr</p>
</div>
<div class="invest__box-item invest__box2-item">
<p class="invest__box-item-value invest__box2-item-value">68%</p>
<p class="invest__box-item-name invest__box2-item-name">Ltv</p>
</div>
<div class="invest__box-item invest__box2-item">
<p class="invest__box-item-value invest__box2-item-value">12 mth</p>
<p class="invest__box-item-name invest__box2-item-name">Loan</p>
</div>
</div>
</div>
</div>
<div class="invest__card-pennant invest__card-pennant2">
<p class="card-pennant__month card-pennant2__month">6 month</p>
<p class="card-pennant__value card-pennant2__value">increase 12%</p>
</div>
</div>
<div class="swiper-slide invest__slide-сontainer invest__slide3-сontainer">
<div class="invest__slider-content invest__slider3-content">
<div class="invest__slider-img invest__slider3-img">
<img class="invest__img invest__img3" src="ICON/INVEST__SLIDE3.jpg">
</div>
<div class="invest__box invest__box3">
<div class="invest__box-text invest__box3-text">
<p class="invest__box-title invest__box3-title">Omah mukti residence</p>
<p class="invest__box-subtle invest__box3-subtle">Merpati sidomuncul 26 street, UK</p>
</div>
<div class="invest__box-price invest__box3-price">
<p class="invest__box-cost invest__box3-cost">$176,000</p>
<p class="invest__box-about invest__box3-about">Funding Request</p>
</div>
<div class="invest__box-items invest__box3-items">
<div class="invest__box-item invest__box3-item">
<p class="invest__box-item-value invest__box3-item-value">13%</p>
<p class="invest__box-item-name invest__box3-item-name">Apr</p>
</div>
<div class="invest__box-item invest__box3-item">
<p class="invest__box-item-value invest__box3-item-value">68%</p>
<p class="invest__box-item-name invest__box3-item-name">Ltv</p>
</div>
<div class="invest__box-item invest__box3-item">
<p class="invest__box-item-value invest__box3-item-value">12 mth</p>
<p class="invest__box-item-name invest__box3-item-name">Loan</p>
</div>
</div>
</div>
</div>
<div class="invest__card-pennant invest__card-pennant2">
<p class="card-pennant__month card-pennant2__month">6 month</p>
<p class="card-pennant__value card-pennant2__value">increase 12%</p>
</div>
</div>
</div>
<!-- <div class="swiper-pagination traffic__swiper-pagination"></div> -->
</div>
</div>
</div>
<div class="invest__map"></div>
</div>
<div class="main__finding">
<div class="finding__container">
<div class="finding__content">
<div class="finding__shapes"></div>
<div class="finding__image-container">
<img class="finding__img" src="ICON/FINDING__IMG.png">
</div>
</div>
<div class="finding__text">
<p class="finding__title">Help Finding Information Online</p>
<p class="finding__subtle">Fully customizable and neatly organized components <br> will help you work faster without limiting creative freedom.</p>
<d class="finding__items">
<div class="finding__item finding__item1">
<div class="finding__item-title finding__item1-title">Feature One</div>
<div class="finding__item-subtle finding__item1-subtle">Fully customizable and neatly organized components will help you work faster </div>
</div>
<div class="finding__item finding__item2">
<div class="finding__item-title finding__item2-title">Feature Two</div>
<div class="finding__item-subtle finding__item2-subtle">Fully customizable and neatly organized components will help you work faster </div>
</div>
</d>
</div>
</div>
<div class="finding__svg-lines">
<svg width="428" height="617" viewBox="0 0 428 617" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.2">
<path d="M90.2822 180.923C88.3559 182.035 85.8914 181.375 84.7793 179.448C83.6671 177.522 84.3275 175.058 86.2538 173.945C88.18 172.833 90.6445 173.494 91.7567 175.42C92.8565 177.325 92.2084 179.811 90.2822 180.923Z" fill="url(#paint0_linear)"/>
<path d="M8.83754 222.494L9.50482 223.65L86.5559 179.165L85.8887 178.009L8.83754 222.494Z" fill="url(#paint1_linear)"/>
<path d="M86.7705 393.956C84.8442 395.068 82.3797 394.408 81.2676 392.482C80.1555 390.555 80.8158 388.091 82.7421 386.979C84.6684 385.867 87.1329 386.527 88.245 388.453C89.3571 390.38 88.6968 392.844 86.7705 393.956Z" fill="url(#paint2_linear)"/>
<path d="M5.33821 435.549L6.00549 436.705L83.078 392.207L82.4107 391.051L5.33821 435.549Z" fill="url(#paint3_linear)"/>
<path d="M143.466 181.152C141.539 182.264 139.075 181.604 137.963 179.677C136.851 177.751 137.511 175.287 139.437 174.175C141.364 173.062 143.828 173.723 144.94 175.649C146.052 177.575 145.392 180.04 143.466 181.152Z" fill="url(#paint4_linear)"/>
<path d="M62.021 222.723L62.6883 223.879L139.739 179.394L139.072 178.238L62.021 222.723Z" fill="url(#paint5_linear)"/>
<g id="">
<path d="M57.774 111.568C55.8477 112.68 53.3832 112.02 52.2711 110.093C51.1589 108.167 51.8193 105.703 53.7456 104.59C55.6718 103.478 58.1364 104.139 59.2485 106.065C60.3483 107.97 59.7003 110.456 57.774 111.568Z" fill="url(#paint6_linear)"/>
<path d="M14.8549 130.896L15.5222 132.052L54.0478 109.809L53.3805 108.654L14.8549 130.896Z" fill="url(#paint7_linear)"/>
</g>
<g id="advice_svgLine3">
<path d="M160.984 233.934C159.057 235.047 156.593 234.386 155.481 232.46C154.368 230.534 155.029 228.069 156.955 226.957C158.881 225.845 161.346 226.505 162.458 228.432C163.57 230.358 162.91 232.822 160.984 233.934Z" fill="url(#paint8_linear)"/>
<path d="M79.5513 275.527L80.2186 276.683L157.291 232.185L156.624 231.029L79.5513 275.527Z" fill="url(#paint9_linear)"/>
</g>
<g id="">
<path d="M89.8187 432.748C87.8925 433.86 85.428 433.2 84.3158 431.274C83.2037 429.347 83.864 426.883 85.7903 425.771C87.7166 424.658 90.1811 425.319 91.2932 427.245C92.4054 429.171 91.745 431.636 89.8187 432.748Z" fill="url(#paint10_linear)"/>
<path d="M8.39552 474.307L9.06281 475.463L86.1139 430.977L85.4466 429.822L8.39552 474.307Z" fill="url(#paint11_linear)"/>
</g>
<path d="M62.1152 157.147C60.189 158.259 57.7245 157.599 56.6123 155.673C55.5002 153.746 56.1606 151.282 58.0868 150.17C60.0131 149.058 62.4776 149.718 63.5897 151.644C64.7233 153.558 64.0629 156.023 62.1152 157.147Z" fill="url(#paint12_linear)"/>