-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1415 lines (1383 loc) · 106 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Best Airline Optimization Solutions - AerOpt</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css" />
<link rel="stylesheet" href="./assets/css/bootstrap.css" />
<link rel="stylesheet" href="./assets/css/global.css" />
<link rel="stylesheet" href="./assets/css/aeropt.css" />
<script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
</head>
<body>
<a href="#main-content" class="skip-link">Skip to main content</a>
<header role="banner" class="navigation">
<div class="container-lg">
<nav
aria-label="Main navigation"
class="d-flex align-items-center justify-content-between">
<a href="/"
><img src="assets/images/aeropt-logo.png" alt="Aeropt company logo"
/></a>
<a
href="mailto:[email protected]"
role="button"
class="primary-btn d-none d-md-flex align-items-center gap-2"
aria-label="Book a call button">
<img
src="assets/images/aeroplan-icon.png"
alt="Icon of an airplane representing booking a call" />
<span>Book a Call</span>
</a>
</nav>
</div>
</header>
<main role="main" id="main-content">
<section
class="main-banner py-30 py-md-7"
aria-labelledby="main-banner-title">
<div class="container-lg">
<h1 id="main-banner-title" class="main-banner__title white-color">
Unlock $25 million in 2025 with better
<span class="position-relative d-inline-block">
<span class="position-relative d-inline-block secondary-color">
<span
class="main-banner__rotating-text-item main-banner__rotating-text-item--active"
aria-live="polite"
>Fleet Scheduling</span
>
<span class="main-banner__rotating-text-item" aria-hidden="true"
>Route Optimization</span
>
<span class="main-banner__rotating-text-item" aria-hidden="true"
>Crew Management</span
>
<span class="main-banner__rotating-text-item" aria-hidden="true"
>Resource Allocation</span
>
</span>
</span>
</h1>
<p class="pt-2 pb-3 py-md-30 para-big white-color">
The route to better airline profitability is combining
<strong
>Data science, operation research, and tech-led solutions</strong
>
</p>
<a
href="mailto:[email protected]"
role="button"
class="primary-btn d-inline-flex align-items-center gap-2"
aria-label="Talk to an Expert">
<img src="assets/images/aeroplan-icon.png" alt="Airplane icon" />
<span>Talk to an Expert</span>
</a>
</div>
</section>
<section
class="partner-logos py-5 pb-lg-7"
aria-label="Partnerships with Industry Leaders">
<div class="container-lg">
<h2 class="text-center pb-5 para charcoal-blue">
Partnerships with Industry Leaders
</h2>
<div
class="partner-logos__wrapper"
role="region"
aria-label="Logos of our partners">
<div class="partner-logos__track">
<img
src="assets/images/codewalnut.png"
alt="CodeWalnut Company Logo"
class="partner-logo img-fluid" />
<img
src="assets/images/Sabre-logo.svg"
alt="Sabre Company Logo"
class="partner-logo img-fluid" />
<img
src="assets/images/infogain.png"
alt="Infogain Company Logo"
class="partner-logo img-fluid" />
<img
src="assets/images/FPT.png"
alt="FPT Company Logo"
class="partner-logo img-fluid" />
<img
src="assets/images/Kyndryl_logo.png"
alt="Kyndryl logo"
class="partner-logo img-fluid" />
</div>
</div>
</div>
</section>
<section class="info-section" aria-label="The AerOpt Value Section">
<div class="container-lg">
<h2 class="pb-5 pb-lg-6 primary-color">
The AerOpt <span class="secondary-color">Value</span>
</h2>
<div class="row">
<div class="col-md-6 pe-lg-5 order-2 order-md-1">
<div class="info-section__item">
<img
src="assets/images/aeroplan-navy-color.png"
alt="Aeroplane icon"
class="info-section__item-icon" />
<p class="info-section__item-description">
AerOpt is a travel optimization consulting firm specializing
in data science, operations research, and IT-driven solutions
for airlines, airports, and related sectors.
</p>
</div>
<div class="info-section__item">
<img
src="assets/images/aeroplan-navy-color.png"
alt="Aeroplane icon"
class="info-section__item-icon" />
<p class="info-section__item-description">
AerOpt has helped 10+ airlines achieve $10 million to $30
million in incremental savings within 3 to 9 months.
</p>
</div>
<div class="info-section__item">
<img
src="assets/images/aeroplan-navy-color.png"
alt="Aeroplane icon"
class="info-section__item-icon" />
<p class="info-section__item-description">
AerOpt is your innovative solutions partner, dedicated to
developing advanced tools that embody the latest thinking in
the travel and hospitality industry.
</p>
</div>
</div>
<div class="col-md-6 order-1 pb-lg-6 pb-4 order-md-2">
<img
src="./assets/images/aeropt-value.jpg"
alt="Airplane parked on a runway with a clear sky"
class="img-fluid info-section__image mb-4 mb-md-0" />
</div>
</div>
</div>
</section>
<section
class="timeline-section mb-2 pt-5"
aria-labelledby="timeline-heading">
<div class="container-lg">
<div class="row">
<div class="col-12 text-center">
<h2
id="timeline-heading"
class="timeline__title primary-color text-start mb-5 mb-lg-6">
What do you wish to Improve in<span class="secondary-color"
> 2025</span
>?
</h2>
</div>
</div>
<div
class="timeline-wrapper"
role="region"
aria-label="Timeline of improvement steps">
<div class="timeline__line mt-3 mt-md-0" aria-hidden="true"></div>
<div class="timeline__plane-icon">
<img
src="assets/images/gold-color-aeroplan-icon.png"
alt="Timeline progress indicator" />
</div>
<div class="timeline-item mb-md-7 mb-5" data-step="1">
<div
class="row align-items-md-center d-flex justify-content-start">
<div class="col-md-5 order-md-1 d-none d-md-block">
<div class="timeline-item__image">
<img
src="assets/images/fleet-assignment.png"
alt="Illustration of fleet assignment optimization"
class="img-fluid" />
</div>
</div>
<div class="col-2 col-md-2 order-md-2 mt-2 mt-md-0">
<div class="timeline-item__indicator" aria-hidden="true">
<div class="timeline-item__step-number">1</div>
</div>
</div>
<div class="col-10 col-md-5 order-md-3 timeline__points">
<div class="timeline-item__content">
<h3 class="mb-3 primary-color">Demand Forecasting</h3>
<p class="text-color">
Use statistical models, machine learning, and historical
data to predict future passenger demand.
</p>
</div>
</div>
</div>
</div>
<div class="timeline-item mb-md-7 mb-5" data-step="2">
<div
class="row align-items-md-center d-flex justify-content-start">
<div class="col-md-5 order-md-3 d-none d-md-block">
<div class="timeline-item__image">
<img
src="assets/images/dynamic-pricing.png"
alt="Illustration of dynamic pricing and revenue management"
class="img-fluid" />
</div>
</div>
<div class="col-2 col-md-2 order-md-2 mt-2 mt-md-0">
<div class="timeline-item__indicator" aria-hidden="true">
<div class="timeline-item__step-number">2</div>
</div>
</div>
<div class="col-10 col-md-5 order-md-1 timeline__points">
<div class="timeline-item__content">
<h3 class="mb-3 primary-color">
Dynamic Pricing & Revenue Management
</h3>
<p class="text-color">
Optimize airline revenue with dynamic pricing and advanced
revenue management solutions. Maximize profitability and
enhance decision-making efficiency effortlessly.
</p>
</div>
</div>
</div>
</div>
<div class="timeline-item mb-md-7 mb-5" data-step="3">
<div
class="row align-items-md-center d-flex justify-content-start">
<div class="col-md-5 order-md-1 d-none d-md-block">
<div class="timeline-item__image">
<img
src="assets/images/crew-cargo.png"
alt="Illustration of crew and cargo optimization"
class="img-fluid" />
</div>
</div>
<div class="col-2 col-md-2 order-md-2 mt-2 mt-md-0">
<div class="timeline-item__indicator" aria-hidden="true">
<div class="timeline-item__step-number">3</div>
</div>
</div>
<div class="col-10 col-md-5 order-md-3 timeline__points">
<div class="timeline-item__content">
<h3 class="mb-3 primary-color">
Crew & Cargo Optimization
</h3>
<p class="text-color">
Revolutionizing airline efficiency with advanced Crew and
Cargo optimization solutions. Maximize operations, reduce
costs, and ensure seamless performance.
</p>
</div>
</div>
</div>
</div>
<div class="timeline-item mb-md-7 mb-5" data-step="4">
<div
class="row align-items-md-center d-flex justify-content-start">
<div class="col-md-5 order-md-3 d-none d-md-block">
<div class="timeline-item__image">
<img
src="assets/images/demand-forecasting.png"
alt="Illustration of fleet assignment and scheduling"
class="img-fluid" />
</div>
</div>
<div class="col-2 col-md-2 order-md-2 mt-2 mt-md-0">
<div class="timeline-item__indicator" aria-hidden="true">
<div class="timeline-item__step-number">4</div>
</div>
</div>
<div class="col-10 col-md-5 order-md-1 timeline__points">
<div class="timeline-item__content">
<h3 class="mb-3 primary-color">
Fleet Assignment & Scheduling
</h3>
<p class="text-color">
Optimize airline fleet assignment and scheduling with our
innovative system, boosting efficiency, reducing costs,
and enhancing operational performance.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="success py-lg-7 py-5"
aria-labelledby="success-heading"
role="region"
aria-label="Success Stories Section">
<div class="container-lg">
<div class="row align-items-center mb-lg-6 mb-5">
<div class="col">
<h2 id="success-heading" class="primary-color">
Success <span class="secondary-color">Stories</span>
</h2>
</div>
<div class="col-auto d-none d-md-block me-3">
<div class="d-flex gap-3">
<button
class="success__nav-button success__arrow-left btn"
aria-label="Previous slide"
type="button">
<img
src="assets/images/arrow-left.svg"
alt=""
aria-hidden="true" />
</button>
<button
class="success__nav-button success__arrow-right btn"
aria-label="Next slide"
type="button">
<img
src="assets/images/arrow-right.svg"
alt=""
aria-hidden="true" />
</button>
</div>
</div>
</div>
<div
class="success__carousel swiper"
role="region"
aria-label="Carousel of success stories">
<div class="swiper-wrapper">
<div class="swiper-slide" role="group" aria-label="Slide 1 of 3">
<div class="row">
<div class="col-md-6 mb-4 mb-md-0 success__image-wrapper">
<img
src="assets/images/aeropt-value.jpg"
alt="Aircraft on runway representing operations research success"
class="success__image img-fluid" />
</div>
<div class="col-md-6">
<h3 class="primary-color mb-4">Operations Research</h3>
<h4 class="primary-color mb-3">
Repeated Success in Fleet Assignment
</h4>
<p class="text-color mb-4">
The last-minute re-allocation process and fleet optimizer
was robust enough to be repeated with region-specific
forecasting customizations. Several airlines across
Europe, Brazil, China, India, and the Middle East adopted
this solution.
</p>
<a
href="#"
role="button"
class="secondary-color fw-medium text-decoration-none"
aria-label="Read more about Operations Research success story">
Read More
</a>
</div>
</div>
</div>
<div class="swiper-slide" role="group" aria-label="Slide 2 of 3">
<div class="row">
<div class="col-md-6 mb-4 mb-md-0 success__image-wrapper">
<img
src="assets/images/aeropt-value.jpg"
alt="Aircraft in flight representing advanced analytics success"
class="success__image img-fluid" />
</div>
<div class="col-md-6">
<h3 class="primary-color mb-4">Advanced Analytics</h3>
<h4 class="primary-color mb-3">
Improved Airline Operations
</h4>
<p class="text-color mb-4">
Enhanced predictive models ensured optimal route planning
and cost savings, improving operational efficiency across
global carriers.
</p>
<a
href="#"
role="button"
class="secondary-color fw-medium text-decoration-none"
aria-label="Read more about Advanced Analytics success story">
Read More
</a>
</div>
</div>
</div>
<div class="swiper-slide" role="group" aria-label="Slide 3 of 3">
<div class="row">
<div class="col-md-6 mb-4 mb-md-0 success__image-wrapper">
<img
src="assets/images/aeropt-value.jpg"
alt="Illustration of fleet optimization success"
class="success__image img-fluid" />
</div>
<div class="col-md-6">
<h3 class="primary-color mb-4">Fleet Optimization</h3>
<h4 class="primary-color mb-3">
Tailored Strategies for Efficiency
</h4>
<p class="text-color mb-4">
Our fleet optimization models empowered airlines to
maximize aircraft utilization while minimizing downtime,
delivering measurable impact.
</p>
<a
href="#"
role="button"
class="secondary-color fw-medium text-decoration-none"
aria-label="Read more about Fleet Optimization success story">
Read More
</a>
</div>
</div>
</div>
</div>
<div class="success__pagination swiper-pagination"></div>
</div>
</div>
</section>
<section
class="cta-banner text-center py-5 py-lg-8"
aria-labelledby="cta-banner-title"
role="region"
aria-label="Call to Action Banner">
<div class="container-lg">
<h2 id="cta-banner-title" class="cta-banner__title pb-30 text-white">
Airline margins are wafer thin. Extract every ounce of savings with
AerOpt
</h2>
<a
href="mailto:[email protected]"
class="primary-btn"
role="button"
aria-label="Find out how AerOpt can improve airline margins">
Find out how
</a>
</div>
</section>
<section
class="py-5 py-lg-8"
aria-labelledby="capabilities-heading"
role="region"
aria-label="Core Capabilities Section">
<div class="container-lg">
<div>
<h2
id="capabilities-heading"
class="capabilities__heading primary-color mb-5 mb-lg-6">
Backed by deep airline expertise,
<span class="secondary-color">AerOpt</span>
delivers value through 4 core capabilities
</h2>
</div>
<div class="capabilities__container" role="list">
<div
class="capabilities__items--left"
role="listitem"
tabindex="0"
aria-labelledby="data-science-title technology-title">
<div
class="capabilities__items"
data-capability="data-science"
tabindex="0"
aria-labelledby="data-science-title"
role="listitem">
<h3
class="capabilities__title fw-medium h4"
id="data-science-title">
Data science
</h3>
<div class="capabilities__line" aria-hidden="true"></div>
</div>
<p
class="capability__description para-small"
id="data-science-desc">
Applying machine learning to calibrate and improve data-driven
models
</p>
<div
class="capabilities__items is-even"
data-capability="technology"
tabindex="0"
aria-labelledby="technology-title"
role="listitem">
<h3
class="capabilities__title fw-medium h4"
id="technology-title">
Technology
</h3>
<div class="capabilities__line" aria-hidden="true"></div>
</div>
<p
class="capability__description para-small"
id="technology-desc">
Building scalable solutions with modern technology stack
</p>
</div>
<div class="capabilities__center">
<img
src="assets/images/inner.png"
alt="Core Capabilities Initial Illustration"
class="capabilities__center-initial-image" />
<img
src="assets/images/Ring.png"
alt="Core capabilities illustration with overlays"
class="capabilities__center-image" />
<div
class="capabilities__center-overlay default"
data-image="data-science"
aria-hidden="true">
<p class="para-small">
Applying machine learning to calibrate and improve data-driven
models
</p>
</div>
<div
class="capabilities__center-overlay"
data-image="technology"
aria-hidden="true">
<p class="para-small">
Building scalable solutions with modern technology stack
</p>
</div>
<div
class="capabilities__center-overlay"
data-image="operations"
aria-hidden="true">
<p class="para-small">
Optimizing complex airline operations through advanced
algorithms
</p>
</div>
<div
class="capabilities__center-overlay"
data-image="consulting"
aria-hidden="true">
<p class="para-small">
Providing expert guidance for airline business transformation
</p>
</div>
</div>
<div class="capabilities__items--right" role="listitem">
<div
class="capabilities__items reverse"
data-capability="operations"
tabindex="0"
aria-labelledby="operations-title"
role="listitem">
<h3
class="capabilities__title fw-medium h4"
id="operations-title">
Operations research
</h3>
<div class="capabilities__line" aria-hidden="true"></div>
</div>
<p
class="capability__description reverse para-small"
id="operations-desc">
Optimizing complex airline operations through advanced
algorithms
</p>
<div
class="capabilities__items is-even reverse"
data-capability="consulting"
tabindex="0"
aria-labelledby="consulting-title"
role="listitem">
<h3
class="capabilities__title fw-medium h4"
id="consulting-title">
Business Consulting
</h3>
<div class="capabilities__line" aria-hidden="true"></div>
</div>
<p
class="capability__description reverse para-small"
id="consulting-desc">
Providing expert guidance for airline business transformation
</p>
</div>
</div>
</div>
</section>
<section class="info-cards py-5 py-lg-7">
<div class="container-lg">
<h2 class="text-white pb-lg-6 pb-5">
How it <span class="secondary-color">Works</span>
</h2>
<div class="row">
<div class="col-lg-8">
<div class="row row-gap-4">
<div class="col-6 col-md-4">
<div class="info-card gold-border p-3 p-md-30 h-100">
<div class="info-card__icon">
<svg
role="presentation"
width="40"
height="40"
viewBox="0 0 40 40"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M9.95208 18.4308H8.57685C8.05865 18.4308 7.6224 18.0942 7.48951 17.5937L7.23263 16.6459C6.84951 16.5219 6.47966 16.3691 6.12755 16.1897L5.27716 16.6791C4.83201 16.9383 4.28505 16.8673 3.91521 16.4997L2.56209 15.1466C2.19888 14.7812 2.12584 14.2342 2.3849 13.7869L2.87654 12.9365C2.69271 12.5799 2.5399 12.2101 2.41591 11.8314L1.4681 11.5767C0.967632 11.4394 0.633179 11.0031 0.633179 10.4894V8.576C0.633179 8.05998 0.967554 7.62147 1.46583 7.4842L2.41591 7.22951C2.5399 6.85084 2.69271 6.481 2.87435 6.12443L2.3849 5.27404C2.12576 4.8267 2.19888 4.28193 2.55982 3.91654L3.91513 2.56123C4.28498 2.19584 4.82974 2.12498 5.2749 2.38186L6.12748 2.8735C6.48404 2.68967 6.85388 2.53686 7.23255 2.41506L7.48724 1.46498C7.62013 0.968887 8.05638 0.632324 8.57458 0.632324H10.4879C11.0083 0.632324 11.4447 0.968965 11.5775 1.46725L11.83 2.41506C12.2065 2.53686 12.5785 2.68967 12.9372 2.8735L13.7854 2.38186C14.2372 2.12498 14.782 2.19803 15.1474 2.56123L16.2259 3.63975L15.5637 4.30193L14.4852 3.22342C14.421 3.16139 14.3324 3.15029 14.2527 3.19459L13.1808 3.81467C13.0391 3.89662 12.8642 3.89662 12.7202 3.81686C12.2707 3.56881 11.799 3.37396 11.3184 3.23889C11.159 3.19459 11.035 3.06834 10.9929 2.90889L10.6718 1.70857C10.6496 1.62225 10.5787 1.56904 10.4902 1.56904H8.57685C8.4838 1.56904 8.4174 1.62217 8.39302 1.70857L8.06966 2.91107C8.02755 3.07053 7.90357 3.19451 7.7463 3.23881C7.2613 3.37615 6.79185 3.571 6.34669 3.81904C6.20271 3.89881 6.02779 3.89654 5.88388 3.81459L4.80763 3.19451C4.73013 3.15021 4.64154 3.16131 4.57513 3.22553L3.22427 4.57639C3.16224 4.64061 3.15123 4.7292 3.19544 4.8067L3.81771 5.88295C3.89966 6.02467 3.89966 6.20186 3.8199 6.34584C3.57185 6.78654 3.37701 7.25826 3.23966 7.74318C3.19318 7.90264 3.06912 8.02662 2.90966 8.06873L1.70935 8.38982C1.62294 8.4142 1.56982 8.48279 1.56982 8.57584V10.4892C1.56982 10.5778 1.62294 10.6465 1.71154 10.6708L2.90958 10.9919C3.06904 11.034 3.19529 11.158 3.23958 11.3174C3.37685 11.8001 3.57177 12.2719 3.81982 12.7148C3.90177 12.8588 3.89958 13.0359 3.81763 13.1776L3.19537 14.2539C3.15107 14.3314 3.16216 14.4222 3.22419 14.4842L4.57732 15.8373C4.64154 15.9015 4.72794 15.9148 4.80544 15.8683L5.88396 15.2461C6.02794 15.1641 6.20287 15.1641 6.34677 15.2439C6.78302 15.4875 7.25255 15.6824 7.74419 15.8219C7.90365 15.8662 8.02544 15.9901 8.06755 16.1496L8.39091 17.3499C8.41529 17.4407 8.48615 17.4939 8.57474 17.4939H9.94998V18.4306H9.95216L9.95208 18.4308Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M9.53813 14.0084C8.44633 14.0084 7.38555 13.612 6.56172 12.8789C5.60282 12.0307 5.05579 10.8105 5.05579 9.53269C5.05579 7.06347 7.06438 5.05261 9.53368 5.05261C10.9488 5.05261 12.2509 5.70144 13.108 6.83316L12.3616 7.39793C11.6818 6.50324 10.652 5.98941 9.53368 5.98941C7.58047 5.98941 5.99258 7.57949 5.99258 9.53269C5.99258 10.5425 6.42446 11.5081 7.1818 12.1791C7.94141 12.8523 8.95571 13.169 9.96329 13.0472L10.074 13.9774C9.8968 13.9973 9.71532 14.0084 9.53813 14.0084Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M32.0647 40.0052H30.1513C29.6331 40.0052 29.1969 39.6685 29.064 39.1702L28.8093 38.2224C28.4306 38.0984 28.0608 37.9456 27.7042 37.7618L26.8538 38.2534C26.402 38.5125 25.8573 38.4395 25.4919 38.0763L24.1387 36.7231C23.7711 36.3555 23.7002 35.8085 23.9615 35.3612L24.451 34.5108C24.2694 34.1587 24.1166 33.7888 23.9926 33.4057L23.0448 33.151C22.5443 33.0181 22.2076 32.5797 22.2076 32.0614V30.6884H23.1444V32.0614C23.1444 32.1522 23.1998 32.2209 23.2862 32.2452L24.4887 32.5686C24.6481 32.6107 24.7721 32.7347 24.8187 32.8941C24.9559 33.3858 25.1508 33.8552 25.3966 34.2915C25.4763 34.4355 25.4763 34.6104 25.3922 34.7544L24.7721 35.8306C24.7256 35.9103 24.7367 35.9945 24.8031 36.0609L26.1562 37.4141C26.2183 37.4761 26.3069 37.4872 26.3865 37.4429L27.4606 36.8206C27.6046 36.7386 27.7795 36.7364 27.9234 36.8184C28.3686 37.0664 28.838 37.2613 29.3208 37.3986C29.4803 37.4429 29.6043 37.5691 29.6464 37.7286L29.9675 38.9289C29.9896 39.0153 30.0605 39.0684 30.1513 39.0684H32.0647C32.1555 39.0684 32.2241 39.0175 32.2462 38.9289L32.5718 37.7264C32.6139 37.567 32.7357 37.443 32.8929 37.3987C33.389 37.257 33.8606 37.062 34.2925 36.8184C34.4387 36.7365 34.6136 36.7388 34.7576 36.8206L35.8338 37.443C35.9113 37.4895 35.9999 37.4762 36.0641 37.412L37.415 36.0611C37.4792 35.9969 37.4903 35.9105 37.446 35.8308L36.8237 34.7545C36.7418 34.6128 36.7396 34.4378 36.8216 34.2916C37.0673 33.8509 37.2644 33.3815 37.4018 32.8943C37.4461 32.737 37.5701 32.6131 37.7295 32.5688L38.9298 32.2454C39.0184 32.2233 39.0716 32.1546 39.0716 32.0616V30.1504C39.0716 30.0596 39.0184 29.9888 38.932 29.9666L37.7295 29.6455C37.5701 29.6034 37.4461 29.4794 37.3995 29.3199C37.2644 28.8371 37.0695 28.3655 36.8193 27.9203C36.7396 27.7742 36.7418 27.5992 36.8237 27.4552L37.446 26.3812C37.4903 26.3037 37.4792 26.2173 37.4172 26.1531L36.3387 25.0745L37.0008 24.4124L38.0794 25.4909C38.4426 25.8541 38.5134 26.401 38.2587 26.8484L37.7649 27.7009C37.9487 28.0575 38.1016 28.4295 38.2255 28.806L39.1733 29.0607C39.6716 29.1936 40.0083 29.6299 40.0083 30.1481V32.0614C40.0083 32.5818 39.6716 33.0181 39.1733 33.151L38.2255 33.4057C38.1016 33.7866 37.9487 34.1565 37.7649 34.513L38.2566 35.3634C38.5134 35.8085 38.4426 36.3555 38.0794 36.7209L36.7262 38.0762C36.3564 38.4416 35.8116 38.5124 35.3643 38.2556L34.5139 37.7639C34.164 37.9433 33.7919 38.0961 33.4088 38.2224L33.1519 39.1724C33.019 39.6685 32.5828 40.0051 32.0646 40.0051L32.0647 40.0052Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M31.108 35.5849C29.828 35.5849 28.6077 35.0356 27.7595 34.0789C26.9091 33.12 26.5083 31.84 26.6634 30.5666L27.5935 30.6773C27.4717 31.6849 27.7862 32.6992 28.4616 33.4588C29.1327 34.2139 30.096 34.648 31.108 34.648C33.0613 34.648 34.6491 33.0602 34.6491 31.1069C34.6491 29.9863 34.1376 28.9566 33.2407 28.2789L33.8054 27.5326C34.937 28.3874 35.5859 29.6896 35.5859 31.1047C35.5859 33.5762 33.5773 35.5848 31.108 35.5848L31.108 35.5849Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M10.3264 33.5652L9.66207 32.903L15.2096 27.3534L15.8739 28.0155L10.3264 33.5652ZM7.73543 30.9764L7.07324 30.3142L12.6229 24.7645L13.2873 25.4267L7.73543 30.9764Z"
class="secondary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M4.95171 40.0074C4.50882 40.0074 4.06585 39.8368 3.72702 39.5003L1.13819 36.9114C0.462725 36.236 0.462725 35.1375 1.13819 34.4643L5.28827 30.3142C5.61601 29.9865 6.05007 29.8071 6.51296 29.8071H6.51515C6.97796 29.8071 7.41202 29.9865 7.73757 30.3142L10.3264 32.9031C10.6519 33.2264 10.8313 33.6605 10.8313 34.1233C10.8313 34.5861 10.6519 35.0224 10.3264 35.3502L6.17632 39.5003C5.83749 39.8391 5.39468 40.0074 4.95171 40.0074ZM1.80038 36.2492L4.38921 38.8381C4.69929 39.1481 5.20421 39.1481 5.51202 38.8381L9.6621 34.688C9.81265 34.5396 9.8946 34.3381 9.8946 34.1255C9.8946 33.9129 9.81265 33.7136 9.66429 33.5674L7.07327 30.9764C6.92491 30.8281 6.7278 30.7461 6.51522 30.7461H6.51304C6.30046 30.7461 6.10116 30.8281 5.95272 30.9764L1.80265 35.1265C1.49257 35.4366 1.49257 35.9392 1.80046 36.2493L1.80038 36.2492Z"
class="secondary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M24.6769 31.2841C20.7526 31.2841 16.8262 29.7893 13.8365 26.8019C7.86162 20.8248 7.86162 11.0984 13.8365 5.12126C19.8136 -0.85585 29.5401 -0.85585 35.5194 5.12126C38.4138 8.0179 40.0083 11.8669 40.0083 15.9616C40.0083 20.0563 38.4138 23.9074 35.5194 26.8041C32.5297 29.7893 28.6033 31.2841 24.6769 31.2841ZM24.6769 1.57571C20.9919 1.57571 17.3068 2.97751 14.4987 5.78337C8.88919 11.3973 8.88919 20.528 14.4987 26.1397C20.1126 31.7514 29.2433 31.7514 34.8551 26.1397C40.469 20.528 40.469 11.3974 34.8551 5.78337C32.0492 2.97751 28.3642 1.57571 24.6769 1.57571H24.6769Z"
class="secondary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M24.679 27.8605C18.1173 27.8605 12.778 22.5234 12.778 15.9617C12.778 9.39993 18.1173 4.06274 24.679 4.06274C31.2408 4.06274 36.5757 9.39985 36.5757 15.9617C36.5779 22.5234 31.2386 27.8605 24.679 27.8605ZM24.679 4.99954C18.6333 4.99954 13.7148 9.91806 13.7148 15.9617C13.7148 22.0052 18.6333 26.9238 24.679 26.9238C30.7248 26.9238 35.639 22.0052 35.639 15.9617C35.6412 9.91587 30.7226 4.99954 24.679 4.99954Z"
class="secondary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M22.1877 21.25C21.9463 21.25 21.7426 21.0662 21.7205 20.8226C21.6098 19.5337 21.0893 18.7608 20.5379 17.9393C19.9266 17.0335 19.2955 16.0968 19.2955 14.5311C19.2955 11.5636 21.7116 9.14966 24.6791 9.14966C27.6466 9.14966 30.0605 11.5636 30.0605 14.5311C30.0605 16.0968 29.4294 17.0335 28.8182 17.9415C28.2668 18.7608 27.7463 19.536 27.6356 20.8226C27.6112 21.0795 27.3854 21.2722 27.1285 21.25C26.8694 21.2257 26.679 20.9998 26.7011 20.7429C26.834 19.2127 27.4762 18.2604 28.0409 17.4189C28.6212 16.5574 29.1216 15.8133 29.1216 14.5311C29.1216 12.0818 27.1285 10.0886 24.6792 10.0886C22.2299 10.0886 20.2323 12.0795 20.2323 14.5311C20.2323 15.8111 20.7328 16.5574 21.313 17.4189C21.88 18.2604 22.5222 19.2149 22.6529 20.7429C22.675 20.9998 22.4846 21.2279 22.2276 21.25H22.1877Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M26.3444 23.7836H23.0115C22.2984 23.7836 21.7183 23.2034 21.7183 22.4925V20.7851C21.7183 20.5282 21.9287 20.3178 22.1877 20.3178L27.1639 20.3134C27.4208 20.3134 27.6312 20.5216 27.6333 20.7806L27.6378 22.4902C27.6356 23.2034 27.0576 23.7835 26.3445 23.7835L26.3444 23.7836ZM22.655 21.2545V22.4925C22.655 22.6852 22.8189 22.8468 23.0115 22.8468H26.3444C26.5371 22.8468 26.6988 22.6852 26.6988 22.4925L26.6966 21.2501L22.6551 21.2545H22.655Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M25.5849 25.5906H23.7711C23.0492 25.5906 22.4623 25.0038 22.4623 24.2818V23.3141C22.4623 23.0572 22.6727 22.8468 22.9317 22.8468C23.1908 22.8468 23.4013 23.055 23.4013 23.3141V24.2818C23.4013 24.4834 23.5695 24.6538 23.7711 24.6538H25.5849C25.7908 24.6538 25.9569 24.4877 25.9569 24.2818V23.3141C25.9569 23.0572 26.1651 22.8468 26.4263 22.8468C26.6855 22.8468 26.8936 23.055 26.8936 23.3141V24.2818C26.8936 25.0038 26.3067 25.5906 25.5848 25.5906H25.5849Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M25.4919 21.25C25.2327 21.25 25.0223 21.0397 25.0223 20.7806V16.285C24.9116 16.2917 24.7987 16.2961 24.6857 16.2983H24.6724C24.5573 16.2961 24.4443 16.2917 24.3314 16.285V20.7829C24.3314 21.0397 24.1232 21.2501 23.8619 21.2501C23.6027 21.2501 23.3946 21.0419 23.3946 20.7829V16.1522C22.6748 15.9861 22.0858 15.6894 21.7248 15.2907C21.4081 14.9408 21.2598 14.5157 21.2974 14.0595C21.3616 13.3309 21.8023 12.7263 22.3936 12.5492C22.7413 12.4473 23.0734 12.4961 23.3525 12.6909C23.8707 13.0518 24.1741 13.9 24.3003 15.344C24.4243 15.355 24.5505 15.3617 24.6768 15.3617C24.803 15.3617 24.9293 15.355 25.0511 15.344C25.1773 13.9 25.4807 13.0518 25.9989 12.6909C26.278 12.496 26.6102 12.4473 26.9578 12.5492C27.5513 12.7264 27.9898 13.3332 28.0518 14.0595C28.0916 14.5157 27.9433 14.9431 27.6244 15.293C27.2656 15.6894 26.6766 15.9884 25.9568 16.1523V20.7829C25.959 21.0398 25.7509 21.2502 25.4917 21.2502L25.4919 21.25ZM26.6147 13.4326C26.5748 13.4326 26.5527 13.4459 26.5372 13.4592C26.4441 13.5234 26.1585 13.8312 26.0123 15.1688C26.4176 15.047 26.7431 14.8721 26.9336 14.6617C27.0798 14.5022 27.1373 14.3361 27.1219 14.1368C27.093 13.798 26.9159 13.5123 26.6923 13.4459C26.6591 13.4371 26.6347 13.4326 26.6148 13.4326H26.6147ZM22.7414 13.4326C22.7215 13.4326 22.6949 13.4371 22.6616 13.4459C22.438 13.5123 22.263 13.798 22.2342 14.1391C22.2165 14.3362 22.2763 14.5023 22.4202 14.6618C22.6129 14.8722 22.9363 15.0471 23.3437 15.1711C23.1975 13.8314 22.9118 13.5235 22.8166 13.4593C22.8012 13.446 22.7813 13.4327 22.7413 13.4327L22.7414 13.4326Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M24.679 8.47425C24.4199 8.47425 24.2096 8.26605 24.2096 8.00472V6.80003C24.2096 6.54315 24.42 6.33276 24.679 6.33276C24.9381 6.33276 25.1463 6.54097 25.1463 6.80003V8.00472C25.1463 8.26378 24.9381 8.47425 24.679 8.47425Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M21.4148 9.34905C21.2532 9.34905 21.0959 9.26491 21.0095 9.11428L20.4072 8.06897C20.2787 7.8453 20.3541 7.55959 20.5777 7.42897C20.8036 7.30053 21.0893 7.37803 21.2177 7.6017L21.8201 8.64701C21.9507 8.87069 21.8732 9.15639 21.6495 9.28702C21.5742 9.32912 21.4945 9.34905 21.4148 9.34905H21.4148Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M19.0275 11.7362C18.9477 11.7362 18.8658 11.7163 18.7927 11.6742L17.7497 11.0719C17.526 10.9412 17.4507 10.6555 17.5791 10.4319C17.7097 10.2082 17.9954 10.1307 18.2191 10.2613L19.2622 10.8636C19.4858 10.9921 19.5633 11.28 19.4327 11.5036C19.3464 11.652 19.1891 11.7362 19.0275 11.7362Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M18.1527 14.9983H16.948C16.6889 14.9983 16.4785 14.7901 16.4785 14.5288C16.4785 14.2697 16.6889 14.0615 16.948 14.0615H18.1527C18.4119 14.0615 18.6222 14.2697 18.6222 14.5288C18.6222 14.7901 18.4118 14.9983 18.1527 14.9983Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M27.9412 9.34905C27.8614 9.34905 27.7817 9.32912 27.7064 9.28702C27.4827 9.15858 27.4052 8.87069 27.5358 8.64701L28.1382 7.6017C28.2666 7.37803 28.5523 7.30053 28.776 7.42897C29.0019 7.55959 29.0772 7.8453 28.9487 8.06897L28.3464 9.11428C28.2601 9.26483 28.1028 9.34905 27.9412 9.34905Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M30.3284 11.7362C30.1668 11.7362 30.0095 11.6521 29.9231 11.5015C29.7925 11.2778 29.87 10.9921 30.0937 10.8615L31.139 10.2613C31.3648 10.1307 31.6505 10.2082 31.779 10.4319C31.9074 10.6555 31.8321 10.9434 31.6084 11.0719L30.5631 11.6742C30.4878 11.7163 30.4081 11.7362 30.3283 11.7362H30.3284Z"
class="primary-path" />
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M32.408 14.9983H31.2032C30.9441 14.9983 30.7338 14.7901 30.7338 14.5288C30.7338 14.2697 30.9442 14.0615 31.2032 14.0615H32.408C32.6671 14.0615 32.8752 14.2697 32.8752 14.5288C32.8752 14.7901 32.667 14.9983 32.408 14.9983Z"
class="primary-path" />
</svg>
</div>
<div class="info-card__content pt-3">
<h5 class="info-card__title">Discovery</h5>
<p class="info-card__description pt-2 para-small">
Gain a comprehensive understanding of challenges,
strategies, and relevant data.
</p>
</div>
</div>
</div>
<div class="col-6 col-md-4">
<div class="info-card gold-border p-3 p-md-30 h-100">
<div class="info-card__icon">
<svg
role="presentation"
width="40"
height="41"
viewBox="0 0 40 41"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1_5066)">
<path
d="M4.88007 36.9679C4.6214 36.9679 4.41171 36.7582 4.41171 36.4996V4.63417C4.41171 2.42823 6.2064 0.633545 8.41234 0.633545H35.1199C35.3786 0.633545 35.5883 0.843232 35.5883 1.1019V33.4856C35.5883 33.7442 35.3786 33.9539 35.1199 33.9539C34.8612 33.9539 34.6516 33.7442 34.6516 33.4856V1.57026H8.41226C6.72281 1.57026 5.34843 2.94472 5.34843 4.63417V36.4996C5.34843 36.7582 5.13874 36.9679 4.88007 36.9679Z"
class="secondary-path" />
<path
d="M35.1199 40.0064H7.15439C5.64204 40.0064 4.41165 38.776 4.41165 37.2636V35.7621C4.41165 34.2485 5.64204 33.0172 7.15439 33.0172H35.1199C35.3786 33.0172 35.5883 33.2269 35.5883 33.4856C35.5883 33.7442 35.3786 33.9539 35.1199 33.9539C34.1241 33.9539 33.3139 34.7651 33.3139 35.7621V37.2636C33.3139 38.2595 34.1241 39.0696 35.1199 39.0696C35.3786 39.0696 35.5883 39.2793 35.5883 39.538C35.5883 39.7967 35.3786 40.0064 35.1199 40.0064ZM7.15439 33.9539C6.15853 33.9539 5.34837 34.7651 5.34837 35.7621V37.2636C5.34837 38.2595 6.15853 39.0696 7.15439 39.0696H33.0574C32.6342 38.5868 32.3772 37.9546 32.3772 37.2636V35.7621C32.3772 35.0702 32.6343 34.4373 33.058 33.9539H7.15439Z"
class="secondary-path" />
<path
d="M32.8456 36.9812H7.90952C7.65085 36.9812 7.44116 36.7715 7.44116 36.5128C7.44116 36.2541 7.65085 36.0444 7.90952 36.0444H32.8456C33.1043 36.0444 33.314 36.2541 33.314 36.5128C33.314 36.7715 33.1043 36.9812 32.8456 36.9812Z"
class="secondary-path" />
<path
d="M24.1999 17.6325H19.3323C19.0892 17.6325 18.8865 17.4466 18.8656 17.2045C18.7573 15.9496 18.2489 15.1941 17.7107 14.3941C17.1137 13.507 16.4966 12.5895 16.4966 11.0541C16.4966 8.14727 18.8605 5.78235 21.7661 5.78235C24.6717 5.78235 27.0379 8.14727 27.0379 11.0541C27.0379 12.5901 26.4202 13.5076 25.8229 14.3949C25.2844 15.1948 24.7758 15.9502 24.6666 17.2048C24.6455 17.4468 24.4429 17.6325 24.1999 17.6325ZM19.7465 16.6958H23.786C23.9871 15.4445 24.5465 14.6135 25.0458 13.8719C25.6121 13.0306 26.1012 12.3041 26.1012 11.0542C26.1012 8.66391 24.1565 6.71922 21.7662 6.71922C19.3758 6.71922 17.4333 8.66391 17.4333 11.0542C17.4333 12.3038 17.9221 13.0302 18.488 13.8713C18.9871 14.6131 19.5462 15.4441 19.7466 16.6959L19.7465 16.6958Z"
class="primary-path" />
<path
d="M23.396 20.1084H20.1384C19.4356 20.1084 18.864 19.5377 18.864 18.8361L18.8684 17.1629C18.8691 16.9042 19.0809 16.6985 19.338 16.6958C19.5967 16.6965 19.8059 16.9067 19.8052 17.1654L19.8007 18.8374C19.8007 19.0211 19.9522 19.1716 20.1384 19.1716H23.396C23.581 19.1716 23.7316 19.021 23.7316 18.8361L23.7271 17.1654C23.7264 16.9067 23.9355 16.6965 24.1942 16.6958H24.1955C24.4537 16.6958 24.6632 16.9046 24.6639 17.1629L24.6684 18.8349C24.6684 19.5377 24.0977 20.1084 23.3961 20.1084H23.396Z"
class="primary-path" />
<path
d="M22.6541 21.8755H20.8802C20.169 21.8755 19.5903 21.2978 19.5903 20.5878V19.64C19.5903 19.3813 19.8 19.1716 20.0587 19.1716C20.3173 19.1716 20.527 19.3813 20.527 19.64V20.5878C20.527 20.7814 20.6855 20.9388 20.8802 20.9388H22.6541C22.8477 20.9388 23.0051 20.7813 23.0051 20.5878V19.64C23.0051 19.3813 23.2148 19.1716 23.4735 19.1716C23.7322 19.1716 23.9419 19.3813 23.9419 19.64V20.5878C23.9419 21.2979 23.3641 21.8755 22.6541 21.8755Z"
class="primary-path" />
<path
d="M22.5634 17.6325C22.3047 17.6325 22.095 17.4229 22.095 17.1642V12.7814C21.989 12.7881 21.8814 12.7922 21.7724 12.7936C21.7682 12.7936 21.7641 12.7936 21.7598 12.7936C21.6516 12.7922 21.5448 12.7882 21.4395 12.7816V17.1642C21.4395 17.4229 21.2298 17.6325 20.9711 17.6325C20.7124 17.6325 20.5027 17.4229 20.5027 17.1642V12.648C19.8008 12.4855 19.2266 12.1939 18.8741 11.8055C18.5614 11.4608 18.416 11.0412 18.4537 10.592C18.514 9.87668 18.948 9.27957 19.5334 9.10582C19.8758 9.00395 20.2031 9.05239 20.48 9.2459C20.9874 9.60075 21.2857 10.4294 21.4095 11.8401C21.5263 11.8494 21.6452 11.855 21.7661 11.8568C21.8877 11.8551 22.0075 11.8493 22.1248 11.84C22.2487 10.4294 22.5465 9.60075 23.053 9.24629C23.3297 9.05262 23.6574 9.00403 24.0009 9.10575C24.5855 9.2802 25.0182 9.87723 25.0785 10.5918C25.117 11.04 24.9723 11.4595 24.6602 11.8043C24.3082 12.193 23.734 12.4849 23.0317 12.6476V17.1641C23.0317 17.4228 22.822 17.6325 22.5634 17.6325V17.6325ZM19.8752 9.99082C19.8562 9.99082 19.832 9.99442 19.8002 10.0039C19.5846 10.0679 19.4148 10.342 19.3871 10.6706C19.3711 10.8618 19.4285 11.0225 19.5678 11.1761C19.7512 11.3782 20.0623 11.5464 20.4509 11.6651C20.3082 10.3728 20.0333 10.0768 19.9431 10.0138C19.928 10.0032 19.9103 9.9909 19.8752 9.9909L19.8752 9.99082ZM23.6591 9.9909C23.6229 9.9909 23.6048 10.0036 23.5902 10.0138C23.5002 10.0767 23.226 10.3723 23.0835 11.6646C23.472 11.5457 23.7829 11.3775 23.9659 11.1754C24.1046 11.0223 24.1616 10.862 24.1452 10.6711C24.1179 10.3471 23.9449 10.0666 23.7338 10.0036C23.7025 9.99434 23.6784 9.99075 23.6591 9.99075V9.9909Z"
class="primary-path" />
<path
d="M21.7661 5.14239C21.5074 5.14239 21.2977 4.9327 21.2977 4.67403V3.49583C21.2977 3.23715 21.5074 3.02747 21.7661 3.02747C22.0248 3.02747 22.2344 3.23715 22.2344 3.49583V4.67403C22.2344 4.9327 22.0248 5.14239 21.7661 5.14239Z"
class="primary-path" />
<path
d="M18.5776 5.99725C18.4157 5.99725 18.2582 5.91319 18.1715 5.76287L17.5824 4.74201C17.4531 4.51795 17.53 4.23155 17.7541 4.10225C17.978 3.97311 18.2645 4.04983 18.3938 4.27389L18.9829 5.29475C19.1122 5.51881 19.0353 5.80522 18.8112 5.93451C18.7376 5.97701 18.657 5.99725 18.5776 5.99725Z"
class="primary-path" />
<path
d="M16.2403 8.33365C16.1607 8.33365 16.0801 8.31334 16.0062 8.27068L14.9876 7.68162C14.7636 7.55217 14.687 7.26561 14.8166 7.0417C14.946 6.81771 15.2326 6.74131 15.4565 6.87068L16.4751 7.45975C16.6991 7.5892 16.7757 7.87576 16.6462 8.09967C16.5594 8.24975 16.402 8.33365 16.2403 8.33365Z"
class="primary-path" />
<path
d="M15.3882 11.5225H14.21C13.9513 11.5225 13.7416 11.3128 13.7416 11.0542C13.7416 10.7955 13.9513 10.5858 14.21 10.5858H15.3882C15.6469 10.5858 15.8566 10.7955 15.8566 11.0542C15.8566 11.3128 15.6469 11.5225 15.3882 11.5225Z"
class="primary-path" />
<path
d="M24.9547 5.99721C24.8752 5.99721 24.7948 5.97698 24.721 5.93448C24.4969 5.80518 24.4201 5.51878 24.5494 5.29471L25.1384 4.27385C25.2677 4.04971 25.5541 3.97292 25.7782 4.10221C26.0023 4.23151 26.0791 4.51792 25.9498 4.74198L25.3608 5.76284C25.2741 5.91315 25.1166 5.99721 24.9547 5.99721Z"
class="primary-path" />
<path
d="M27.2919 8.33364C27.13 8.33364 26.9725 8.24958 26.8858 8.09927C26.7565 7.8752 26.8333 7.5888 27.0574 7.4595L28.0783 6.87044C28.3023 6.7413 28.5887 6.81802 28.718 7.04208C28.8473 7.26614 28.7705 7.55255 28.5464 7.68184L27.5255 8.27091C27.4519 8.31341 27.3713 8.33364 27.2919 8.33364Z"
class="primary-path" />
<path
d="M29.3244 11.5225H28.1462C27.8876 11.5225 27.6779 11.3128 27.6779 11.0542C27.6779 10.7955 27.8876 10.5858 28.1462 10.5858H29.3244C29.5831 10.5858 29.7928 10.7955 29.7928 11.0542C29.7928 11.3128 29.5831 11.5225 29.3244 11.5225Z"
class="primary-path" />
<path
d="M7.94391 1.10193H8.88063V33.4855H7.94391V1.10193Z"
class="secondary-path" />
<path
d="M30.9277 27.3191H12.6066C12.1115 27.3191 11.7087 26.9163 11.7087 26.4211V24.7801C11.7087 24.285 12.1115 23.8821 12.6066 23.8821H30.9277C31.4229 23.8821 31.8258 24.2849 31.8258 24.7801V26.4211C31.8258 26.9162 31.423 27.3191 30.9277 27.3191ZM12.6454 26.3824H30.8891V24.8189H12.6454V26.3824Z"
class="secondary-path" />
<path
d="M31.3574 29.5115H12.177C11.9184 29.5115 11.7087 29.3019 11.7087 29.0432C11.7087 28.7845 11.9184 28.5748 12.177 28.5748H31.3574C31.6161 28.5748 31.8258 28.7845 31.8258 29.0432C31.8258 29.3019 31.6161 29.5115 31.3574 29.5115Z"
class="secondary-path" />
<path
d="M31.3574 31.5998H12.177C11.9184 31.5998 11.7087 31.3901 11.7087 31.1314C11.7087 30.8728 11.9184 30.6631 12.177 30.6631H31.3574C31.6161 30.6631 31.8258 30.8728 31.8258 31.1314C31.8258 31.3901 31.6161 31.5998 31.3574 31.5998Z"
class="secondary-path" />
</g>
<defs>
<clipPath id="clip0_1_5066">
<rect
width="40"
height="40"
class="primary-path"
transform="translate(0 0.319946)" />
</clipPath>
</defs>
</svg>
</div>
<div class="info-card__content pt-3">
<h5 class="info-card__title">Solution Strategy</h5>
<p class="info-card__description pt-2 para-small">
Develop a tailored solution approach, validated with
in-depth analytics to meet specific needs.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="info-card gold-border p-3 p-md-30 h-100">
<div class="info-card__icon">
<svg
role="presentation"
width="41"
height="41"
viewBox="0 0 41 41"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1_5090)">
<path
d="M21.7507 26.7067H19.813C19.2908 26.7029 18.8519 26.3638 18.7173 25.8629L18.4594 24.9014C18.0733 24.7771 17.6973 24.6213 17.3365 24.4359L16.4734 24.9342C16.0186 25.1954 15.4674 25.1217 15.1011 24.7514L13.732 23.3846C13.3641 23.0129 13.2933 22.4624 13.5538 22.0132L14.0515 21.1509C13.8662 20.7902 13.7104 20.4142 13.5861 20.0281L12.6227 19.7702C12.1186 19.6338 11.7808 19.1926 11.7808 18.6722V16.7367C11.7808 16.2162 12.1187 15.7751 12.6215 15.6391L13.5862 15.3807C13.71 14.9969 13.8659 14.621 14.0519 14.2584L13.5534 13.3949C13.2933 12.9463 13.3642 12.396 13.7304 12.026L15.1035 10.6551C15.4679 10.287 16.0191 10.2135 16.4728 10.4743L17.3367 10.973C17.6974 10.7876 18.0734 10.6317 18.4595 10.5075L18.7174 9.54611C18.8527 9.04259 19.293 8.70447 19.8131 8.70447H21.7508C22.2748 8.70447 22.7154 9.04392 22.8473 9.54916L23.1044 10.5073C23.4894 10.631 23.8654 10.787 24.2273 10.973L25.0905 10.4748C25.5433 10.2144 26.0947 10.2871 26.4632 10.6556L27.8319 12.0242C28.2005 12.3968 28.2724 12.9472 28.0123 13.3956L27.5139 14.2592C27.6987 14.6217 27.8544 14.9972 27.979 15.3806L28.9414 15.6388C29.4452 15.7751 29.7831 16.2162 29.7831 16.7367V18.6722C29.7831 19.1926 29.4453 19.6338 28.9424 19.7699L27.979 20.0283C27.8543 20.4117 27.6986 20.7872 27.5138 21.1497L28.0127 22.0139C28.2723 22.4615 28.2005 23.012 27.8336 23.3827L26.4632 24.7531C26.0948 25.1215 25.5434 25.1943 25.0912 24.9345L24.2272 24.4357C23.8664 24.6211 23.4904 24.777 23.1044 24.9013L22.8465 25.8626C22.7149 26.3662 22.2743 26.7066 21.7508 26.7066L21.7507 26.7067ZM17.3283 23.4292C17.4074 23.4292 17.4865 23.4492 17.5579 23.4892C18.0041 23.7395 18.4801 23.9368 18.9726 24.0759C19.1319 24.1208 19.2558 24.2463 19.2987 24.4061L19.6242 25.6196C19.6489 25.7117 19.7208 25.7671 19.8164 25.7677H21.7507C21.8433 25.7677 21.9152 25.7121 21.9387 25.6226L22.265 24.4061C22.3079 24.2463 22.4317 24.1209 22.591 24.0759C23.0834 23.9369 23.5594 23.7395 24.0058 23.4892C24.1504 23.4081 24.3266 23.4092 24.4701 23.4921L25.5597 24.1211C25.6408 24.1677 25.7328 24.1556 25.799 24.0894L27.1677 22.7207C27.2328 22.6549 27.2458 22.5637 27.1998 22.4844L26.5704 21.3941C26.488 21.2514 26.4865 21.076 26.5662 20.932C26.8165 20.4798 27.0144 20.0024 27.1545 19.5131C27.1999 19.3546 27.3251 19.2315 27.4843 19.1888L28.6979 18.8634C28.7875 18.8391 28.8438 18.7659 28.8438 18.6724V16.7369C28.8438 16.6435 28.7875 16.5702 28.6969 16.5457L27.4843 16.2205C27.3251 16.1777 27.1999 16.0547 27.1545 15.8963C27.0144 15.4069 26.8165 14.9295 26.5662 14.4774C26.4864 14.3333 26.488 14.1579 26.5704 14.0152L27.1994 12.9257C27.2458 12.8456 27.2328 12.7543 27.1659 12.6867L25.799 11.3199C25.7326 11.2535 25.6405 11.2416 25.5589 11.2887L24.47 11.9172C24.3266 11.9999 24.1502 12.0011 24.0057 11.9201C23.5573 11.6686 23.0814 11.4713 22.5913 11.3337C22.4319 11.2888 22.3078 11.1633 22.2648 11.0033L21.9393 9.7897C21.9155 9.69853 21.8434 9.64369 21.7505 9.64369H19.8128C19.7191 9.64369 19.6485 9.69837 19.624 9.78986L19.2985 11.0033C19.2556 11.1631 19.1317 11.2885 18.9725 11.3335C18.48 11.4724 18.004 11.6699 17.5577 11.9201C17.4132 12.0011 17.2367 11.9999 17.0934 11.9172L16.0039 11.2883C15.923 11.2419 15.8326 11.2532 15.7683 11.3182L14.3958 12.6886C14.3315 12.7536 14.3194 12.8449 14.3658 12.925L14.9953 14.0153C15.078 14.1585 15.0792 14.3346 14.9987 14.479C14.7469 14.9299 14.5494 15.4062 14.4115 15.8946C14.3666 16.0539 14.2411 16.1778 14.0812 16.2206L12.8654 16.5462C12.7758 16.5705 12.7196 16.6437 12.7196 16.737V18.6726C12.7196 18.766 12.7759 18.8393 12.8666 18.8638L14.0812 19.189C14.2411 19.2318 14.3666 19.3556 14.4115 19.515C14.5506 20.0077 14.748 20.4837 14.9982 20.9299C15.0792 21.0743 15.0781 21.2507 14.9953 21.3942L14.3663 22.4838C14.3194 22.5647 14.3315 22.656 14.3975 22.7227L15.7661 24.0889C15.8327 24.1563 15.9231 24.1676 16.0047 24.1207L17.0934 23.4923C17.1661 23.4503 17.2471 23.4293 17.3282 23.4293L17.3283 23.4292Z"
class="secondary-path" />
<path
d="M20.7829 22.5213C18.127 22.5213 15.9662 20.3605 15.9662 17.7045C15.9662 15.0486 18.127 12.8878 20.7829 12.8878C23.4387 12.8878 25.5974 15.0486 25.5974 17.7045C25.5974 20.3605 23.4376 22.5213 20.7829 22.5213ZM20.7829 13.8268C18.6448 13.8268 16.9052 15.5663 16.9052 17.7045C16.9052 19.8427 18.6448 21.5823 20.7829 21.5823C22.921 21.5823 24.6583 19.8427 24.6583 17.7045C24.6583 15.5663 22.9198 13.8268 20.7829 13.8268Z"
class="primary-path" />
<path
d="M18.533 18.1785C18.2737 18.1785 18.0634 17.9683 18.0634 17.709V17.7001C18.0634 17.4408 18.2736 17.2306 18.533 17.2306C18.7923 17.2306 19.0025 17.4407 19.0025 17.7001V17.709C19.0025 17.9682 18.7923 18.1785 18.533 18.1785Z"
class="primary-path" />
<path
d="M20.7829 18.1785C20.5236 18.1785 20.3133 17.9683 20.3133 17.709V17.7001C20.3133 17.4408 20.5235 17.2306 20.7829 17.2306C21.0423 17.2306 21.2524 17.4407 21.2524 17.7001V17.709C21.2524 17.9682 21.0423 18.1785 20.7829 18.1785Z"
class="primary-path" />
<path
d="M23.033 18.1785C22.7737 18.1785 22.5634 17.9683 22.5634 17.709V17.7001C22.5634 17.4408 22.7736 17.2306 23.033 17.2306C23.2923 17.2306 23.5025 17.4407 23.5025 17.7001V17.709C23.5025 17.9682 23.2923 18.1785 23.033 18.1785Z"
class="primary-path" />
<path
d="M11.0057 31.2599H10.0666V27.8051C10.0666 27.6806 10.1162 27.5612 10.2042 27.4732L14.5514 23.126L15.2153 23.7899L11.0057 27.9996V31.2598V31.2599Z"
class="secondary-path" />
<path
d="M31.2933 31.2599H30.3543V27.9997L26.1446 23.79L26.8085 23.1261L31.1558 27.4733C31.2438 27.5613 31.2933 27.6807 31.2933 27.8052V31.26V31.2599Z"
class="secondary-path" />
<path
d="M20.2115 25.8586H21.1506V31.26H20.2115V25.8586Z"
class="secondary-path" />
<path
d="M20.6811 38.8337C18.4635 38.8337 16.6594 37.0296 16.6594 34.812C16.6594 32.5944 18.4635 30.7903 20.6811 30.7903C22.8987 30.7903 24.7028 32.5944 24.7028 34.812C24.7028 37.0296 22.8987 38.8337 20.6811 38.8337ZM20.6811 31.7293C18.9812 31.7293 17.5984 33.1122 17.5984 34.812C17.5984 36.5118 18.9812 37.8947 20.6811 37.8947C22.3809 37.8947 23.7637 36.5118 23.7637 34.812C23.7637 33.1122 22.3809 31.7293 20.6811 31.7293Z"
class="primary-path" />
<path
d="M12.2502 18.174H7.05264C6.79335 18.174 6.58311 17.9639 6.58311 17.7045V10.3942H7.52217V17.2349H12.2503V18.174H12.2502Z"
class="secondary-path" />
<path
d="M12.2879 10.8637H2.68772C1.75233 10.8637 0.991316 10.1037 0.991316 9.16959V3.50248C0.991316 2.56709 1.75233 1.80615 2.68772 1.80615H12.2879C13.222 1.80615 13.9821 2.56709 13.9821 3.50248V9.16959C13.9821 10.1037 13.222 10.8637 12.2879 10.8637ZM2.68772 2.74514C2.27007 2.74514 1.93038 3.0849 1.93038 3.50248V9.16959C1.93038 9.586 2.27014 9.92482 2.68772 9.92482H12.2879C12.7043 9.92482 13.043 9.58607 13.043 9.16959V3.50248C13.043 3.0849 12.7043 2.74514 12.2879 2.74514H2.68772Z"
class="primary-path" />
<path
d="M11.3844 4.79132H7.15452C6.89522 4.79132 6.68499 4.58117 6.68499 4.32187C6.68499 4.06257 6.89514 3.85242 7.15452 3.85242H11.3844C11.6437 3.85242 11.8539 4.06257 11.8539 4.32187C11.8539 4.58117 11.6437 4.79132 11.3844 4.79132Z"
class="secondary-path" />
<path
d="M11.3844 6.80438H3.58905C3.32975 6.80438 3.11952 6.59423 3.11952 6.33493C3.11952 6.07563 3.32967 5.86548 3.58905 5.86548H11.3843C11.6436 5.86548 11.8538 6.07563 11.8538 6.33493C11.8538 6.59423 11.6437 6.80438 11.3843 6.80438H11.3844Z"
class="secondary-path" />
<path
d="M11.3844 8.81964H3.58905C3.32975 8.81964 3.11952 8.60949 3.11952 8.35019C3.11952 8.09089 3.32967 7.88074 3.58905 7.88074H11.3843C11.6436 7.88074 11.8538 8.09089 11.8538 8.35019C11.8538 8.60949 11.6437 8.81964 11.3843 8.81964H11.3844Z"
class="secondary-path" />
<path
d="M5.24999 4.79132H3.58905C3.32975 4.79132 3.11952 4.58117 3.11952 4.32187C3.11952 4.06257 3.32967 3.85242 3.58905 3.85242H5.24999C5.50928 3.85242 5.71952 4.06257 5.71952 4.32187C5.71952 4.58117 5.50936 4.79132 5.24999 4.79132Z"
class="secondary-path" />
<path
d="M33.8733 18.1297H28.8794V17.1906H33.4037V10.3942H34.3428V17.6601C34.3428 17.9194 34.1326 18.1297 33.8733 18.1297Z"
class="secondary-path" />
<path
d="M38.6744 10.8637H29.0743C28.1389 10.8637 27.3779 10.1037 27.3779 9.16959V3.50248C27.3779 2.56709 28.1389 1.80615 29.0743 1.80615H38.6744C39.6086 1.80615 40.3687 2.56709 40.3687 3.50248V9.16959C40.3687 10.1037 39.6086 10.8637 38.6744 10.8637ZM29.0743 2.74514C28.6566 2.74514 28.3169 3.0849 28.3169 3.50248V9.16959C28.3169 9.586 28.6567 9.92482 29.0743 9.92482H38.6744C39.0908 9.92482 39.4296 9.58607 39.4296 9.16959V3.50248C39.4296 3.0849 39.0908 2.74514 38.6744 2.74514H29.0743Z"
class="primary-path" />
<path
d="M20.0255 36.2914C20.0052 36.2914 19.9848 36.29 19.9644 36.2873C19.8197 36.2683 19.6922 36.1831 19.6191 36.0569L18.906 34.8233C18.7763 34.5988 18.853 34.3116 19.0775 34.1819C19.302 34.0522 19.5891 34.1289 19.719 34.3533L20.1259 35.0575L21.7155 33.468C21.8988 33.2846 22.1962 33.2846 22.3794 33.468C22.5629 33.6514 22.5628 33.9486 22.3794 34.1319L20.3575 36.1538C20.2689 36.2425 20.1492 36.2914 20.0255 36.2914Z"
class="secondary-path" />
<path
d="M30.8238 38.8337C28.6075 38.8337 26.8044 37.0296 26.8044 34.812C26.8044 32.5944 28.6075 30.7903 30.8238 30.7903C33.0401 30.7903 34.8455 32.5944 34.8455 34.812C34.8455 37.0296 33.0414 38.8337 30.8238 38.8337ZM30.8238 31.7293C29.1252 31.7293 27.7433 33.1122 27.7433 34.812C27.7433 36.5118 29.1252 37.8947 30.8238 37.8947C32.5224 37.8947 33.9065 36.5118 33.9065 34.812C33.9065 33.1122 32.5237 31.7293 30.8238 31.7293Z"
class="primary-path" />
<path
d="M30.1705 36.2914C30.1502 36.2914 30.1298 36.29 30.1094 36.2873C29.9647 36.2683 29.8372 36.1832 29.7641 36.0569L29.051 34.8233C28.9212 34.5989 28.998 34.3117 29.2224 34.1819C29.4469 34.0521 29.7341 34.1289 29.8638 34.3533L30.2709 35.0575L31.8605 33.468C32.0437 33.2846 32.3411 33.2846 32.5244 33.468C32.7077 33.6514 32.7077 33.9486 32.5244 34.1319L30.5025 36.1538C30.4139 36.2425 30.2942 36.2914 30.1705 36.2914Z"
class="secondary-path" />
<path
d="M10.5362 38.8337C8.31858 38.8337 6.51444 37.0296 6.51444 34.812C6.51444 32.5944 8.31858 30.7903 10.5362 30.7903C12.7537 30.7903 14.5579 32.5944 14.5579 34.812C14.5579 37.0296 12.7537 38.8337 10.5362 38.8337ZM10.5362 31.7293C8.83632 31.7293 7.4535 33.1122 7.4535 34.812C7.4535 36.5118 8.83632 37.8947 10.5362 37.8947C12.236 37.8947 13.6188 36.5118 13.6188 34.812C13.6188 33.1122 12.236 31.7293 10.5362 31.7293Z"
class="primary-path" />
<path
d="M9.88288 36.2914C9.86257 36.2914 9.84217 36.29 9.82178 36.2873C9.67702 36.2683 9.54952 36.1832 9.47647 36.0569L8.76335 34.8233C8.63358 34.5989 8.7103 34.3117 8.93475 34.1819C9.15928 34.0521 9.44639 34.1289 9.57616 34.3533L9.98327 35.0575L11.5728 33.468C11.7561 33.2846 12.0534 33.2846 12.2367 33.468C12.4201 33.6514 12.4201 33.9486 12.2367 34.1319L10.2148 36.1538C10.1262 36.2425 10.0065 36.2914 9.88288 36.2914Z"
class="secondary-path" />
<path
d="M35.264 8.19511C35.1439 8.19511 35.0237 8.14933 34.9321 8.05761L33.8744 6.99995L32.8167 8.05761C32.6334 8.24097 32.3361 8.24097 32.1528 8.05761C31.9694 7.87425 31.9694 7.57698 32.1528 7.39362L33.2105 6.33597L32.1528 5.27831C31.9694 5.09495 31.9694 4.79769 32.1528 4.61433C32.3361 4.43097 32.6334 4.43097 32.8167 4.61433L33.8744 5.67198L34.9321 4.61433C35.1154 4.43097 35.4127 4.43097 35.596 4.61433C35.7794 4.79769 35.7794 5.09495 35.596 5.27831L34.5383 6.33597L35.596 7.39362C35.7794 7.57698 35.7794 7.87425 35.596 8.05761C35.5044 8.14925 35.3842 8.19511 35.264 8.19511Z"
class="secondary-path" />
</g>
<defs>
<clipPath id="clip0_1_5090">
<rect
width="40"
height="40"
fill="secondary-path"
transform="translate(0.679987 0.319946)" />
</clipPath>
</defs>
</svg>
</div>
<div class="info-card__content pt-3">
<h5 class="info-card__title">Proof of concept</h5>
<p class="info-card__description pt-2 para-small">
Transform ideas into reality through experimentation and
validation.
</p>
</div>
</div>
</div>
<div class="col-6 col-md-4">
<div class="info-card gold-border p-3 p-md-30 h-100">
<div class="info-card__icon">
<svg
role="presentation"
width="37"
height="37"
viewBox="0 0 37 37"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1_5121)">
<g clip-path="url(#clip1_1_5121)">
<path
d="M36.4373 34.8796V33.9405C37.0771 33.9405 37.5977 33.42 37.5977 32.7801V14.4723C37.5977 13.8325 37.0772 13.3119 36.4373 13.3119H30.6949V12.3728H36.4373C37.5948 12.3728 38.5367 13.3146 38.5367 14.4722V32.7801C38.5367 33.9376 37.5948 34.8794 36.4373 34.8794V34.8796ZM3.55984 34.8796C2.40226 34.8796 1.46039 33.9378 1.46039 32.7802V14.4723C1.46039 13.3148 2.40226 12.373 3.55984 12.373H9.30219V13.312H3.55984C2.92 13.312 2.39937 13.8326 2.39937 14.4724V32.7803C2.39937 33.4201 2.91992 33.9407 3.55984 33.9407V34.8798V34.8796Z"
class="primary-path" />
<path
d="M35.6645 32.4767H4.33275C4.07345 32.4767 3.86322 32.2666 3.86322 32.0072V15.2452C3.86322 14.9859 4.07338 14.7756 4.33275 14.7756H9.30221V15.7147H4.8022V31.5377H35.1949V15.7147H30.6949V14.7756H35.6643C35.9236 14.7756 36.1338 14.9858 36.1338 15.2452V32.0072C36.1338 32.2665 35.9237 32.4767 35.6643 32.4767H35.6645Z"
class="primary-path" />
<path
d="M36.9888 39.3377H3.00844C1.5211 39.3377 0.311096 38.1267 0.311096 36.6381V34.4102C0.311096 34.1509 0.521252 33.9407 0.780627 33.9407H39.2189C39.4782 33.9407 39.6884 34.1508 39.6884 34.4102V36.6381C39.6884 38.1267 38.4774 39.3377 36.9888 39.3377H36.9888ZM1.25008 34.8798V36.6382C1.25008 37.609 2.03891 38.3987 3.00844 38.3987H36.9888C37.9595 38.3987 38.7493 37.609 38.7493 36.6382V34.8798H1.25008Z"
class="secondary-path" />
<path
d="M23.8696 37.1076H16.1298C15.2555 37.1076 14.5441 36.3973 14.5441 35.5241V34.4102H15.4831V35.5241C15.4831 35.8795 15.7732 36.1685 16.1298 36.1685H23.8696C24.225 36.1685 24.5141 35.8795 24.5141 35.5241V34.4102H25.4531V35.5241C25.4531 36.3973 24.7427 37.1076 23.8696 37.1076Z"
class="secondary-path" />
<path
d="M29.8092 30.1383H10.1903C9.44183 30.1383 8.83276 29.5293 8.83276 28.7808V3.35318C8.83276 2.60467 9.44183 1.99561 10.1903 1.99561H26.1308C26.2554 1.99561 26.3748 2.04514 26.4628 2.13326L31.0271 6.69967C31.1151 6.78771 31.1646 6.90701 31.1646 7.03154V28.7808C31.1646 29.5294 30.5565 30.1384 29.8092 30.1384V30.1383ZM10.1903 2.93459C9.95948 2.93459 9.77175 3.12232 9.77175 3.35311V28.7808C9.77175 29.0115 9.95948 29.1993 10.1903 29.1993H29.8091C30.0386 29.1993 30.2254 29.0115 30.2254 28.7808V7.22592L25.9362 2.93459H10.1903Z"
class="secondary-path" />
<path
d="M30.6949 7.50095H27.0165C26.2692 7.50095 25.6612 6.89196 25.6612 6.14345V2.46509H26.6003V6.14353C26.6003 6.37032 26.7908 6.56196 27.0165 6.56196H30.6949V7.50103V7.50095Z"
class="secondary-path" />
<path
d="M20.5256 17.5595H19.4737C19.0963 17.5595 18.7657 17.3054 18.6699 16.9418L18.5598 16.5318C18.4149 16.4807 18.2731 16.4221 18.135 16.356L17.7661 16.5689C17.4378 16.7556 17.0253 16.7007 16.761 16.4365L16.0181 15.6914C15.7522 15.4255 15.6983 15.0122 15.8882 14.6873L16.1 14.3201C16.0339 14.1814 15.9752 14.0393 15.9242 13.8947L15.5133 13.7857C15.1426 13.6841 14.8961 13.3615 14.8961 12.982V11.9301C14.8961 11.5515 15.1508 11.2208 15.5153 11.1258L15.9242 11.0161C15.9749 10.8723 16.0336 10.7307 16.0999 10.5919L15.8868 10.2225C15.6983 9.89988 15.7521 9.4866 16.0191 9.21965L16.761 8.47559C17.0285 8.20793 17.4428 8.15434 17.7684 8.34457L18.1349 8.55605C18.2731 8.48996 18.4149 8.43129 18.5597 8.38027L18.6703 7.96832C18.7642 7.60723 19.0949 7.35254 19.4736 7.35254H20.5256C20.905 7.35254 21.2276 7.59902 21.3282 7.9659L21.4381 8.38066C21.5828 8.43168 21.7245 8.49027 21.8624 8.55637L22.2338 8.34293C22.5558 8.1548 22.9692 8.20871 23.236 8.47574L23.98 9.21973C24.248 9.48754 24.3017 9.88965 24.1136 10.2202L23.8981 10.5914C23.9648 10.7298 24.0238 10.8716 24.0749 11.0161L24.4872 11.1268C24.849 11.2224 25.103 11.5529 25.103 11.9302V12.9821C25.103 13.3603 24.8572 13.6827 24.4913 13.7844L24.0746 13.8963C24.0234 14.0411 23.9644 14.1829 23.8981 14.3207L24.1116 14.6887C24.3017 15.0226 24.2479 15.4248 23.9798 15.6928L23.2358 16.4368C22.9681 16.7046 22.566 16.7585 22.2353 16.5704L21.8624 16.356C21.7241 16.4221 21.5821 16.481 21.4372 16.532L21.3266 16.9439C21.231 17.3057 20.9014 17.5597 20.5255 17.5597L20.5256 17.5595ZM20.4196 16.7014C20.4196 16.7014 20.4195 16.7019 20.4194 16.7022L20.4196 16.7014ZM19.5771 16.6996L19.5773 16.7004C19.5773 16.7004 19.5771 16.6998 19.5771 16.6996ZM19.5559 16.6205H20.4414L20.5971 16.0404C20.64 15.8807 20.7638 15.7553 20.923 15.7103C21.1753 15.639 21.4181 15.5385 21.6449 15.4114C21.789 15.3307 21.965 15.3317 22.1083 15.4139L22.6306 15.7141L23.2576 15.0871L22.9565 14.5686C22.873 14.4246 22.8718 14.2472 22.9537 14.1021C23.0811 13.8762 23.1823 13.6335 23.2542 13.3805C23.2995 13.2218 23.4247 13.0985 23.5842 13.0557L24.1642 12.9V12.0121L23.5842 11.8564C23.4244 11.8136 23.299 11.6898 23.254 11.5307C23.1833 11.2803 23.0822 11.0377 22.9537 10.8099C22.8718 10.6649 22.873 10.4875 22.9565 10.3435L23.2576 9.82488L22.6306 9.19793L22.1083 9.49809C21.9651 9.58043 21.7891 9.58129 21.6449 9.50059C21.4181 9.37355 21.1752 9.27301 20.923 9.20176C20.7633 9.15668 20.6392 9.03066 20.5967 8.87027L20.4433 8.2916H19.5559L19.4002 8.87168C19.3573 9.03145 19.2335 9.15684 19.0743 9.20184C18.8221 9.27309 18.5792 9.37363 18.3524 9.50066C18.208 9.58145 18.0317 9.58043 17.8884 9.49777L17.3674 9.19723L16.7417 9.82488L17.0415 10.3446C17.1239 10.4875 17.1253 10.6631 17.0452 10.8072C16.9166 11.0386 16.8157 11.282 16.7456 11.5307C16.7006 11.6898 16.5752 11.8136 16.4154 11.8564L15.8353 12.0122V12.8996L16.414 13.0531C16.5744 13.0956 16.7004 13.2196 16.7455 13.3793C16.8166 13.6309 16.9174 13.875 17.0451 14.1049C17.1252 14.249 17.1239 14.4246 17.0414 14.5675L16.7416 15.0872L17.3674 15.7149L17.8883 15.4143C18.0316 15.3318 18.208 15.3307 18.3523 15.4114C18.5791 15.5385 18.8221 15.639 19.0742 15.7103C19.2335 15.7552 19.3572 15.8807 19.4001 16.0404L19.5558 16.6205H19.5559ZM16.6831 15.0285L16.6835 15.0289C16.6835 15.0289 16.6833 15.0286 16.6831 15.0285ZM24.245 12.0339C24.245 12.0339 24.2456 12.034 24.2459 12.0341L24.245 12.0339ZM15.7567 12.0332L15.7554 12.0336C15.7559 12.0336 15.7564 12.0333 15.7567 12.0332ZM16.6846 9.8823L16.6842 9.88262C16.6842 9.88262 16.6844 9.88238 16.6846 9.8823ZM16.6991 9.75098L16.6996 9.75191C16.6996 9.75191 16.6992 9.75129 16.6991 9.75098ZM22.7048 9.15527L22.7035 9.15598C22.704 9.15574 22.7044 9.15551 22.7048 9.15527ZM19.5783 8.20816L19.5778 8.20965C19.578 8.20918 19.5781 8.20863 19.5783 8.20816Z"
class="primary-path" />
<path
d="M19.9994 15.1231C19.3163 15.1231 18.633 14.8635 18.1124 14.3442C17.0711 13.3029 17.0711 11.6092 18.112 10.5683C18.6162 10.064 19.2865 9.78638 19.9994 9.78638H20.0011C20.7135 9.78685 21.3828 10.0647 21.8855 10.5687C22.926 11.6092 22.926 13.3029 21.8851 14.3437C21.3656 14.8633 20.6826 15.1231 19.9993 15.1231H19.9994ZM19.9994 10.7254C19.5372 10.7254 19.1028 10.9054 18.7759 11.2322C18.1012 11.9071 18.1012 13.005 18.7759 13.6798C19.4509 14.3529 20.548 14.3529 21.2212 13.6798C21.896 13.005 21.896 11.9071 21.2212 11.2322C20.8953 10.9055 20.4619 10.7257 20.0005 10.7254H19.9994Z"
class="primary-path" />
<path
d="M19.5094 24.1214C19.4692 24.1214 19.4283 24.1163 19.3876 24.1053C19.1372 24.0383 18.9886 23.7809 19.0556 23.5304L20.0344 19.8764C20.1015 19.6259 20.3593 19.4774 20.6094 19.5444C20.8598 19.6114 21.0084 19.8688 20.9414 20.1193L19.9626 23.7733C19.9064 23.9831 19.7167 24.1214 19.5094 24.1214H19.5094ZM17.649 24.0904C17.5288 24.0904 17.4087 24.0445 17.317 23.9528L15.521 22.1568C15.4329 22.0688 15.3834 21.9493 15.3834 21.8247C15.3834 21.7001 15.433 21.5807 15.5212 21.4927L17.3172 19.6989C17.5007 19.5157 17.7978 19.5158 17.9812 19.6993C18.1644 19.8828 18.1642 20.18 17.9808 20.3633L16.5171 21.8251L17.9809 23.2889C18.1643 23.4723 18.1643 23.7695 17.9809 23.9528C17.8893 24.0445 17.7691 24.0904 17.649 24.0904ZM22.3505 24.0904C22.2305 24.0904 22.1105 24.0446 22.0187 23.953C21.8353 23.7698 21.8351 23.4726 22.0183 23.2891L23.4805 21.8251L22.0186 20.3631C21.8352 20.1797 21.8352 19.8825 22.0186 19.6991C22.2019 19.5157 22.4992 19.5157 22.6825 19.6991L24.4762 21.4929C24.6595 21.6762 24.6597 21.9732 24.4765 22.1566L22.6827 23.9527C22.591 24.0445 22.4708 24.0904 22.3505 24.0904Z"
class="primary-path" />
<path
d="M27.6543 25.9771H12.3428C12.0835 25.9771 11.8733 25.767 11.8733 25.5076C11.8733 25.2482 12.0834 25.0381 12.3428 25.0381H27.6543C27.9136 25.0381 28.1238 25.2482 28.1238 25.5076C28.1238 25.767 27.9137 25.9771 27.6543 25.9771Z"
class="secondary-path" />
<path
d="M27.6543 27.7552H12.3428C12.0835 27.7552 11.8733 27.5451 11.8733 27.2857C11.8733 27.0263 12.0834 26.8162 12.3428 26.8162H27.6543C27.9136 26.8162 28.1238 27.0263 28.1238 27.2857C28.1238 27.5451 27.9137 27.7552 27.6543 27.7552Z"
class="secondary-path" />
</g>
</g>
<defs>
<clipPath id="clip0_1_5121">
<rect
width="36"
height="36"
class="primary-path"
transform="translate(0.320007 0.976318)" />
</clipPath>
<clipPath id="clip1_1_5121">
<rect