-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecurity.html
1214 lines (1174 loc) · 107 KB
/
security.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>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en-US"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!-->
<!--<![endif]-->
<!--[if gte IE 9] <style type="text/css"> .gradient {filter: none;}</style><![endif]-->
<!--[if !IE]><html lang="en"><![endif]-->
<html lang="en-US" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Required meta tags for responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Favicon and touch icons -->
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon/favicon-16x16.png" />
<meta name="misapplication-TileColor" content="#ffffff" />
<meta name="theme-color" content="#ffffff" />
<!-- Twitter Card data -->
<meta name="twitter:card" content="" />
<meta name="twitter:site" content="@twitter_username" />
<meta name="twitter:title" content="" />
<meta name="twitter:description" content="" />
<meta name="twitter:image" content="" />
<!-- Open Graph data -->
<meta property="og:title" content="" />
<meta property="og:type" content="article" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<meta property="og:description" content="" />
<meta property="og:site_name" content="R" />
<meta property="fb:admins" content="Facebook numeric ID" />
<!-- gmail verification -->
<meta name="google-site-verification" content="" />
<!-- Website title -->
<title>Security</title>
<link rel="stylesheet" href="assets/css/bootstrap-icons.css" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/jarallax.css" />
<!-- Main CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!-- jquery -->
<script src="assets/js/jquery-3.6.0.min.js"></script>
</head>
<body>
<!-- Main Coding Start Here -->
<!-- navbar -->
<nav class="navbar navbar-expand-lg position-absolute top-0 start-0 w-100" style="z-index: 1000;">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="assets/img/logo.svg" alt="logo" class="img-fluid" />
</a>
<div class="toggler d-lg-none d-flex align-items-center gap-3">
<a class="nav-link btn btn-primary px-3 py-1 text-light is-rounded btn-login" href="#">Log In</a>
<button class="navbar-toggler" type="button">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M21.9 6.24074H2.1C1.49281 6.24074 1 5.73884 1 5.12037C1 4.5019 1.49281 4 2.1 4H21.9C22.5072 4.00004 23 4.50193 23 5.1204C23 5.73884 22.5072 6.24074 21.9 6.24074ZM11.3105 18.668H21.9C22.5072 18.668 23 19.1699 23 19.7883C23 20.4068 22.5072 20.9087 21.9 20.9087H11.3105C10.7033 20.9087 10.2105 20.4068 10.2105 19.7883C10.2105 19.1699 10.7033 18.668 11.3105 18.668ZM21.9 11.332H2.1C1.49281 11.332 1 11.834 1 12.4524C1 13.0709 1.49281 13.5728 2.1 13.5728H21.9C22.5072 13.5728 23 13.0709 23 12.4524C23 11.834 22.5072 11.332 21.9 11.332Z"
fill="white" />
</svg>
</button>
</div>
<div class="collapse navbar-collapse" id="navToggle">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link mx-lg-2" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link mx-lg-2" href="#">Security</a>
</li>
<li class="nav-item">
<a class="nav-link mx-lg-2" href="#">Ownership</a>
</li>
<li class="nav-item">
<a class="nav-link mx-lg-2" href="#">Network</a>
</li>
<li class="nav-item">
<a class="nav-link mx-lg-2" href="#">Technology</a>
</li>
<li class="nav-item">
<a class="nav-link mx-lg-2" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link btn btn-primary px-4 text-light is-rounded btn-login ms-lg-2" href="#">Log In</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- navbar -->
<!-- banner -->
<section class="banner jarallax">
<img class="jarallax-img img-fluid" src="assets/img/banner-img-2.png" alt="img" />
<div class="container">
<div class="row banner-content justify-content-center flex-column text-white">
<div class="col-xl-7">
<h1 class="banner-title mb-4">Security</h1>
<p class="banner-sub-title mb-4">
Security of ownership is everything. Total security of <br class="d-none d-xl-inline" />
title, condition and provenance are the foundations <br class="d-none d-xl-inline" /> of WineTrust.
</p>
<a href="#story" class="btn scroll-down position-absolute start-50 bottom-0 mb-5 text-center translate-middle-x">
<p class="mb-2 text-white text-uppercase" style="letter-spacing: 4px;">
<small>Scroll Down</small>
</p>
<svg width="24" height="33" viewBox="0 0 24 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle opacity="0.1" cx="12" cy="21" r="12" fill="white" />
<path
d="M13 1C13 0.447715 12.5523 0 12 0C11.4477 0 11 0.447715 11 1H13ZM11.2929 25.7071C11.6834 26.0976 12.3166 26.0976 12.7071 25.7071L19.0711 19.3431C19.4616 18.9526 19.4616 18.3195 19.0711 17.9289C18.6805 17.5384 18.0474 17.5384 17.6569 17.9289L12 23.5858L6.34315 17.9289C5.95262 17.5384 5.31946 17.5384 4.92893 17.9289C4.53841 18.3195 4.53841 18.9526 4.92893 19.3431L11.2929 25.7071ZM11 1V25H13V1H11Z"
fill="#C9D4DF" />
</svg>
</a>
</div>
</div>
</div>
</section>
<!-- banner -->
<!-- spirits-owners -->
<section class="spirits-owners section-padding">
<div class="container">
<div class="row mb-5">
<div class="col-xl-10 mx-auto">
<div class="section-header text-center">
<h2 class="title fw-bold mb-2 mb-lg-4">
WineTrust provides a six point <br class="d-none d-xl-inline" />
<span class="text-clr-blue">Security Guarantee</span>
</h2>
</div>
</div>
</div>
<div class="row text-center justify-content-center">
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="45" cy="45" r="45" fill="#E2F3FF" />
<g clip-path="url(#clip0)">
<path d="M20 37.2422H70V70.0008H20V37.2422Z" fill="#C7E2FF" />
<path d="M70 37.2414H20L45 20L70 37.2414Z" fill="#1483F8" />
<path d="M23.4483 40.6914H66.5517V70.0017H23.4483V40.6914Z" fill="#1483F8" />
<path opacity="0.2" d="M63.1035 40.6914H66.5517V70.0017H63.1035V40.6914Z" fill="#002954" />
<path d="M45 51.8984H63.1034V66.5536H45V51.8984Z" fill="#64B5F3" />
<path d="M63.1034 51.899H45V46.7266H57.069L63.1034 51.899Z" fill="#64B5F3" />
<path opacity="0.1" d="M59.6552 51.8984H63.1035V66.5536H59.6552V51.8984Z" fill="#3F6C9B" />
<path
d="M45 30.3443C46.4283 30.3443 47.5862 29.1864 47.5862 27.7581C47.5862 26.3298 46.4283 25.1719 45 25.1719C43.5717 25.1719 42.4138 26.3298 42.4138 27.7581C42.4138 29.1864 43.5717 30.3443 45 30.3443Z"
fill="#C7E2FF" />
<path d="M45 46.7266V51.899H26.8966L32.9311 46.7266H45Z" fill="#64B5F3" />
<path d="M26.8965 51.8984H45V66.5536H26.8965V51.8984Z" fill="#64B5F3" />
<path opacity="0.1" d="M41.5517 51.8984H45V66.5536H41.5517V51.8984Z" fill="#3F6C9B" />
<path
d="M45 24.3086C44.318 24.3086 43.6513 24.5108 43.0843 24.8897C42.5172 25.2686 42.0752 25.8072 41.8142 26.4373C41.5532 27.0674 41.4849 27.7607 41.618 28.4296C41.751 29.0985 42.0795 29.7129 42.5617 30.1952C43.044 30.6774 43.6584 31.0058 44.3273 31.1389C44.9962 31.2719 45.6895 31.2037 46.3196 30.9427C46.9497 30.6817 47.4883 30.2397 47.8672 29.6726C48.2461 29.1056 48.4483 28.4389 48.4483 27.7569C48.4483 26.8423 48.085 25.9652 47.4383 25.3186C46.7916 24.6719 45.9146 24.3086 45 24.3086ZM45 29.481C44.659 29.481 44.3257 29.3799 44.0421 29.1904C43.7586 29.001 43.5376 28.7317 43.4071 28.4167C43.2766 28.1016 43.2425 27.755 43.309 27.4205C43.3755 27.0861 43.5397 26.7788 43.7809 26.5377C44.022 26.2966 44.3292 26.1324 44.6637 26.0659C44.9981 25.9993 45.3448 26.0335 45.6598 26.164C45.9749 26.2945 46.2441 26.5155 46.4336 26.799C46.623 27.0825 46.7242 27.4159 46.7242 27.7569C46.7242 28.2141 46.5425 28.6527 46.2192 28.976C45.8958 29.2994 45.4573 29.481 45 29.481Z"
fill="white" />
<path
d="M63.6552 51.2512L63.6638 51.2426L57.6293 46.0702C57.4724 45.938 57.2742 45.8648 57.069 45.8633H32.931C32.7258 45.8648 32.5276 45.938 32.3707 46.0702L26.3362 51.2426L26.3448 51.2512C26.2483 51.3292 26.1704 51.4277 26.1167 51.5395C26.0631 51.6513 26.035 51.7737 26.0345 51.8978V66.5529C26.0345 66.7816 26.1253 67.0008 26.287 67.1625C26.4486 67.3242 26.6679 67.415 26.8966 67.415H63.1034C63.3321 67.415 63.5514 67.3242 63.713 67.1625C63.8747 67.0008 63.9655 66.7816 63.9655 66.5529V51.8978C63.965 51.7737 63.9369 51.6513 63.8833 51.5395C63.8296 51.4277 63.7517 51.3292 63.6552 51.2512ZM60.7759 51.0357H49.1983L56.9138 47.7254L60.7759 51.0357ZM60.6724 52.7598L54.0517 58.1133L47.431 52.7598H60.6724ZM45.8621 47.5874H52.8707L45.8621 50.5874V47.5874ZM33.0862 47.7254L40.8017 51.0357H29.2241L33.0862 47.7254ZM42.569 52.7598L35.9483 58.1133L29.3276 52.7598H42.569ZM27.7586 53.7081L34.5776 59.2254L27.7586 64.7426V53.7081ZM29.3276 65.6909L35.9483 60.3374L42.569 65.6909H29.3276ZM44.1379 64.7426L37.319 59.2254L44.1379 53.7081V64.7426ZM44.1379 50.5874L37.1293 47.5874H44.1379V50.5874ZM45.8621 53.7081L52.681 59.2254L45.8621 64.7426V53.7081ZM47.431 65.6909L54.0517 60.3374L60.6724 65.6909H47.431ZM62.2414 64.7426L55.4224 59.2254L62.2414 53.7081V64.7426Z"
fill="white" />
<path d="M41.5517 32.9297H48.4483V34.6538H41.5517V32.9297Z" fill="white" />
<path d="M50.1724 32.9297H51.8966V34.6538H50.1724V32.9297Z" fill="white" />
<path d="M38.1035 32.9297H39.8276V34.6538H38.1035V32.9297Z" fill="white" />
</g>
</svg>
</div>
<p class="mb-3 fw-bold text-white">
The Best Warehouses
</p>
<p class="mb-0">
<small>
our storage warehouses must pass an 18-point quality check. Optimal storage conditions are guaranteed.
</small>
</p>
</div>
</div>
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="45" cy="45" r="45" fill="#E2F3FF" />
<g clip-path="url(#clip0)">
<path
d="M35.5859 20C34.777 20 34.1211 20.6559 34.1211 21.4648V24.6028C34.1211 25.4118 34.777 26.0677 35.5859 26.0677C36.3949 26.0677 37.0508 25.4118 37.0508 24.6028V21.4648C37.0508 20.6559 36.3949 20 35.5859 20Z"
fill="#1483F8" />
<path
d="M24.6028 34.1211H21.4648C20.6559 34.1211 20 34.777 20 35.5859C20 36.3949 20.6559 37.0508 21.4648 37.0508H24.6028C25.4118 37.0508 26.0677 36.3949 26.0677 35.5859C26.0677 34.777 25.4118 34.1211 24.6028 34.1211Z"
fill="#1483F8" />
<path
d="M26.6364 24.5618C26.0643 23.9897 25.1368 23.9899 24.5648 24.562C23.9929 25.134 23.993 26.0616 24.565 26.6335L27.8937 29.9615C28.4659 30.5334 29.3935 30.5332 29.9652 29.9612C30.5372 29.3891 30.5371 28.4616 29.965 27.8896L26.6364 24.5618Z"
fill="#1483F8" />
<path
d="M54.4141 63.9297C53.6051 63.9297 52.9493 64.5855 52.9493 65.3945V68.5325C52.9493 69.3415 53.6051 69.9974 54.4141 69.9974C55.2231 69.9974 55.879 69.3415 55.879 68.5325V65.3945C55.879 64.5855 55.2231 63.9297 54.4141 63.9297Z"
fill="#1483F8" />
<path
d="M68.5351 52.9492H65.3972C64.5882 52.9492 63.9323 53.6051 63.9323 54.4141C63.9323 55.223 64.5882 55.8789 65.3972 55.8789H68.5351C69.3441 55.8789 70 55.223 70 54.4141C70 53.6051 69.3441 52.9492 68.5351 52.9492Z"
fill="#1483F8" />
<path
d="M62.1062 60.0343C61.5341 59.4625 60.6066 59.4624 60.0346 60.0346C59.4627 60.6067 59.4628 61.5342 60.0348 62.1063L63.3635 65.4341C63.9357 66.0061 64.8632 66.0058 65.4351 65.4338C66.0071 64.8617 66.007 63.9342 65.4349 63.3621L62.1062 60.0343Z"
fill="#1483F8" />
<path
d="M50.1006 23.4119L47.7311 25.7814C43.1818 30.3315 43.1818 37.719 47.7311 42.2683C52.2811 46.8183 59.6687 46.8183 64.2187 42.2683L66.5874 39.8995C71.1374 35.3495 71.1374 27.9619 66.5874 23.4119C62.0383 18.8627 54.6507 18.8627 50.1006 23.4119ZM61.8733 35.2095L60.6887 36.394C58.7345 38.349 55.5603 38.349 53.6053 36.394C51.6511 34.4399 51.5663 31.3505 53.5204 29.3955L54.7899 28.1261C56.7448 26.1719 59.9191 26.1719 61.8733 28.1261C63.8283 30.0812 63.8282 33.2553 61.8733 35.2095Z"
fill="#C7E2FF" />
<path
d="M66.5875 23.4141L61.8732 28.1282C63.8282 30.0832 63.8282 33.2574 61.8732 35.2116L60.6886 36.3962C58.7344 38.3512 55.5602 38.3512 53.6052 36.3962L47.731 42.2704C52.281 46.8204 59.6686 46.8204 64.2186 42.2704L66.5874 39.9017C71.1375 35.3517 71.1375 27.9641 66.5875 23.4141Z"
fill="#1483F8" />
<path
d="M54.7898 30.4939C50.2406 25.9447 42.8531 25.9447 38.303 30.4939C36.2155 32.5814 35.0863 35.2665 34.9138 37.9998C34.9138 38.8088 35.5696 39.4646 36.3786 39.4646H40.1424C40.9514 39.4646 41.6072 38.8088 41.6072 37.9998C41.7614 36.9781 42.2313 35.9948 43.0172 35.2081C44.9723 33.2539 48.1456 33.2539 50.1006 35.2081L52.4456 37.5531C54.3998 39.5073 57.5739 39.5073 59.529 37.5531L60.6891 36.3932L54.7898 30.4939Z"
fill="#1483F8" />
<path
d="M52.4457 37.5537C54.3999 39.5079 57.5741 39.5079 59.5291 37.5537L60.6892 36.3936L57.1471 32.8516L52.4453 37.5532L52.4457 37.5537Z"
fill="#C7E2FF" />
<path
d="M39.8993 66.5892L42.2689 64.2196C46.8181 59.6695 46.8181 52.282 42.2689 47.7328C37.7189 43.1828 30.3313 43.1828 25.7813 47.7328L23.4125 50.1016C18.8625 54.6516 18.8625 62.0392 23.4125 66.5892C27.9617 71.1384 35.3493 71.1384 39.8993 66.5892ZM28.1268 54.7916L29.3113 53.607C31.2655 51.6521 34.4397 51.6521 36.3947 53.607C38.3489 55.5611 38.4337 58.6506 36.4796 60.6056L35.2102 61.875C33.2552 63.8292 30.081 63.8292 28.1268 61.875C26.1717 59.9199 26.1718 56.7458 28.1268 54.7916Z"
fill="#C7E2FF" />
<path
d="M42.2689 47.7305L36.3947 53.6047C38.3489 55.5588 38.4338 58.6482 36.4796 60.6032L35.2101 61.8726C33.2552 63.8268 30.0809 63.8268 28.1267 61.8726L23.4125 66.5868C27.9617 71.136 35.3493 71.136 39.8993 66.5868L42.2688 64.2173C46.818 59.6672 46.818 52.2797 42.2689 47.7305Z"
fill="#1483F8" />
<path
d="M35.2101 59.5058C39.7593 64.0551 47.1468 64.0551 51.6969 59.5058C53.7844 57.4184 54.9136 54.7333 55.0862 52C55.0862 51.191 54.4303 50.5352 53.6213 50.5352H49.8576C49.0486 50.5352 48.3927 51.191 48.3927 52C48.2385 53.0217 47.7686 54.005 46.9828 54.7917C45.0277 56.7459 41.8543 56.7459 39.8994 54.7917L37.5543 52.4467C35.6001 50.4925 32.426 50.4925 30.4709 52.4467L29.3108 53.6066L35.2101 59.5058Z"
fill="#1483F8" />
<path
d="M35.2102 59.5058C39.7594 64.0551 47.1469 64.0551 51.697 59.5058C53.7845 57.4184 54.9137 54.7333 55.0862 52C55.0862 51.191 54.4304 50.5352 53.6214 50.5352H49.8576C49.0486 50.5352 48.3928 51.191 48.3928 52C48.2386 53.0217 47.7687 54.005 46.9828 54.7917C45.0277 56.7459 41.8544 56.7459 39.8994 54.7917L37.5548 52.4471L32.853 57.1488L35.2102 59.5058Z"
fill="#C7E2FF" />
</g>
</svg>
</div>
<p class="mb-3 fw-bold text-white">
Full Independence
</p>
<p class="mb-0">
<small>
WineTrust is run by a professional and independent team and is ultimately governed by its members via the WineTrust Foundation.
</small>
</p>
</div>
</div>
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="45" cy="45" r="45" fill="#E2F3FF" />
<path d="M20 20H53.3333V70H20V20Z" fill="#1483F8" />
<path d="M22.5001 32.5H39.1668V34.1667H22.5001V32.5Z" fill="white" />
<path d="M54.3268 60.1575L58.3334 64.1642L64.1668 58.3308L59.9609 54.125" fill="#1483F8" />
<path
d="M48.3333 62.4974C56.1573 62.4974 62.5 56.1548 62.5 48.3307C62.5 40.5067 56.1573 34.1641 48.3333 34.1641C40.5093 34.1641 34.1666 40.5067 34.1666 48.3307C34.1666 56.1548 40.5093 62.4974 48.3333 62.4974Z"
fill="#C7E2FF" />
<path
d="M48.3333 59.1706C54.3164 59.1706 59.1667 54.3203 59.1667 48.3372C59.1667 42.3542 54.3164 37.5039 48.3333 37.5039C42.3502 37.5039 37.5 42.3542 37.5 48.3372C37.5 54.3203 42.3502 59.1706 48.3333 59.1706Z"
fill="white" />
<path
d="M59.1666 63.3307L64.97 69.1341C65.2435 69.4077 65.5683 69.6248 65.9257 69.773C66.2832 69.9211 66.6664 69.9974 67.0533 69.9974C67.8348 69.9974 68.5843 69.6869 69.1369 69.1343C69.6895 68.5817 70 67.8322 70 67.0507C69.9999 66.6638 69.9237 66.2806 69.7755 65.9232C69.6274 65.5657 69.4103 65.2409 69.1366 64.9674L63.3333 59.1641"
fill="#1483F8" />
<path d="M23.3334 23.332H50V29.9987H23.3334V23.332Z" fill="white" />
<path
d="M47.4999 26.6693V23.3359H23.3333V27.5026H46.6666C46.8876 27.5026 47.0996 27.4148 47.2558 27.2585C47.4121 27.1022 47.4999 26.8903 47.4999 26.6693Z"
fill="#C7E2FF" />
<path d="M22.4999 65.8398H50.8332V67.5065H22.4999V65.8398Z" fill="white" />
<path d="M22.4999 62.5H35.8332V64.1667H22.4999V62.5Z" fill="white" />
<path d="M22.4999 59.1719H35.8332V60.8385H22.4999V59.1719Z" fill="white" />
<path d="M22.4999 35.8359H32.4999V37.5026H22.4999V35.8359Z" fill="white" />
<path d="M22.4999 39.168H32.4999V40.8346H22.4999V39.168Z" fill="white" />
<path d="M22.4999 42.5039H32.4999V44.1706H22.4999V42.5039Z" fill="white" />
<path d="M41.6666 49.1693L46.6666 54.1693L55 45.8359L52.5 43.3359L46.6666 49.1693L44.1666 46.6693L41.6666 49.1693Z"
fill="#1483F8" />
</svg>
</div>
<p class="mb-3 fw-bold text-white">
Audited and Insured
</p>
<p class="mb-0">
<small>
All assets in WineTrust as fully audited and insured to replacement value.
</small>
</p>
</div>
</div>
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="45" cy="45" r="45" fill="#E2F3FF" />
<path
d="M60.8334 56.668C63.2645 56.668 65.5961 57.6337 67.3152 59.3528C69.0343 61.0719 70 63.4035 70 65.8346V70.0013H51.6667V65.8346C51.6667 63.4035 52.6325 61.0719 54.3515 59.3528C56.0706 57.6337 58.4022 56.668 60.8334 56.668Z"
fill="#1483F8" />
<path
d="M60.8333 56.668C64.9754 56.668 68.3333 53.3101 68.3333 49.168C68.3333 45.0258 64.9754 41.668 60.8333 41.668C56.6912 41.668 53.3333 45.0258 53.3333 49.168C53.3333 53.3101 56.6912 56.668 60.8333 56.668Z"
fill="#C7E2FF" />
<path
d="M65.9441 58.2238L60.8333 63.3346L55.7224 58.2238C57.2326 57.2069 59.0126 56.665 60.8333 56.668C62.654 56.665 64.4339 57.2069 65.9441 58.2238Z"
fill="#C7E2FF" />
<path
d="M67.9067 46.6666H62.0833C61.7518 46.6666 61.4339 46.7983 61.1994 47.0327C60.965 47.2671 60.8333 47.5851 60.8333 47.9166C60.8333 48.2481 60.7016 48.5661 60.4672 48.8005C60.2328 49.0349 59.9148 49.1666 59.5833 49.1666H53.3333C53.3318 47.3962 53.9566 45.6824 55.0971 44.3284C56.2376 42.9744 57.8204 42.0675 59.5652 41.7681C61.3101 41.4688 63.1046 41.7964 64.6312 42.6929C66.1578 43.5893 67.318 44.997 67.9067 46.6666Z"
fill="#002954" />
<path
d="M29.1667 56.668C31.5978 56.668 33.9294 57.6337 35.6485 59.3528C37.3676 61.0719 38.3333 63.4035 38.3333 65.8346V70.0013H20V65.8346C20 63.4035 20.9658 61.0719 22.6849 59.3528C24.4039 57.6337 26.7355 56.668 29.1667 56.668Z"
fill="#1483F8" />
<path
d="M29.1667 56.668C33.3088 56.668 36.6667 53.3101 36.6667 49.168C36.6667 45.0258 33.3088 41.668 29.1667 41.668C25.0246 41.668 21.6667 45.0258 21.6667 49.168C21.6667 53.3101 25.0246 56.668 29.1667 56.668Z"
fill="#C7E2FF" />
<path
d="M34.2775 58.2238L29.1667 63.3346L24.0558 58.2238C25.566 57.2069 27.346 56.665 29.1667 56.668C30.9873 56.665 32.7673 57.2069 34.2775 58.2238Z"
fill="#C7E2FF" />
<path
d="M36.24 46.6666H30.4167C30.0852 46.6666 29.7672 46.7983 29.5328 47.0327C29.2984 47.2671 29.1667 47.5851 29.1667 47.9166C29.1667 48.2481 29.035 48.5661 28.8006 48.8005C28.5662 49.0349 28.2482 49.1666 27.9167 49.1666H21.6667C21.6652 47.3962 22.29 45.6824 23.4305 44.3284C24.571 42.9744 26.1537 42.0675 27.8986 41.7681C29.6435 41.4688 31.438 41.7964 32.9646 42.6929C34.4912 43.5893 35.6514 44.997 36.24 46.6666Z"
fill="#002954" />
<path
d="M55.8333 32.5V29.1667L53.9292 28.7858C53.7013 27.7883 53.3068 26.8364 52.7625 25.97L53.8458 24.3517L51.4817 21.9942L49.8633 23.0775C48.9969 22.5332 48.045 22.1387 47.0475 21.9108L46.6667 20H43.3333L42.9525 21.9042C41.955 22.1321 41.003 22.5265 40.1367 23.0708L38.5183 21.9942L36.1608 24.3517L37.24 25.97C36.6956 26.8364 36.3012 27.7883 36.0733 28.7858L34.1667 29.1667V32.5L36.0708 32.8808C36.2987 33.8783 36.6931 34.8303 37.2375 35.6967L36.1583 37.315L38.5158 39.6725L40.1342 38.5933C41.0005 39.1377 41.9525 39.5321 42.95 39.76L43.3333 41.6667H46.6667L47.0475 39.7625C48.045 39.5346 48.9969 39.1402 49.8633 38.5958L51.4817 39.675L53.8392 37.3175L52.7558 35.6992C53.3002 34.8328 53.6946 33.8808 53.9225 32.8833L55.8333 32.5Z"
fill="#1483F8" />
<path
d="M45 35.8359C47.7614 35.8359 50 33.5974 50 30.8359C50 28.0745 47.7614 25.8359 45 25.8359C42.2386 25.8359 40 28.0745 40 30.8359C40 33.5974 42.2386 35.8359 45 35.8359Z"
fill="#F2F2F2" />
<path d="M46.6667 45L50.8334 49.1667L46.6667 53.3333V50.8333H40.8334V47.5H46.6667V45Z" fill="#1483F8" />
<path d="M44.1667 55L40 59.1667L44.1667 63.3333V60.8333H50V57.5H44.1667V55Z" fill="#1483F8" />
</svg>
</div>
<p class="mb-3 fw-bold text-white">
Experienced Team
</p>
<p class="mb-0">
<small>
The management team is comprised of experts in fine wine & spirits operations.
The advisory group comprises leading industry figures from around the world.
</small>
</p>
</div>
</div>
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="45" cy="45" r="45" fill="#E2F3FF" />
<g clip-path="url(#clip0)">
<path
d="M67.08 35.8782L59.0231 33.7124C59.0155 33.6968 59.0088 33.6808 59 33.6655C58.9434 33.5674 58.8656 33.4863 58.7755 33.424L60.4007 22.3271C60.461 21.9155 60.1762 21.5331 59.7647 21.4728C59.3533 21.4131 58.9707 21.6973 58.9104 22.1088L57.4478 32.0958L53.6323 26.1755C53.4071 25.8258 52.941 25.7251 52.5913 25.9504C52.2417 26.1757 52.141 26.6418 52.3663 26.9914L56.4249 33.2891H34.085L33.5098 24.8121C33.4816 24.3972 33.1222 24.0826 32.7074 24.1118C32.2925 24.1399 31.9789 24.4991 32.0071 24.9142L32.5371 32.7261L24.5135 27.4365C24.1662 27.2077 23.6991 27.3035 23.4702 27.6508C23.2413 27.9981 23.3372 28.4651 23.6845 28.694L32.4399 34.4657L28.3816 43.4182C28.2099 43.797 28.3778 44.2434 28.7566 44.415C28.8574 44.4607 28.9631 44.4824 29.0671 44.4824C29.3536 44.4824 29.6275 44.318 29.7534 44.04L33.4375 35.9133L44.7925 55.5807L36.5551 61.4062C36.2156 61.6463 36.1349 62.1162 36.375 62.4558C36.6152 62.7954 37.0851 62.876 37.4247 62.6358L44.5361 57.6066L41.9245 67.59C41.8193 67.9924 42.0602 68.4039 42.4625 68.5092C42.5264 68.5259 42.5905 68.5339 42.6536 68.5339C42.9879 68.5339 43.2932 68.3097 43.3818 67.9712L46.1012 57.5758L51.004 64.668C51.1502 64.8795 51.3852 64.993 51.6241 64.993C51.7718 64.993 51.921 64.9496 52.0517 64.8592C52.3938 64.6227 52.4794 64.1536 52.243 63.8115L47.3063 56.6703L55.1603 57.2772C55.5733 57.3107 55.9371 56.9989 55.9691 56.5844C56.0011 56.1697 55.6909 55.8075 55.2762 55.7755L47.0373 55.1389L58.5767 35.1522L66.6893 37.3329C66.7547 37.3505 66.8205 37.3589 66.8853 37.3589C67.2175 37.3589 67.5217 37.1373 67.612 36.8012C67.7197 36.3994 67.4817 35.9861 67.08 35.8782ZM45.7872 54.2914L34.5311 34.7951H57.0434L45.7872 54.2914Z"
fill="#1483F8" />
<path
d="M36.9899 64.2422C38.2152 64.2422 39.2086 63.2488 39.2086 62.0234C39.2086 60.7981 38.2152 59.8047 36.9899 59.8047C35.7645 59.8047 34.7711 60.7981 34.7711 62.0234C34.7711 63.2488 35.7645 64.2422 36.9899 64.2422Z"
fill="#1483F8" />
<path
d="M37.7717 59.9453C37.8636 60.1888 37.9161 60.4516 37.9161 60.7272C37.9161 61.9526 36.9227 62.946 35.6973 62.946C35.4218 62.946 35.159 62.8934 34.9154 62.8016C35.2319 63.6405 36.0399 64.2384 36.9897 64.2384C38.2151 64.2384 39.2085 63.245 39.2085 62.0196C39.2086 61.0698 38.6106 60.2618 37.7717 59.9453Z"
fill="#1483F8" />
<path
d="M42.653 70C43.8783 70 44.8717 69.0066 44.8717 67.7813C44.8717 66.5559 43.8783 65.5625 42.653 65.5625C41.4276 65.5625 40.4342 66.5559 40.4342 67.7813C40.4342 69.0066 41.4276 70 42.653 70Z"
fill="#1483F8" />
<path
d="M43.4347 65.707C43.5266 65.9505 43.5792 66.2133 43.5792 66.489C43.5792 67.7144 42.5858 68.7077 41.3604 68.7077C41.0848 68.7077 40.822 68.6551 40.5785 68.5633C40.895 69.4022 41.703 70.0001 42.6528 70.0001C43.8782 70.0001 44.8716 69.0067 44.8716 67.7813C44.8717 66.8316 44.2738 66.0235 43.4347 65.707Z"
fill="#1483F8" />
<path
d="M55.218 58.7461C56.4433 58.7461 57.4367 57.7527 57.4367 56.5273C57.4367 55.302 56.4433 54.3086 55.218 54.3086C53.9926 54.3086 52.9992 55.302 52.9992 56.5273C52.9992 57.7527 53.9926 58.7461 55.218 58.7461Z"
fill="#1483F8" />
<path
d="M55.9999 54.4531C56.0918 54.6966 56.1443 54.9594 56.1443 55.2351C56.1443 56.4605 55.1509 57.4538 53.9256 57.4538C53.65 57.4538 53.3872 57.4012 53.1436 57.3094C53.4601 58.1483 54.2681 58.7462 55.2179 58.7462C56.4433 58.7462 57.4367 57.7528 57.4367 56.5274C57.4367 55.5777 56.8388 54.7696 55.9999 54.4531Z"
fill="#1483F8" />
<path
d="M66.8845 38.8242C68.1099 38.8242 69.1033 37.8309 69.1033 36.6055C69.1033 35.3801 68.1099 34.3867 66.8845 34.3867C65.6591 34.3867 64.6658 35.3801 64.6658 36.6055C64.6658 37.8309 65.6591 38.8242 66.8845 38.8242Z"
fill="#1483F8" />
<path
d="M67.6664 34.5312C67.7583 34.7747 67.8109 35.0375 67.8109 35.3132C67.8109 36.5386 66.8175 37.5319 65.5921 37.5319C65.3165 37.5319 65.0537 37.4793 64.8102 37.3875C65.1267 38.2265 65.9347 38.8243 66.8845 38.8243C68.1099 38.8243 69.1033 37.831 69.1033 36.6056C69.1033 35.6558 68.5054 34.8478 67.6664 34.5312Z"
fill="#1483F8" />
<path
d="M59.6555 24.4375C60.8809 24.4375 61.8743 23.4441 61.8743 22.2188C61.8743 20.9934 60.8809 20 59.6555 20C58.4301 20 57.4368 20.9934 57.4368 22.2188C57.4368 23.4441 58.4301 24.4375 59.6555 24.4375Z"
fill="#1483F8" />
<path
d="M60.4374 20.1445C60.5293 20.388 60.5819 20.6508 60.5819 20.9265C60.5819 22.1519 59.5885 23.1452 58.3631 23.1452C58.0875 23.1452 57.8247 23.0926 57.5812 23.0008C57.8977 23.8397 58.7057 24.4376 59.6555 24.4376C60.8809 24.4376 61.8742 23.4442 61.8742 22.2188C61.8742 21.2691 61.2764 20.461 60.4374 20.1445Z"
fill="#1483F8" />
<path
d="M52.9993 28.8047C54.2246 28.8047 55.218 27.8113 55.218 26.5859C55.218 25.3606 54.2246 24.3672 52.9993 24.3672C51.7739 24.3672 50.7805 25.3606 50.7805 26.5859C50.7805 27.8113 51.7739 28.8047 52.9993 28.8047Z"
fill="#1483F8" />
<path
d="M53.7812 24.5117C53.8731 24.7552 53.9256 25.018 53.9256 25.2937C53.9256 26.519 52.9323 27.5124 51.7069 27.5124C51.4313 27.5124 51.1685 27.4598 50.9249 27.368C51.2414 28.2069 52.0494 28.8048 52.9992 28.8048C54.2246 28.8048 55.218 27.8114 55.218 26.586C55.218 25.6363 54.6201 24.8282 53.7812 24.5117Z"
fill="#1483F8" />
<path
d="M32.7583 27.082C33.9837 27.082 34.977 26.0887 34.977 24.8633C34.977 23.6379 33.9837 22.6445 32.7583 22.6445C31.5329 22.6445 30.5396 23.6379 30.5396 24.8633C30.5396 26.0887 31.5329 27.082 32.7583 27.082Z"
fill="#1483F8" />
<path
d="M33.5403 22.7891C33.6322 23.0325 33.6847 23.2953 33.6847 23.571C33.6847 24.7964 32.6913 25.7897 31.466 25.7897C31.1904 25.7897 30.9276 25.7371 30.684 25.6453C31.0005 26.4843 31.8085 27.0821 32.7583 27.0821C33.9837 27.0821 34.9771 26.0888 34.9771 24.8634C34.9771 23.9137 34.3792 23.1056 33.5403 22.7891Z"
fill="#1483F8" />
<path
d="M29.0675 45.9453C30.2929 45.9453 31.2863 44.952 31.2863 43.7266C31.2863 42.5012 30.2929 41.5078 29.0675 41.5078C27.8421 41.5078 26.8488 42.5012 26.8488 43.7266C26.8488 44.952 27.8421 45.9453 29.0675 45.9453Z"
fill="#1483F8" />
<path
d="M29.8493 41.6562C29.9412 41.8997 29.9937 42.1625 29.9937 42.4382C29.9937 43.6636 29.0004 44.6569 27.775 44.6569C27.4994 44.6569 27.2366 44.6043 26.993 44.5125C27.3095 45.3515 28.1176 45.9493 29.0674 45.9493C30.2927 45.9493 31.2861 44.956 31.2861 43.7306C31.2862 42.7809 30.6884 41.9729 29.8493 41.6562Z"
fill="#1483F8" />
<path
d="M33.3913 37.3928C35.1599 37.3928 36.5936 35.9591 36.5936 34.1905C36.5936 32.422 35.1599 30.9883 33.3913 30.9883C31.6228 30.9883 30.1891 32.422 30.1891 34.1905C30.1891 35.9591 31.6228 37.3928 33.3913 37.3928Z"
fill="#1483F8" />
<path
d="M34.7766 31.3047C34.9781 31.7239 35.0911 32.1938 35.0911 32.69C35.0911 34.4586 33.6574 35.8923 31.8888 35.8923C31.3925 35.8923 30.9227 35.7793 30.5035 35.5778C31.0201 36.6527 32.119 37.3947 33.3913 37.3947C35.1598 37.3947 36.5935 35.961 36.5935 34.1925C36.5935 32.9202 35.8515 31.8213 34.7766 31.3047Z"
fill="#1483F8" />
<path
d="M57.902 37.3928C59.6706 37.3928 61.1043 35.9591 61.1043 34.1905C61.1043 32.422 59.6706 30.9883 57.902 30.9883C56.1335 30.9883 54.6998 32.422 54.6998 34.1905C54.6998 35.9591 56.1335 37.3928 57.902 37.3928Z"
fill="#1483F8" />
<path
d="M59.2874 31.3047C59.4888 31.7239 59.6018 32.1938 59.6018 32.69C59.6018 34.4586 58.1681 35.8923 56.3996 35.8923C55.9033 35.8923 55.4335 35.7793 55.0142 35.5778C55.5308 36.6527 56.6297 37.3947 57.902 37.3947C59.6706 37.3947 61.1043 35.961 61.1043 34.1925C61.1043 32.9202 60.3623 31.8213 59.2874 31.3047Z"
fill="#1483F8" />
<path
d="M45.7872 59.0021C47.5558 59.0021 48.9895 57.5685 48.9895 55.7999C48.9895 54.0313 47.5558 52.5977 45.7872 52.5977C44.0187 52.5977 42.585 54.0313 42.585 55.7999C42.585 57.5685 44.0187 59.0021 45.7872 59.0021Z"
fill="#1483F8" />
<path
d="M47.1726 52.9141C47.374 53.3333 47.487 53.8031 47.487 54.2994C47.487 56.068 46.0533 57.5017 44.2848 57.5017C43.7885 57.5017 43.3187 57.3887 42.8994 57.1872C43.416 58.2621 44.5149 59.0041 45.7872 59.0041C47.5558 59.0041 48.9894 57.5704 48.9894 55.8019C48.9894 54.5296 48.2475 53.4307 47.1726 52.9141Z"
fill="#1483F8" />
<path
d="M51.6232 67.4436C53.3918 67.4436 54.8254 66.0099 54.8254 64.2413C54.8254 62.4728 53.3918 61.0391 51.6232 61.0391C49.8547 61.0391 48.421 62.4728 48.421 64.2413C48.421 66.0099 49.8547 67.4436 51.6232 67.4436Z"
fill="#1483F8" />
<path
d="M53.0086 61.3555C53.21 61.7747 53.323 62.2445 53.323 62.7408C53.323 64.5094 51.8893 65.9431 50.1208 65.9431C49.6245 65.9431 49.1547 65.8301 48.7354 65.6286C49.252 66.7035 50.3509 67.4455 51.6232 67.4455C53.3918 67.4455 54.8255 66.0118 54.8255 64.2433C54.8255 62.9709 54.0834 61.872 53.0086 61.3555Z"
fill="#1483F8" />
<path
d="M24.099 31.2678C25.8676 31.2678 27.3013 29.8341 27.3013 28.0655C27.3013 26.297 25.8676 24.8633 24.099 24.8633C22.3305 24.8633 20.8968 26.297 20.8968 28.0655C20.8968 29.8341 22.3305 31.2678 24.099 31.2678Z"
fill="#1483F8" />
<path
d="M25.4844 25.1797C25.6859 25.5989 25.7988 26.0687 25.7988 26.565C25.7988 28.3336 24.3651 29.7673 22.5966 29.7673C22.1003 29.7673 21.6305 29.6543 21.2112 29.4528C21.7278 30.5277 22.8268 31.2697 24.099 31.2697C25.8676 31.2697 27.3013 29.836 27.3013 28.0675C27.3013 26.7952 26.5592 25.6963 25.4844 25.1797Z"
fill="#1483F8" />
</g>
</svg>
</div>
<p class="mb-3 fw-bold text-white">
Decentralised governance
</p>
<p class="mb-0">
<small>
No individual or company governs WineTrust. It is controlled (with appropriate safeguards) by its users and management team.
</small>
</p>
</div>
</div>
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="45" cy="45" r="45" fill="#E2F3FF" />
<path
d="M27.8125 26.25H55.9375V24.6875C55.9375 22.9617 57.3367 21.5625 59.0625 21.5625C60.7883 21.5625 62.1875 22.9617 62.1875 24.6875V63.75H34.0625V65.3125C34.0625 67.0383 32.6633 68.4375 30.9375 68.4375C29.2117 68.4375 27.8125 67.0383 27.8125 65.3125V26.25Z"
fill="#64B5F3" />
<path
d="M37.1875 41.875C40.6393 41.875 43.4375 39.0768 43.4375 35.625C43.4375 32.1732 40.6393 29.375 37.1875 29.375C33.7357 29.375 30.9375 32.1732 30.9375 35.625C30.9375 39.0768 33.7357 41.875 37.1875 41.875Z"
fill="#1483F8" />
<path
d="M59.0625 21.5625H24.6875C22.9617 21.5625 21.5625 22.9617 21.5625 24.6875V26.25H55.9375V24.6875C55.9375 22.9617 57.3367 21.5625 59.0625 21.5625Z"
fill="#1483F8" />
<path
d="M30.9375 68.4375H65.3125C67.0383 68.4375 68.4375 67.0383 68.4375 65.3125V63.75H34.0625V65.3125C34.0625 67.0383 32.6633 68.4375 30.9375 68.4375Z"
fill="#1483F8" />
<path
d="M37.1875 39.5313C36.9812 39.5313 36.782 39.45 36.6351 39.3023L33.5101 36.1773L34.6148 35.0727L37.0398 37.4977L42.7719 28.1836L44.1023 29.0031L37.8523 39.1594C37.7273 39.3633 37.5156 39.4977 37.2781 39.5258C37.2484 39.5297 37.2179 39.5313 37.1875 39.5313Z"
fill="#FFF6E5" />
<path d="M30.1562 44.2188H31.7188V45.7812H30.1562V44.2188Z" fill="white" />
<path d="M33.2812 44.2188H59.8438V45.7812H33.2812V44.2188Z" fill="white" />
<path d="M58.2812 47.3438H59.8438V48.9062H58.2812V47.3438Z" fill="white" />
<path d="M30.1562 47.3438H56.7188V48.9062H30.1562V47.3438Z" fill="white" />
<path d="M30.1562 50.4688H31.7188V52.0312H30.1562V50.4688Z" fill="white" />
<path d="M33.2812 50.4688H59.8438V52.0312H33.2812V50.4688Z" fill="white" />
<path d="M58.2812 53.5938H59.8438V55.1562H58.2812V53.5938Z" fill="white" />
<path d="M30.1562 53.5938H56.7188V55.1562H30.1562V53.5938Z" fill="white" />
<path d="M30.1562 56.7188H31.7188V58.2812H30.1562V56.7188Z" fill="white" />
<path d="M33.2812 56.7188H59.8438V58.2812H33.2812V56.7188Z" fill="white" />
<path d="M58.2812 59.8438H59.8438V61.4062H58.2812V59.8438Z" fill="white" />
<path d="M30.1562 59.8438H56.7188V61.4062H30.1562V59.8438Z" fill="white" />
</svg>
</div>
<p class="mb-3 fw-bold text-white">
Public Ledger Technology
</p>
<p class="mb-0">
<small>
All ownership is recorded on an independent public blockchain ledger.
</small>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- spirits-owners -->
<!-- story -->
<section class="story section-padding">
<div class="container">
<div class="row gx-xl-5">
<div class="col-xl-6">
<div class="story-intro mt-5">
<div class="section-header">
<h2 class="title fw-bold mb-2 mb-lg-4">Public blockchain ledger gives immutable security</h2>
<p class="mb-3 fw-500 lh-base">
Every unit of inventory stored in WineTrust is automatically registered on an independent public blockchain ledger. This gives
independent security of title, verifiable externally.
</p>
<p class="mb-3 fw-500 lh-base">
WineTrust is a long-term protocol for recording and storing ownership records. Because it uses a blockchain ledger, its records
can never be lost, erased, or tampered with. WineTrust is designed as a ‘land registry’ for fine wine & spirits – a long-term
and permanent record of ownership.
</p>
<p class="mb-0 fw-500 lh-base">
No other wine custodian can offer this level of security. You no longer rely on a merchant, exchange or warehouse alone to
guarantee your legal ownership.
</p>
</div>
</div>
</div>
<div class="col-xl-6">
<div class="story-img mb-3 mb-xl-0">
<img src="assets/img/story-2.png" alt="img" class="img-fluid" />
</div>
</div>
</div>
</div>
</section>
<!-- story -->
<!-- spirits-owners -->
<section class="spirits-owners section-padding bg-dark">
<div class="container">
<div class="row mb-5">
<div class="col-xl-10 mx-auto">
<div class="section-header text-center">
<h2 class="title text-white fw-bold mb-2 mb-lg-4">
WineTrust is more than just ‘storage’
</h2>
<p class="text-white lh-base">
Every unit of inventory stored in WineTrust is automatically registered on <br class="d-none d-xl-inline" />
an independent public blockchain ledger. This gives independent security of title, <br class="d-none d-xl-inline" />
verifiable externally.
</p>
</div>
</div>
</div>
<div class="row spirits-grid justify-content-center">
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100" style="background-image: url(./assets/img/storage-bg-1.png);">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle opacity="0.1" cx="45" cy="45" r="45" fill="#E2F3FF" />
<circle opacity="0.3" cx="45" cy="45" r="44.5" stroke="#A1B0BE" />
<path
d="M40.3125 59.0625C50.6678 59.0625 59.0625 50.6678 59.0625 40.3125C59.0625 29.9572 50.6678 21.5625 40.3125 21.5625C29.9572 21.5625 21.5625 29.9572 21.5625 40.3125C21.5625 50.6678 29.9572 59.0625 40.3125 59.0625Z"
fill="#64B5F3" />
<path
d="M40.3125 56.6703C49.3471 56.6703 56.6711 49.3463 56.6711 40.3117C56.6711 31.2771 49.3471 23.9531 40.3125 23.9531C31.2779 23.9531 23.9539 31.2771 23.9539 40.3117C23.9539 49.3463 31.2779 56.6703 40.3125 56.6703Z"
fill="#1483F8" />
<path
d="M40.3125 55.9375C48.9419 55.9375 55.9375 48.9419 55.9375 40.3125C55.9375 31.6831 48.9419 24.6875 40.3125 24.6875C31.6831 24.6875 24.6875 31.6831 24.6875 40.3125C24.6875 48.9419 31.6831 55.9375 40.3125 55.9375Z"
fill="#1483F8" />
<path
d="M29.4227 49.64C29.4217 51.9171 29.8052 54.178 30.557 56.3275C34.1538 58.5196 38.3839 59.4367 42.5656 58.9312C46.7473 58.4256 50.6369 56.5267 53.6076 53.5406C56.5783 50.5544 58.457 46.655 58.9409 42.4708C59.4248 38.2866 58.4857 34.0613 56.275 30.4759C53.2233 29.4267 49.9651 29.1215 46.7717 29.5858C43.5782 30.05 40.5418 31.2702 37.9151 33.1448C35.2884 35.0194 33.1474 37.4943 31.6702 40.3634C30.1931 43.2325 29.4225 46.4129 29.4227 49.64Z"
fill="#002954" />
<path d="M29.375 39.5312H34.8438V41.0938H29.375V39.5312Z" fill="#7FCDF2" />
<path
d="M37.1875 37.9688H33.2812C33.074 37.9688 32.8753 37.8864 32.7288 37.7399C32.5823 37.5934 32.5 37.3947 32.5 37.1875V34.0625H34.0625V36.4062H37.1875V37.9688Z"
fill="#7FCDF2" />
<path d="M39.5312 30.1562H41.0938V35.625H39.5312V30.1562Z" fill="#7FCDF2" />
<path
d="M29.375 41.8281C30.2379 41.8281 30.9375 41.1286 30.9375 40.2656C30.9375 39.4027 30.2379 38.7031 29.375 38.7031C28.5121 38.7031 27.8125 39.4027 27.8125 40.2656C27.8125 41.1286 28.5121 41.8281 29.375 41.8281Z"
fill="#F9D161" />
<path
d="M40.3125 30.8906C41.1754 30.8906 41.875 30.1911 41.875 29.3281C41.875 28.4652 41.1754 27.7656 40.3125 27.7656C39.4496 27.7656 38.75 28.4652 38.75 29.3281C38.75 30.1911 39.4496 30.8906 40.3125 30.8906Z"
fill="#F9D161" />
<path
d="M33.2812 34.7969C34.1442 34.7969 34.8438 34.0973 34.8438 33.2344C34.8438 32.3714 34.1442 31.6719 33.2812 31.6719C32.4183 31.6719 31.7188 32.3714 31.7188 33.2344C31.7188 34.0973 32.4183 34.7969 33.2812 34.7969Z"
fill="#F9D161" />
<path d="M34.8438 39.5312H32.1266C31.8339 40.0391 31.5625 40.5599 31.3125 41.0938H34.8438V39.5312Z" fill="#4AAEE3" />
<path
d="M37.1875 37.9688V36.4062H34.3477C33.9227 36.8979 33.5219 37.4096 33.1453 37.9414C33.1896 37.9549 33.2352 37.964 33.2812 37.9688H37.1875Z"
fill="#4AAEE3" />
<path d="M41.0938 35.6273V31.2891C40.5594 31.5401 40.0385 31.8133 39.5312 32.1086V35.6273H41.0938Z" fill="#4AAEE3" />
<path
d="M49.6875 68.4375C60.0428 68.4375 68.4375 60.0428 68.4375 49.6875C68.4375 39.3322 60.0428 30.9375 49.6875 30.9375C39.3322 30.9375 30.9375 39.3322 30.9375 49.6875C30.9375 60.0428 39.3322 68.4375 49.6875 68.4375Z"
fill="#64B5F3" />
<path
d="M49.6875 66.0453C58.7221 66.0453 66.0461 58.7213 66.0461 49.6867C66.0461 40.6521 58.7221 33.3281 49.6875 33.3281C40.6529 33.3281 33.3289 40.6521 33.3289 49.6867C33.3289 58.7213 40.6529 66.0453 49.6875 66.0453Z"
fill="#1483F8" />
<path
d="M49.6875 65.3125C58.3169 65.3125 65.3125 58.3169 65.3125 49.6875C65.3125 41.0581 58.3169 34.0625 49.6875 34.0625C41.0581 34.0625 34.0625 41.0581 34.0625 49.6875C34.0625 58.3169 41.0581 65.3125 49.6875 65.3125Z"
fill="#1483F8" />
<path
d="M49.6875 37.6484L39.5312 43.8984V55.6172L49.6875 61.8672L59.8438 55.6172V43.8984L49.6875 37.6484ZM56.7188 54.0547L49.6875 57.9609L42.6562 54.0547V45.4609L49.6875 41.5547L56.7188 45.4609V54.0547Z"
fill="white" />
</svg>
</div>
<p class="mb-3 fw-bold text-white">
Tokenization
</p>
<p class="mb-0 text-white">
<small>
All assets stored in WineTrust are tokenized as digitals assets. You can decide how much, or little, you use the benefits of
tokenization to unlock value from your assets.
</small>
</p>
</div>
</div>
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100" style="background-image: url(./assets/img/storage-bg-2.png);">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle opacity="0.1" cx="45" cy="45" r="45" fill="#E2F3FF" />
<circle opacity="0.3" cx="45" cy="45" r="44.5" stroke="#A1B0BE" />
<path
d="M66.0461 30.4523L55.8315 20.4189C55.5579 20.1503 55.1891 20 54.8053 20H28.9813C25.9677 20 23.5156 22.4513 23.5156 25.4649V64.5343C23.5156 67.5479 25.9677 70 28.9813 70H61.0187C64.0323 70 66.4844 67.5479 66.4844 64.5343V31.4971C66.4844 31.1034 66.3261 30.7277 66.0461 30.4523Z"
fill="#1483F8" />
<path
d="M56.6344 44.707C56.6344 45.5157 55.9779 46.1719 55.1696 46.1719H34.5203C33.7115 46.1719 33.0554 45.5157 33.0554 44.707C33.0554 43.8976 33.7115 43.2422 34.5203 43.2422H55.1696C55.9779 43.2422 56.6344 43.8976 56.6344 44.707Z"
fill="white" />
<path
d="M52.822 50.5664C52.822 51.3751 52.1655 52.0312 51.3572 52.0312H34.5199C33.7115 52.0312 33.0554 51.3751 33.0554 50.5664C33.0554 49.7569 33.7115 49.1016 34.5199 49.1016H51.3572C52.1659 49.1016 52.822 49.7569 52.822 50.5664Z"
fill="white" />
<path
d="M54.853 56.4258C54.853 57.2345 54.1969 57.8906 53.3881 57.8906H34.5199C33.7115 57.8906 33.0554 57.2345 33.0554 56.4258C33.0554 55.6163 33.7115 54.9609 34.5199 54.9609H53.3881C54.1969 54.9609 54.853 55.6163 54.853 56.4258Z"
fill="white" />
<path
d="M66.4844 31.4971V32.962H56.7359C54.864 32.962 53.3405 31.4384 53.3405 29.5665V20H54.8053C55.1891 20 55.5583 20.1503 55.8315 20.4189L66.0461 30.4523C66.3261 30.7277 66.4844 31.1034 66.4844 31.4971Z"
fill="#3F6C9B" />
</svg>
</div>
<p class="mb-3 fw-bold text-white">
Condition Reporting
</p>
<p class="mb-0 text-white">
<small>
WineTrust provides high resolution images of your cases or bottles (if requested).
</small>
</p>
</div>
</div>
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100" style="background-image: url(./assets/img/storage-bg-3.png);">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle opacity="0.1" cx="45" cy="45" r="45" fill="#E2F3FF" />
<circle opacity="0.3" cx="45" cy="45" r="44.5" stroke="#A1B0BE" />
<g clip-path="url(#clip0)">
<path
d="M56.5721 28.6758H26.6895C25.7726 28.6758 25.0293 29.419 25.0293 30.3359V68.338C25.0293 69.2549 25.7726 69.9981 26.6895 69.9981H56.5721C57.489 69.9981 58.2322 69.2549 58.2322 68.338V30.3359C58.2322 29.419 57.489 28.6758 56.5721 28.6758Z"
fill="#1483F8" />
<path d="M58.1904 62.5845L61.2093 65.6035L65.6047 61.2081L62.4357 58.0391" fill="#1483F8" />
<path
d="M53.6744 64.3489C59.5698 64.3489 64.3489 59.5698 64.3489 53.6744C64.3489 47.7791 59.5698 43 53.6744 43C47.7791 43 43 47.7791 43 53.6744C43 59.5698 47.7791 64.3489 53.6744 64.3489Z"
fill="#C7E2FF" />
<path
d="M54.1628 62.3256C58.671 62.3256 62.3256 58.671 62.3256 54.1628C62.3256 49.6546 58.671 46 54.1628 46C49.6546 46 46 49.6546 46 54.1628C46 58.671 49.6546 62.3256 54.1628 62.3256Z"
fill="white" />
<path d="M49 54.8462L53.125 59L60 52.0769L57.9375 50L53.125 54.8462L51.0625 52.7692L49 54.8462Z" fill="#1483F8" />
<path
d="M61.8372 64.9755L66.21 69.3482C66.4161 69.5544 66.6608 69.718 66.9301 69.8296C67.1995 69.9413 67.4882 69.9987 67.7797 69.9987C68.3686 69.9987 68.9333 69.7648 69.3497 69.3484C69.7661 68.9321 70 68.3673 70 67.7785C70 67.4869 69.9425 67.1982 69.8309 66.9289C69.7193 66.6595 69.5557 66.4148 69.3495 66.2087L64.9768 61.8359"
fill="#1483F8" />
<path
d="M45.474 26.7017H37.7877C37.3828 26.7017 37.0546 26.3734 37.0546 25.9686V22.6248C37.0546 21.1774 38.232 20 39.6794 20H43.5822C45.0296 20 46.2071 21.1774 46.2071 22.6248V25.9686C46.2071 26.3734 45.8789 26.7017 45.474 26.7017ZM38.5208 25.2355H44.741V22.6248C44.741 21.9859 44.2212 21.4662 43.5823 21.4662H39.6795C39.0406 21.4662 38.5209 21.9859 38.5209 22.6248V25.2355H38.5208Z"
fill="#3F6C9B" />
<path
d="M49.5339 30.1686H33.7275C33.4416 30.1686 33.2098 29.9368 33.2098 29.6509V27.1821C33.2098 25.552 34.5313 24.2305 36.1615 24.2305H47.1001C48.7303 24.2305 50.0517 25.552 50.0517 27.1821V29.6509C50.0517 29.9367 49.8198 30.1686 49.5339 30.1686Z"
fill="#3F6C9B" />
<path
d="M53.9609 36.8998H47.7471C47.3423 36.8998 47.014 36.5716 47.014 36.1667C47.014 35.7618 47.3423 35.4336 47.7471 35.4336H53.9609C54.3658 35.4336 54.694 35.7618 54.694 36.1667C54.694 36.5716 54.3658 36.8998 53.9609 36.8998Z"
fill="white" />
<path
d="M43.1947 36.8998H29.6317C29.2268 36.8998 28.8986 36.5716 28.8986 36.1667C28.8986 35.7618 29.2268 35.4336 29.6317 35.4336H43.1947C43.5995 35.4336 43.9278 35.7618 43.9278 36.1667C43.9278 36.5716 43.5995 36.8998 43.1947 36.8998Z"
fill="white" />
<path
d="M43.1947 39.9193H29.6317C29.2268 39.9193 28.8986 39.5911 28.8986 39.1862C28.8986 38.7813 29.2268 38.4531 29.6317 38.4531H43.1947C43.5995 38.4531 43.9278 38.7813 43.9278 39.1862C43.9278 39.5911 43.5995 39.9193 43.1947 39.9193Z"
fill="white" />
<path
d="M37.4783 43.0795H29.6317C29.2268 43.0795 28.8986 42.7513 28.8986 42.3464C28.8986 41.9415 29.2268 41.6133 29.6317 41.6133H37.4783C37.8832 41.6133 38.2114 41.9415 38.2114 42.3464C38.2114 42.7513 37.8832 43.0795 37.4783 43.0795Z"
fill="white" />
<path
d="M53.9609 39.9193H47.7471C47.3423 39.9193 47.014 39.5911 47.014 39.1862C47.014 38.7813 47.3423 38.4531 47.7471 38.4531H53.9609C54.3658 38.4531 54.694 38.7813 54.694 39.1862C54.694 39.5911 54.3658 39.9193 53.9609 39.9193Z"
fill="white" />
<path
d="M32.1974 56.6193C30.2313 56.6193 28.6318 55.0198 28.6318 53.0538C28.6318 51.0878 30.2313 49.4883 32.1974 49.4883C34.1635 49.4883 35.7629 51.0878 35.7629 53.0538C35.763 55.0198 34.1635 56.6193 32.1974 56.6193ZM32.1974 50.9544C31.0397 50.9544 30.098 51.8962 30.098 53.0537C30.098 54.2113 31.0398 55.1531 32.1974 55.1531C33.355 55.1531 34.2968 54.2113 34.2968 53.0537C34.2968 51.8962 33.3551 50.9544 32.1974 50.9544Z"
fill="white" />
<path
d="M32.1974 66.5061C30.2313 66.5061 28.6318 64.9065 28.6318 62.9405C28.6318 60.9744 30.2313 59.375 32.1974 59.375C34.1635 59.375 35.7629 60.9745 35.7629 62.9405C35.763 64.9066 34.1635 66.5061 32.1974 66.5061ZM32.1974 60.8412C31.0397 60.8412 30.098 61.783 30.098 62.9406C30.098 64.0982 31.0398 65.0399 32.1974 65.0399C33.355 65.0399 34.2968 64.0981 34.2968 62.9406C34.2968 61.783 33.3551 60.8412 32.1974 60.8412Z"
fill="white" />
<path
d="M41.6308 63.6732H38.2471C37.8422 63.6732 37.514 63.345 37.514 62.9401C37.514 62.5353 37.8422 62.207 38.2471 62.207H41.6307C42.0356 62.207 42.3638 62.5353 42.3638 62.9401C42.3638 63.345 42.0357 63.6732 41.6308 63.6732Z"
fill="white" />
</g>
</svg>
</div>
<p class="mb-3 fw-bold text-white">
Individual Case Identifiers
</p>
<p class="mb-0 text-white">
<small>
every case is individually numbered for additional security.
</small>
</p>
</div>
</div>
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100" style="background-image: url(./assets/img/storage-bg-4.png);">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle opacity="0.1" cx="45" cy="45" r="45" fill="#E2F3FF" />
<circle opacity="0.3" cx="45" cy="45" r="44.5" stroke="#A1B0BE" />
<path
d="M20 69.9653C20 70.4089 20.3629 70.7718 20.8065 70.7718H69.1936C69.6371 70.7718 70 70.4089 70 69.9653V30.4492H20V69.9653Z"
fill="#1483F8" />
<path
d="M55.4967 44.5776C55.0985 44.1795 54.4734 44.1208 54.008 44.4379C52.2545 45.6331 43.4593 51.6431 42.5141 52.5883C41.1434 53.9591 41.1434 56.1894 42.5141 57.5602C43.1995 58.2455 44.0998 58.5883 45.0001 58.5883C45.9003 58.5883 46.8006 58.2455 47.486 57.5602C48.4312 56.615 54.4412 47.8198 55.6364 46.0664C55.9535 45.6009 55.8948 44.9759 55.4967 44.5776ZM45.8286 55.9029C45.3718 56.3599 44.6283 56.3599 44.1714 55.9029C43.7145 55.446 43.7145 54.7028 44.1712 54.2459C44.5385 53.8829 47.0356 52.102 50.1079 49.9665C47.9724 53.0388 46.1915 55.5358 45.8286 55.9029Z"
fill="white" />
<path
d="M35.4042 60.5248L33.9575 61.2305C32.8989 59.3414 32.3438 57.2328 32.3438 55.0742C32.3438 53.4927 32.6354 51.978 33.1676 50.5811L34.8253 51.3762C34.9887 51.4546 35.1613 51.4917 35.3313 51.4917C35.768 51.4917 36.1872 51.2465 36.3887 50.8264C36.6686 50.2429 36.4225 49.5429 35.8389 49.263L34.2022 48.4779C36.2364 45.1603 39.756 42.8473 43.8282 42.4718V44.2343C43.8282 44.8815 44.3528 45.4062 45.0001 45.4062C45.6473 45.4062 46.1719 44.8815 46.1719 44.2343V42.4709C47.5681 42.598 48.919 42.9535 50.2015 43.5324C50.7912 43.7987 51.4854 43.5363 51.7517 42.9465C52.018 42.3566 51.7557 41.6626 51.1658 41.3963C49.2224 40.5191 47.148 40.0742 45 40.0742C40.9934 40.0742 37.2265 41.6345 34.3934 44.4676C31.5603 47.3008 30 51.0676 30 55.0742C30 58.035 30.8788 60.9145 32.5414 63.4013C32.7653 63.7361 33.1356 63.9219 33.5163 63.9219C33.6894 63.9219 33.8647 63.8836 34.0294 63.8032L36.4318 62.6313C37.0135 62.3476 37.255 61.646 36.9713 61.0643C36.6875 60.4827 35.9859 60.2412 35.4042 60.5248Z"
fill="white" />
<path
d="M58.6779 48.9088C58.4116 48.319 57.7177 48.0565 57.1276 48.3229C56.5378 48.5892 56.2754 49.2832 56.5417 49.8731C57.2813 51.5113 57.6562 53.2613 57.6562 55.0745C57.6562 57.2363 57.0993 59.3483 56.0376 61.2396L54.5272 60.5204C53.943 60.2422 53.2437 60.4902 52.9654 61.0746C52.6871 61.6589 52.9352 62.3582 53.5196 62.6365L55.9805 63.8084C56.1424 63.8854 56.314 63.9223 56.4837 63.9223C56.8646 63.9223 57.2349 63.7363 57.4586 63.4016C59.1212 60.9148 60 58.0353 60 55.0745C60 52.9265 59.5552 50.8521 58.6779 48.9088Z"
fill="white" />
<path d="M70 30.5V34H20V30.5C20 28.5593 20.7177 27 21.6129 27H68.3871C69.2823 27 70 28.5593 70 30.5Z" fill="#3F6C9B" />
<path
d="M23.5037 29H23.4888C22.6628 29 22 29.6705 22 30.5C22 31.328 22.6778 32 23.5037 32C24.3312 32 25 31.328 25 30.5C25 29.6705 24.3312 29 23.5037 29Z"
fill="white" />
<path
d="M28.8371 29H28.8221C27.9947 29 27.3333 29.6705 27.3333 30.5C27.3333 31.328 28.0096 32 28.8371 32C29.6645 32 30.3333 31.328 30.3333 30.5C30.3333 29.6705 29.6645 29 28.8371 29Z"
fill="white" />
<path
d="M34.1704 29H34.1554C33.3295 29 32.6667 29.6705 32.6667 30.5C32.6667 31.328 33.3445 32 34.1704 32C34.9978 32 35.6667 31.328 35.6667 30.5C35.6667 29.6705 34.9978 29 34.1704 29Z"
fill="white" />
</svg>
</div>
<p class="mb-3 fw-bold text-white">
Account Management dashboard
</p>
<p class="mb-0 text-white">
<small>
your WineTrust dashboard provides full portfolio analysis with market valuation and many other metrics.
</small>
</p>
</div>
</div>
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100" style="background-image: url(./assets/img/storage-bg-5.png);">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle opacity="0.1" cx="45" cy="45" r="45" fill="#E2F3FF" />
<circle opacity="0.3" cx="45" cy="45" r="44.5" stroke="#A1B0BE" />
<g clip-path="url(#clip0)">
<path
d="M45 73C44.8334 73 44.6667 72.9746 44.506 72.9239C38.1012 70.9013 32.6173 66.9688 28.6469 61.5515C24.6767 56.134 22.5781 49.7205 22.5781 43.004V26.2969C22.5781 25.3908 23.3127 24.6562 24.2188 24.6562C28.9574 24.6562 33.2657 22.0579 35.4719 17.8752C35.7557 17.337 36.3144 17 36.923 17H53.0769C53.6855 17 54.2442 17.3369 54.5281 17.8752C56.7343 22.0579 61.0426 24.6562 65.7714 24.6562C66.6775 24.6562 67.4219 25.3908 67.4219 26.2969V43.004C67.4219 49.7205 65.3233 56.134 61.3531 61.5514C57.3827 66.9687 51.8988 70.9012 45.494 72.9238C45.3333 72.9746 45.1666 73 45 73Z"
fill="#1483F8" />
<path
d="M45 66.0199C44.7853 66.0199 44.5706 65.9778 44.3686 65.8936C35.1179 62.0361 29.1406 53.0515 29.1406 43.0041V31.8121C29.1406 31.1035 29.5956 30.4749 30.2688 30.2535C33.7511 29.1087 36.818 27.0033 39.1378 24.1649C39.4494 23.7837 39.9157 23.5625 40.4081 23.5625H49.5918C50.0842 23.5625 50.5507 23.7837 50.8622 24.1649C53.1819 27.0038 56.2488 29.1095 59.7312 30.2546C60.4044 30.476 60.8593 31.1046 60.8593 31.8132V43.0041C60.8593 53.0515 54.882 62.0361 45.6313 65.8935C45.4294 65.9777 45.2147 66.0199 45 66.0199Z"
fill="white" />
<path
d="M42.448 51.6458C42.0281 51.6458 41.6082 51.4857 41.2879 51.1653L36.1837 46.0611C35.543 45.4204 35.543 44.3816 36.1837 43.7409C36.8243 43.1002 37.8632 43.1002 38.5039 43.7409L42.4481 47.6849L51.4963 38.6368C52.1369 37.9961 53.1758 37.9961 53.8165 38.6368C54.4572 39.2775 54.4572 40.3162 53.8165 40.957L43.6082 51.1653C43.2877 51.4857 42.8679 51.6458 42.448 51.6458Z"
fill="#1483F8" />
</g>
</svg>
</div>
<p class="mb-3 fw-bold text-white">
Insurance
</p>
<p class="mb-0 text-white">
<small>
All assets are insured to market value with a transparent insurance policy.
</small>
</p>
</div>
</div>
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100" style="background-image: url(./assets/img/storage-bg-6.png);">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle opacity="0.2" cx="45" cy="45" r="45" fill="#E2F3FF" />
<circle opacity="0.3" cx="45" cy="45" r="44.5" stroke="#A1B0BE" />
<g clip-path="url(#clip0)">
<path opacity="0.5"
d="M63.3907 69.984C65.6008 69.0898 66.4306 67.4575 66.3545 65.0892C66.2334 61.3796 66.3232 57.6797 66.3213 53.9759C66.3213 52.0489 65.4837 50.6216 63.7831 49.6942C63.0138 49.2745 62.2485 48.843 61.4988 48.392C60.0149 47.4997 59.2632 46.1955 59.2652 44.4461C59.2652 37.8494 59.2619 31.2528 59.2554 24.6562C59.2554 22.0946 58.408 20.9055 56.0593 20.0836C57.5066 19.9306 58.9685 19.9878 60.3995 20.2534C61.5319 20.4799 63.2813 22.036 63.2559 23.883C63.1896 28.7641 63.2403 33.6296 63.2423 38.5029C63.2423 39.2838 63.2423 40.0648 63.2325 40.8458C63.2039 42.7357 64.0011 44.161 65.6243 45.1216C66.3525 45.5492 67.0847 45.969 67.8305 46.3673C69.5096 47.2615 70.3531 48.6809 70.3687 50.5533C70.398 55.655 70.4116 60.7568 70.3823 65.8565C70.3687 68.4435 68.7228 69.9937 66.1221 70.0015C65.2103 69.9976 64.3005 69.984 63.3907 69.984Z"
fill="#3F6C9B" />
<path
d="M41.9294 38.2048H32.2707C31.8548 38.2048 31.3569 38.2848 31.2339 37.7225C31.0602 36.9415 31.56 36.7932 32.2102 36.7951C34.5199 36.7951 36.8277 36.7951 39.1374 36.7951C43.3026 36.7951 47.4678 36.7951 51.633 36.7951C52.043 36.7951 52.5487 36.6994 52.6678 37.2695C52.8338 38.0505 52.3515 38.2048 51.6916 38.2028C48.8937 38.1911 46.0978 38.2028 43.2961 38.2028L41.9294 38.2048Z"
fill="#1483F8" />
<path
d="M42.0369 41.4936C40.3129 41.4936 38.5908 41.4936 36.8668 41.4936C36.3045 41.4936 35.6797 41.5209 35.6954 40.7126C35.6954 39.9629 36.2811 39.9688 36.82 39.9688C40.2354 39.9688 43.6496 39.9688 47.0625 39.9688C47.6482 39.9688 48.2905 40.0273 48.2691 40.7614C48.2476 41.4956 47.5955 41.5131 47.0175 41.5112C45.3554 41.4969 43.6951 41.491 42.0369 41.4936Z"
fill="#1483F8" />
<path
d="M66.3584 65.0858C66.2373 61.3761 66.3271 57.6762 66.3252 53.9725C66.3252 52.0454 65.4876 50.6182 63.787 49.6908C63.0178 49.271 62.2524 48.8395 61.5027 48.3885C60.0188 47.4962 59.2671 46.192 59.2691 44.4426C59.2691 37.846 59.2658 31.2493 59.2593 24.6527C59.2593 22.0911 58.412 20.9021 56.0632 20.0801C55.9337 20.0615 55.8034 20.0498 55.6727 20.0449C46.2476 20.0397 36.8212 20.0365 27.3936 20.0352C27.1015 20.0344 26.8106 20.0725 26.5286 20.1484C24.6836 20.6521 23.6 22.1477 23.6 24.2505C23.6 33.22 23.6 42.1901 23.6 51.161C23.6 56.1026 23.6 61.0422 23.6156 65.9819C23.6156 68.237 25.2771 69.9961 27.4033 69.9981C39.3991 69.9981 51.3942 69.9922 63.3887 69.9805C65.6008 69.0863 66.4306 67.4541 66.3584 65.0858ZM47.0136 41.4964C45.354 41.4964 43.6951 41.4964 42.0369 41.4964C40.3129 41.4964 38.5908 41.4964 36.8668 41.4964C36.3045 41.4964 35.6797 41.5237 35.6953 40.7154C35.6953 39.9657 36.2811 39.9715 36.8199 39.9715C40.2354 39.9715 43.6496 39.9715 47.0624 39.9715C47.6482 39.9715 48.2905 40.0301 48.269 40.7642C48.2476 41.4983 47.5915 41.4983 47.0136 41.4964ZM51.6858 38.2065C48.888 38.1948 46.0921 38.2065 43.2903 38.2065H32.2708C31.8549 38.2065 31.357 38.2866 31.234 37.7243C31.0602 36.9433 31.5601 36.7949 32.2102 36.7969C34.52 36.7969 36.8277 36.7969 39.1375 36.7969C43.3027 36.7969 47.4679 36.7969 51.6331 36.7969C52.0431 36.7969 52.5488 36.7012 52.6679 37.2713C52.8202 38.0562 52.3379 38.2085 51.6858 38.2065Z"
fill="#1483F8" />
<path
d="M42.0723 42.9945H29.0453C28.4844 42.9945 27.8129 43.1072 27.647 42.3151C27.4126 41.2148 28.0867 41.0058 28.9636 41.0085C32.0788 41.0085 35.1914 41.0085 38.3066 41.0085C43.9244 41.0085 49.5421 41.0085 55.1599 41.0085C55.7129 41.0085 56.3949 40.8737 56.5556 41.6769C56.7794 42.7772 56.129 42.9945 55.2389 42.9917C51.4654 42.9752 47.6944 42.9917 43.9156 42.9917L42.0723 42.9945Z"
fill="#F7F9FA" />
<path
d="M41.6781 47.9771C39.2102 47.9771 36.7451 47.9771 34.2773 47.9771C33.4724 47.9771 32.578 48.0125 32.6004 46.9645C32.6004 45.9924 33.4388 46 34.2102 46C39.0993 46 43.9866 46 48.872 46C49.7105 46 50.63 46.0759 50.5992 47.0278C50.5685 47.9796 49.635 48.0024 48.8077 47.9999C46.4284 47.9813 44.0518 47.9737 41.6781 47.9771Z"
fill="#F7F9FA" />
<path
d="M31.5283 36.7559L31.1888 35.4972H28.9738L28.6261 36.7559H26.6L28.8287 30H31.2929L33.5544 36.7559H31.5283ZM30.811 34.0073L30.518 32.9046C30.4496 32.6599 30.3647 32.3425 30.2661 31.9552C30.1676 31.5679 30.1046 31.2856 30.0717 31.1161C30.0444 31.2748 29.9896 31.5303 29.9075 31.8907C29.8253 32.2511 29.6337 32.9665 29.3599 34.0073H30.811Z"
fill="white" />
<path
d="M40.1093 30.0312V34.0654C40.1093 34.9449 39.8574 35.6253 39.3481 36.1067C38.8388 36.5881 38.1105 36.8329 37.1577 36.8329C36.2049 36.8329 35.5149 36.5962 35.0057 36.1282C34.4964 35.6603 34.2664 34.996 34.2664 34.1165V30.0312H36.1255V33.974C36.0943 34.3397 36.1908 34.7049 36.3993 35.0094C36.6177 35.214 36.908 35.3281 37.2097 35.3281C37.5115 35.3281 37.8017 35.214 38.0202 35.0094C38.2168 34.6964 38.3061 34.3297 38.2748 33.9632V30.0312H40.1093Z"
fill="white" />
<path
d="M47.3539 33.2493C47.3539 34.3699 47.0391 35.2341 46.4093 35.8419C45.7796 36.4497 44.8962 36.7528 43.759 36.751H41.5467V30.0273H43.915C45.0102 30.0273 45.8572 30.3035 46.4559 30.8557C47.0546 31.4079 47.3539 32.2058 47.3539 33.2493ZM45.4374 33.3138C45.4764 32.8291 45.3449 32.3459 45.065 31.9449C44.9244 31.7898 44.7492 31.6687 44.553 31.5913C44.3568 31.5138 44.145 31.4821 43.9342 31.4985H43.3866V35.2637H43.7973C44.027 35.2828 44.2581 35.2493 44.4724 35.1657C44.6867 35.0822 44.8783 34.9509 45.0321 34.7823C45.3005 34.4596 45.4346 33.9701 45.4346 33.3138H45.4374Z"
fill="white" />
<path d="M48.5778 36.751V30.0273H50.4368V36.751H48.5778Z" fill="white" />
<path d="M54.9325 36.7495H53.0844V31.5158H51.4142V30.0312H56.6V31.5158H54.9325V36.7495Z" fill="white" />
</g>
</svg>
</div>
<p class="mb-3 fw-bold text-white">
Audit
</p>
<p class="mb-0 text-white">
<small>
Assets held in WineTrust are independently audited twice a year.
</small>
</p>
</div>
</div>
<div class="col-xl-4 col-sm-6 mb-4">
<div class="spirits-owner-widget bg-white is-rounded p-4 px-lg-5 h-100" style="background-image: url(./assets/img/storage-bg-7.png);">
<div class="mb-4">
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle opacity="0.1" cx="45" cy="45" r="45" fill="#E2F3FF" />
<circle opacity="0.3" cx="45" cy="45" r="44.5" stroke="#A1B0BE" />
<path
d="M26.585 51.0946C26.3983 51.0946 26.2191 51.0204 26.0871 50.8884C25.955 50.7563 25.8808 50.5772 25.8808 50.3904V39.1183C25.8808 38.9315 25.955 38.7524 26.0871 38.6203C26.2191 38.4883 26.3983 38.4141 26.585 38.4141C26.7718 38.4141 26.9509 38.4883 27.083 38.6203C27.2151 38.7524 27.2893 38.9315 27.2893 39.1183V50.3904C27.2893 50.5772 27.2151 50.7563 27.083 50.8884C26.9509 51.0204 26.7718 51.0946 26.585 51.0946Z"
fill="white" />
<path
d="M44.9863 40.5829C44.7996 40.5829 44.6204 40.5087 44.4884 40.3766C44.3563 40.2445 44.2821 40.0654 44.2821 39.8786V31.2081C44.2821 31.0214 44.3563 30.8422 44.4884 30.7102C44.6204 30.5781 44.7996 30.5039 44.9863 30.5039C45.1731 30.5039 45.3522 30.5781 45.4843 30.7102C45.6164 30.8422 45.6906 31.0214 45.6906 31.2081V39.8802C45.6901 40.0667 45.6158 40.2455 45.4837 40.3772C45.3517 40.5089 45.1728 40.5829 44.9863 40.5829Z"
fill="white" />
<path
d="M44.9863 58.8049C44.7996 58.8049 44.6204 58.7307 44.4884 58.5987C44.3563 58.4666 44.2821 58.2875 44.2821 58.1007V50.5167C44.2821 50.33 44.3563 50.1508 44.4884 50.0188C44.6204 49.8867 44.7996 49.8125 44.9863 49.8125C45.1731 49.8125 45.3522 49.8867 45.4843 50.0188C45.6164 50.1508 45.6906 50.33 45.6906 50.5167V58.1007C45.6906 58.2875 45.6164 58.4666 45.4843 58.5987C45.3522 58.7307 45.1731 58.8049 44.9863 58.8049Z"
fill="white" />
<path
d="M63.3878 50.7918C63.201 50.7918 63.0219 50.7176 62.8898 50.5855C62.7577 50.4535 62.6835 50.2743 62.6835 50.0876V39.4191C62.6835 39.2323 62.7577 39.0532 62.8898 38.9211C63.0219 38.789 63.201 38.7148 63.3878 38.7148C63.5745 38.7148 63.7537 38.789 63.8857 38.9211C64.0178 39.0532 64.092 39.2323 64.092 39.4191V50.0876C64.092 50.2743 64.0178 50.4535 63.8857 50.5855C63.7537 50.7176 63.5745 50.7918 63.3878 50.7918Z"
fill="white" />
<path
d="M58.0911 34.9868C57.9591 34.9868 57.8298 34.9496 57.7181 34.8793L49.5454 29.7622C49.467 29.7131 49.399 29.6491 49.3453 29.5738C49.2917 29.4984 49.2534 29.4133 49.2327 29.3231C49.1908 29.1411 49.2229 28.9499 49.322 28.7916C49.4211 28.6332 49.579 28.5208 49.7611 28.4789C49.9431 28.437 50.1343 28.4691 50.2926 28.5682L58.4674 33.6858C58.5969 33.767 58.6966 33.8881 58.7512 34.0309C58.8059 34.1738 58.8125 34.3305 58.7702 34.4774C58.7279 34.6244 58.6389 34.7536 58.5167 34.8455C58.3944 34.9373 58.2456 34.987 58.0927 34.9868H58.0911Z"
fill="white" />
<path
d="M50.1828 64.6588C50.0315 64.659 49.8842 64.6105 49.7626 64.5205C49.641 64.4304 49.5517 64.3036 49.5078 64.1588C49.4639 64.014 49.4678 63.859 49.519 63.7166C49.5701 63.5742 49.6657 63.452 49.7917 63.3682L58.2332 57.7469C58.3887 57.6434 58.5789 57.6059 58.7621 57.6427C58.9452 57.6795 59.1062 57.7875 59.2097 57.943C59.3131 58.0985 59.3506 58.2888 59.3138 58.4719C59.277 58.655 59.169 58.816 59.0135 58.9195L50.5724 64.5409C50.457 64.6178 50.3215 64.6589 50.1828 64.6588Z"
fill="white" />
<path
d="M31.6628 35.127C31.5098 35.1271 31.361 35.0775 31.2388 34.9856C31.1166 34.8937 31.0276 34.7646 30.9853 34.6176C30.9429 34.4707 30.9496 34.3139 31.0042 34.1711C31.0589 34.0283 31.1585 33.9071 31.2881 33.8259L40.0966 28.3104C40.175 28.2613 40.2623 28.2282 40.3535 28.2129C40.4447 28.1975 40.5381 28.2003 40.6282 28.2211C40.7183 28.2418 40.8035 28.2801 40.8788 28.3337C40.9542 28.3874 41.0182 28.4554 41.0673 28.5338C41.1163 28.6122 41.1495 28.6994 41.1648 28.7907C41.1801 28.8819 41.1774 28.9752 41.1566 29.0653C41.1359 29.1555 41.0976 29.2406 41.0439 29.316C40.9903 29.3913 40.9223 29.4553 40.8439 29.5044L32.0354 35.0195C31.9238 35.0897 31.7946 35.1269 31.6628 35.127Z"
fill="white" />
<path
d="M39.7899 64.6588C39.6513 64.6589 39.5157 64.6178 39.4004 64.5409L30.9593 58.9195C30.8823 58.8683 30.8161 58.8024 30.7646 58.7256C30.7131 58.6488 30.6772 58.5626 30.6589 58.4719C30.6407 58.3812 30.6405 58.2878 30.6584 58.1971C30.6763 58.1064 30.7118 58.02 30.7631 57.943C30.8143 57.866 30.8802 57.7999 30.957 57.7483C31.0338 57.6968 31.12 57.6609 31.2107 57.6427C31.3014 57.6245 31.3947 57.6243 31.4855 57.6422C31.5762 57.66 31.6626 57.6956 31.7395 57.7468L40.1811 63.3682C40.307 63.452 40.4027 63.5742 40.4538 63.7165C40.5049 63.8589 40.5088 64.014 40.4649 64.1588C40.4211 64.3036 40.3317 64.4304 40.2101 64.5204C40.0886 64.6105 39.9412 64.659 39.7899 64.6588Z"
fill="white" />
<path
d="M49.92 43.3196C49.7681 43.3198 49.6202 43.2709 49.4983 43.1802C49.3765 43.0894 49.2872 42.9617 49.2439 42.8161C49.2006 42.6705 49.2055 42.5148 49.258 42.3722C49.3104 42.2296 49.4076 42.1078 49.5349 42.025L57.6018 36.7742C57.7583 36.6723 57.949 36.6368 58.1318 36.6754C58.3146 36.714 58.4745 36.8237 58.5764 36.9803C58.6784 37.1368 58.7139 37.3275 58.6753 37.5103C58.6366 37.693 58.527 37.853 58.3704 37.9549L50.3035 43.2057C50.1894 43.28 50.0562 43.3196 49.92 43.3196Z"
fill="white" />
<path
d="M57.6654 53.3617C57.5204 53.3618 57.379 53.3169 57.2606 53.2333L50.4662 48.4494C50.3147 48.3413 50.2122 48.1777 50.181 47.9943C50.1497 47.8109 50.1924 47.6226 50.2995 47.4705C50.4067 47.3184 50.5697 47.2149 50.7529 47.1826C50.9362 47.1503 51.1247 47.1918 51.2774 47.2981L58.0719 52.0824C58.1943 52.1686 58.286 52.2915 58.3338 52.4334C58.3817 52.5753 58.383 52.7287 58.3377 52.8714C58.2924 53.0141 58.2028 53.1386 58.0819 53.2269C57.961 53.3152 57.8151 53.3627 57.6654 53.3625V53.3617Z"
fill="white" />
<path
d="M40.2781 43.4583C40.1419 43.4583 40.0087 43.4187 39.8946 43.3444L30.7359 37.3846C30.6584 37.3341 30.5916 37.2689 30.5393 37.1926C30.487 37.1163 30.4502 37.0305 30.4311 36.94C30.4119 36.8494 30.4108 36.7561 30.4278 36.6651C30.4447 36.5742 30.4794 36.4875 30.5299 36.41C30.5804 36.3324 30.6456 36.2656 30.7219 36.2133C30.7982 36.161 30.8841 36.1242 30.9746 36.1051C31.0651 36.0859 31.1585 36.0848 31.2494 36.1018C31.3403 36.1187 31.427 36.1534 31.5046 36.2039L40.6632 42.1637C40.7905 42.2466 40.8877 42.3684 40.9402 42.5109C40.9926 42.6535 40.9975 42.8092 40.9542 42.9549C40.9109 43.1005 40.8216 43.2282 40.6998 43.3189C40.5779 43.4097 40.43 43.4585 40.2781 43.4583Z"
fill="white" />
<path
d="M31.8644 53.6783C31.7147 53.6786 31.5688 53.6311 31.4479 53.5428C31.327 53.4544 31.2374 53.3299 31.1921 53.1872C31.1468 53.0445 31.1482 52.8911 31.196 52.7492C31.2438 52.6074 31.3356 52.4844 31.458 52.3982L39.3856 46.8163C39.5383 46.7086 39.7275 46.666 39.9116 46.6978C40.0957 46.7296 40.2596 46.8332 40.3673 46.9859C40.475 47.1386 40.5176 47.3278 40.4858 47.5119C40.454 47.696 40.3504 47.8599 40.1977 47.9676L32.2701 53.5496C32.1515 53.6335 32.0097 53.6785 31.8644 53.6783Z"
fill="white" />
<path d="M44.9864 51.0861L39.101 47.8736V41.9883L44.9864 45.2008V51.0861Z" fill="#1483F8" />
<path d="M44.9863 51.0861L50.8717 47.8736V41.9883L44.9863 45.2008V51.0861Z" fill="#1483F8" />
<path d="M39.101 41.9839L44.9864 38.6133L50.8717 41.9839L44.9864 45.1964L39.101 41.9839Z" fill="#1483F8" />
<path d="M26.5854 40.3049L20.7 37.0924V31.207L26.5854 34.4195V40.3049Z" fill="#1483F8" />
<path d="M26.5854 40.3049L32.4707 37.0924V31.207L26.5854 34.4195V40.3049Z" fill="#1483F8" />
<path d="M20.7 31.2105L26.5854 27.8398L32.4707 31.2105L26.5854 34.423L20.7 31.2105Z" fill="#1483F8" />
<path d="M26.5854 61.6643L20.7 58.4518V52.5664L26.5854 55.7789V61.6643Z" fill="#1483F8" />
<path d="M26.5854 61.6643L32.4707 58.4518V52.5664L26.5854 55.7789V61.6643Z" fill="#1483F8" />
<path d="M20.7 52.5699L26.5854 49.1992L32.4707 52.5699L26.5854 55.7824L20.7 52.5699Z" fill="#1483F8" />
<path d="M63.3873 40.3049L57.502 37.0924V31.207L63.3873 34.4195V40.3049Z" fill="#1483F8" />
<path d="M63.3873 40.3049L69.2726 37.0924V31.207L63.3873 34.4195V40.3049Z" fill="#1483F8" />
<path d="M57.5019 31.2105L63.3873 27.8398L69.2726 31.2105L63.3873 34.423L57.5019 31.2105Z" fill="#1483F8" />
<path d="M63.3873 61.6643L57.5019 58.4518V52.5664L63.3873 55.7789V61.6643Z" fill="#1483F8" />
<path d="M63.3873 61.6643L69.2726 58.4518V52.5664L63.3873 55.7789V61.6643Z" fill="#1483F8" />
<path d="M57.502 52.5699L63.3873 49.1992L69.2727 52.5699L63.3873 55.7824L57.502 52.5699Z" fill="#1483F8" />
<path d="M44.9864 32.4655L39.101 29.2525V23.3672L44.9864 26.5801V32.4655Z" fill="#1483F8" />
<path d="M44.9863 32.4655L50.8717 29.2525V23.3672L44.9863 26.5801V32.4655Z" fill="#1483F8" />
<path d="M39.101 23.3707L44.9864 20L50.8717 23.3707L44.9864 26.5836L39.101 23.3707Z" fill="#1483F8" />
<path d="M44.9864 69.9967L39.101 66.7838V60.8984L44.9864 64.1113V69.9967Z" fill="#1483F8" />
<path d="M44.9863 69.9967L50.8717 66.7838V60.8984L44.9863 64.1113V69.9967Z" fill="#1483F8" />
<path d="M39.101 60.9019L44.9864 57.5312L50.8717 60.9019L44.9864 64.1148L39.101 60.9019Z" fill="#1483F8" />
</svg>
</div>
<p class="mb-3 fw-bold text-white">
Blockchain ledger registration
</p>
<p class="mb-0 text-white">
<small>
Each case secured in WineTrust is recorded on an independent, publicly verifiable, blockchain.
</small>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- spirits-owners -->
<!-- story -->
<section class="story section-padding">
<div class="container">
<div class="row gx-xl-5">
<div class="col-xl-6">
<div class="story-intro mt-5">
<div class="section-header">
<h2 class="title fw-bold mb-2 mb-lg-4">A gateway to NFTs</h2>
<p class="mb-4 fw-500 lh-base">
Every case secured in WineTrust is automatically tokenized as an digital asset on an independent blockchain register. This is
primarily for security and provenance tracing, but tokenization brings a universe of additional benefits:
</p>
<ul class="list-unstyled feature-list">
<li class="mb-3">
<img src="assets/img/check.svg" alt="icon" class="img-fluid imgIcon" />
<p class="mb-0 text-theme-gray">
Store your cases in your own private digital wallet.
</p>
</li>
<li class="mb-3">
<img src="assets/img/check.svg" alt="icon" class="img-fluid imgIcon" />
<p class="mb-0 text-theme-gray">
Transfer ownership to anyone digitally.
</p>
</li>
<li class="mb-3">
<img src="assets/img/check.svg" alt="icon" class="img-fluid imgIcon" />
<p class="mb-0 text-theme-gray">
List your cases for sale on exchanges such as OpenSea or the specialist Dyon exchange for fine wine & spirits.
</p>
</li>
<li class="mb-3">
<img src="assets/img/check.svg" alt="icon" class="img-fluid imgIcon" />
<p class="mb-0 text-theme-gray">
Use your assets as collateral in the broader digital asset ecosystem.
</p>
</li>
</ul>
</div>
</div>
</div>
<div class="col-xl-6">
<div class="story-img mb-3 mb-xl-0">
<img src="assets/img/story-3.png" alt="img" class="img-fluid" />
</div>
</div>
</div>
</div>
</section>
<!-- story -->
<!-- story -->
<section class="story section-padding bg-light">
<div class="container">
<div class="row gx-xl-5 align-items-center">
<div class="col-xl-6">
<div class="story-img mb-3 mb-xl-0">
<img src="assets/img/story-5.png" alt="img" class="img-fluid" />
</div>
</div>
<div class="col-xl-6">
<div class="story-intro">
<div class="section-header">
<h2 class="title fw-bold mb-2 mb-lg-4">The Dyon Exchange</h2>
<p class="mb-4 fw-500 lh-base">
WineTrust has partnered with Dyon – the world’s leading fine wine & spirits digital asset exchange.
This means that all assets in WineTrust can be offered for sale (in fractional amounts) on Dyon.
</p>
<p class="mb-4 fw-500 lh-base">
This opens up a new world of liquidity, trading, and new entrants into the world of fine wine and spirits.
Anything you purchase on the Dyon exchange can also be automatically stored in your WineTrust account.
</p>
<p class="mb-4 fw-500 lh-base">
We believe that tokenization represents the future of completely secure fine wine & spirits ownership and trading.
</p>
<a class="btn btn-primary py-2 px-4 text-light is-rounded" href="#">
See Dyon Exchange
<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.2812 10.2578H4.15625" stroke="#fff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M11.9877 4.98837L17.2814 10.2594L11.9877 15.5312" stroke="#fff" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- story -->