-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
865 lines (856 loc) · 58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Insurely</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="heads.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule=""
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="all-hides" style="background-color: inherit; z-index: 100;">
<div id="case-h" class="hide container-hidden">
<div class="use-case box">
<div class="use-case-left left">
<h5>Use case</h5>
<p class="left-overview">
Explore the experiences you can build with Insurely's products.
</p>
<button>Read more →</button>
</div>
<div class="use-case-right right">
<div class="right-row">
<h5 class="right-row-heading">Insurance</h5>
<div class="right-row-content">
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
</div>
</div>
<div class="right-row">
<h5 class="right-row-heading">Insurance</h5>
<div class="right-row-content">
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
</div>
</div>
</div>
</div>
</div>
<div id="product-h" class="hide container-hidden">
<div class="use-case box">
<div class="use-case-left left">
<h5>Products</h5>
<p class="left-overview">
Explore the experiences you can build with Insurely's products.
</p>
<button>Read more →</button>
</div>
<div class="use-case-right right">
<div class="right-row">
<h5 class="right-row-heading">Insurance</h5>
<div class="right-row-content">
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
</div>
</div>
<div class="right-row">
<h5 class="right-row-heading">Insurance</h5>
<div class="right-row-content">
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
</div>
</div>
</div>
</div>
</div>
<div id="resource-h" class="hide container-hidden">
<div class="use-case box">
<div class="use-case-left left">
<h5>Resources</h5>
<p class="left-overview">
Explore the experiences you can build with Insurely's products.
</p>
<button>Read more →</button>
</div>
<div class="use-case-right right">
<div class="right-row">
<h5 class="right-row-heading">Insurance</h5>
<div class="right-row-content">
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
</div>
</div>
<div class="right-row">
<h5 class="right-row-heading">Insurance</h5>
<div class="right-row-content">
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
</div>
</div>
</div>
</div>
</div>
<div id="company-h" class="hide container-hidden">
<div class="use-case box">
<div class="use-case-left left">
<h5>Company</h5>
<p class="left-overview">
Explore the experiences you can build with Insurely's products.
</p>
<button>Read more →</button>
</div>
<div class="use-case-right right">
<div class="right-row">
<h5 class="right-row-heading">Insurance</h5>
<div class="right-row-content">
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
</div>
</div>
<div class="right-row">
<h5 class="right-row-heading">Insurance</h5>
<div class="right-row-content">
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
<a class="highlight">
<p class="overview">Insurance Overview</p>
<p class="detail">Offer an insurance overview.</p>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<header>
<a href="#" class="header-logo">Insurely</a>
<nav>
<!-- use cases -->
<li id="case-b">
<a href="">Use Cases</a>
<span>
<ion-icon class="icon" name="chevron-down-outline"></ion-icon>
</span>
</li>
<!-- products -->
<li id="product-b">
<a href="">Products</a>
<span>
<ion-icon class="icon" name="chevron-down-outline"></ion-icon>
</span>
</li>
<!-- docs -->
<li>
<a href="">Docs</a>
</li>
<!-- resources -->
<li id="resource-b">
<a href="">Resources</a
><span>
<ion-icon class="icon" name="chevron-down-outline"></ion-icon>
</span>
</li>
<!-- company -->
<li id="company-b">
<a href="">Company</a
><span>
<ion-icon class="icon" name="chevron-down-outline"></ion-icon>
</span>
</li>
</nav>
<button class="btn contact-btn">Contact us</button>
</header>
<main>
<section class="section-hero">
<div class="hero-text-container">
<h1 class="heading-primary">
Real-time access to insurance policy data.
</h1>
<p class="hero-description">
Get real-time insights into policy details, coverage, and more -
directly from your customer's current insurance providers. All
through one single integration.
</p>
<div class="hero-buttons">
<button class="btn contact-btn">Contact us</button
><button class="try btn contact-btn">Try insurely</button>
</div>
</div>
<div class="hero-img-container">
<img src="https://www.insurely.com/hubfs/API%20-%20min.png" alt="" />
</div>
</section>
<section class="section-customers">
<div class="logo-heading-container">
<h2 class="heading-secondary">
Trusted by leading insurance providers and banks.
</h2>
</div>
<ul class="logo-list">
<li>
<svg
style="transform: translateY(-5px) scale(1)"
width="199"
height="88"
viewBox="0 0 199 88"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M54.1247 22.4319L43.3981 30.4984C38.3335 26.1101 31.806 25.2489 28.2042 25.2489C24.6024 25.2489 20.7611 26.2982 20.1718 28.9323C19.6009 31.4869 21.9556 33.4743 26.0099 34.582C30.63 35.8381 34.8369 36.9458 41.3144 38.8087C50.9491 41.5806 57.5397 45.7755 57.5397 55.5141C57.5397 68.9362 45.7134 75.8897 29.867 75.8897C14.0205 75.8897 3.22559 67.5714 0 63.6945L11.3396 55.1537C19.3062 62.147 24.8444 63.1327 29.4723 63.1327C34.7843 63.1327 39.7516 61.9827 40.3883 58.9776C40.9066 56.5476 38.907 54.6131 34.3817 53.5558C29.2645 52.3659 24.9418 51.4067 20.1218 50.1294C7.05368 46.6738 3.36766 39.0234 3.36766 32.1494C3.36766 22.6837 12.1157 12.9636 28.1147 12.9636C44.1138 12.9636 54.1273 22.4293 54.1273 22.4293M122.491 13.9123H74.6753V74.1036H123.367V60.2257H91.4663V50.5295H113.443V37.2479H91.4663V27.663H122.488V13.9123H122.491ZM62.2992 88H66.0141V0H62.2992V88ZM129.647 88H133.362V0H129.647V88ZM142 74.1062H180.407C190.676 74.1062 199 67.8735 199 57.8885C199 50.1002 193.938 44.9328 186.845 42.6591C186.845 42.6591 186.553 42.5876 186.158 42.5717C186.553 42.5346 186.845 42.4524 186.845 42.4524C190.91 40.8306 195.409 36.5165 195.409 29.1735C195.409 19.8588 187.226 13.915 177.126 13.915H142.002V74.1062H142ZM158.875 26.4307H172.29C175.379 26.4307 177.878 28.8873 177.878 31.7095C177.878 34.5317 175.379 36.9961 172.29 36.9961H158.875V26.4281V26.4307ZM175.284 60.7266L158.875 60.7319V49.7531H175.284C178.186 49.7531 180.538 52.1221 180.538 55.2412C180.538 58.3602 178.186 60.7292 175.284 60.7292V60.7266Z"
fill="#213123"
></path>
</svg>
</li>
<li>
<svg
fill="none"
width="199"
height="88"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 84 25"
style="transform: translateY(-13px) scale(1.25)"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M4.746 17.68c-.122.483-.257.98-.393 1.463-.202.711-.567 1.825-.784 2.536h2.42L4.746 17.68Zm1.284-2.255L9.545 24.9H7.003l-.473-1.516H3.015L2.542 24.9H0l3.542-9.475h2.489ZM15.494 15.425h2.542L14.723 24.9H12.29l-3.272-9.475h2.542l1.974 6.737 1.96-6.737ZM22.26 17.68c-.121.483-.257.98-.392 1.463-.203.711-.568 1.825-.784 2.536h2.42L22.26 17.68Zm1.285-2.255L27.06 24.9h-2.542l-.474-1.516H20.53l-.473 1.516h-2.541l3.542-9.475h2.488ZM28.499 15.425h2.34l2.068 3.49c.757 1.328.986 1.757 1.432 2.59l-.107-6.08h2.284V24.9h-2.339l-1.784-2.993c-.866-1.409-1.028-1.704-1.677-2.966l.068 5.96h-2.285v-9.476M38.901 15.425h7.706v1.852l-5.205 5.758h5.178V24.9h-8.125v-1.772l5.286-5.851h-4.84v-1.852ZM52.535 17.68c-.122.483-.257.98-.392 1.463-.203.711-.568 1.825-.784 2.536h2.42l-1.244-3.999Zm1.284-2.255 3.515 9.475h-2.541l-.473-1.516h-3.516l-.473 1.516h-2.542l3.542-9.475h2.488ZM62.466 15.376h3.282V24.9h-3.282v-9.524ZM68.464 12.613h3.283V24.9h-3.283V12.613ZM74.464 9.152h3.284V24.9h-3.284V9.152ZM80.469.159h3.283V24.9h-3.283V.159Z"
fill="#213123"
></path>
</svg>
</li>
<li>
<svg
width="204"
height="60"
viewBox="0 0 204 60"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M20.7865 0.686781C20.2009 1.29695 19.87 1.39865 18.6989 1.39865C17.6805 1.39865 17.3241 1.50034 17.2477 1.78C17.2223 2.00882 17.6805 3.05119 18.2915 4.14441C20.2519 7.55119 21.423 11.9495 21.9321 17.619C22.0594 19.119 22.1358 19.3478 22.6704 19.4749C23.9434 19.78 24.2234 19.3224 24.4271 16.5258C24.7326 11.797 26.031 7.32238 28.1441 3.71221C29.3916 1.57661 29.2388 1.16983 27.2785 1.32237C26.1838 1.39865 25.9292 1.29695 25.3182 0.712206C24.7072 0.0766125 24.4271 0.000341415 23.0523 0.000341415C21.6776 0.000341415 21.3975 0.0766125 20.7865 0.686781Z"
fill="#213123"
></path>
<path
d="M13.6325 2.54272C13.6325 2.66984 13.1234 2.79696 12.4869 2.79696C11.5958 2.79696 11.163 2.9495 10.7048 3.43255C10.3483 3.76306 10.0683 4.22069 10.0683 4.4495C10.0683 4.65289 9.86462 4.83086 9.58457 4.83086C9.32999 4.83086 8.97356 4.9834 8.82081 5.18679C8.59168 5.46645 8.87173 5.72069 10.221 6.50882C13.8107 8.61899 17.2731 12.6614 18.9789 16.78C19.3862 17.797 19.7427 18.7885 19.7427 18.9664C19.7427 19.3987 20.2518 19.7037 20.5064 19.4241C20.7101 19.1953 20.2264 14.6953 19.7681 12.7122C18.9534 9.20374 17.0695 5.08509 15.4401 3.33086C14.549 2.36475 13.6325 1.95798 13.6325 2.54272Z"
fill="#213123"
></path>
<path
d="M30.7408 3.40668C28.6277 5.69482 26.6419 10.7033 25.98 15.3813C25.5472 18.4321 25.4962 19.5762 25.8781 19.5762C26.1327 19.5762 26.3618 19.0931 27.2274 16.7541C28.6531 12.8135 33.1339 7.75414 36.5199 6.20329C37.6401 5.69482 37.8183 5.00838 36.8763 4.88126C36.5708 4.83041 36.2399 4.57617 36.1635 4.32193C35.8834 3.45753 34.7887 2.79651 33.5921 2.79651C32.9811 2.79651 32.472 2.66939 32.472 2.54227C32.472 1.98295 31.7082 2.36431 30.7408 3.40668Z"
fill="#213123"
></path>
<path
d="M111.649 2.51753L110.758 2.67007L110.682 6.96668L110.631 11.2379L110.045 11.0853C105.997 9.91584 103.069 10.5006 100.982 12.8904C99.5052 14.543 99.0469 16.0938 99.0724 19.3226C99.0724 22.2718 99.5561 23.848 100.905 25.2463C103.069 27.5345 106.761 27.7124 109.358 25.6531C110.682 24.6108 110.783 24.6362 110.936 25.9328C110.987 26.4413 111.165 26.5938 111.853 26.6447L112.667 26.7209V14.5175C112.667 7.78024 112.642 2.31414 112.617 2.31414C112.566 2.33957 112.133 2.41584 111.649 2.51753ZM109.103 12.7633C110.656 13.2463 110.631 13.1701 110.631 17.8226V22.1192L109.714 23.1108C108.441 24.5345 106.837 25.2718 105.31 25.1192C102.688 24.865 101.211 22.7548 101.211 19.1701C101.211 16.6023 101.746 14.9752 102.993 13.7294C104.444 12.2802 106.481 11.9497 109.103 12.7633Z"
fill="#213123"
></path>
<path
d="M146.146 2.51681L145.382 2.66935V14.3643V26.0338L146.528 26.3897C147.164 26.5677 148.641 26.7965 149.837 26.8727C153.834 27.1524 156.304 25.9321 157.781 22.9321C158.595 21.3049 158.621 21.1016 158.621 18.3049C158.621 15.61 158.57 15.2541 157.908 13.9321C156.737 11.5168 154.929 10.4236 152.231 10.4236C150.83 10.4236 149.354 11.0338 148.132 12.0507L147.291 12.7626V7.52528C147.291 4.6524 147.215 2.31342 147.113 2.31342C146.986 2.33884 146.579 2.41511 146.146 2.51681ZM154.369 13.0168C157.17 14.7456 157.348 21.3304 154.675 23.7456C154.14 24.2287 153.198 24.7626 152.587 24.9405C151.416 25.2456 149.125 25.1185 148.004 24.6863L147.291 24.4066V19.7541V15.1016L148.259 14.1863C150.27 12.2032 152.409 11.7965 154.369 13.0168Z"
fill="#213123"
></path>
<path
d="M69.0563 3.45742C65.8994 4.42353 64.1682 8.28793 65.543 11.3134C66.2304 12.8388 67.7579 14.0591 70.813 15.5083C74.1227 17.0845 75.0392 17.7456 75.6247 19.0676C76.5412 21.1015 75.7011 23.3896 73.6389 24.4574C71.8059 25.3981 67.9616 25.0422 65.874 23.7201C65.1102 23.2625 65.0338 23.3388 64.9829 24.6608L64.932 25.754L66.3322 26.2625C68.1144 26.8981 72.0096 27.1269 73.6135 26.6947C75.1919 26.2371 76.6176 25.1693 77.4578 23.7201C78.0688 22.6778 78.1706 22.2456 78.1451 20.593C78.1451 17.2117 77.1777 16.093 72.1878 13.6015C70.5839 12.8134 68.98 11.8981 68.6745 11.593C66.6632 9.76251 67.0196 6.71166 69.3873 5.54217C70.7112 4.85573 73.2316 4.95742 75.0901 5.72014C75.9302 6.05065 76.6431 6.30488 76.6685 6.27946C76.694 6.25403 76.7704 5.74556 76.8467 5.16081L76.974 4.06759L75.3192 3.55912C73.3589 2.94895 70.813 2.92353 69.0563 3.45742Z"
fill="#213123"
></path>
<path
d="M85.1719 5.26235C84.6118 5.46574 84.1536 6.12676 84.1536 6.73693C84.1536 8.03354 86.063 8.61828 86.8013 7.57591C87.3614 6.78778 87.3105 6.43184 86.5722 5.71998C85.9357 5.05896 85.8338 5.03354 85.1719 5.26235Z"
fill="#213123"
></path>
<path
d="M90.951 5.61863C90.1618 6.20337 90.0854 6.76269 90.6709 7.57625C91.1547 8.26269 92.3003 8.31354 92.8859 7.67795C94.1333 6.30507 92.4021 4.44913 90.951 5.61863Z"
fill="#213123"
></path>
<path
d="M86.4447 10.6529C83.2114 11.6444 81.3529 14.5681 81.3529 18.6613C81.3529 21.2291 81.8366 22.9579 83.0077 24.4834C85.3754 27.5851 90.5435 27.9664 93.5477 25.2715C95.4571 23.5681 95.9917 22.119 95.9917 18.6868C95.9917 16.1444 95.9408 15.763 95.2789 14.441C94.4388 12.7376 92.9621 11.3647 91.3328 10.8308C90.1362 10.3986 87.5394 10.3224 86.4447 10.6529ZM91.4855 13.0427C93.5986 14.4156 94.617 18.1529 93.7004 21.2546C93.1149 23.263 91.6383 24.7376 89.7798 25.1444C89.0669 25.2969 88.3541 25.3732 88.1759 25.3224C87.9977 25.2461 87.5394 25.1444 87.1575 25.0681C86.2155 24.8647 84.7644 23.5427 84.077 22.2715C83.6187 21.4071 83.5169 20.8224 83.5169 18.6868C83.5169 15.941 83.8988 14.7715 85.2226 13.5512C86.852 12.0257 89.627 11.7969 91.4855 13.0427Z"
fill="#213123"
></path>
<path
d="M121.221 10.6779C119.388 11.2372 117.657 13.0169 116.843 15.2542C116.282 16.8304 116.257 20.2881 116.843 22.2203C117.428 24.2033 119.337 26.1609 121.196 26.6948C123.869 27.483 127.764 26.8474 129.496 25.3728C130.056 24.8897 130.157 24.6355 130.056 23.8728L129.928 22.9575L128.528 23.7965C126.542 24.9914 125.6 25.2457 123.615 25.1186C120.661 24.966 118.981 23.2881 118.599 20.1101L118.446 18.8135H124.378H130.31L130.157 17.3389C130.056 16.5508 129.801 15.3304 129.572 14.6186C129.012 13.0169 127.179 11.1609 125.753 10.7287C124.557 10.3728 122.316 10.3474 121.221 10.6779ZM125.397 12.5847C126.721 13.2711 127.943 15.2033 127.943 16.6525V17.2881H123.385C120.865 17.2881 118.752 17.1864 118.676 17.0847C118.472 16.7287 118.981 15.1525 119.618 14.2372C120.992 12.1779 123.309 11.5423 125.397 12.5847Z"
fill="#213123"
></path>
<path
d="M139.476 10.9067C138.865 11.1863 137.872 11.9491 137.235 12.5847L136.09 13.7796V12.2287V10.6779L135.402 10.8304C134.995 10.9067 134.537 11.0084 134.384 11.0847C134.129 11.1355 134.053 12.9406 134.053 18.9406V26.6948H135.071H136.09V21.1779V15.6609L137.312 14.4914C138.508 13.3219 140.341 12.4575 141.563 12.4575C142.072 12.4575 142.098 12.3558 141.971 11.4914C141.843 10.7287 141.691 10.5508 141.181 10.4745C140.825 10.4491 140.061 10.6525 139.476 10.9067Z"
fill="#213123"
></path>
<path
d="M166.284 10.8054C162.898 12.0003 160.963 16.3224 161.777 20.7969C162.159 22.9325 162.77 24.0512 164.145 25.3478C165.596 26.6444 166.793 27.0512 169.186 27.0257C171.248 27.0257 173.03 26.5173 174.532 25.5257C175.322 24.9918 175.449 24.7885 175.347 24.1529C175.22 23.1868 174.889 22.9834 174.329 23.4664C172.776 24.8393 169.262 25.5766 167.327 24.941C165.367 24.28 164.171 22.6274 163.916 20.1868L163.763 18.8139H169.67C176.365 18.8139 175.78 19.0681 175.271 16.3986C174.965 14.6698 174.1 12.8393 173.208 12.0257C171.63 10.5512 168.524 9.99185 166.284 10.8054ZM170.764 12.6105C171.961 13.2207 173.259 15.4071 173.259 16.8054C173.259 17.263 172.954 17.2885 168.549 17.2885C163.407 17.2885 163.585 17.3647 164.12 15.7376C165.163 12.6868 168.117 11.2885 170.764 12.6105Z"
fill="#213123"
></path>
<path
d="M184.512 11.0847C183.774 11.4406 182.806 12.1779 182.348 12.7372C181.864 13.2711 181.406 13.7287 181.33 13.7287C181.228 13.7287 181.152 13.0423 181.152 12.2033C181.152 11.1101 181.075 10.7287 180.846 10.7796C180.668 10.8558 180.21 10.9575 179.828 11.0338L179.115 11.1863V18.9406V26.6948H180.261H181.406V21.2287V15.7626L182.45 14.6186C183.468 13.5253 185.581 12.4575 186.753 12.4575C187.109 12.4575 187.262 12.2796 187.262 11.8474C187.262 10.2457 186.574 10.0423 184.512 11.0847Z"
fill="#213123"
></path>
<path
d="M192.71 11.0334C191.081 11.7961 190.139 13.0164 189.757 14.7707C189.375 16.7283 189.808 18.1012 191.233 19.5503L192.379 20.669L191.717 21.3554C190.928 22.169 190.877 23.3639 191.59 24.0249C192.099 24.4825 192.074 24.5079 190.826 25.3469C189.222 26.4402 188.535 27.4825 188.535 28.9571C188.535 30.4825 189.833 31.8046 191.946 32.4147C194.263 33.1012 198.642 32.8724 200.526 31.9825C202.435 31.1181 203.377 29.8724 203.403 28.2452C203.454 25.8808 201.952 24.8639 197.064 23.8978C194.187 23.3385 193.117 22.8808 193.117 22.2452C193.117 21.6605 194.238 21.0503 194.976 21.2283C195.994 21.4825 198.336 20.8978 199.457 20.0842C200.984 18.9656 201.595 17.5927 201.468 15.5334C201.417 14.313 201.239 13.6266 200.806 13.0418C200.5 12.6096 200.246 12.1774 200.246 12.1012C200.246 12.0249 200.933 11.9486 201.773 11.9486C202.614 11.9486 203.301 11.8724 203.301 11.7452C203.301 11.6435 203.225 11.313 203.148 10.9825C202.995 10.4232 202.944 10.4232 198.489 10.4232C194.314 10.4232 193.932 10.474 192.71 11.0334ZM197.344 12.3554C199.177 13.2198 199.966 15.6096 199.1 17.5673C198.489 18.8893 197.267 19.6266 195.689 19.6266C193.296 19.6266 191.844 18.2283 191.844 15.8893C191.844 12.8893 194.67 11.0842 197.344 12.3554ZM196.325 25.652C199.457 26.2622 200.577 26.6944 201.162 27.5842C201.57 28.1944 201.57 28.3215 201.188 29.1096C200.577 30.4063 199.049 31.0673 196.529 31.2198C195.078 31.2961 194.034 31.1944 193.041 30.9147C190.011 30.0249 189.757 27.6859 192.557 25.9063C193.194 25.4995 193.728 25.169 193.728 25.169C193.754 25.169 194.9 25.3978 196.325 25.652Z"
fill="#213123"
></path>
<path
d="M8.41342 15.6101C5.15469 16.2457 2.04871 17.822 0.546637 19.6017C0.0883772 20.1356 -0.0643759 20.4915 0.113836 20.6695C0.266589 20.822 0.24113 21.1779 0.0883772 21.661C-0.19167 22.4745 0.24113 24.4067 0.724848 24.4067C0.877602 24.4067 1.36132 24.1271 1.79412 23.7966C2.25238 23.4406 3.29619 22.8305 4.11088 22.4237C8.31159 20.2881 12.4868 19.8813 16.6366 21.1525C17.5277 21.4322 18.3169 21.5847 18.3933 21.5084C18.597 21.305 17.7059 18.483 17.044 17.3898C16.6112 16.6271 16.1275 16.1949 15.3637 15.8898C13.938 15.305 10.6538 15.1779 8.41342 15.6101Z"
fill="#213123"
></path>
<path
d="M31.5809 15.6101C30.0534 16.0423 29.1623 16.983 28.424 18.9152C27.7367 20.7457 27.7112 21.7372 28.3477 21.483C33.1594 19.6017 39.7023 20.4661 43.9539 23.5169C44.6413 24 45.2778 24.4067 45.4051 24.4067C46.0416 24.4067 46.4744 21.7118 45.9143 21.1525C45.6851 20.9237 45.6851 20.8474 45.9143 20.8474C47.1618 20.8474 44.4122 18.1017 42.07 17.0339C41.2044 16.6271 39.8041 16.1186 38.964 15.8898C36.7745 15.305 33.1339 15.1779 31.5809 15.6101Z"
fill="#213123"
></path>
<path
d="M8.38789 22.6269C5.07824 23.4913 1.69221 25.6523 0.801154 27.432C0.291978 28.4744 0.317436 30.6862 0.826613 31.3981C1.0812 31.754 1.41217 32.0337 1.53946 32.0337C1.69221 32.0337 2.43052 31.3981 3.19429 30.61C5.00186 28.7795 6.78398 27.6354 8.82069 26.9489C11.7739 25.932 14.3198 26.6439 16.8657 29.1862C17.8586 30.1778 18.3423 30.4828 18.546 30.2795C18.6987 30.1269 18.826 28.8303 18.826 27.1015C18.8515 23.6439 18.6987 23.3896 16.2292 22.6269C14.1161 21.9659 10.8574 21.9659 8.38789 22.6269Z"
fill="#213123"
></path>
<path
d="M30.4097 22.4744C29.7733 22.6269 28.8567 23.0083 28.373 23.2879C27.6602 23.7201 27.482 23.9744 27.3547 24.9405C27.1765 26.1608 27.4565 30.1523 27.7366 30.432C27.8384 30.5337 28.5512 29.9744 29.3659 29.1862C30.1551 28.3981 31.3262 27.5083 31.9373 27.2032C35.196 25.5761 38.9384 26.7201 43.0373 30.5845C43.8775 31.3727 44.6158 32.0337 44.6921 32.0337C44.7685 32.0337 45.074 31.6523 45.405 31.1693C45.8633 30.5083 45.9396 30.2032 45.736 29.6947C45.6087 29.3388 45.5577 28.8049 45.6341 28.5252C45.9396 27.2795 43.4192 24.8134 40.4914 23.5167C37.4873 22.1693 33.1593 21.7371 30.4097 22.4744Z"
fill="#213123"
></path>
<path
d="M12.8943 32.5673C10.7812 33.6859 9.78827 33.7876 7.4206 33.1774C5.6894 32.7198 4.97655 32.9486 4.97655 33.991C4.97655 34.3978 4.69651 34.9825 4.28916 35.3893C3.77999 35.9232 3.60178 36.3554 3.62723 37.0673C3.70361 38.7961 3.85636 40.0418 4.03458 40.3723C4.46738 41.0334 7.72611 40.4232 9.55914 39.33C11.7995 37.9825 15.6693 33.33 15.6693 32.0079C15.6693 31.3215 15.0837 31.4486 12.8943 32.5673Z"
fill="#213123"
></path>
<path
d="M30.4352 31.8554C30.4352 32.5673 32.4464 35.5418 34.0249 37.169C36.3926 39.6096 39.7531 41.0842 41.7644 40.5757C42.2735 40.4486 42.4008 40.2707 42.4008 39.5842C42.4008 39.152 42.4518 38.2876 42.5536 37.7283C42.7063 36.6096 42.1972 35.1859 41.5098 34.9063C41.2552 34.83 41.1788 34.5757 41.2807 34.2198C41.357 33.8639 41.2297 33.5079 40.9242 33.2283C40.4405 32.7961 40.3387 32.7961 38.8111 33.1774C36.5962 33.7622 35.1196 33.5588 32.9047 32.4401C30.9444 31.4486 30.4352 31.3469 30.4352 31.8554Z"
fill="#213123"
></path>
<path
d="M19.9208 32.7205C19.8444 32.8476 19.5134 33.9663 19.157 35.2375C17.324 41.5934 15.0581 45.6358 11.0866 49.5256C8.61705 51.9663 8.43884 52.1951 8.87164 52.5002C9.15169 52.6782 9.53357 53.2121 9.7627 53.6697C10.2719 54.6612 11.4684 55.4239 12.6395 55.5002C13.1233 55.5256 13.6324 55.729 13.8107 55.9324C14.0652 56.2629 14.1671 56.2375 14.498 55.8053C16.0765 53.7459 18.6478 46.907 19.488 42.4578C20.0481 39.5341 20.7864 33.051 20.6082 32.7459C20.4554 32.4917 20.0481 32.4917 19.9208 32.7205Z"
fill="#213123"
></path>
<path
d="M22.1866 32.7712C22.1102 32.8983 21.932 34.6017 21.7793 36.5339C21.1937 44.6186 19.768 50.822 17.4258 55.4746C17.0185 56.2627 16.6875 57.1271 16.6875 57.3305C16.6875 57.839 18.3423 58.5508 19.1315 58.3983C19.5643 58.322 19.768 58.4237 19.8699 58.7797C20.1244 59.5169 21.3465 60 23.0522 60C24.707 60 25.9291 59.5424 26.3619 58.7542C26.5146 58.4492 26.7947 58.322 27.0747 58.3983C27.7621 58.5763 29.4169 57.8136 29.4169 57.3305C29.4169 57.0763 29.035 56.0847 28.5513 55.0932C26.2346 50.1864 24.3252 41.0847 24.3252 34.9322C24.3252 33.8898 24.1979 33.0254 24.0196 32.8475C23.6632 32.4915 22.3903 32.4407 22.1866 32.7712Z"
fill="#213123"
></path>
<path
d="M25.7001 32.924C25.42 33.6104 26.3111 41.085 26.9985 43.907C28.1441 48.6104 30.2827 54.0257 31.6829 55.6782C32.1157 56.2121 32.243 56.263 32.4467 55.9324C32.5994 55.7291 32.854 55.5511 33.0322 55.5257C33.2104 55.5257 33.6687 55.4748 34.0506 55.4748C34.8907 55.424 36.4946 54.0765 36.6983 53.263C36.7747 52.9324 37.0038 52.6019 37.2075 52.5257C37.8694 52.2714 37.5639 51.7375 35.8836 50.263C31.7338 46.6528 29.1625 42.3053 27.1512 35.568C26.3111 32.746 25.9801 32.1613 25.7001 32.924Z"
fill="#213123"
></path>
<path
d="M69.2856 34.1951C68.2164 34.5765 66.7397 35.8731 66.2051 36.8646C65.2377 38.7459 65.5941 41.2629 67.1216 43.2714L68.1145 44.6188L67.1725 45.0765C64.4739 46.4493 62.8191 48.6104 62.59 51.0256C62.3863 53.1866 62.87 54.5849 64.2702 55.9832C65.8232 57.5341 67.5799 58.068 70.5331 57.9154C73.0535 57.7883 74.9375 56.9748 76.5923 55.2968L77.6616 54.2036L79.571 56.0341L81.4804 57.89L82.7024 57.6104L83.899 57.3307L81.404 54.8392L78.8836 52.3222L79.4437 51.1273C80.0547 49.8815 80.9458 47.0341 81.2258 45.4578C81.404 44.5426 81.3786 44.5171 80.4366 44.2629C79.902 44.1104 79.4692 44.0341 79.4437 44.0595C79.4182 44.0849 79.1637 45.2036 78.8327 46.5256C78.5017 47.8476 78.0689 49.3731 77.8398 49.907L77.407 50.8476L74.5302 48.0002L71.6788 45.1273L73.3845 43.9832C75.5994 42.5087 76.5669 41.1612 76.7196 39.3053C76.8724 37.5002 76.4396 36.3307 75.243 35.2375C73.7155 33.8646 71.3987 33.4324 69.2856 34.1951ZM73.3081 36.229C76.2104 37.6019 75.0902 41.5934 71.3733 43.1951L70.1767 43.7036L69.362 42.6866C67.9109 40.8561 67.5544 39.229 68.2927 37.7036C69.082 36.0002 71.3987 35.3392 73.3081 36.229ZM72.9262 49.4239L76.3123 52.8307L75.3194 53.8222C72.6462 56.4917 68.7001 56.8985 66.3324 54.7629C63.8629 52.551 64.4739 49.068 67.6563 46.907C68.3946 46.4239 69.1074 46.0171 69.2602 46.0171C69.4129 46.0171 71.0423 47.5426 72.9262 49.4239Z"
fill="#213123"
></path>
<path
d="M90.2637 46.017V57.7119H91.282H92.3004V52.7797V47.8729L95.0499 47.7204C98.2577 47.5678 100.065 47.0339 101.44 45.839C102.942 44.5678 103.502 43.195 103.502 40.8051C103.502 38.4407 102.942 37.017 101.516 35.8475C100.04 34.6272 98.5887 34.3221 94.1589 34.3221H90.2637V46.017ZM98.9451 36.8136C101.847 38.2119 102.127 42.8899 99.4543 44.6695C98.1814 45.5085 96.883 45.7882 94.5153 45.7119L92.4277 45.6356L92.3513 41.1865C92.3258 38.7458 92.3513 36.5848 92.4277 36.4068C92.6568 35.7967 97.494 36.1272 98.9451 36.8136Z"
fill="#213123"
></path>
<path
d="M135.911 35.7708L135.096 35.8725L135.02 38.72L134.944 41.5675L133.747 41.6437C132.551 41.72 132.525 41.7454 132.525 42.6098V43.4742H133.798H135.071V49.4997C135.071 55.9573 135.147 56.3641 136.369 57.2539C137.082 57.7878 139.475 58.1437 140.545 57.8641C141.105 57.7115 141.207 57.5844 141.13 56.8725C141.054 56.1352 140.977 56.059 140.29 56.0844C138.89 56.1607 137.719 55.7285 137.413 55.042C137.21 54.6098 137.108 52.5251 137.108 48.9403V43.4742H139.17C140.952 43.4742 141.207 43.4234 141.079 43.0675C141.003 42.8386 140.927 42.4573 140.927 42.1776C140.927 41.7454 140.723 41.6946 139.017 41.6946H137.108V38.6437C137.108 36.9658 137.031 35.6183 136.93 35.6437C136.802 35.6437 136.369 35.72 135.911 35.7708Z"
fill="#213123"
></path>
<path
d="M110.478 41.4406C109.74 41.5677 108.594 41.8982 107.932 42.1525C106.735 42.5847 106.685 42.6355 106.761 43.4745C106.812 43.9576 106.888 44.3898 106.888 44.4152C106.914 44.4406 107.754 44.1864 108.721 43.8304C110.783 43.144 113.329 43.0169 114.424 43.5762C115.29 44.0338 115.722 44.9491 115.722 46.3728V47.466L114.144 47.644C110.198 48.0508 107.143 49.3728 106.048 51.1779C105.361 52.2711 105.361 54.7118 106.023 55.9321C107.346 58.4237 111.955 58.6779 114.755 56.4406C115.264 56.0084 115.748 55.6779 115.824 55.6779C115.901 55.6779 116.053 56.1355 116.13 56.6948C116.283 57.6355 116.359 57.7118 117.148 57.7118H118.014V51.6609C118.014 45.3813 117.861 44.0593 117.072 42.9915C116.028 41.6186 113.253 40.9576 110.478 41.4406ZM115.722 51.4576V53.8728L114.908 54.483C112.922 55.9576 110.58 56.5423 109.103 55.9321C107.627 55.322 107.168 53.4406 108.085 51.9152C108.874 50.644 112.311 49.322 115.417 49.0932C115.646 49.0677 115.722 49.7033 115.722 51.4576Z"
fill="#213123"
></path>
<path
d="M128.834 41.4153C127.612 41.7204 126.873 42.178 125.473 43.5509L124.124 44.8475V43.2458C124.124 41.695 124.098 41.6441 123.564 41.7967C123.233 41.8729 122.774 41.9492 122.545 41.9492C122.112 41.9492 122.087 42.4831 122.087 49.8306V57.7119H123.233H124.378V52.1695V46.6526L125.142 45.7119C125.931 44.7458 128.172 43.4746 129.063 43.4746C130.03 43.4746 130.31 43.0933 130.132 42.1017C130.03 41.5933 129.877 41.1865 129.776 41.2119C129.674 41.2373 129.266 41.3136 128.834 41.4153Z"
fill="#213123"
></path>
<path
d="M150.779 41.5424C150.117 41.7204 148.972 42.2797 148.233 42.8136C147.47 43.3221 146.808 43.7289 146.731 43.7289C146.63 43.7289 146.502 43.2712 146.4 42.7119C146.248 41.7458 146.171 41.695 145.357 41.695H144.491V49.7034V57.7119H145.637H146.782V51.7882V45.8645L148.004 44.9238C150.779 42.8136 153.351 42.6356 154.598 44.4662C155.005 45.0509 155.056 45.9153 155.133 51.4068L155.209 57.7119H156.227H157.22V51.1526C157.22 44.7967 157.195 44.5424 156.635 43.4746C155.667 41.6187 153.274 40.8306 150.779 41.5424Z"
fill="#213123"
></path>
<path
d="M166.309 41.4408C163.076 42.2543 161.116 44.873 160.861 48.7882C160.632 52.0679 161.523 54.712 163.432 56.3899C165.571 58.2713 169.542 58.5001 172.674 56.9238C174.431 56.034 174.711 55.6781 174.431 54.534L174.278 53.9238L172.878 54.7882C169.11 57.0509 165.214 56.4154 163.763 53.3391C163.407 52.6018 163.05 51.5086 162.974 50.8984L162.821 49.8306H168.804H174.812L174.66 48.4832C174.125 44.034 172.139 41.7204 168.499 41.3391C167.837 41.2628 166.844 41.3137 166.309 41.4408ZM169.542 43.3221C170.739 43.8306 171.681 44.9238 172.114 46.373C172.317 47.0594 172.496 47.7204 172.496 47.8476C172.496 47.9493 170.383 48.0509 167.786 48.0509C162.414 48.0509 162.618 48.1526 163.687 45.8899C164.349 44.4408 164.883 43.9069 166.131 43.373C167.251 42.8899 168.448 42.8645 169.542 43.3221Z"
fill="#213123"
></path>
<path
d="M185.098 41.4153C183.825 41.7458 182.73 42.4068 181.534 43.6526L180.388 44.8729V43.2458V41.6187L179.599 41.7967C179.166 41.8729 178.708 41.9492 178.58 41.9492C178.453 41.9492 178.351 45.4831 178.351 49.8306V57.7119H179.37H180.388V52.3984C180.388 47.3136 180.413 47.0848 180.973 46.2458C181.712 45.1272 183.748 43.7543 184.97 43.5763C186.396 43.3475 186.549 43.1695 186.371 42.1017C186.269 41.5933 186.116 41.1865 186.014 41.2119C185.938 41.2373 185.531 41.3136 185.098 41.4153Z"
fill="#213123"
></path>
<path
d="M192.481 41.4658C190.088 42.0505 188.586 44.0336 188.891 46.1946C188.968 46.8047 189.273 47.6692 189.553 48.0505C190.139 48.8641 192.074 49.8556 193.958 50.3132C196.656 50.9742 198.209 52.1437 198.209 53.5166C198.209 54.4064 197.445 55.3725 196.427 55.7793C194.696 56.4658 192.405 56.2115 190.037 55.0675L188.84 54.5081L188.688 55.2454C188.611 55.6522 188.535 56.1353 188.535 56.3386C188.535 56.8471 191.284 57.737 193.372 57.8895C197.955 58.22 200.653 56.0336 200.119 52.4234C199.991 51.6098 199.711 51.0759 198.973 50.3386C198.133 49.4997 197.496 49.1946 195.078 48.4573C192.175 47.542 191.259 47.0081 190.953 46.0166C190.699 45.2285 191.284 44.0081 192.124 43.6014C193.245 43.0166 195.791 43.1183 197.522 43.8302C198.54 44.2624 198.973 44.3386 198.973 44.1098C198.973 43.9319 199.049 43.4488 199.126 43.0166C199.278 42.2539 199.253 42.2285 197.955 41.8471C196.172 41.3132 193.754 41.1607 192.481 41.4658Z"
fill="#213123"
></path>
</svg>
</li>
<li>
<svg
width="200"
height="77"
viewBox="0 0 200 77"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M169.831 2.10205L111.313 50.3674H139.867L198.365 2.10205H169.831Z"
fill="#213129"
></path>
<path
d="M60.1124 2.10205L1.59424 50.3674H30.1481L88.6663 2.10205H60.1124Z"
fill="#213129"
></path>
<path
d="M111.313 2.10205H88.6663V50.3674H111.313V2.10205Z"
fill="#213129"
></path>
<path
d="M122.698 58.4697V72.3269L115.953 58.4697H111.313V75.8779H114.563V61.8779L121.369 75.8779H125.948V58.4697H122.698Z"
fill="#213129"
></path>
<path
d="M133.654 65.5918C135.636 65.5918 136.965 67.2041 136.965 69.6327C136.965 72.0816 135.636 73.6531 133.654 73.6531C131.671 73.6531 130.342 72.0816 130.342 69.6327C130.342 67.2041 131.651 65.5918 133.654 65.5918ZM133.654 63C129.872 63 127.195 65.6939 127.195 69.6531C127.195 73.5918 129.872 76.3061 133.654 76.3061C137.435 76.3061 140.112 73.6122 140.112 69.6531C140.112 65.6939 137.435 63 133.654 63Z"
fill="#213129"
></path>
<path
d="M195.095 65.7146V63.3881H192.826V59.5718H189.739V63.3881H187.777V65.7146H189.739V72.0208C189.739 74.6126 190.802 75.8983 194.134 75.8983H195.095V73.3269H194.359C193.255 73.3269 192.846 72.9187 192.846 71.8779V65.7146H195.095Z"
fill="#213129"
></path>
<path
d="M147.716 63.2041C145.754 63.2041 144.793 64.1633 144.221 65.551V63.3674H141.339V75.8776H144.425V69.6939C144.425 67.4286 145.529 66.1225 147.736 66.1225H148.37V63.2041H147.716Z"
fill="#213123"
></path>
<path
d="M154.747 73.6329C152.826 73.6329 151.62 72.0411 151.62 69.6533C151.62 67.2247 152.928 65.6737 154.788 65.6737C156.587 65.6737 157.976 67.1431 157.976 69.6533C157.997 72.0819 156.648 73.6329 154.747 73.6329ZM157.874 58.4696V64.837C157.057 63.6941 155.81 63.0206 154.073 63.0206C150.884 63.0206 148.533 65.5717 148.533 69.6329C148.533 73.6533 150.843 76.2247 154.032 76.2247C155.973 76.2247 157.302 75.388 158.099 74.0002V75.8574H160.981V58.4492H157.874V58.4696Z"
fill="#213129"
></path>
<path
d="M169.586 63C167.787 63 166.52 63.8163 165.784 65.0408V63.4082H162.902V75.9184H165.989V68.3469C165.989 66.7755 167.072 65.6939 168.564 65.6939C170.117 65.6939 170.955 66.5918 170.955 68.2449V75.9184H174.042V67.3673C174.042 64.8367 172.509 63 169.586 63Z"
fill="#213129"
></path>
<path
d="M181.523 65.4082C183.26 65.4082 184.303 66.5102 184.446 68.2245H178.436C178.763 66.5714 179.806 65.4082 181.523 65.4082ZM187.532 69.2449C187.532 65.4286 185.243 63 181.564 63C177.639 63 175.309 65.8776 175.309 69.7143C175.309 73.6939 177.741 76.2857 181.768 76.2857C184.364 76.2857 186.796 74.9388 187.43 71.9388H184.384C183.894 73.2041 182.79 73.6939 181.686 73.6939C179.663 73.6939 178.6 72.3673 178.355 70.4286H187.491C187.512 70.2041 187.532 69.6122 187.532 69.2449Z"
fill="#213129"
></path>
</svg>
</li>
<li>
<svg
width="149"
height="60"
viewBox="0 -10 149 80"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_1_12)">
<path
d="M86.0168 43.5765V16.4256H89.3173C98.3685 16.4256 104.205 20.5151 104.205 29.9069V30.0931C104.205 39.4849 98.3685 43.5765 89.3173 43.5765H86.0168ZM66.2222 60H88.2164C112.155 60 124.167 47.4035 124.167 29.6571V29.4856C124.167 11.7435 112.41 0 88.8932 0H66.2222V60Z"
fill="#213123"
></path>
<path
d="M12.4167 41.3793H43.4583V20.6897H12.4167V41.3793Z"
fill="#213123"
></path>
<path d="M130.375 60H149V0H130.375V60Z" fill="#213123"></path>
<path d="M0 60H18.625V0H0V60Z" fill="#213123"></path>
<path
d="M39.3194 60H57.9444V0H39.3194V60Z"
fill="#213123"
></path>
</g>
<defs>
<clipPath id="clip0_1_12">
<rect width="149" height="60" fill="white"></rect>
</clipPath>
</defs>
</svg>
</li>
</ul>
</section>
<section class="section-how">
<h2 class="heading-secondary">
Create the experiences your customers want.
</h2>
<p class="hero-description">
Our data collection products empowers you to create the transparent
and modern insurance experiences that consumers demand today, so you
can maximize engagement, conversion, and revenue.
</p>
<div class="container-how grid--2-cols">
<!-- 1 -->
<div class="how-container">
<div class="how-img-container">
<img
src="https://www.insurely.com/hubfs/Simplified%20UI/UI%20-%20Insurance%20Data%20Aggregation%204.png"
alt=""
/>
</div>
<div class="how-text-container">
<h3 class="heading-tertiary">Insurance Overview.</h3>
<p class="how-description">
Allow your customers to gather all their insurance policies in
one place and increase in-app engagement.
</p>
<a href="">Insurance overview <span>→</span></a>
</div>
</div>
<!-- 2 -->
<div class="how-container">
<div class="how-img-container">
<img
src="https://www.insurely.com/hubfs/Simplified%20UI/UI%20-%20Digital%20Insurance%20Sales.png"
alt=""
/>
</div>
<div class="how-text-container">
<h3 class="heading-tertiary">Compare & Switch.</h3>
<p class="how-description">
Increase conversion by letting your customers collect, compare
and switch insurance directly in your environment.
</p>
<a href="">Compare & Switch <span>→</span></a>
</div>
</div>
<!-- 3 -->
<div class="how-container">
<div class="how-img-container">
<img
src="https://www.insurely.com/hubfs/Simplified%20UI/UI%20-%20Pension%20Data%20Aggregation%202.png"
alt=""
/>
</div>
<div class="how-text-container">
<h3 class="heading-tertiary">Pension Overview.</h3>
<p class="how-description">
Offer your customers an overview of their financial lives — and
at the same time, get all the data insights you need to improve
your services.
</p>
<a href="">Pension Overview <span>→</span></a>
</div>
</div>
<!-- 4 -->
<div class="how-container">
<div class="how-img-container">
<img
src="https://www.insurely.com/hubfs/Simplified%20UI/UI%20-%20Pension%20Data%20Aggregation%201.png"
alt=""
/>
</div>
<div class="how-text-container">
<h3 class="heading-tertiary">Pension Transfer.</h3>
<p class="how-description">
Increase the inflow of pension capital and drive revenue by
enabling pension transfer requests within seconds through
Insurely’s Pension Switcher.
</p>
<a href="">Pension Transfer <span>→</span></a>
</div>
</div>
</div>
</section>
<section class="section-defination section-how">
<div class="def-text-container">
<h2 class="heading-secondary">What is open insurance?</h2>
<p class="def-description">
Open insurance enables information sharing within the insurance
industry. It creates more open relationships between insurance
companies and their customers — relationships based on trust,
understanding, and an enormous amount of data. It's a win-win; the
win for providers is better insights about their insurance products,
and the win for consumers is more enjoyable insurance experiences.
And as a part of EU’s upcoming open finance framework, open
insurance is here to stay.
</p>
<a href="#" class="btn">Learn more →</a>
</div>
<div class="def-img-container">
<img src="https://www.insurely.com/hubfs/Data%20-%20min.png" alt="" />
</div>
</section>
<section class="section-whats-new">
<h2 class="heading-secondary">What's new</h2>
<!-- new grid 6 container -->
<div class="container-new">
<!-- first -->
<div class="new new-first">
<h3 class="heading-tertiary">
The intersection of open banking, open finance, and open
insurance.
</h3>
<p class="how-description">
The financial industry is undergoing a profound transformation
fueled by the concepts of open finance, open banking, and open
insurance, all of which are reshaping traditional financial models
and ...
</p>
<button class="btn new-btn">Read more →</button>
</div>
<!-- second -->
<div class="new new-double new-second">
<div class="new-left">
<h3 class="heading-tertiary">A message from the future.</h3>
<p class="how-description">
With the launch of the ambitious FIDA proposal by the European
Union on June 28th, a clear path has been forged toward seamless
data sharing, heightened competition, and a brighter financial
future ...
</p>
<button class="btn new-btn">Read more →</button>
</div>
<div class="new-right">
<img
class="second-img"
src="https://www.insurely.com/hubfs/Blog_image_1.png"
alt=""
/>
</div>
</div>
<!-- third -->
<div class="new new-double new-second new-third">
<div class="new-left">
<h3 class="heading-tertiary">A message from the future.</h3>
<p class="how-description">
With the launch of the ambitious FIDA proposal by the European
Union on June 28th, a clear path has been forged toward seamless
data sharing, heightened competition, and a brighter financial
future ...
</p>
<button class="btn new-btn">Read more →</button>
</div>
<div class="new-right">
<img
class="third-img"
src="https://25104460.fs1.hubspotusercontent-eu1.net/hubfs/25104460/Blog_image_2.png"
alt=""
/>
</div>
</div>
<!-- four -->
<div class="new new-fourth new-first">
<h3>
The intersection of open banking, open finance, and open
insurance.
</h3>
<p>
The financial industry is undergoing a profound transformation
fueled by the concepts of open finance, open banking, and open
insurance, all of which are reshaping traditional financial models
and ...
</p>
<button class="btn new-btn">Read more →</button>
</div>
</div>
</section>
<section class="section-help">
<h3 class="heading-help">We're here to help.</h3>
<p class="description">
Our use cases are made possible by the power of open insurance. When
you want to learn more, we'll be here.
</p>
<button class="btn">Read more</button>
</section>
</main>
<!-- <footer></footer> -->
<footer>
<div class="footer">
<div class="foot footer-1">
<p class="footer-logo"><a href="">Insurely</a></p>
<p class="address">Sveavägen 9<br />111 57 Stockholm, Sweden</p>
<button class="btn btn-footer">Get in touch</button>
</div>
<div class="foot">
<p class="foot-list-head">Industry</p>
<div>
<p class="foot-list-rest">Insurance</p>
<p class="foot-list-rest">Banking & personal finance</p>
</div>
</div>
<div class="foot">
<p class="foot-list-head">Use cases</p>
<div>
<p class="foot-list-rest">Insurance Overview</p>
<p class="foot-list-rest">Compare & Switch</p>
<p class="foot-list-rest">Pension Overview</p>
<p class="foot-list-rest">Pension Transfer</p>
</div>
</div>
<div class="foot">
<p class="foot-list-head">Products</p>
<div>
<p class="foot-list-rest">Pension Data Aggregation</p>
<p class="foot-list-rest">Sales Support Tool</p>
<p class="foot-list-rest">Digital Insurance Sales</p>
<p class="foot-list-rest">Pension Data Aggregation</p>
</div>
</div>
<div class="foot">
<p class="foot-list-head">About us</p>
<div>
<p class="foot-list-rest">About us</p>
<p class="foot-list-rest">Press</p>
<p class="foot-list-rest">Career</p>
<p class="foot-list-rest">Glossary</p>
<p class="foot-list-rest">What is open insurance</p>
<p class="foot-list-rest">Open insurance blog</p>
<p class="foot-list-rest">Contact us</p>
<p class="foot-list-rest">Privacy policy (swe)</p>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="copyright-text-div">
Copyright © 2021. All rights reserved. Insurely is provided by
The Great Collective AB. Organization number: 559103-5646. The Great
Collective AB is registered insurance intermediaries with the Swedish
Companies Registration Office and comply under the Swedish Financial
Supervision Authority.
</div>
<div class="footer-social-div">
<ul>
<li>
<a
href="https://www.linkedin.com/company/insurelyapp"
rel="noopener nofollow"
target="_blank"
>
<svg
width="22"
viewBox="0 0 22 22"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M0.461914 7.32617H5.03809V21.5381H0.461914V7.32617ZM12.375 21.5381V13.2881C12.375 12.4072 12.6149 11.7305 13.0947 11.2578C13.5817 10.778 14.1904 10.5381 14.9209 10.5381C15.6585 10.5381 16.2565 10.8031 16.7148 11.333C17.1803 11.8558 17.4131 12.6615 17.4131 13.75V21.5381H22V13.2881C22 11.2686 21.4951 9.69661 20.4854 8.57227C19.4756 7.44076 18.1471 6.875 16.5 6.875C15.6263 6.875 14.8421 7.09342 14.1475 7.53027C13.4528 7.96712 12.862 8.55436 12.375 9.29199L12.2246 7.32617H7.71289L7.78809 10.5381V21.5381H12.375ZM2.72852 5.03809H2.69629C1.90137 5.03809 1.25326 4.79818 0.751953 4.31836C0.250651 3.83138 0 3.22982 0 2.51367C0 1.79036 0.254232 1.19238 0.762695 0.719727C1.27832 0.239909 1.94792 0 2.77148 0C3.58073 0 4.23242 0.239909 4.72656 0.719727C5.22786 1.19238 5.48568 1.79036 5.5 2.51367C5.5 3.23698 5.24577 3.83854 4.7373 4.31836C4.22884 4.79818 3.55924 5.03809 2.72852 5.03809Z"
fill="#A2E96B"
></path>
</svg>
</a>
</li>
<li>
<a
href="https://www.facebook.com/insurely"
rel="noopener nofollow"
target="_blank"
>
<svg
width="22"
viewBox="0 0 22 23"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M2 0.538086C0.895431 0.538086 0 1.43352 0 2.53809V20.5381C0 21.6427 0.89543 22.5381 2 22.5381H11.125V13.8267H8.75V10.6631H11.125V7.88916C11.125 7.31396 11.2178 6.77279 11.4033 6.26562C11.5889 5.75228 11.8672 5.2915 12.2383 4.8833C12.6094 4.46891 13.1073 4.14111 13.7319 3.8999C14.3566 3.65869 15.071 3.53809 15.875 3.53809C16.2708 3.53809 16.6667 3.55355 17.0625 3.58447C17.4583 3.6154 17.7552 3.64323 17.9531 3.66797L18.25 3.71436L18.1201 6.70166H16.0698C15.5132 6.70166 15.1421 6.83464 14.9565 7.10059C14.7772 7.36035 14.6875 7.75619 14.6875 8.28809V10.6631H18.25L18.0088 13.8267H14.6875V22.5381H20C21.1046 22.5381 22 21.6427 22 20.5381V2.53809C22 1.43352 21.1046 0.538086 20 0.538086H2Z"
fill="#A2E96B"
></path>
</svg>
</a>
</li>
<li>
<a
href="https://www.instagram.com/insurely.official"
rel="noopener nofollow"
target="_blank"
>
<svg
width="22"
viewBox="0 0 23 23"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0)">
<path
d="M11.5 1.989c2.947 0 3.296.011 4.46.064 1.076.05 1.661.23 2.05.38.515.2.883.44 1.27.826.385.386.625.754.825 1.27.15.388.33.973.38 2.049.053 1.164.064 1.513.064 4.46s-.011 3.296-.064 4.46c-.05 1.077-.23 1.661-.38 2.05-.2.515-.44.883-.826 1.27a3.419 3.419 0 01-1.27.825c-.388.151-.973.33-2.049.38-1.164.053-1.513.064-4.46.064-2.948 0-3.297-.01-4.46-.064-1.077-.05-1.661-.229-2.05-.38-.515-.2-.883-.44-1.27-.826a3.42 3.42 0 01-.825-1.269c-.151-.389-.33-.973-.38-2.05-.053-1.163-.064-1.513-.064-4.46s.011-3.296.064-4.46c.05-1.076.229-1.66.38-2.05.2-.515.44-.883.826-1.269a3.42 3.42 0 011.269-.826c.389-.15.973-.33 2.05-.38C8.204 2 8.553 1.99 11.5 1.99zM11.5 0C8.502 0 8.126.013 6.949.066 5.774.12 4.972.306 4.269.58a5.41 5.41 0 00-1.954 1.273A5.41 5.41 0 001.04 3.808c-.273.702-.46 1.504-.513 2.68C.475 7.663.462 8.04.462 11.037c0 2.998.013 3.374.066 4.551.054 1.175.24 1.977.513 2.68.282.725.66 1.34 1.274 1.955.613.613 1.229.99 1.955 1.273.702.273 1.504.46 2.679.513 1.177.053 1.553.066 4.551.066s3.374-.012 4.55-.066c1.176-.054 1.978-.24 2.68-.513a5.411 5.411 0 001.955-1.273 5.411 5.411 0 001.274-1.956c.273-.702.459-1.504.513-2.679.053-1.177.066-1.553.066-4.55 0-2.999-.013-3.375-.066-4.552-.054-1.175-.24-1.977-.513-2.68a5.41 5.41 0 00-1.274-1.954A5.41 5.41 0 0018.73.58c-.702-.273-1.504-.46-2.68-.514C14.875.013 14.499 0 11.5 0zm0 5.37a5.668 5.668 0 100 11.336 5.668 5.668 0 000-11.336zm0 9.348a3.68 3.68 0 110-7.36 3.68 3.68 0 010 7.36zm7.217-9.572a1.325 1.325 0 11-2.65 0 1.325 1.325 0 012.65 0z"
fill="#A2E96B"
></path>
</g>
<defs>
<clipPath id="clip0">
<path
fill="#fff"
transform="translate(.462)"
d="M0 0h22.076v22.076H0z"
></path>
</clipPath>
</defs>
</svg>
</a>
</li>
</ul>
</div>
</div>
</footer>
<script defer src="script.js" ></script>
</body>
</html>