-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1392 lines (1271 loc) · 99.7 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 class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta name="description" content="At Metasense, we guide you through the complexities of emerging technologies and untested business models, making innovation a friendly challenge. From strategic ideation to sales & marketing strategy, we're here to help your venture succeed.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="assets/img/logo-32x32.png" sizes="32x32"/>
<link rel="icon" href="assets/img/logo-192x192.png" sizes="192x192"/>
<title>Metasense: Your Venture Studio for Sustainable Success</title>
<link href="assets/css/plugins.css" rel="stylesheet"/>
<link rel="stylesheet" href="assets/css/style.css">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Metasense",
"url": "https://metasense.one",
"logo": "https://metasense.one/assets/img/logo.png",
"description": "At Metasense, we guide you through the complexities of emerging technologies and untested business models, making innovation a friendly challenge. From strategic ideation to sales & marketing strategy, we're here to help your venture succeed.",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+351-927-203088",
"contactType": "Customer service",
"email": "[email protected]"
},
"address": {
"@type": "PostalAddress",
"streetAddress": "Praça Conde de Agrolongo 123",
"addressLocality": "Braga",
"postalCode": "4700-312",
"addressCountry": "Portugal"
},
"sameAs": [
"https://www.facebook.com/metasense.one",
"https://twitter.com/metasenseone",
"https://www.linkedin.com/company/metasense1"
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ImageObject",
"contentUrl": "https://metasense.one/assets/img/bg-main.jpg",
"name": "Scaling mountains as an entrepreneur",
"description": "Mountain climber, hanging upside down on a cliff, with daylight breaking over a snow-capped peak",
"embeddedTextCaption": "Building ventures is like climbing mountains",
"uploadDate": "2023-07-09"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Z-Infinity Game",
"description": "Z-Infinity is a fresh and family-friendly zombie themed game.",
"thumbnailUrl": "https://metasense.one/assets/img/about-4.jpg",
"uploadDate": "2023-07-09",
"embedUrl": "https://vimeo.com/833549728?share=copy"
}
</script>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-J6R53GXF8W"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-J6R53GXF8W');
</script>
<body class="v-light dsn-ajax bg-dots">
<!--<div id="dsn_preloader" class="preloader">
<div class="dsnload p-absolute">
<span class="dsnload__row">
<span class="dsnload__img">
<img src="assets/img/logo-light.png" class="logo-dark" alt="Metasense" decoding="async" loading="lazy"/>
<img src="assets/img/logo.png" class="logo-light" alt="Metasense" decoding="async" loading="lazy"/>
</span>
</span>
<span class="dsnload__row dsnload__row--sibling">
<span class="dsnload__img">
<img src="assets/img/logo-light.png" class="logo-dark" alt="Metasense" decoding="async" loading="lazy"/>
<img src="assets/img/logo.png" class="logo-light" alt="Metasense" decoding="async" loading="lazy"/>
</span>
</span>
<span class="dsnload__row dsnload__row--sibling">
<span class="dsnload__img">
<img src="assets/img/logo-light.png" class="logo-dark" alt="Metasense" decoding="async" loading="lazy"/>
<img src="assets/img/logo.png" class="logo-light" alt="Metasense" decoding="async" loading="lazy"/>
</span>
</span>
<span class="dsnload__row dsnload__row--sibling">
<span class="dsnload__img">
<img src="assets/img/logo-light.png" class="logo-dark" alt="Metasense" decoding="async" loading="lazy"/>
<img src="assets/img/logo.png" class="logo-light" alt="Metasense" decoding="async" loading="lazy"/>
</span>
</span>
</div>
<svg width="100%" height="100%" viewBox="0 0 100 100" class="v-middle" preserveAspectRatio="xMinYMin meet"
fill="none">
<linearGradient id="linearColors" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="var(--theme-color)"></stop>
<stop offset="50%" stop-color="var(--border-color)"></stop>
<stop offset="100%" stop-color="var(--assistant-color)"></stop>
</linearGradient>
<path class="dsn-progress-path" d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98"/>
</svg>
<div class="loading-circle v-middle">
<p class="loading-count v-middle">0</p>
</div>
<span class="loading-text text-uppercase mt-30 dsn-container">Loading ...</span>
<div class="bg-load background-section d-flex align-items-end">
<svg class="dsn-separator-bottom dsn-icon-assistant-color" width="100%" height="100%" viewBox="0 0 100 10"
preserveAspectRatio="none">
<path class="path-anim separator__path" data-dsn-to="M 0 0 C 40 0 55 0 100 0 L 0 0 Z"
vector-effect="non-scaling-stroke" d="M 0 0 C 40 16 75 10 100 0 L 0 0 Z"></path>
</svg>
</div>
</div>-->
<main id="main_root" class="main-root">
<!-- ========== Menu ========== -->
<header id="site_menu_header" class="site-header dsn-container d-none dsn-hamburger">
<div class="main-logo">
<a href="index.html" data-dsn-text="Metasense" class="custom-logo-link main-brand effect-ajax" rel="home"
aria-current="page">
<img src="assets/img/logo-light.png" class="custom-logo logo-light" alt="Metasense"/>
<img src="assets/img/logo.png" class="custom-logo logo-dark" alt="Metasense"/>
</a>
</div>
<nav class="main-navigation">
<div class="menu-cover-title header-container dsn-container">MENU</div>
<ul id="dsn-primary-list" class="primary-nav h2">
<li class="nav-item">
<a title="Home" href="index.html">
<span class="overflow ">Home</span>
</a>
</li>
<li class="nav-item">
<a title="Blog" href="blog.html">
<span class="overflow ">Blog</span>
</a>
</li>
<li class="nav-item ">
<a title="About" href="about-us.html">
<span class="overflow">About</span>
</a>
</li>
<li class="nav-item ">
<a title="Contact" href="contact.html">
<span class="overflow">Contact</span>
</a>
</li>
</ul>
<div class="container-content d-flex flex-column justify-content-center section-margin">
<div class="nav__info">
<div class="nav-content">
<h5 class="sm-title-block mb-10">Studio</h5>
Praça Conde de Agrolongo 123
4700-312 Braga, Portugal
</div>
<div class="nav-content mt-30">
<h5 class="sm-title-block mb-10">Contact</h5>
<p class="links over-hidden mb-1">
<a class="link-hover d-block" href="tel:+351 927 203088" data-hover-text="+351 927 203088">
+351 927 203088</a>
</p>
<p class="links over-hidden"><a class="link-hover" href="mailto:[email protected]"
data-hover-text="[email protected]">[email protected]</a></p>
</div>
</div>
<div class="nav-social nav-content mt-30">
<div class="nav-social-inner p-relative">
<h5 class="sm-title-block mb-10">Follow us</h5>
<ul style="--dsn-li-name: dsn6;">
<li style="--dsn-li-index: 0;"><a href="https://www.facebook.com/metasense.one" target="_blank"
rel="nofollow noopener noreferrer">Facebook.</a></li>
<li style="--dsn-li-index: 1;"><a href="http://www.instagram.com/metasense.one" target="_blank"
rel="nofollow noopener noreferrer">Instagram.</a></li>
<li style="--dsn-li-index: 2;"><a href="https://www.linkedin.com/company/metasense1" target="_blank"
rel="nofollow noopener noreferrer">Linkedin.</a></li>
<li style="--dsn-li-index: 3;"><a href="https://twitter.com/metasenseone" target="_blank"
rel="nofollow noopener noreferrer">Twitter.</a></li>
<li style="--dsn-li-index: 3;"><a href="https://www.tiktok.com/@metasense" target="_blank"
rel="nofollow noopener noreferrer">TikTok.</a></li>
<li style="--dsn-li-index: 3;"><a href="https://www.youtube.com/@metasenseB88" target="_blank"
rel="nofollow noopener noreferrer">YouTube.</a></li>
</ul>
</div>
</div>
</div>
</nav>
<div id="navbar_toggle" class="navbar-toggle">
<div class="toggle-icon">
<div class="toggle-line"></div>
<div class="toggle-line"></div>
<div class="toggle-line"></div>
</div>
<div class="toggle-text">
<div class="text-menu">Menu</div>
<div class="text-open">Open</div>
<div class="text-close">Close</div>
</div>
</div>
<div class="bg-load background-main"></div>
<svg width="100%" height="100%" viewBox="0 0 100 100" preserveAspectRatio="none"
class="bg-load dsn-svg-transition">
<path vector-effect="non-scaling-stroke" d="M 0 100 V 100 Q 50 100 100 100 V 100 z"/>
</svg>
</header>
<!-- ========== End Menu ========== -->
<!-- ========== Header ========== -->
<header id="dsn_header" class="dsn-header-animation dsn-container section-padding v-dark-head">
<div class="entry-header p-relative over-hidden">
<div id="hero_image" class="p-absolute dsn-hero-parallax-img over-hidden" data-dsn-ajax="img"
data-overlay="1">
<img src="assets/img/bg-main.jpg" class="cover-bg-img transform-3d" alt=""/>
</div>
<div id="hero_content" class="d-flex p-relative h-100 dsn-hero-parallax-title container align-items-center">
<div class="content p-relative ">
<div class="intro-project w-100">
<div class="intro-title ">
<div id="hero_title">
<h1 class="title title-xxl" data-dsn-ajax="title">
<strong class="theme-color">VEN<b>T</b>URE</strong>
STU<b>D<b>IO</b></b>
</h1>
</div>
<!--<p class="subtitle-meta metas p-relative mt-30 max-w470 fw-bold">
We are an independent venture-building company, your trusted guide, and co-investor into tomorrow's potential.
</p>-->
</div>
</div>
</div>
</div>
</div>
<a href="#page_wrapper" rel="nofollow" class="dsn-scroll-bottom"
data-dsn-option='{"ease": "power4.inOut" , "duration" : 1.5}'>
<div class="text">SCROLL</div>
</a>
</header>
<!-- ========== End Header ========== -->
<div id="page_wrapper" class="wrapper">
<!-- ========== About Section ========== -->
<div class="about-section about-arc section-margin">
<div class="container d-grid grid-md-2 d-grid-no-space">
<div class="box-left box-padding">
<h2 class="title-h2 p-relative body-font heading-color text-upper">
Crafting Tomorrow<br>Today
</h2>
<h3 class="sm-title-block mt-20 p-relative theme-color text-upper">
We live and breathe entrepreneurship
</h3>
<p class="max-w570 mt-20">
We are here to navigate you through the complexities of emerging technologies and untested business models, making innovation a friendly challenge.
</p>
<div class="mt-20">
<h5 class="title-block square-after d-inline-block ">ONE TEAM</h5>
<span class="fw-bold d-block mt-5">United Mission</span>
</div>
<div class="dsn-def-btn dsn-icon-heading-color mt-30 d-flex">
<a class="dsn-btn dsn-border border-color-default background-section effect-ajax effect-ajax move-circle has-icon-left"
href="about-us.html" data-dsn-text="STUDIO" data-dsn="parallax">
<span class="dsn-icon dsn-bg-before btn-icon-left heading-color z-index-1">
<i class="fas fa-angle-right"></i>
</span>
<span class="title-btn p-relative z-index-1 heading-color">DISCOVER MORE</span>
</a>
</div>
</div>
<div class="box-right box-creative p-relative">
<div class="p-relative border-rdu over-hidden h-100">
<div class="img-box-parallax h-100 w-100 before-z-index dsn-animate dsn-effect-left border-rdu"
data-dsn-triggerhook="bottom"
data-dsn-grid="move-up" data-overlay="1">
<img src='assets/img/about-3.jpg' class="cover-bg-img has-direction"
data-dsn-position="50% 0%" alt=''/>
</div>
</div>
<!--<div class="img-top">
<img src='assets/img/about-6.jpg' class="cover-bg-img border-rdu" alt=''/>
</div>-->
<div class="img-bottom">
<img src='assets/img/about-7.png' class="cover-bg-img border-rdu" alt=''/>
</div>
</div>
</div>
</div>
<!-- ========== End About Section ========== -->
<!-- ========== Service ========== -->
<div class="container section-margin">
<div class="section-title mb-70 text-center d-flex flex-column">
<h2 class="title-h2 text-upper">What We Deliver</h2>
<p class="max-w570 mt-20 border-section-bottom">
and the advantages
</p>
</div>
<div class="list-with-number icon-top dsn-icon-theme-color text-center">
<div class="dsn-service d-grid grid-md-3 grid-sm-2 dsn-masonry-grid dsn-isotope"
data-dsn-iconsize="80px">
<div class="dsn-up service-item p-relative grid-item ">
<div class="service-item-inner number-item h-100 background-section border-rdu">
<div class="dsn-icon">
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.2" viewBox="0 0 250 250" width="250" height="250" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<image width="250" height="250" id="img1" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6AQMAAACyIsh+AAAAAXNSR0IB2cksfwAAAANQTFRFAAAAp3o92gAAAAF0Uk5TAEDm2GYAAAAeSURBVHic7cEBAQAAAIIg/69uSEABAAAAAAAAAL8GIDoAASo5tcIAAAAASUVORK5CYII="/>
</defs>
<style>
.s0 { fill: #474747 }
.s1 { fill: #30b656 }
</style>
<image width="250" height="250" id="Background" transform="matrix(1, 0, 0, 1, 0, 0)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6AQMAAACyIsh+AAAAAXNSR0IB2cksfwAAAANQTFRFAAAAp3o92gAAAAF0Uk5TAEDm2GYAAAAeSURBVHic7cEBAQAAAIIg/69uSEABAAAAAAAAAL8GIDoAASo5tcIAAAAASUVORK5CYII="/>
<g id="<Group>">
<path id="<Path>" class="s0" d="m193.7 181.1c17-17.7 26.4-40.9 26.4-65.4 0-1.4-1.2-2.5-2.5-2.5-1.4 0-2.5 1.1-2.5 2.5 0 23.7-9.2 46-25.9 62.9-0.6 0.6-0.9 1.5-0.7 2.4l10.4 39.3-30.9-24.2c-0.7-0.6-1.8-0.7-2.6-0.3-12.5 6.2-25.8 9.3-39.8 9.3-49.3 0-89.4-40.1-89.4-89.4 0-49.3 40.1-89.5 89.4-89.5 34.4 0 66.2 20.2 80.9 51.3 0.6 1.2 2.1 1.7 3.3 1.2 1.3-0.6 1.8-2.1 1.2-3.4-15.5-32.8-49-54.1-85.4-54.1-52 0-94.4 42.4-94.4 94.5 0 52 42.4 94.4 94.4 94.4 14.2 0 27.8-3.1 40.6-9.1l35.5 27.8c0.5 0.4 1 0.5 1.6 0.5q0.7 0.1 1.4-0.4c0.8-0.6 1.3-1.7 1-2.7z"/>
<g id="<Group>">
<g id="<Group>">
<g id="<Group>">
<path id="<Path>" class="s0" d="m95.4 75.3c-4.2 6.9-7.2 14.8-7.2 23.5 0 18.8 12.4 34.7 29.5 40v19.3h24.9v-21.2c17.1 1.3 29.4-19.3 29.4-38.1 0-23.2-18.7-42-41.9-42-8.1 0-15.8 2.3-22.2 6.4-6.1 3.9-9.6 7.5-12.5 12.1z" style="fill: rgb(7, 7, 7);"/>
</g>
</g>
<path id="<Path>" class="s0" d="m114.7 153.3v-14.5c0-1.1-0.7-2-1.7-2.3-16.6-5.1-27.7-20.3-27.7-37.7 0-8 2.3-15.6 6.7-22.2 0.7-1 0.4-2.5-0.6-3.2-1.1-0.8-2.6-0.5-3.3 0.6-4.9 7.3-7.6 15.9-7.6 24.8 0 18.9 11.8 35.4 29.5 41.7v12.8q0.1 0 0.2 0z"/>
<path id="<Path>" class="s0" d="m169.1 98.8c0-24.5-19.9-44.3-44.3-44.3-8.3 0-16.5 2.3-23.5 6.7-1.1 0.7-1.4 2.2-0.7 3.3 0.7 1.1 2.1 1.4 3.2 0.7 6.3-3.9 13.6-6 21-6 21.8 0 39.6 17.7 39.6 39.6 0 17.4-11.2 32.6-27.8 37.7-1 0.3-1.7 1.2-1.7 2.3v14.5h4.5q0.1 0 0.2 0v-12.8c17.7-6.3 29.5-22.8 29.5-41.7z"/>
<path id="<Path>" class="s0" d="m124.8 188c-3.2 0-6.1-1.9-7.5-4.6h-5.1c1.7 5.4 6.7 9.3 12.6 9.3 5.9 0 10.9-3.9 12.6-9.3h-5.1c-1.4 2.7-4.2 4.6-7.5 4.6z"/>
<path id="<Compound Path>" fill-rule="evenodd" class="s0" d="m139.4 153.3q0.1 0 0.2 0c3.5 0.1 6.3 3 6.3 6.5 0 1.7-0.6 3.2-1.7 4.4 1.1 1.1 1.7 2.7 1.7 4.4 0 1.6-0.5 3-1.5 4.2 1 1.1 1.5 2.5 1.5 4.1 0 3.6-2.9 6.5-6.5 6.5h-29.2c-3.6 0-6.5-2.9-6.5-6.5 0-1.6 0.5-3 1.5-4.1-1-1.2-1.5-2.6-1.5-4.2 0-1.7 0.6-3.3 1.7-4.4-1.1-1.2-1.7-2.7-1.7-4.4 0-3.5 2.8-6.4 6.3-6.5q0.1 0 0.2 0zm1.8 23.6c0-1-0.8-1.8-1.8-1.8h-29.3c-1 0-1.8 0.8-1.8 1.8 0 1 0.8 1.8 1.8 1.8h29.3c1 0 1.8-0.8 1.8-1.8zm0-8.3c0-1-0.8-1.8-1.8-1.8h-29.3c-1 0-1.8 0.8-1.8 1.8 0 1 0.8 1.8 1.8 1.8h29.3c1 0 1.8-0.8 1.8-1.8zm-1.6-10.6q-0.1 0-0.2 0h-29.3q-0.1 0-0.2 0c-0.9 0.1-1.6 0.9-1.6 1.8 0 0.9 0.7 1.7 1.6 1.8q0.1 0 0.2 0h29.3q0.1 0 0.2 0c0.9-0.1 1.6-0.9 1.6-1.8 0-0.9-0.7-1.7-1.6-1.8z"/>
<g id="<Group>">
<g id="<Group>">
<path id="<Path>" class="s0" d="m125.6 51.4c-1.3 0-2.3-1-2.3-2.3v-9.4c0-1.3 1-2.4 2.3-2.4 1.3 0 2.4 1.1 2.4 2.4v9.4c0 1.3-1.1 2.3-2.4 2.3z"/>
</g>
</g>
<g id="<Group>">
<g id="<Group>">
<path id="<Path>" class="s0" d="m103.8 54.3c-0.9 0-1.7-0.5-2.1-1.3l-4-7.9c-0.6-1.2-0.1-2.6 1-3.2 1.2-0.6 2.6-0.1 3.2 1.1l4 7.9c0.5 1.2 0.1 2.6-1.1 3.2q-0.5 0.2-1 0.2z"/>
</g>
</g>
<g id="<Group>">
<g id="<Group>">
<path id="<Path>" class="s0" d="m145.1 54.3q-0.5 0-1.1-0.2c-1.1-0.6-1.6-2-1-3.2l4-7.9c0.5-1.2 2-1.7 3.1-1.1 1.2 0.6 1.7 2 1.1 3.2l-4 7.9c-0.4 0.8-1.2 1.3-2.1 1.3z"/>
</g>
</g>
<path id="<Path>" class="s0" d="m126.4 99.8c-5.8-1.6-12.4-3.5-11.4-9.6 0.8-3.8 4.1-6.1 9.2-6.1 3.5 0 7.5 1.1 10.2 2.8 0.5 0.4 1 0.6 1.4 0.6 0.9 0 1.7-0.7 2-1.6 0.4-1 0-2-1-2.8-2.9-2.2-7.2-3.5-11.7-3.5-7 0-14.5 3.2-15.3 10.4-1.1 9.5 6.3 11.6 14.2 13.8 5.7 1.6 11.2 3.2 11.6 8.2v0.1 0.2c-0.5 4.8-4.1 7.6-9.9 7.6-4.2 0-9.3-1.5-12.5-3.6-1.5-1.3-2.3-1.3-3.7 0.1-0.7 1.2-0.7 3.1 0.7 4.2 3.2 2.6 8.6 4.3 14.2 4.3 7.8 0 16.3-3.3 16.6-12.6 0.2-8.4-7.3-10.5-14.6-12.5z"/>
<g id="<Group>">
<g id="<Group>">
<path id="<Path>" class="s0" d="m125 156.1c-1.3 0-2.3-1.1-2.3-2.4v-81.6c0-1.3 1-2.3 2.3-2.3 1.3 0 2.4 1 2.4 2.3v81.6c0 1.3-1.1 2.4-2.4 2.4z"/>
</g>
</g>
</g>
</g>
</svg>
</div>
<div class="service-content p-relative">
<h4 class="service_title title-block">Strategic Ideation & Validation</h4>
<div class="service_description mt-10 max-w570 dsn-auto">
<p>
We work with ventures from the very first spark of an idea,
helping to shape and validate it. Our team applies their
extensive experience to ensure the idea aligns with market
trends and customer needs.
</p>
</div>
</div>
</div>
</div>
<div class="dsn-up service-item p-relative grid-item style-box">
<div class="service-item-inner number-item h-100 background-section border-rdu">
<div class="dsn-icon">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
id="Layer_1" x="0px" y="0px" width="50px" height="50px" viewBox="0 0 50 50"
xml:space="preserve"><g> <path fill-rule="evenodd" clip-rule="evenodd"
d="M25.515,27.051c-0.371-0.159-0.756-0.298-1.117-0.483 c-6.626-3.398-13.254-6.794-19.865-10.221c-0.416-0.215-1.031-0.76-0.972-1.019c0.102-0.446,0.593-0.919,1.04-1.152 c6.651-3.461,13.312-6.904,20.007-10.279c0.516-0.259,1.414-0.177,1.955,0.099c3.589,1.828,7.11,3.788,10.689,5.634 c3.028,1.562,6.114,3.01,9.149,4.558c0.454,0.232,0.77,0.738,1.149,1.116c-0.358,0.331-0.665,0.76-1.082,0.977 c-6.629,3.457-13.272,6.887-19.914,10.319C26.234,26.765,25.895,26.888,25.515,27.051z M44.76,15.372 c-0.513-0.362-0.775-0.596-1.078-0.752c-5.791-2.994-11.577-5.999-17.402-8.927c-0.479-0.24-1.32-0.129-1.835,0.131 c-5.546,2.792-11.063,5.643-16.583,8.488c-0.508,0.262-0.983,0.59-1.696,1.021c6.433,3.309,12.539,6.471,18.68,9.562 c0.432,0.217,1.206,0.052,1.695-0.189c2.922-1.443,5.806-2.963,8.705-4.454C38.347,18.659,41.449,17.07,44.76,15.372z"></path> <path
fill-rule="evenodd" clip-rule="evenodd"
style="--dsn-color-icon : var(--heading-color)"
d="M6.153,25.292c1.245,0.667,2.225,1.209,3.22,1.722 c5.014,2.583,10.02,5.182,15.065,7.701c0.544,0.272,1.446,0.323,1.973,0.059c5.826-2.926,11.61-5.933,17.403-8.924 c0.257-0.133,0.479-0.329,0.912-0.632c-1.152-0.605-2.191-1.057-3.114-1.681c-0.401-0.271-0.563-0.897-0.833-1.363 c0.501-0.038,1.084-0.26,1.489-0.081c1.456,0.645,2.868,1.395,4.266,2.163c1.333,0.732,1.365,1.37,0.078,2.036 c-6.755,3.495-13.519,6.975-20.308,10.403c-0.455,0.229-1.24,0.185-1.71-0.053c-6.743-3.407-13.462-6.859-20.174-10.326 c-1.297-0.67-1.284-1.349,0.015-2.057c1.454-0.792,2.922-1.563,4.431-2.241c0.35-0.157,0.885,0.097,1.334,0.162 c-0.185,0.413-0.256,0.999-0.575,1.206C8.602,24.052,7.487,24.577,6.153,25.292z"></path> <path
fill-rule="evenodd" clip-rule="evenodd"
d="M44.767,35.25c-1.224-0.643-2.298-1.123-3.27-1.759 c-0.362-0.237-0.485-0.838-0.718-1.272c0.493-0.05,1.072-0.29,1.465-0.115c1.51,0.674,2.977,1.452,4.43,2.247 c1.189,0.651,1.184,1.312-0.063,1.957c-6.71,3.476-13.429,6.936-20.176,10.341c-0.502,0.253-1.354,0.251-1.857-0.002 c-6.748-3.402-13.468-6.859-20.181-10.33c-1.246-0.645-1.257-1.307-0.06-1.968c1.496-0.824,3.012-1.618,4.566-2.322 c0.339-0.154,0.877,0.129,1.323,0.211c-0.203,0.407-0.299,0.974-0.627,1.189c-0.968,0.637-2.028,1.135-3.331,1.838 c0.666,0.42,1.023,0.683,1.412,0.884c5.565,2.872,11.125,5.757,16.72,8.57c0.548,0.275,1.453,0.354,1.977,0.091 c5.83-2.921,11.619-5.925,17.416-8.912C44.055,35.763,44.287,35.572,44.767,35.25z"></path></g></svg>
</div>
<div class="service-content p-relative">
<h4 class="service_title title-block">Technology Development & Support</h4>
<div class="service_description mt-10 max-w570 dsn-auto">
<p>
Metasense fields a team of technology experts who are proficient
in leading-edge technologies. We help our ventures to build robust
technological infrastructure and support their continuous innovation.
</p>
</div>
</div>
</div>
</div>
<div class="dsn-up service-item p-relative grid-item style-box">
<div class="service-item-inner number-item h-100 background-section border-rdu">
<div class="dsn-icon">
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250 250" width="250" height="250">
<defs>
<image width="250" height="250" id="img1" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPoAAAD6AQMAAACyIsh+AAAAAXNSR0IB2cksfwAAAANQTFRFAAAAp3o92gAAAAF0Uk5TAEDm2GYAAAAeSURBVHic7cEBAQAAAIIg/69uSEABAAAAAAAAAL8GIDoAASo5tcIAAAAASUVORK5CYII="/>
</defs>
<style>
.s0 { fill: #7dd8e2 }
.s1 { fill: #151515 }
</style>
<use id="Background" href="#img1" x="0" y="0"/>
<g id="<Group>">
<path id="<Path>" class="s0" d="m229.8 217.8v8.1h3.8v-8.1c0-16.7-10.7-30.9-25.7-36 13 6.8 21.9 20.4 21.9 36z"/>
<path id="<Path>" class="s0" d="m144.4 225.9h3.8 3.6c0-1.3 1.1-2.5 2.5-2.5h1.6l7.3-29.7q-0.1-0.2-0.1-0.4l-2.9-11.1h-7.6c-4.1 0-7.9 0.7-11.6 2-12 6.4-20.2 19-20.2 33.6v5.6h21.1c1.4 0 2.5 1.2 2.5 2.5z"/>
<path id="<Path>" style="--dsn-color-icon : var(--heading-color)" d="m173.1 190.2l1.9-8h-9.7l2.1 8z"/>
<path id="<Path>" style="--dsn-color-icon : var(--heading-color)" d="m179 223.4l-5.7-27.8h-5.4l-6.8 27.8z"/>
<path id="<Path>" class="s0" d="m189.3 182.2h-9.2l-2.4 10.2q0.1 0.1 0.1 0.2l6.3 30.8h40.7v-5.6c0-19.6-15.9-35.6-35.6-35.6z"/>
<path id="<Compound Path>" fill-rule="evenodd" class="s1" d="m97.1 23.2v9c30.5 1.2 55.9 22.7 62.9 51.4 3.5-1 7.1-1.5 10.9-1.5 22.1 0 40 17.9 40 40v10.1c0 22.1-17.9 40-40 40-14.6 0-27.5-7.9-34.4-19.7-10.9 8.7-24.5 14.1-39.4 14.7v7.8c0 1.4-1.1 2.5-2.5 2.5-1.4 0-2.5-1.1-2.5-2.5v-7.8c-35.5-1.2-64.2-30-65.2-65.6h-8.2c-1.4 0-2.5-1.1-2.5-2.5 0-1.4 1.1-2.5 2.5-2.5h8.2c1.6-35.1 30.1-63.2 65.2-64.4v-9c0-1.4 1.1-2.5 2.5-2.5 1.4 0 2.5 1.1 2.5 2.5zm0 41.6c17 1.3 30.7 14.8 32.2 31.8h10.8q0.2-0.3 0.5-0.6c-1.9-22.9-20.4-41.2-43.5-42.5zm0 69.8v11.3c13.7-0.8 25.8-7.5 33.8-17.7v-6.1c0-7.5 2.1-14.5 5.6-20.5h-7.1c-0.9 17.5-14.8 31.7-32.3 33zm27.3-33h-14.8c-1.2 6.2-6.2 11.1-12.5 12v16c14.7-1.3 26.4-13.2 27.3-28zm-27.3-17.8c6.6 1 11.7 6.2 12.7 12.8h14.5c-1.5-14.2-12.9-25.5-27.2-26.8zm-65.2 12.8h11.3c1.6-26.1 22.7-46.9 48.9-48.1v-11.3c-32.4 1.2-58.6 27.1-60.2 59.4zm60.2-31.8v-11.3c-23.4 1.2-42.3 19.8-43.9 43.1h11.3c1.6-17.1 15.4-30.7 32.6-31.8zm-27.5 31.8h15.2c1-6.4 5.9-11.6 12.3-12.7v-14.1c-14.4 1.1-26.1 12.5-27.5 26.8zm27.5 54.4c-26.6-1.2-48-22.7-48.9-49.4h-11.3c1 32.9 27.4 59.4 60.2 60.6zm0-16.3c-17.6-1.1-31.7-15.3-32.7-33h-11.2c0.9 23.9 20.1 43.2 43.9 44.3zm0-21c-6.1-1.1-11-5.9-12.1-12h-15.5c0.9 14.9 12.8 26.9 27.6 28zm12.8-14.8c0-5.6-4.5-10.2-10.1-10.2-5.6 0-10.1 4.6-10.1 10.2 0 5.5 4.5 10.1 10.1 10.1 5.6 0 10.1-4.6 10.1-10.1zm29.2 49.2c-1.6-3.8-2.7-8-3.1-12.4-8.7 8.9-20.6 14.7-33.9 15.4v11.2c14-0.6 26.9-5.8 37-14.2zm70.6-35c-22.2 8.5-40.5-2.6-47.4-7.9-0.8 2.1-2 4.9-3.8 7.8-4.6 7.3-10.7 12-17.6 13.9v5.4c0 19.3 15.7 35.1 35 35.1 19.3 0 35-15.8 35-35.1v-10.1c0-3.1-0.4-6.2-1.2-9.1zm-68.8 8.5c13.2-4.3 17.8-21.1 17.8-21.3 0.2-0.8 0.9-1.5 1.8-1.7 0.8-0.3 1.7 0 2.4 0.6 0.8 0.8 19.9 18.9 45.2 9.2-5.4-12.5-17.8-21.2-32.2-21.2-19.1 0-34.7 15.4-35 34.4zm-38.8-84.2v11.2c24.3 1.3 44.2 19.5 48 43.1 3-2.6 6.4-4.7 10.2-6.3-6.4-26.7-29.9-46.8-58.2-48z"/>
<path id="<Compound Path>" fill-rule="evenodd" class="s1" d="m155.9 223.4l7.3-29.7q-0.1-0.2-0.1-0.4l-2.9-11.1h-7.6c-4.1 0-7.9 0.7-11.6 2-13.9 4.8-24 18-24 33.6v5.6h24.9c1.4 0 2.5 1.2 2.5 2.5 0 1.4-1.1 2.5-2.5 2.5h-27.4c-1.4 0-2.5-1.1-2.5-2.5v-8.1c0-22.4 18.2-40.6 40.6-40.6h36.6c6.8 0 13.1 1.7 18.7 4.6 13 6.8 21.9 20.4 21.9 36v8.1c0 1.4-1.1 2.5-2.5 2.5h-73c-1.4 0-2.5-1.1-2.5-2.5 0-1.3 1.1-2.5 2.5-2.5zm21.8-31q0.1 0.1 0.1 0.2l6.3 30.8h40.7v-5.6c0-19.6-16-35.6-35.6-35.6h-9.1zm-12.4-10.1l2.1 7.9h5.7l1.8-7.9zm-4.3 41.2h18l-5.7-27.8h-5.4z"/>
</g>
</svg>
</div>
<div class="service-content p-relative">
<h4 class="service_title title-block">Sales & Marketing Strategy</h4>
<div class="service_description mt-10 max-w570 dsn-auto">
<p>
A successful venture requires a sound sales and marketing strategy.
We help our ventures to position their brand effectively, target the
right audience, and optimise their sales processes to drive growth.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="dsn-service d-grid grid-md-3 grid-sm-2 dsn-masonry-grid dsn-isotope"
data-dsn-iconsize="80px">
<div class="dsn-up service-item p-relative grid-item ">
<div class="service-item-inner number-item h-100 background-section border-rdu">
<div class="dsn-icon">
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" width="256" height="256">
<style>
.s0 { fill: #323232 }
.s1 { fill: #636363 }
</style>
<g id="Layer">
<g id="Layer">
<g id="Layer">
<path id="Layer" fill-rule="evenodd" class="s0" d="m189.4 46.7q0.8 0.1 1.6 0.2c18.9 3.5 30.6 9.5 30.6 17.3q0 0.6-0.1 1.1c0.3 1.9-0.3 3.8-1.7 5.3l-17.7 17.2-47.8 46.6c-0.2 0.4-2.2 19.9-3.8 33.8-0.8 7.2-1.5 12.9-1.8 13.6 11.6 7 19.3 19.7 19.3 34.2 0 22.1-17.9 40-40 40-22.1 0-40-17.9-40-40 0-14.5 7.7-27.2 19.3-34.2-0.3-0.8-1-6.6-1.8-13.8-1.6-13.9-3.6-33.2-3.8-33.6l-46.5-45.3-19-18.5c-1.4-1.5-2-3.4-1.7-5.3q-0.1-0.5-0.1-1.1c0-7.8 11.7-13.8 30.6-17.3 7.6-1.3 16.5-2.5 26.4-3.3-1.1 2.6-1.7 5.4-1.7 8.3q0 2 0.4 3.8c-8.4 0.8-16.1 1.8-23 3-11.8 2.2-19.5 4-20.6 5.2l1.3 1.3c2.8 1.1 9.7 2.7 19.3 4.4 12.2 2.2 27.1 3.7 42.9 4.3q0.9 0 1.7 0h0.1c27.1 1 56.3-0.5 77.1-4.3 9.6-1.7 16.5-3.3 19.3-4.4l1.3-1.3c-1.1-1.2-8.8-3-20.6-5.2q-3.1-0.6-6.4-1 0.6-0.6 1.3-1.2c2.6-2.7 4.6-6.1 5.6-9.8zm-58-4.6q7.6 0.1 14.8 0.4c0.4 4.6 2.1 8.8 4.8 12.2-5.7-0.3-11.5-0.5-17.4-0.5q0.1-1.1 0.1-2.3c0-3.5-0.8-6.8-2.3-9.8zm7.8 119.3c-7.6 1.7-14.8 1.7-22.4 0l1.8 15.7c6.2-1.5 12.6-1.5 18.8 0zm2.6-23.1c-9.2 1.3-18.5 1.3-27.6 0l1.2 10.3c8.3 2.8 16.9 2.7 25.2 0zm18.7-26.7c-21.1 2.8-43.9 2.8-65 0l13.9 13.6q4.2 1 8.6 1.5c6.6 0.9 13.4 0.8 20 0q4.4-0.5 8.6-1.5zm31.1-30.3c-35.2 6.5-92 6.5-127.3 0l15.9 15.5c6.9 1.5 14.4 2.7 22.1 3.6 16.7 1.7 35 1.7 51.7-0.1 7.6-0.8 14.9-2 21.7-3.5zm-57.2 140.2c1.8 1.2 2 4 0.4 5.4-1.8 1.6-9.5 2.9-11.6 0.7-1.7-1.7-1-4.5-3.3-4.3l-7 0.7c-1 0.1-1.7 1.1-1.5 2.1q1.1 4.9 4.7 7.6c6.3 4.5 10.7 1.2 11 4.3 0.4 3.4 0.7 3.1 4.3 2.7 3.1-0.3-0.2-4.5 2.7-5.1 7.7-1.6 12.6-6 11.8-13.9-1.4-13.6-19.7-10.3-24.5-13.3-1.7-1-1.9-3.7-0.4-5.1 1.8-1.6 9.3-2.4 11.1-0.6 1.6 1.5 1.1 3.7 3.1 3.5l6.5-0.7c3.4-0.4 0.2-6.5-3-8.7-5.7-4.1-9.7-1-10-4-0.2-2.4-2.2-1.8-4.3-1.5-2.7 0.2-0.3 3.5-2.9 4-13.1 2.4-14.4 15.8-7.2 20.7 6.2 4.4 15.9 2.7 20.1 5.5z"/>
<path id="Layer" fill-rule="evenodd" style="--dsn-color-icon : var(--heading-color)" d="m156.2 40.9c0-6.6 5.4-12 12-12 6.6 0 12 5.4 12 12 0 6.6-5.4 12-12 12-6.6 0-12-5.4-12-12zm-21.2-28.9c0-6.6 5.4-12 12-12 6.6 0 12 5.4 12 12 0 6.6-5.4 12-12 12-6.6 0-12-5.4-12-12zm-35.3 39.9c0-6.6 5.4-12 12-12 6.7 0 12 5.4 12 12 0 6.7-5.3 12-12 12-6.6 0-12-5.3-12-12zm89.3-26.9c0-6.6 5.4-12 12-12 6.6 0 12 5.4 12 12 0 6.6-5.4 12-12 12-6.6 0-12-5.4-12-12zm-106.9-13.4c0-4.4 3.6-8 8-8 4.4 0 8 3.6 8 8 0 4.5-3.6 8-8 8-4.4 0-8-3.5-8-8zm-43.6 12.4c0-6.6 5.3-12 12-12 6.6 0 12 5.4 12 12 0 6.7-5.4 12-12 12-6.7 0-12-5.3-12-12z"/>
</g>
</g>
</g>
</svg>
</div>
<div class="service-content p-relative">
<h4 class="service_title title-block">Financial Guidance</h4>
<div class="service_description mt-10 max-w570 dsn-auto">
<p>
From initial budgeting to long-term financial planning, we offer our
ventures crucial financial guidance. We assist with fundraising, cash
flow management, and future financial projections.
</p>
</div>
</div>
</div>
</div>
<div class="dsn-up service-item p-relative grid-item style-box">
<div class="service-item-inner number-item h-100 background-section border-rdu">
<div class="dsn-icon">
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" width="256" height="256">
<style>
.s0 { fill: #323232 }
.s1 { fill: #636363 }
</style>
<g id="Layer">
<g id="Layer">
<g id="Layer">
<path id="Layer" fill-rule="evenodd" style="--dsn-color-icon : var(--heading-color)" d="m105.5 229.3c2.6-17 4.3-30.9 0.6-49.7-0.6-2.8 0.9-5.5 3.3-6.6q6.9-3.7 13.4-8.8 6.7-5.3 12.8-11.8c1.7-1.8 4.2-2.4 6.4-1.6 5.6 2 12.5 5.3 19 9.1 6.6 3.8 12.9 8.1 17.4 11.9 2 1.7 2.6 4.3 1.8 6.5q-2.6 8.6-3.8 16.9-1.2 8.3-0.9 16.2c0.1 2.7-1.6 5.1-4.1 5.9-10.3 3.5-18.4 7.6-25.8 12.5-5.7 3.8-11.1 8-16.9 12.7 0.2 1.8-0.2 3.7-1.2 5.4-2.5 4.3-8 5.8-12.3 3.3-2-1.1-3.4-2.9-4-5-2.1 0.5-4.4 0.2-6.4-1-4.3-2.5-5.7-8-3.3-12.3 1-1.6 2.4-2.9 4-3.6zm31.2-33.2c-2.9-3.1-3.6-7.9-1.3-11.8 2.7-4.8 8.9-6.4 13.6-3.6 4.8 2.7 6.5 8.8 3.7 13.6-2.2 3.9-6.7 5.7-10.8 4.8l-18.9 32.6c5.4-4.4 10.5-8.3 16-11.9 7.2-4.7 15-8.8 24.5-12.4q0-6.9 1-13.9 1.1-7.4 3.2-14.9c-3.6-2.8-8.1-5.7-12.7-8.3-4.6-2.7-9.3-5.1-13.5-6.8q-5.5 5.6-11.3 10.1-5.6 4.4-11.6 7.9c3 17.9 1.4 31.6-1 47.6z"/>
<path id="Layer" fill-rule="evenodd" class="s1" d="m155.4 150.6c2.8 1.4 5.7 2.9 8.4 4.5 2.7 1.6 5.5 3.3 8.1 5 2.6 1.8 5 3.5 7.3 5.3 1.7 1.3 4.2 1 5.6-0.7 1.3-1.8 1-4.3-0.7-5.6-2.4-1.9-5-3.8-7.7-5.6-2.8-1.8-5.7-3.6-8.6-5.3-3-1.7-6-3.3-8.9-4.8-3-1.4-5.9-2.8-8.7-3.9-2.1-0.8-4.4 0.2-5.2 2.2-0.8 2 0.1 4.4 2.2 5.2 2.7 1.1 5.4 2.3 8.2 3.7zm-3.9-17.5c15.4 6.4 23.8 11.3 37 21.5 25.5-25.3 30.9-32.9 42.9-60.8 12.1-27.9 14-40.1 23.4-76.1 3.1-12.1-8.9-19-18-10.3-27.1 26-36 33.8-54.2 58.2-18.1 24.4-21 32.3-31.1 67.5z"/>
<path id="Layer" class="s1" d="m10.2 249.6c-1.1 2.5-4.1 3.6-6.6 2.5-2.5-1.2-3.6-4.1-2.5-6.6 5-10.9 12.6-19 19.7-23.2 3.3-2 6.7-3.2 9.7-3.5 3.8-0.4 7.1 0.4 9.6 2.7q0.2 0.1 0.4 0.3c1.8 1.7 3 4 3.5 7 0.8 4.5 1.2 7.1 1.5 7.3 0.2 0.1 1-1.3 4-3.5 6.4-4.9 13.6-6.8 21.1-6.3 7.1 0.5 14.4 3 21.6 6.8 2.5 1.3 3.4 4.3 2.1 6.8-1.3 2.4-4.3 3.3-6.7 2.1-6.1-3.3-12.1-5.4-17.7-5.7-5.1-0.3-10 0.9-14.3 4.2-6.7 5.1-11.2 6.6-15.2 4.1-3.6-2.1-5-6.7-6.3-14.1q-0.1-1.1-0.5-1.4l-0.1-0.1c-0.3-0.3-1-0.4-1.9-0.3-1.6 0.2-3.6 0.9-5.7 2.2-5.6 3.3-11.6 9.7-15.7 18.7z"/>
</g>
</g>
</g>
</svg>
</div>
<div class="service-content p-relative">
<h4 class="service_title title-block">Legal & Compliance Advisory</h4>
<div class="service_description mt-10 max-w570 dsn-auto">
<p>
We understand the importance of legal compliance and risk management.
We provide guidance on business laws, regulatory requirements, and
contract management, ensuring our ventures are always on the right side of the law.
</p>
</div>
</div>
</div>
</div>
<div class="dsn-up service-item p-relative grid-item style-box">
<div class="service-item-inner number-item h-100 background-section border-rdu">
<div class="dsn-icon">
<svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" width="256" height="256">
<style>
.s0 { fill: #636363 }
.s1 { fill: #000000 }
</style>
<g id="Layer">
<g id="Layer">
<g id="Layer">
<path id="Layer" fill-rule="evenodd" class="s0" d="m36 19c9.9 0 18.9 4 25.5 10.5 6.5 6.6 10.5 15.6 10.5 25.5 0 9.9-4 18.9-10.5 25.5-6.6 6.5-15.6 10.5-25.5 10.5-9.9 0-18.9-4-25.5-10.5-6.5-6.6-10.5-15.6-10.5-25.5 0-9.9 4-18.9 10.5-25.5 6.6-6.5 15.6-10.5 25.5-10.5zm17 19c-4.4-4.3-10.4-7-17-7-6.6 0-12.6 2.7-17 7-4.3 4.4-7 10.4-7 17 0 6.6 2.7 12.6 7 17 4.4 4.3 10.4 7 17 7 6.6 0 12.6-2.7 17-7 4.3-4.4 7-10.4 7-17 0-6.6-2.7-12.6-7-17z"/>
<path id="Layer" fill-rule="evenodd" class="s0" d="m194.5 29.5c6.6-6.5 15.6-10.5 25.5-10.5 9.9 0 18.9 4 25.5 10.5 6.5 6.6 10.5 15.6 10.5 25.5 0 9.9-4 18.9-10.5 25.5-6.6 6.5-15.6 10.5-25.5 10.5-9.9 0-18.9-4-25.5-10.5-6.5-6.6-10.5-15.6-10.5-25.5 0-9.9 4-18.9 10.5-25.5zm25.5 1.5c-6.6 0-12.6 2.7-17 7-4.3 4.4-7 10.4-7 17 0 6.6 2.7 12.6 7 17 4.4 4.3 10.4 7 17 7 6.6 0 12.6-2.7 17-7 4.3-4.4 7-10.4 7-17 0-6.6-2.7-12.6-7-17-4.4-4.3-10.4-7-17-7z"/>
<path id="Layer" fill-rule="evenodd" style="--dsn-color-icon : var(--heading-color)" d="m132 45v41.9h38c5 0 9.5 2.1 12.7 5.3 3.3 3.3 5.3 7.8 5.3 12.7v17.1h30v-11h-6.5c-0.8 0-1.7-0.3-2.4-0.8-1.8-1.4-2.1-3.9-0.8-5.6l10-13q0.3-0.5 0.8-0.8c1.7-1.4 4.3-1 5.6 0.7l9.8 12.9c0.6 0.7 1 1.6 1 2.6 0 2.2-1.8 4-4 4h-5.5v14.6q0 0.2 0 0.4c0 2.2-1.8 4-4 4h-34v7h2.5q5.7 0 10.4 0.9c8.7 1.6 14.5 5.3 18.3 10.3 3.5 4.5 5.1 10 5.3 15.8h6.5c0.9 0 1.7 0.3 2.5 0.9 1.7 1.3 2 3.8 0.6 5.6l-10.5 13.4q-0.3 0.6-0.9 1c-1.7 1.3-4.3 1-5.6-0.8l-10.2-13.5c-0.5-0.7-0.9-1.6-0.9-2.6 0-2.2 1.8-4 4-4h6.5c-0.2-4.1-1.3-7.9-3.6-11-2.7-3.4-7-6-13.5-7.3q-3.8-0.7-8.9-0.7h-2.5v6.1c0 4.9-2 9.4-5.3 12.7-3.2 3.2-7.7 5.3-12.7 5.3h-38v41.9h6c0.8 0 1.7 0.3 2.4 0.8 1.8 1.4 2.1 3.9 0.8 5.6l-10 13q-0.3 0.5-0.8 0.8c-1.7 1.4-4.2 1-5.6-0.7l-9.8-12.9c-0.6-0.7-1-1.6-1-2.6 0-2.2 1.8-4 4-4h6v-41.9h-38c-5 0-9.5-2.1-12.7-5.3-3.3-3.3-5.3-7.8-5.3-12.7v-6.1h-1.5q-5.1 0-8.9 0.7c-6.5 1.3-10.8 3.9-13.5 7.3-2.3 3.1-3.4 6.9-3.6 11h6.5c2.2 0 4 1.8 4 4 0 0.9-0.3 1.7-0.8 2.4l-10.3 13.6c-1.3 1.8-3.9 2.1-5.6 0.8q-0.5-0.4-0.9-0.9l-10.3-13.5c-1.3-1.7-1-4.2 0.8-5.6 0.7-0.6 1.7-0.8 2.6-0.8h6c0.2-5.8 1.8-11.2 5.3-15.8 3.8-5 9.7-8.7 18.3-10.3q4.7-0.9 10.4-0.9h1.5v-7h-34c-2.2 0-4-1.8-4-4q0-0.2 0-0.3v-14.7h-5.5c-2.2 0-4-1.8-4-4 0-1 0.4-1.9 1-2.6l9.8-12.9c1.4-1.7 3.9-2.1 5.6-0.7q0.5 0.3 0.8 0.8l10 13c1.3 1.7 1 4.2-0.8 5.6-0.7 0.5-1.6 0.8-2.4 0.8h-6.5v11h30v-17.1c0-4.9 2-9.4 5.3-12.7 3.2-3.2 7.7-5.3 12.7-5.3h38v-41.9h-6c-2.2 0-4-1.8-4-4 0-1 0.4-1.9 1-2.6l9.8-12.9c1.4-1.7 3.9-2.1 5.6-0.7q0.5 0.3 0.8 0.8l10 13c1.3 1.7 1 4.2-0.8 5.6-0.7 0.5-1.6 0.8-2.4 0.8zm38 53.9h-84c-1.6 0-3.1 0.7-4.2 1.8-1.1 1.1-1.8 2.6-1.8 4.2v46.2c0 1.6 0.7 3.1 1.8 4.2 1.1 1.1 2.6 1.8 4.2 1.8h84c1.6 0 3.1-0.7 4.2-1.8 1.1-1.1 1.8-2.6 1.8-4.2v-46.2c0-1.6-0.7-3.1-1.8-4.2-1.1-1.1-2.6-1.8-4.2-1.8z"/>
<path id="Layer" fill-rule="evenodd" class="s0" d="m153.5 245.5c-6.6 6.5-15.6 10.5-25.5 10.5-9.9 0-18.9-4-25.5-10.5-6.5-6.6-10.5-15.6-10.5-25.5 0-9.9 4-18.9 10.5-25.5 6.6-6.5 15.6-10.5 25.5-10.5 9.9 0 18.9 4 25.5 10.5 6.5 6.6 10.5 15.6 10.5 25.5 0 9.9-4 18.9-10.5 25.5zm-25.5-1.5c6.6 0 12.6-2.7 17-7 4.3-4.4 7-10.4 7-17 0-6.6-2.7-12.6-7-17-4.4-4.3-10.4-7-17-7-6.6 0-12.6 2.7-17 7-4.3 4.4-7 10.4-7 17 0 6.6 2.7 12.6 7 17 4.4 4.3 10.4 7 17 7z"/>
<path id="Layer" fill-rule="evenodd" class="s0" d="m187.5 194.5c6.6-6.5 15.6-10.5 25.5-10.5 9.9 0 18.9 4 25.5 10.5 6.5 6.6 10.5 15.6 10.5 25.5 0 9.9-4 18.9-10.5 25.5-6.6 6.5-15.6 10.5-25.5 10.5-9.9 0-18.9-4-25.5-10.5-6.5-6.6-10.5-15.6-10.5-25.5 0-9.9 4-18.9 10.5-25.5zm25.5 1.5c-6.6 0-12.6 2.7-17 7-4.3 4.4-7 10.4-7 17 0 6.6 2.7 12.6 7 17 4.4 4.3 10.4 7 17 7 6.6 0 12.6-2.7 17-7 4.3-4.4 7-10.4 7-17 0-6.6-2.7-12.6-7-17-4.4-4.3-10.4-7-17-7z"/>
<path id="Layer" fill-rule="evenodd" class="s0" d="m18.5 194.5c6.6-6.5 15.6-10.5 25.5-10.5 9.9 0 18.9 4 25.5 10.5 6.5 6.6 10.5 15.6 10.5 25.5 0 9.9-4 18.9-10.5 25.5-6.6 6.5-15.6 10.5-25.5 10.5-9.9 0-18.9-4-25.5-10.5-6.5-6.6-10.5-15.6-10.5-25.5 0-9.9 4-18.9 10.5-25.5zm25.5 1.5c-6.6 0-12.6 2.7-17 7-4.3 4.4-7 10.4-7 17 0 6.6 2.7 12.6 7 17 4.4 4.3 10.4 7 17 7 6.6 0 12.6-2.7 17-7 4.3-4.4 7-10.4 7-17 0-6.6-2.7-12.6-7-17-4.4-4.3-10.4-7-17-7z"/>
<path id="Layer" fill-rule="evenodd" class="s0" d="m102.5 10.5c6.6-6.5 15.6-10.5 25.5-10.5 9.9 0 18.9 4 25.5 10.5 6.5 6.6 10.5 15.6 10.5 25.5 0 9.9-4 18.9-10.5 25.5-6.6 6.5-15.6 10.5-25.5 10.5-9.9 0-18.9-4-25.5-10.5-6.5-6.6-10.5-15.6-10.5-25.5 0-9.9 4-18.9 10.5-25.5zm25.5 1.5c-6.6 0-12.6 2.7-17 7-4.3 4.4-7 10.4-7 17 0 6.6 2.7 12.6 7 17 4.4 4.3 10.4 7 17 7 6.6 0 12.6-2.7 17-7 4.3-4.4 7-10.4 7-17 0-6.6-2.7-12.6-7-17-4.4-4.3-10.4-7-17-7z"/>
</g>
</g>
</g>
</svg> </div>
<div class="service-content p-relative">
<h4 class="service_title title-block">Operational Efficiency</h4>
<div class="service_description mt-10 max-w570 dsn-auto">
<p>
We help ventures streamline their operations for optimal efficiency.
From process design to supply chain management, we ensure the venture's
operations are lean, efficient, and scalable.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ========== End Service ========== -->
<!-- ========== Right Box With Image ========== -->
<div class="right-box-image section-margin dsn-container dsn-left-container over-hidden p-relative">
<div class="box-img">
<div class="img-box-parallax h-v-80 w-100 before-z-index dsn-animate dsn-effect-left"
data-dsn-triggerhook="bottom"
data-dsn-grid="move-up" data-overlay="1">
<img src='assets/img/about-8.jpg' class="cover-bg-img has-direction" alt=''/>
</div>
</div>
<div class="box-info background-section box-padding section-margin" data-dsn-gap="30px 30px">
<h2 class="title-h2 text-upper">Revolutionizing the Path<br>to Successful Ventures</h2>
<p class="mt-20 pt-20 border-top">
Innovation isn't a straight line, and the journey from ideation to market success can be a complex maze. That's where the venture builder model comes into play. It's a proven, rapidly growing approach to establishing and nurturing ventures that is transforming the entrepreneurial landscape.
<br>
As a venture builder, Metasense offers much more than investment. We provide comprehensive support and resources across the entrepreneurial journey. Here's why this model is taking the business world by storm:
</p>
<ul class="d-grid dsn-list mt-20" data-dsn-gap="10px">
<li class="list-item background-main border-rdu">
<span class="dsn-icon mr-15"><i class="fas fa-check" aria-hidden="true"></i></span>
<p class="dsn-heading-title heading-color ">Risk Mitigation</p>
</li>
<li class="list-item background-main border-rdu">
<span class="dsn-icon mr-15"><i class="fas fa-check" aria-hidden="true"></i></span>
<p class="dsn-heading-title heading-color ">Resource Synergy</p>
</li>
<li class="list-item background-main border-rdu">
<span class="dsn-icon mr-15"><i class="fas fa-check" aria-hidden="true"></i></span>
<p class="dsn-heading-title heading-color ">Mentorship & Collaboration</p>
</li>
<li class="list-item background-main border-rdu">
<span class="dsn-icon mr-15"><i class="fas fa-check" aria-hidden="true"></i></span>
<p class="dsn-heading-title heading-color ">Market Agility</p>
</li>
<li class="list-item background-main border-rdu">
<span class="dsn-icon mr-15"><i class="fas fa-check" aria-hidden="true"></i></span>
<p class="dsn-heading-title heading-color ">Sustainable Growth</p>
</li>
</ul>
<!--<div class="dsn-def-btn dsn-hover-icon mt-30">
<a class="dsn-btn background-main effect-ajax has-icon-left"
href="project-6.html" data-dsn-text="VENTURE BUILDER"
data-dsn="parallax">
<span class="dsn-icon dsn-bg-before btn-icon-left heading-color z-index-1">
<i class="fas fa-angle-right"></i>
</span>
<span class="title-btn p-relative z-index-1 heading-color">LEARN MORE</span>
</a>
</div>-->
</div>
</div>
<!-- ========== End Right Box With Image ========== -->
<!-- ========== Portfolio ========== -->
<div class="p-relative over-hidden box-shadow-image box-image-transform dsn-style-cards section-margin ">
<div class="root-posts">
<div class="dsn-grid-layout dsn-grid dsn-posts dsn-post-type-cards use-horizontal-scroll box-image-normal"
data-dsn-option='{"speed":15,"start":"0"}'>
<article
class="dsn-item-post start-section grid-item p-relative">
<h2 class="dsn-animate-up letter-stroke">OUR</h2>
<h2 class="dsn-animate-down letter-stroke">WORK</h2>
</article>
<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image swiper-slide v-dark-head">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="z-infinity.html"
data-dsn-ajax="work" title="Z-INFINITY">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="4">
<img class="cover-bg-img" src="assets/img/portfolio/project1/cover.jpg"
alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator="&">Gaming</span>
</div>
</div>
<h2 class="post-title title-block">
<a href="z-infinity.html" class="effect-ajax"
data-dsn-ajax="work">
Z-infinity
</a>
</h2>
<p class="section_description mt-15 max-w570 ">
Z-Infinity is a fresh and family-friendly zombie themed game
</p>
<a href="z-infinity.html"
class="effect-ajax dsn-post-link move-circle border-color-heading"
data-dsn="parallax" data-dsn-ajax="work">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
<path class="arrow-after"
d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/>
</svg>
</a>
</div>
</div>
</div>
</article>
<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image swiper-slide v-dark-head">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="sea-of-influencers.html"
data-dsn-ajax="work" title="SEA OF INFLUENCERS">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="3">
<img class="cover-bg-img" src="assets/img/portfolio/project2/soi-fish-lure.jpg"
alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator=" & ">Social Media</span>
</div>
</div>
<h2 class="post-title title-block">
<a href="sea-of-influencers.html" class="effect-ajax"
data-dsn-ajax="work">
SEA OF INFLUENCERS
</a>
</h2>
<p class="section_description mt-15 max-w570 ">
A gamified platform for strengthening the influencer economy and engagement opportunities between brands, influencers, and followers.
</p>
<a href="sea-of-influencers.html"
class="effect-ajax dsn-post-link move-circle border-color-heading"
data-dsn="parallax" data-dsn-ajax="work">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
<path class="arrow-after"
d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/>
</svg>
</a>
</div>
</div>
</div>
</article>
<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image swiper-slide v-dark-head">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="stealth.html"
data-dsn-ajax="work" title="STEALTH">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="2">
<img class="cover-bg-img" src="assets/img/portfolio/project3/stealth.jpg"
alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator=" & ">Development</span>
</div>
</div>
<h2 class="post-title title-block">
<a href="stealth.html" class="effect-ajax"
data-dsn-ajax="work">
STEALTH PROJECT
</a>
</h2>
<p class="section_description mt-15 max-w570 ">
An exciting project at the intersection of Fintech, Connectivity, and E-Commerce
</p>
<a href="stealth.html"
class="effect-ajax dsn-post-link move-circle border-color-heading"
data-dsn="parallax" data-dsn-ajax="work">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
<path class="arrow-after"
d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/>
</svg>
</a>
</div>
</div>
</div>
</article>
<!--<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image swiper-slide v-dark-head">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="project-3.html"
data-dsn-ajax="work" title="AUDI RS">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="2">
<img class="cover-bg-img" src="assets/img/portfolio/project3/1.jpg"
alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator=" & ">Photography</span>
<span data-separator=" & ">Production</span>
</div>
</div>
<h2 class="post-title title-block">
<a href="project-3.html" class="effect-ajax"
data-dsn-ajax="work">
AUDI RS
</a>
</h2>
<p class="section_description mt-15 max-w570 ">
This optional section is only applicable to posts. It is a space for you to
write a summary of the post. Depending on the
</p>
<a href="project-3.html"
class="effect-ajax dsn-post-link move-circle border-color-heading"
data-dsn="parallax" data-dsn-ajax="work">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
<path class="arrow-after"
d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/>
</svg>
</a>
</div>
</div>
</div>
</article>
<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image swiper-slide v-dark-head">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="project-2.html"
data-dsn-ajax="work" title="MEN FASHION">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="4">
<img class="cover-bg-img" src="assets/img/portfolio/project2/1.jpg"
alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator=" & ">Photography</span>
</div>
</div>
<h2 class="post-title title-block">
<a href="project-2.html" class="effect-ajax"
data-dsn-ajax="work">
MEN FASHION
</a>
</h2>
<p class="section_description mt-15 max-w570 ">
Service Photographer Industry Daniel Jaramillo Published June 15th 2022
Caption #1 Caption #2 Caption #3 How is your visual identity? we give
fashion forward
</p>
<a href="project-2.html"
class="effect-ajax dsn-post-link move-circle border-color-heading"
data-dsn="parallax" data-dsn-ajax="work">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
<path class="arrow-after"
d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/>
</svg>
</a>
</div>
</div>
</div>
</article>
<article
class="dsn-item-post grid-item over-hidden p-relative box-hover-image swiper-slide v-dark-head">
<div class="box-content d-flex ">
<a class="effect-ajax box-image-link bg-shadow" href="project-1.html"
data-dsn-ajax="work" title="VISIONAID">
<div class="box-image-bg before-z-index dsn-swiper-parallax-transform"
data-overlay="4">
<img class="cover-bg-img" src="assets/img/portfolio/project1/1.jpg"
alt=""/>
</div>
</a>
<div class="post-content dsn-bg p-relative z-index-1 d-flex flex-column">
<div class="post-title-info">
<div class="post-meta max-w750">
<div class="p-relative d-inline-block dsn-category dsn-bg metas mb-10 entry-meta">
<span data-separator=" & ">Creative</span>
<span data-separator=" & ">Photography</span>
</div>
</div>
<h2 class="post-title title-block">
<a href="project-1.html" class="effect-ajax"
data-dsn-ajax="work">
VISIONAID
</a>
</h2>
<p class="section_description mt-15 max-w570 ">
Service Photographer Industry Daniel Jaramillo Published June 15th 2022
Caption #1 Caption #2 Caption #3 How is your visual identity? we give
fashion forward
</p>
<a href="project-1.html"
class="effect-ajax dsn-post-link move-circle border-color-heading"
data-dsn="parallax" data-dsn-ajax="work">
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg">
<path class="arrow-after"
d="M21.883 12l-7.527 6.235.644.765 9-7.521-9-7.479-.645.764 7.529 6.236h-21.884v1h21.883z"/>
</svg>
</a>
</div>
</div>
</div>
</article>-->
<article
class="dsn-item-post end-section grid-item p-relative">
<h2 class="dsn-animate-up letter-stroke">AWESOME</h2>
<h2 class="dsn-animate-down letter-stroke">VENTURES</h2>
</article>
</div>
</div>
</div>
<!-- ========== End Portfolio ========== -->
<!-- ========== Play Video ========== -->
<div class="p-relative dsn-container section-padding hv-80">
<div class="dsn-bg-mask h-50 bottom-0 background-section"></div>
<div class="container section-video h-100 d-flex align-items-center justify-content-center">
<div class="dsn-normal-btn dsn-icon-heading-color">
<a class="dsn-btn dsn-border border-color-default vid background-section move-circle has-icon-left"
href="https://vimeo.com/833549728?share=copy" target="_blank" rel="nofollow" data-dsn="parallax">
<span class="dsn-icon dsn-bg-before btn-icon-left heading-color z-index-1">
<i class="fas fa-play"></i>
</span>
<span class="title-btn p-relative z-index-1">PLAY</span>
</a>
</div>
</div>
<div class="dsn-bg-section dsn-container p-absolute w-100 h-100 over-hidden top-0 left-0">
<div class="h-100 img-box-parallax before-z-index " data-dsn-grid="move-up" data-overlay="4">
<img src="assets/img/about-4.jpg" class="cover-bg-img has-direction" alt="">
</div>
</div>
</div>
<!-- ========== End Play Video ========== -->
<!-- ========== FAQ ========== -->
<div class="about-award dsn_testimonial section-padding background-section">
<div class="container d-grid grid-half-1">
<div class="box-left pr-lg-100">
<div class="section-title d-flex flex-column">
<h2 class="title-h2 text-upper">Questions?</h2>
<p class="max-w570 mt-10 border-section-bottom">pleased you asked</p>
</div>
<p class="mt-20 fw-bold">
Here are a few common questions and answers about what we do
</p>
</div>
<div class="box-right">
<div class="elementor-widget-dsn_testimonial" data-widget_type="dsn_testimonial.default">
<div class="dsn-testimonials dsn-swiper p-relative has-parallax-image"
data-dsn-option='{"spaceBetween":30,"centeredSlides":false,"grabCursor":true,"loop":true,"effect":"cards"}'>
<div class="testimonials-content">
<div class="testimonial-inner">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px"
viewBox="0 0 509 396.83"
enable-background="new 0 0 509 396.83" xml:space="preserve">
<g>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M105.098,396.83c-2.062,0-4.122,0-6.183,0 c0.123-48.731,0.116-97.466,0.493-146.195c0.062-7.844-3.65-8.881-10.09-8.843c-29.772,0.182-59.545,0.047-89.318,0.026 C0,161.382,0,80.947,0,0c81.742,0,163.484,0,245.227,0c0.023,83.874,0.496,167.752-0.071,251.624 c-0.436,64.131-47.354,121.936-109.503,136.974C125.404,391.076,115.279,394.073,105.098,396.83z M127.891,360.509 c6.063-1.545,10.049-2.226,13.799-3.568c42.174-15.098,74.277-58.896,74.735-104.55c0.718-71.273,0.187-142.558,0.454-213.837 c0.03-7.696-2.596-10.07-10.136-10.038c-55.961,0.236-111.927,0.287-167.887-0.042c-8.413-0.049-10.398,3.014-10.363,10.831 c0.254,54.408,0.317,108.815-0.047,163.22c-0.061,8.994,3.321,10.93,11.452,10.803c25.744-0.405,51.505,0.184,77.245-0.329 c8.78-0.174,10.986,2.931,10.911,11.301c-0.363,40.63-0.164,81.264-0.163,121.897C127.891,350.262,127.891,354.325,127.891,360.509 z"/>
<path fill-rule="evenodd" clip-rule="evenodd"
d="M368.871,396.83c-2.061,0-4.122,0-6.184,0 c0.057-48.133-0.099-96.267,0.354-144.395c0.081-8.996-3.268-10.854-11.386-10.722c-26.047,0.42-52.108-0.083-78.152,0.299 c-7.577,0.108-10.083-2.194-10.053-9.942c0.294-77.357,0.262-154.713,0.322-232.07C345.353,0,426.929,0,509,0 c0,89.562,0,179.125,0,268.687c-1.256,3.464-2.793,6.854-3.73,10.401c-15.376,58.112-51.126,95.756-109.9,110.431 C386.48,391.735,377.7,394.382,368.871,396.83z M391.554,360.501c5.951-1.528,9.958-2.176,13.686-3.57 c43.103-16.135,74.464-59.44,74.864-105.611c0.616-70.931,0.138-141.869,0.404-212.803c0.03-7.722-2.58-10.037-10.111-10.005 c-55.963,0.24-111.926,0.285-167.889-0.036c-8.406-0.048-10.429,3.048-10.392,10.853c0.245,54.405,0.31,108.813-0.049,163.216 c-0.059,9.03,3.45,10.9,11.528,10.778c25.741-0.39,51.504,0.193,77.245-0.325c8.785-0.178,10.956,2.917,10.878,11.284 c-0.368,40.629-0.167,81.263-0.165,121.897C391.554,350.25,391.554,354.318,391.554,360.501z"/>
</g>
</svg>
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide testimonial-inner-item background-main">
<div class="avatar box-img dsn-auto">
<img src='assets/img/team/1.jpg' class="cover-bg-img" alt=''/>
</div>
<div class="testimonial-item">
<div class="testimonial-content mb-25">
<div class="quote">
<p class="max-w750 testimonial-content p-large">
What is a Venture Builder or Ventue Studio?
</p>
</div>
</div>
<div class="content-inner border-top">
<div class="d-flex align-items-center ">
<div class="label box-text">
<h4 class="testimonial-name sm-title-block">A venture builder, also known as a venture studio, is an organisation that develops new startups in-house by providing a mix of initial capital, a founding entrepreneur or team, and shared resources.</h4>
<h5 class="testimonial-position">It's a model that increases the startup's chance of success by mitigating initial risks, providing crucial resources, and enabling faster growth.</h5>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-slide testimonial-inner-item background-main">
<div class="avatar box-img dsn-auto">
<img src='assets/img/team/1.jpg' class="cover-bg-img" alt=''/>