-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1009 lines (905 loc) · 102 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-US" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<meta name="description" content="Connecting Matrix is a top-rated web and mobile development agency, delivering expert solutions in web design, UX/UI, eCommerce, software development, and AI. Trusted by startups and global enterprises, we help businesses grow with innovative digital strategies. Contact us for a free consultation.">
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1">
<!-- This site is optimized with the Yoast SEO plugin v23.0 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Connecting Matrix - Leading Design and Development Agency</title>
<link rel="canonical" href="https://www.connectingmatrix.com">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="Connecting Matrix - Leading Design and Development Agency">
<meta property="og:url" content="/">
<meta property="og:site_name" content="Leading Design and Development Agency">
<meta property="article:modified_time" content="2024-07-23T08:20:33+00:00">
<meta property="og:image" content="/wp-content/uploads/2024/06/connecting_matrix_logo__3_-removebg-preview.png">
<meta property="og:image:width" content="370">
<meta property="og:image:height" content="78">
<meta property="og:image:type" content="image/png">
<meta name="twitter:card" content="summary_large_image">
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"/","url":"/","name":"Connecting Matrix - Leading Design and Development Agency","isPartOf":{"@id":"/#website"},"about":{"@id":"/#organization"},"datePublished":"2019-09-09T19:32:18+00:00","dateModified":"2024-07-23T08:20:33+00:00","breadcrumb":{"@id":"/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["/"]}]},{"@type":"BreadcrumbList","@id":"/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home"}]},{"@type":"WebSite","@id":"/#website","url":"/","name":"Leading Design and Development Agency","description":"Design, Develop, Dominate.","publisher":{"@id":"/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"/#organization","name":"Connecting Matrix","url":"/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"/#/schema/logo/image/","url":"/wp-content/uploads/2024/06/connecting_matrix_logo__3_-removebg-preview.png","contentUrl":"/wp-content/uploads/2024/06/connecting_matrix_logo__3_-removebg-preview.png","width":370,"height":78,"caption":"Connecting Matrix"},"image":{"@id":"/#/schema/logo/image/"}}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="alternate" type="application/rss+xml" title="Leading Design and Development Agency » Feed" href="/feed/">
<link rel="alternate" type="application/rss+xml" title="Leading Design and Development Agency » Comments Feed" href="/comments/feed/">
<style id="classic-theme-styles-inline-css" type="text/css">/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}</style>
<style id="global-styles-inline-css" type="text/css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}</style>
<link rel="stylesheet" id="wpo_min-header-0-css" href="/wp-content/cache/wpo-minify/1727877087/assets/wpo-minify-header-1aa4d368.min.css" type="text/css" media="all">
<script type="text/javascript" src="/wp-content/cache/wpo-minify/1727877087/assets/wpo-minify-header-f5440c18.min.js" id="wpo_min-header-0-js"></script>
<script></script><link rel="https://api.w.org/" href="/wp-json/">
<link rel="alternate" title="JSON" type="application/json" href="/wp-json/wp/v2/pages/5">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="/xmlrpc.php?rsd">
<meta name="generator" content="WordPress 6.6.2">
<link rel="shortlink" href="/">
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="/wp-json/oembed/1.0/embed?url=http%3A%2F%2F%2F">
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="/wp-json/oembed/1.0/embed?url=http%3A%2F%2F%2F#038;format=xml">
<script type="text/javascript">var root = document.getElementsByTagName( "html" )[0]; root.setAttribute( "class", "js" );</script><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress.">
<link rel="icon" href="/wp-content/uploads/2024/07/cropped-connecting-matrix-logo-4-32x32.png" sizes="32x32">
<link rel="icon" href="/wp-content/uploads/2024/07/cropped-connecting-matrix-logo-4-192x192.png" sizes="192x192">
<link rel="apple-touch-icon" href="/wp-content/uploads/2024/07/cropped-connecting-matrix-logo-4-180x180.png">
<meta name="msapplication-TileImage" content="/wp-content/uploads/2024/07/cropped-connecting-matrix-logo-4-270x270.png">
<style type="text/css" data-type="vc_custom-css">.nectar-star-rating{
justify-content: center !important;
}</style>
<style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1721038282945{margin-bottom: 15px !important;}.vc_custom_1721038299759{margin-bottom: 15px !important;}.vc_custom_1721038306114{margin-bottom: 15px !important;}.vc_custom_1721587910944{margin-bottom: 15px !important;}.vc_custom_1721038326742{margin-bottom: 15px !important;}.vc_custom_1721038332742{margin-bottom: 15px !important;}.vc_custom_1721039022226{padding-right: 6% !important;padding-bottom: 30px !important;padding-left: 6% !important;}.vc_custom_1720542252020{padding-right: 20% !important;padding-left: 20% !important;}</style>
<noscript><style>.wpb_animate_when_almost_visible { opacity: 1; }</style></noscript>
<style id="wpforms-css-vars-root">:root {
--wpforms-field-border-radius: 3px;
--wpforms-field-border-style: solid;
--wpforms-field-border-size: 1px;
--wpforms-field-background-color: #ffffff;
--wpforms-field-border-color: rgba( 0, 0, 0, 0.25 );
--wpforms-field-border-color-spare: rgba( 0, 0, 0, 0.25 );
--wpforms-field-text-color: rgba( 0, 0, 0, 0.7 );
--wpforms-field-menu-color: #ffffff;
--wpforms-label-color: rgba( 0, 0, 0, 0.85 );
--wpforms-label-sublabel-color: rgba( 0, 0, 0, 0.55 );
--wpforms-label-error-color: #d63637;
--wpforms-button-border-radius: 3px;
--wpforms-button-border-style: none;
--wpforms-button-border-size: 1px;
--wpforms-button-background-color: #066aab;
--wpforms-button-border-color: #066aab;
--wpforms-button-text-color: #ffffff;
--wpforms-page-break-color: #066aab;
--wpforms-background-image: none;
--wpforms-background-position: center center;
--wpforms-background-repeat: no-repeat;
--wpforms-background-size: cover;
--wpforms-background-width: 100px;
--wpforms-background-height: 100px;
--wpforms-background-color: rgba( 0, 0, 0, 0 );
--wpforms-background-url: none;
--wpforms-container-padding: 0px;
--wpforms-container-border-style: none;
--wpforms-container-border-width: 1px;
--wpforms-container-border-color: #000000;
--wpforms-container-border-radius: 3px;
--wpforms-field-size-input-height: 43px;
--wpforms-field-size-input-spacing: 15px;
--wpforms-field-size-font-size: 16px;
--wpforms-field-size-line-height: 19px;
--wpforms-field-size-padding-h: 14px;
--wpforms-field-size-checkbox-size: 16px;
--wpforms-field-size-sublabel-spacing: 5px;
--wpforms-field-size-icon-size: 1;
--wpforms-label-size-font-size: 16px;
--wpforms-label-size-line-height: 19px;
--wpforms-label-size-sublabel-font-size: 14px;
--wpforms-label-size-sublabel-line-height: 17px;
--wpforms-button-size-font-size: 17px;
--wpforms-button-size-height: 41px;
--wpforms-button-size-padding-h: 15px;
--wpforms-button-size-margin-top: 10px;
--wpforms-container-shadow-size-box-shadow: none;
}</style>
</head>
<body class="home page-template-default page page-id-5 ascend wpb-js-composer js-comp-ver-7.1 vc_responsive" data-footer-reveal="false" data-footer-reveal-shadow="none" data-header-format="default" data-body-border="off" data-boxed-style="" data-header-breakpoint="1000" data-dropdown-style="minimal" data-cae="easeOutCubic" data-cad="750" data-megamenu-width="contained" data-aie="none" data-ls="fancybox" data-apte="horizontal_swipe" data-hhun="0" data-fancy-form-rcs="default" data-form-style="default" data-form-submit="regular" data-is="minimal" data-button-style="rounded_shadow" data-user-account-button="false" data-flex-cols="true" data-col-gap="default" data-header-inherit-rc="false" data-header-search="false" data-animated-anchors="true" data-ajax-transitions="true" data-full-width-header="false" data-slide-out-widget-area="true" data-slide-out-widget-area-style="slide-out-from-right" data-user-set-ocm="1" data-loading-animation="none" data-bg-header="true" data-responsive="1" data-ext-responsive="true" data-ext-padding="90" data-header-resize="1" data-header-color="custom" data-cart="false" data-remove-m-parallax="" data-remove-m-video-bgs="" data-m-animate="0" data-force-header-trans-color="light" data-smooth-scrolling="0" data-permanent-transparent="false">
<script type="text/javascript">(function(window, document) {
if(navigator.userAgent.match(/(Android|iPod|iPhone|iPad|BlackBerry|IEMobile|Opera Mini)/)) {
document.body.className += " using-mobile-browser mobile ";
}
if(navigator.userAgent.match(/Mac/) && navigator.maxTouchPoints && navigator.maxTouchPoints > 2) {
document.body.className += " using-ios-device ";
}
if( !("ontouchstart" in window) ) {
var body = document.querySelector("body");
var winW = window.innerWidth;
var bodyW = body.clientWidth;
if (winW > bodyW + 4) {
body.setAttribute("style", "--scroll-bar-w: " + (winW - bodyW - 4) + "px");
} else {
body.setAttribute("style", "--scroll-bar-w: 0px");
}
}
})(window, document);</script><a href="#ajax-content-wrap" class="nectar-skip-to-content">Skip to main content</a><div id="ajax-loading-screen" data-disable-mobile="1" data-disable-fade-on-click="0" data-effect="horizontal_swipe" data-method="standard">
<div class="reveal-1"></div>
<div class="reveal-2"></div>
</div>
<div id="header-space" data-header-mobile-fixed="1"></div>
<div id="header-outer" data-has-menu="true" data-has-buttons="yes" data-header-button_style="default" data-using-pr-menu="false" data-mobile-fixed="1" data-ptnm="false" data-lhe="animated_underline" data-user-set-bg="#ffffff" data-format="default" data-permanent-transparent="false" data-megamenu-rt="0" data-remove-fixed="0" data-header-resize="1" data-cart="false" data-transparency-option="1" data-box-shadow="large" data-shrink-num="6" data-using-secondary="0" data-using-logo="1" data-logo-height="40" data-m-logo-height="24" data-padding="28" data-full-width="false" data-condense="false" data-transparent-header="true" data-transparent-shadow-helper="false" data-remove-border="false" class="transparent">
<header id="top">
<div class="container">
<div class="row">
<div class="col span_3">
<a id="logo" href="/" data-supplied-ml-starting-dark="false" data-supplied-ml-starting="false" data-supplied-ml="false">
<img class="stnd skip-lazy dark-version" width="370" height="78" alt="Leading Design and Development Agency" src="/wp-content/uploads/2024/06/connecting_matrix_logo__3_-removebg-preview.png"><img class="starting-logo skip-lazy" width="370" height="78" alt="Leading Design and Development Agency" src="/wp-content/uploads/2024/07/image-27.png"> </a>
</div>
<!--/span_3-->
<div class="col span_9 col_last">
<div class="nectar-mobile-only mobile-header"><div class="inner"></div></div>
<div class="slide-out-widget-area-toggle mobile-icon slide-out-from-right" data-custom-color="false" data-icon-animation="simple-transform">
<div> <a href="#sidewidgetarea" role="button" aria-label="Navigation Menu" aria-expanded="false" class="closed">
<span class="screen-reader-text">Menu</span><span aria-hidden="true"> <i class="lines-button x2"> <i class="lines"></i> </i> </span>
</a>
</div>
</div>
<nav>
<ul class="sf-menu">
<li id="menu-item-6121" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-6121"><a href="/work/"><span class="menu-title-text">Work</span></a></li>
<li id="menu-item-6118" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home nectar-regular-menu-item menu-item-6118"><a href="/#services"><span class="menu-title-text">Services</span></a></li>
<!-- <li id="menu-item-6119" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home nectar-regular-menu-item menu-item-6119"><a href="/#about"><span class="menu-title-text">About</span></a></li> -->
<li id="menu-item-6120" class="menu-item menu-item-type-custom menu-item-object-custom nectar-regular-menu-item menu-item-6120"><a href="/careers"><span class="menu-title-text">Careers</span></a></li>
<!-- -->
<li id="menu-item-6264" class="menu-item menu-item-type-post_type menu-item-object-page button_solid_color menu-item-6264"><a href="/request-a-free-quote/"><span class="menu-title-text">Request a Free Quote</span></a></li>
<li id="social-in-menu" class="button_social_group"><a target="_blank" rel="noopener" href="https://www.linkedin.com/company/connectingmatrix/"><span class="screen-reader-text">linkedin</span><i class="fa fa-linkedin" aria-hidden="true"></i> </a></li> </ul>
<ul class="buttons sf-menu" data-user-set-ocm="1">
<li class="slide-out-widget-area-toggle" data-icon-animation="simple-transform" data-custom-color="false"><div> <a href="#sidewidgetarea" aria-label="Navigation Menu" aria-expanded="false" role="button" class="closed"> <span class="screen-reader-text">Menu</span><span aria-hidden="true"> <i class="lines-button x2"> <i class="lines"></i> </i> </span> </a> </div></li>
</ul>
</nav>
</div>
<!--/span_9-->
</div>
<!--/row-->
</div>
<!--/container-->
</header>
</div>
<div id="search-outer" class="nectar">
<div id="search">
<div class="container">
<div id="search-box">
<div class="inner-wrap">
<div class="col span_12">
<form role="search" action="/" method="GET">
<input type="text" name="s" value="Start Typing..." aria-label="Search" data-placeholder="Start Typing...">
<span><i>Press enter to begin your search</i></span>
</form>
</div>
<!--/span_12-->
</div>
<!--/inner-wrap-->
</div>
<!--/search-box-->
<div id="close"><a href="#"><span class="screen-reader-text">Close Search</span>
<span class="icon-salient-x" aria-hidden="true"></span> </a></div>
</div>
<!--/container-->
</div>
<!--/search-->
</div>
<!--/search-outer-->
<div id="ajax-content-wrap">
<div class="container-wrap">
<div class="container main-content" role="main">
<div class="row">
<div id="fws_66fd5018aa131" data-column-margin="default" data-midnight="dark" data-top-percent="12%" class="wpb_row vc_row-fluid vc_row top-level full-width-section zindex-set" style="padding-top: calc(100vw * 0.12); padding-bottom: 0px; z-index: 20;">
<div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="false"><div class="inner-wrap row-bg-layer using-image"><div class="row-bg viewport-desktop using-image using-bg-color" style="background-image: url(/wp-content/uploads/2024/06/IMG-1.png); background-position: left top; background-repeat: no-repeat; background-color: #000000;"></div></div></div>
<div class="nectar-shape-divider-wrap " style="height:20%;" data-using-percent-val="true" data-height="20%" data-front="" data-style="straight_section" data-position="bottom"><svg class="nectar-shape-divider" aria-hidden="true" fill="#ffffff" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 100 10" preserveaspectratio="none"> <polygon points="104 10, 104 0, 0 0, 0 10"></polygon> </svg></div>
<div class="row_col_wrap_12 col span_12 dark left flip-in-vertical-wrap">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col centered-text no-extra-padding force-desktop-text-align-center inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div id="fws_66fd5018b824e" data-midnight="" data-column-margin="default" class="wpb_row vc_row-fluid vc_row inner_row vc_row-o-content-middle right_padding_13pct left_padding_13pct right_padding_tablet_0px left_padding_tablet_0px">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 center flip-in-vertical-wrap">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col child_column centered-text has-animation no-extra-padding force-desktop-text-align-center inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="slight-twist" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h4><span style="color: #999999;">Web & Mobile Development Studio</span></h4>
</div>
</div>
<div class="nectar-highlighted-text font_size_8vh " data-style="text_outline" data-outline-thickness="regular" data-user-color="true" style="color: #000000;" data-using-custom-color="false" data-animation-delay="false" data-color="" data-color-gradient="">
<h2><span style="color: #ffffff">We Design & Build Products That Drives <em>Growth and Revenue 🚀</em></span></h2>
</div>
<div class="wpb_text_column wpb_content_element " style="max-width: 500px; display: inline-block;">
<div class="wpb_wrapper">
<h4 class="large-text opacity-text hero-description pad-on-right"><span style="color: #999999;">Results-driven web design, development, SEO, branding, Software development & digital strategy.</span></h4>
</div>
</div>
<div class="nectar-star-rating" style="font-size: 20px;">
<div class="nectar-star-rating__icon size-5 nectar-color-extra-color-1"></div>
<div class="nectar-star-rating__content">
<h6 style="text-align: center"><span style="color: #ffffff">5-star review</span></h6>
<h6 style="text-align: center"><span style="color: #999999">Top rated Agency </span></h6>
</div>
</div>
<div class="main-hero-btn">
<div class="nectar-cta hover_color_fff5e2 alignment_tablet_default alignment_phone_default display_tablet_inherit display_phone_inherit " data-color="white" data-using-bg="true" data-style="basic" data-display="inline" data-alignment="center" data-text-color="custom" style="margin-top: 20px; margin-right: 15px; margin-bottom: 20px; margin-left: 15px;"><span style="color: #000000;" class="nectar-button-type"><span class="link_wrap" style="padding-top: 20px; padding-right: 45px; padding-bottom: 20px; padding-left: 45px;"><a target="_blank" class="link_text" role="button" href="/work/"><span class="text">Explore Our Work</span></a></span></span></div>
<div class="nectar-cta hover_color_2643ef alignment_tablet_default alignment_phone_default display_tablet_inherit display_phone_inherit " data-color="accent-color" data-using-bg="true" data-style="arrow-animation" data-display="inline" data-alignment="left" data-text-color="custom" style="margin-top: 20px; margin-right: 15px; margin-bottom: 20px; margin-left: 15px;"><span style="color: #ffffff;" class="nectar-button-type"><span class="link_wrap" style="padding-top: 20px; padding-right: 45px; padding-bottom: 20px; padding-left: 45px;"><a target="_blank" class="link_text" role="button" href="/request-a-free-quote/"><span class="text">Request a Quote</span><svg class="next-arrow" aria-hidden="true" width="20px" height="25px" viewbox="0 0 50 80" xml:space="preserve">
<polyline stroke="#ffffff" stroke-width="9" fill="none" stroke-linecap="round" stroke-linejoin="round" points="0, 0 45, 40 0, 80"></polyline>
</svg> <span class="line" style="background-color: #ffffff;"></span> </a></span></span></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="fws_66fd5018bc827" data-midnight="" data-column-margin="default" class="wpb_row vc_row-fluid vc_row inner_row right_padding_0px left_padding_0px">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 left flip-in-vertical-wrap">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col child_column has-animation padding-6-percent no-extra-padding_tablet no-extra-padding_phone " data-padding-pos="left-right" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="slight-twist" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar_video_player_self_hosted wpb_video_widget wpb_content_element vc_clearfix vc_video-aspect-ratio-169 vc_video-el-width-80 vc_video-align-center rm-on-mobile phone-aspect-169" data-border-radius="15px" data-shadow="large_depth">
<div class="wpb_wrapper"><div class="wpb_video_wrapper"><video width="1280" height="720" class="nectar-video-self-hosted" preload="auto" loop autoplay muted playsinline><source src="/wp-content/uploads/2024/06/Black-and-Grey-Video-Centric-YouTube-Intro-1.mp4" type="video/mp4"></video></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="services" data-column-margin="default" data-midnight="dark" data-top-percent="10%" data-bottom-percent="10%" class="wpb_row vc_row-fluid vc_row full-width-section" style="padding-top: calc(100vw * 0.10); padding-bottom: calc(100vw * 0.10);">
<div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="false"><div class="inner-wrap row-bg-layer"><div class="row-bg viewport-desktop using-bg-color" style="background-color: #ffffff;"></div></div></div>
<div class="row_col_wrap_12 col span_12 dark left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div id="fws_66fd5018be6d3" data-midnight="" data-column-margin="default" class="wpb_row vc_row-fluid vc_row inner_row">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 left">
<div class="vc_col-sm-2 vc_hidden-xs wpb_column column_container vc_column_container col child_column has-animation no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
</div>
</div>
</div>
<div class="vc_col-sm-8 wpb_column column_container vc_column_container col child_column has-animation no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar-highlighted-text font_size_phone_4vh " data-style="regular_underline" data-exp="closer" data-underline-thickness="default" data-user-color="true" style="color: #000000;" data-using-custom-color="true" data-animation-delay="false" data-color="#3452ff" data-color-gradient="">
<h1 style="text-align: center">We Help <em>Startups and Global Enterprises</em> Create Products Enjoyed by Millions</h1>
</div>
</div>
</div>
</div>
<div class="vc_col-sm-2 vc_hidden-xs wpb_column column_container vc_column_container col child_column no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
</div>
</div>
</div>
</div>
</div>
<div id="fws_66fd5018bfb1f" data-midnight="" data-column-margin="default" class="wpb_row vc_row-fluid vc_row inner_row" style="padding-top: 20px;">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 left">
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col child_column centered-text has-animation padding-3-percent inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar_icon_wrap " data-style="default" data-padding="0px" data-color="accent-color">
<div class="nectar_icon">
<a href="#"></a><span class="im-icon-wrap" data-color="accent-color" style="height: 50px; width: 50px;"><span><svg role="presentation" version="1.1" xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewbox="0 0 32 32">
<path d="M9.213 4.667c-0.171 0-0.341-0.065-0.472-0.195l-3.333-3.333c-0.26-0.257-0.26-0.683 0-0.943 0.257-0.257 0.683-0.257 0.943 0l3.333 3.333c0.257 0.26 0.257 0.685 0 0.943-0.129 0.129-0.3 0.195-0.471 0.195zM5.88 4.667c-0.367 0-0.667-0.3-0.667-0.667v-3.333c0-0.367 0.3-0.667 0.667-0.667h3.333c0.367 0 0.667 0.3 0.667 0.667s-0.299 0.667-0.667 0.667h-2.667v2.667c0 0.367-0.299 0.667-0.667 0.667zM5.88 10.667c-0.171 0-0.341-0.065-0.471-0.195-0.26-0.257-0.26-0.683 0-0.943l3.333-3.333c0.257-0.257 0.683-0.257 0.943 0 0.257 0.26 0.257 0.685 0 0.943l-3.333 3.333c-0.131 0.129-0.301 0.195-0.472 0.195zM9.213 10.667h-3.333c-0.367 0-0.667-0.3-0.667-0.667v-3.333c0-0.367 0.3-0.667 0.667-0.667s0.667 0.3 0.667 0.667v2.667h2.667c0.367 0 0.667 0.3 0.667 0.667s-0.299 0.667-0.667 0.667zM20.545 10.667c-0.171 0-0.341-0.065-0.472-0.195l-3.333-3.333c-0.257-0.257-0.257-0.683 0-0.943 0.26-0.257 0.685-0.257 0.943 0l3.333 3.333c0.26 0.26 0.26 0.685 0 0.943-0.129 0.129-0.3 0.195-0.471 0.195zM20.547 10.667h-3.333c-0.367 0-0.667-0.3-0.667-0.667s0.3-0.667 0.667-0.667h2.667v-2.667c0-0.367 0.3-0.667 0.667-0.667s0.667 0.3 0.667 0.667v3.333c0 0.367-0.299 0.667-0.667 0.667zM17.212 4.667c-0.171 0-0.341-0.065-0.472-0.195-0.257-0.257-0.257-0.683 0-0.943l3.333-3.333c0.26-0.257 0.685-0.257 0.943 0 0.26 0.26 0.26 0.685 0 0.943l-3.333 3.333c-0.129 0.129-0.3 0.195-0.471 0.195zM20.547 4.667c-0.367 0-0.667-0.3-0.667-0.667v-2.667h-2.667c-0.367 0-0.667-0.3-0.667-0.667s0.3-0.667 0.667-0.667h3.333c0.367 0 0.667 0.3 0.667 0.667v3.333c0 0.367-0.299 0.667-0.667 0.667zM21.675 32h-7.533c-3.163 0-5.401-4.881-7.372-9.191-0.751-1.635-1.455-3.175-2.044-4.005-0.861-1.211-0.805-2.716 0.139-3.659 0.989-0.989 2.779-1.028 3.744-0.063l1.947 1.961v-10.956c0-1.409 1.221-2.6 2.667-2.6 1.472 0 2.667 1.153 2.667 2.572v5.773c0.392-0.219 0.849-0.344 1.333-0.344 1.148 0 2.155 0.751 2.521 1.765 0.423-0.273 0.932-0.432 1.479-0.432 1.148 0 2.155 0.751 2.521 1.765 0.423-0.273 0.932-0.432 1.479-0.432 1.445 0 2.667 1.193 2.667 2.599v7.213c0 5.591-5.721 7.891-5.967 7.985-0.083 0.031-0.165 0.047-0.247 0.047zM6.792 15.688c-0.372 0-0.735 0.145-0.989 0.405-0.552 0.552-0.383 1.393 0.009 1.943 0.66 0.932 1.361 2.46 2.169 4.221 1.627 3.549 3.855 8.413 6.16 8.413h7.4c0.739-0.325 5.009-2.408 5.009-6.695v-7.213c0-0.688-0.611-1.268-1.333-1.268s-1.333 0.571-1.333 1.24c0 0.367-0.3 0.667-0.667 0.667s-0.667-0.3-0.667-0.667v-1.308c0-0.688-0.611-1.268-1.333-1.268s-1.333 0.571-1.333 1.24c0 0.367-0.3 0.667-0.667 0.667s-0.667-0.3-0.667-0.667v-1.305c0-0.688-0.611-1.268-1.333-1.268s-1.333 0.571-1.333 1.24c0 0.367-0.3 0.667-0.667 0.667s-0.667-0.3-0.667-0.667v-8c0-0.669-0.611-1.24-1.333-1.24s-1.333 0.584-1.333 1.268v12.573c0 0.271-0.163 0.513-0.415 0.617-0.251 0.101-0.535 0.044-0.727-0.144l-3.084-3.104c-0.221-0.229-0.528-0.348-0.867-0.348z"></path>
</svg></span></span>
</div>
</div>
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeInUp fadeInUp vc_custom_1721038282945">
<div class="wpb_wrapper">
<h4 class="c-expertise-item-title">Design & User Experience</h4>
</div>
</div>
<p style="color: rgba(10,10,10,0.65);text-align: center" class="vc_custom_heading wpb_animate_when_almost_visible wpb_fadeInUp fadeInUp">Creating intuitive and visually engaging UI/UX designs that elevate user experiences and drive customer satisfaction.</p>
</div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col child_column centered-text has-animation padding-3-percent inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="100">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar_icon_wrap " data-style="default" data-padding="0px" data-color="accent-color">
<div class="nectar_icon">
<a href="#"></a><span class="im-icon-wrap" data-color="accent-color" style="height: 50px; width: 50px;"><span><svg role="presentation" version="1.1" xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewbox="0 0 32 32">
<path d="M31.333 29.333h-30.667c-0.368 0-0.667-0.3-0.667-0.667v-25.333c0-0.367 0.299-0.667 0.667-0.667h30.667c0.367 0 0.667 0.3 0.667 0.667v25.333c0 0.367-0.3 0.667-0.667 0.667zM1.333 28h29.333v-24h-29.333v24zM30.667 9.333h-29.333c-0.368 0-0.667-0.3-0.667-0.667s0.299-0.667 0.667-0.667h29.333c0.367 0 0.667 0.3 0.667 0.667s-0.3 0.667-0.667 0.667zM23.584 26.167c-2.575 0-4.667-2.093-4.667-4.667s2.092-4.667 4.667-4.667c2.573 0 4.667 2.093 4.667 4.667s-2.095 4.667-4.667 4.667zM23.584 18.167c-1.839 0-3.333 1.495-3.333 3.333s1.495 3.333 3.333 3.333c1.836 0 3.333-1.495 3.333-3.333s-1.496-3.333-3.333-3.333zM24 23.391c-0.161 0-0.323-0.057-0.451-0.176l-1.333-1.224c-0.272-0.249-0.289-0.671-0.040-0.941 0.251-0.271 0.672-0.287 0.941-0.039l0.868 0.8 4.881-4.783c0.263-0.253 0.685-0.251 0.943 0.011 0.257 0.259 0.253 0.689-0.008 0.943l-5.333 5.224c-0.131 0.121-0.3 0.185-0.468 0.185zM4 6c0 0.368-0.299 0.667-0.667 0.667s-0.667-0.299-0.667-0.667c0-0.368 0.299-0.667 0.667-0.667s0.667 0.299 0.667 0.667zM6.667 6c0 0.368-0.299 0.667-0.667 0.667s-0.667-0.299-0.667-0.667c0-0.368 0.299-0.667 0.667-0.667s0.667 0.299 0.667 0.667zM9.333 6c0 0.368-0.299 0.667-0.667 0.667s-0.667-0.299-0.667-0.667c0-0.368 0.299-0.667 0.667-0.667s0.667 0.299 0.667 0.667z"></path>
</svg></span></span>
</div>
</div>
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeInUp fadeInUp vc_custom_1721038299759">
<div class="wpb_wrapper">
<h4 class="c-expertise-item-title">Product Strategy</h4>
</div>
</div>
<p style="color: rgba(10,10,10,0.65);text-align: center" class="vc_custom_heading wpb_animate_when_almost_visible wpb_fadeInUp fadeInUp">Unleashing the full potential of your business through expert guidance and strategic implementation of cutting-edge technologies.</p>
</div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col child_column centered-text has-animation padding-3-percent inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="200">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar_icon_wrap " data-style="default" data-padding="0px" data-color="accent-color">
<div class="nectar_icon">
<a href="#"></a><span class="im-icon-wrap" data-color="accent-color" style="height: 50px; width: 50px;"><span><svg role="presentation" version="1.1" xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewbox="0 0 37 32">
<path d="M34.667 29.333h-32c-1.471 0-2.667-1.195-2.667-2.667v-24c0-1.472 1.196-2.667 2.667-2.667h32c1.472 0 2.667 1.195 2.667 2.667v24c0 1.472-1.195 2.667-2.667 2.667zM2.667 1.333c-0.735 0-1.333 0.599-1.333 1.333v24c0 0.735 0.599 1.333 1.333 1.333h32c0.735 0 1.333-0.599 1.333-1.333v-24c0-0.735-0.599-1.333-1.333-1.333h-32zM24.667 32h-12c-0.368 0-0.667-0.3-0.667-0.667v-1.333c0-1.103 0.897-2 2-2h9.333c1.103 0 2 0.897 2 2v1.333c0 0.367-0.3 0.667-0.667 0.667zM13.333 30.667h10.667v-0.667c0-0.367-0.3-0.667-0.667-0.667h-9.333c-0.368 0-0.667 0.3-0.667 0.667v0.667zM34 24h-30.667c-0.368 0-0.667-0.3-0.667-0.667v-20c0-0.368 0.299-0.667 0.667-0.667h30.667c0.367 0 0.667 0.299 0.667 0.667v20c0 0.367-0.3 0.667-0.667 0.667zM4 22.667h29.333v-18.667h-29.333v18.667zM5.333 26.667h-1.333c-0.368 0-0.667-0.3-0.667-0.667s0.299-0.667 0.667-0.667h1.333c0.368 0 0.667 0.3 0.667 0.667s-0.299 0.667-0.667 0.667zM28 26.667h-1.333c-0.367 0-0.667-0.3-0.667-0.667s0.3-0.667 0.667-0.667h1.333c0.367 0 0.667 0.3 0.667 0.667s-0.3 0.667-0.667 0.667zM33.333 26.667h-1.333c-0.367 0-0.667-0.3-0.667-0.667s0.3-0.667 0.667-0.667h1.333c0.367 0 0.667 0.3 0.667 0.667s-0.3 0.667-0.667 0.667z"></path>
</svg></span></span>
</div>
</div>
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeInUp fadeInUp vc_custom_1721038306114">
<div class="wpb_wrapper">
<h4 class="c-expertise-item-title">Web & Mobile Development</h4>
</div>
</div>
<p style="color: rgba(10,10,10,0.65);text-align: center" class="vc_custom_heading wpb_animate_when_almost_visible wpb_fadeInUp fadeInUp">Encompasses building and maintaining websites, including front-end (user interface) and back-end (server-side) development.</p>
</div>
</div>
</div>
</div>
</div>
<div id="fws_66fd5018c40ba" data-midnight="" data-column-margin="default" class="wpb_row vc_row-fluid vc_row inner_row" style="padding-top: 20px;">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 left">
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col child_column centered-text has-animation padding-3-percent inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar_icon_wrap " data-style="default" data-padding="0px" data-color="accent-color">
<div class="nectar_icon">
<a href="#"></a><span class="im-icon-wrap" data-color="accent-color" style="height: 50px; width: 50px;"><span><svg role="presentation" version="1.1" xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewbox="0 0 32 32">
<path d="M31.333 32h-30.667c-0.215 0-0.416-0.103-0.541-0.277-0.125-0.173-0.159-0.397-0.089-0.6l6.667-20c0.089-0.272 0.344-0.456 0.631-0.456h17.333c0.287 0 0.541 0.184 0.633 0.456l6.667 20c0.068 0.203 0.033 0.427-0.089 0.6-0.127 0.175-0.329 0.277-0.544 0.277zM1.592 30.667h28.816l-6.22-18.667h-16.375l-6.221 18.667zM22 15.333c-0.367 0-0.667-0.3-0.667-0.667v-9.333c0-2.763-2.344-4-4.667-4h-1.333c-2.323 0-4.667 1.237-4.667 4v9.333c0 0.367-0.299 0.667-0.667 0.667-0.367 0-0.667-0.3-0.667-0.667v-9.333c0-3.14 2.469-5.333 6-5.333h1.333c3.532 0 6 2.193 6 5.333v9.333c0 0.367-0.3 0.667-0.667 0.667z"></path>
</svg></span></span>
</div>
</div>
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeInUp fadeInUp vc_custom_1721587910944">
<div class="wpb_wrapper">
<h4 class="c-expertise-item-title">Ecommerce Development</h4>
</div>
</div>
<p style="color: rgba(10,10,10,0.65);text-align: center" class="vc_custom_heading wpb_animate_when_almost_visible wpb_fadeInUp fadeInUp">Building seamless and scalable eCommerce platforms that enhance user experience and drive sales.</p>
</div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col child_column centered-text has-animation padding-3-percent inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="100">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar_icon_wrap " data-style="default" data-padding="0px" data-color="accent-color">
<div class="nectar_icon">
<a href="#"></a><span class="im-icon-wrap" data-color="accent-color" style="height: 50px; width: 50px;"><span><svg role="presentation" version="1.1" xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewbox="0 0 32 32">
<path d="M19.832 31.835c-0.592 0-1.168-0.212-1.62-0.595-0.559-0.476-0.879-1.169-0.879-1.904v-5.336c0-0.735-0.599-1.333-1.333-1.333s-1.333 0.599-1.333 1.333v5.297c0 0.745-0.327 1.448-0.896 1.932-0.564 0.476-1.315 0.689-2.052 0.565-6.936-1.143-11.781-7.639-11.781-15.795 0-8.183 4.865-14.681 11.832-15.803 0.727-0.117 1.467 0.093 2.019 0.564 0.559 0.476 0.879 1.168 0.879 1.903v5.336c0 0.735 0.599 1.333 1.333 1.333s1.333-0.599 1.333-1.333v-5.297c0-0.745 0.327-1.448 0.896-1.932 0.563-0.475 1.309-0.689 2.051-0.568 6.937 1.144 11.783 7.64 11.783 15.797 0 8.183-4.864 14.681-11.832 15.804-0.133 0.021-0.264 0.031-0.399 0.031zM16 21.333c1.472 0 2.667 1.197 2.667 2.667v5.337c0 0.344 0.148 0.665 0.409 0.887 0.257 0.22 0.604 0.317 0.943 0.263 6.307-1.019 10.711-6.973 10.711-14.488 0-7.489-4.387-13.444-10.667-14.48-0.344-0.056-0.703 0.044-0.972 0.271-0.271 0.229-0.425 0.561-0.425 0.915v5.296c0 1.471-1.196 2.667-2.667 2.667s-2.667-1.196-2.667-2.667v-5.335c0-0.341-0.149-0.667-0.411-0.888-0.257-0.219-0.6-0.317-0.941-0.261-6.307 1.015-10.712 6.972-10.712 14.487 0 7.489 4.387 13.444 10.667 14.479 0.353 0.057 0.704-0.043 0.972-0.269 0.269-0.228 0.424-0.561 0.424-0.916v-5.296c0.003-1.469 1.199-2.667 2.669-2.667zM8.667 10.583c-0.008 0-0.015 0-0.023 0-0.368-0.013-0.656-0.321-0.644-0.689 0.103-3.099-0.488-5.408-1.663-6.503-0.269-0.251-0.284-0.672-0.033-0.943 0.251-0.269 0.675-0.284 0.943-0.033 1.873 1.747 2.168 5.055 2.085 7.524-0.011 0.363-0.307 0.644-0.665 0.644zM6.593 16.341c-0.907 0-1.759-0.083-2.239-0.336-0.693-0.365-0.567-1.377-0.339-3.216 0.093-0.751 0.244-1.971 0.167-2.385-0.147-0.052-0.376-0.024-0.828 0.049-0.464 0.075-1.039 0.168-1.771 0.128-0.368-0.019-0.649-0.333-0.631-0.701 0.020-0.368 0.332-0.648 0.701-0.629 0.591 0.032 1.065-0.045 1.487-0.113 0.647-0.104 1.315-0.212 1.924 0.245 0.625 0.469 0.524 1.547 0.273 3.569-0.079 0.629-0.191 1.536-0.169 1.944 0.792 0.209 2.929 0.101 4.655-0.14 0.364-0.052 0.701 0.203 0.752 0.568s-0.203 0.7-0.567 0.752c-0.445 0.063-1.996 0.265-3.416 0.265zM9.677 7.997c-0.371 0-0.777-0.012-1.168-0.051-0.367-0.035-0.636-0.36-0.6-0.727 0.035-0.364 0.351-0.633 0.727-0.6 1.025 0.097 2.244 0 2.255 0 0.36-0.031 0.689 0.243 0.719 0.611 0.029 0.367-0.244 0.688-0.611 0.719-0.036 0.001-0.609 0.048-1.321 0.048zM6.452 21.671c-0.936 0-1.984-0.087-3.015-0.172-0.823-0.068-1.611-0.135-2.257-0.144-0.368-0.005-0.663-0.307-0.657-0.675 0.005-0.369 0.273-0.661 0.676-0.659 0.673 0.011 1.493 0.079 2.348 0.148 1.747 0.145 3.917 0.327 4.725-0.079 1.383-0.693 4.956-3.948 5.060-4.769 0-0.368 0.299-0.661 0.667-0.661s0.667 0.304 0.667 0.672c0 1.677-4.66 5.381-5.796 5.951-0.583 0.293-1.437 0.388-2.417 0.388zM5.124 28.375c-0.183 0-0.364-0.076-0.496-0.221-0.247-0.276-0.223-0.695 0.051-0.943 1.633-1.464 3.868-3.211 5.237-3.211 0.368 0 0.667 0.299 0.667 0.667 0 0.367-0.299 0.667-0.667 0.667-0.528 0-1.985 0.751-4.347 2.869-0.127 0.115-0.287 0.172-0.445 0.172zM4.667 20.667c-0.368 0-0.667-0.3-0.667-0.667v-1.333c0-0.367 0.299-0.667 0.667-0.667s0.667 0.3 0.667 0.667v1.333c0 0.367-0.299 0.667-0.667 0.667zM15.249 20c-1.287 0-2.835-1.091-3.477-1.828-0.241-0.277-0.212-0.697 0.065-0.939 0.277-0.244 0.699-0.215 0.941 0.064 0.485 0.557 1.689 1.369 2.471 1.369 0.368 0 0.667 0.299 0.667 0.667 0 0.367-0.297 0.667-0.667 0.667zM25.208 29.764c-0.163 0-0.327-0.059-0.456-0.179-1.872-1.745-2.167-5.055-2.084-7.524 0.012-0.368 0.321-0.651 0.689-0.644 0.367 0.013 0.655 0.321 0.643 0.689-0.103 3.099 0.488 5.409 1.663 6.503 0.269 0.252 0.284 0.675 0.032 0.943-0.131 0.141-0.308 0.212-0.487 0.212zM28.011 22.953c-0.367 0-0.732-0.079-1.077-0.336-0.627-0.469-0.525-1.547-0.273-3.569 0.080-0.629 0.192-1.537 0.169-1.944-0.789-0.208-2.929-0.103-4.655 0.14-0.367 0.052-0.7-0.203-0.752-0.568-0.052-0.363 0.203-0.701 0.568-0.752 0.729-0.103 4.424-0.581 5.653 0.071 0.695 0.368 0.568 1.38 0.339 3.219-0.092 0.751-0.243 1.971-0.167 2.385 0.148 0.052 0.38 0.024 0.828-0.052 0.465-0.075 1.044-0.167 1.771-0.128 0.368 0.021 0.649 0.333 0.632 0.7-0.020 0.367-0.343 0.649-0.701 0.631-0.588-0.031-1.065 0.045-1.487 0.113-0.28 0.047-0.567 0.091-0.848 0.091zM23.427 25.384c-0.021 0-0.041 0-0.065-0.003-1.021-0.097-2.24 0-2.251 0-0.376 0.032-0.689-0.244-0.72-0.609s0.243-0.689 0.609-0.72c0.055-0.003 1.349-0.111 2.492 0 0.367 0.033 0.636 0.361 0.599 0.728-0.033 0.348-0.323 0.604-0.664 0.604zM18 17.339c-0.367 0-0.667-0.305-0.667-0.672 0-1.679 4.66-5.381 5.797-5.949 1.14-0.572 3.324-0.389 5.44-0.215 0.82 0.068 1.605 0.135 2.251 0.144 0.368 0.005 0.663 0.309 0.655 0.677-0.004 0.368-0.305 0.649-0.676 0.656-0.669-0.009-1.487-0.077-2.339-0.148-1.749-0.145-3.928-0.325-4.735 0.079-1.384 0.693-4.957 3.949-5.060 4.769 0 0.365-0.3 0.659-0.667 0.659zM22.084 8c-0.368 0-0.667-0.299-0.667-0.667s0.299-0.667 0.667-0.667c0.528 0 1.984-0.752 4.347-2.871 0.273-0.247 0.695-0.224 0.94 0.051 0.248 0.275 0.224 0.696-0.049 0.941-1.633 1.465-3.869 3.212-5.237 3.212zM27.333 14c-0.367 0-0.667-0.299-0.667-0.667v-1.333c0-0.368 0.3-0.667 0.667-0.667s0.667 0.299 0.667 0.667v1.333c0 0.368-0.3 0.667-0.667 0.667zM19.724 14.933c-0.188 0-0.372-0.079-0.503-0.229-0.485-0.559-1.691-1.371-2.471-1.371-0.367 0-0.667-0.299-0.667-0.667s0.299-0.667 0.667-0.667c1.289 0 2.836 1.092 3.477 1.831 0.241 0.279 0.212 0.699-0.067 0.94-0.128 0.109-0.283 0.163-0.437 0.163z"></path>
</svg></span></span>
</div>
</div>
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeInUp fadeInUp vc_custom_1721038326742">
<div class="wpb_wrapper">
<h4 class="c-expertise-item-title">Artificial Intelligence</h4>
</div>
</div>
<p style="color: rgba(10,10,10,0.65);text-align: center" class="vc_custom_heading wpb_animate_when_almost_visible wpb_fadeInUp fadeInUp">Harness the power of Generative AI to revolutionize your business processes and create innovative solutions.</p>
</div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col child_column centered-text has-animation padding-3-percent inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="200">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar_icon_wrap " data-style="default" data-padding="0px" data-color="accent-color">
<div class="nectar_icon">
<a href="#"></a><span class="im-icon-wrap" data-color="accent-color" style="height: 50px; width: 50px;"><span><svg role="presentation" version="1.1" xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewbox="0 0 32 32">
<path d="M31.333 29.333h-30.667c-0.368 0-0.667-0.3-0.667-0.667v-25.333c0-0.367 0.299-0.667 0.667-0.667h30.667c0.367 0 0.667 0.3 0.667 0.667v25.333c0 0.367-0.3 0.667-0.667 0.667zM1.333 28h29.333v-24h-29.333v24zM30.667 9.333h-29.333c-0.368 0-0.667-0.3-0.667-0.667s0.299-0.667 0.667-0.667h29.333c0.367 0 0.667 0.3 0.667 0.667s-0.3 0.667-0.667 0.667zM19.333 17.333h-5.333c-0.368 0-0.667-0.3-0.667-0.667v-4c0-0.367 0.299-0.667 0.667-0.667h5.333c0.367 0 0.667 0.3 0.667 0.667v4c0 0.367-0.3 0.667-0.667 0.667zM14.667 16h4v-2.667h-4v2.667zM14 26.667h-5.333c-0.368 0-0.667-0.3-0.667-0.667v-4c0-0.367 0.299-0.667 0.667-0.667h5.333c0.368 0 0.667 0.3 0.667 0.667v4c0 0.367-0.299 0.667-0.667 0.667zM9.333 25.333h4v-2.667h-4v2.667zM24.667 26.667h-5.333c-0.367 0-0.667-0.3-0.667-0.667v-4c0-0.367 0.3-0.667 0.667-0.667h5.333c0.367 0 0.667 0.3 0.667 0.667v4c0 0.367-0.3 0.667-0.667 0.667zM20 25.333h4v-2.667h-4v2.667zM22 22c-0.367 0-0.667-0.3-0.667-0.667v-1.333h-9.333v1.333c0 0.367-0.299 0.667-0.667 0.667s-0.667-0.3-0.667-0.667v-2c0-0.367 0.299-0.667 0.667-0.667h10.667c0.367 0 0.667 0.3 0.667 0.667v2c0 0.367-0.3 0.667-0.667 0.667zM16.667 19.333c-0.368 0-0.667-0.3-0.667-0.667v-1.333c0-0.367 0.299-0.667 0.667-0.667 0.367 0 0.667 0.3 0.667 0.667v1.333c0 0.367-0.3 0.667-0.667 0.667zM4 6c0 0.368-0.299 0.667-0.667 0.667s-0.667-0.299-0.667-0.667c0-0.368 0.299-0.667 0.667-0.667s0.667 0.299 0.667 0.667zM6.667 6c0 0.368-0.299 0.667-0.667 0.667s-0.667-0.299-0.667-0.667c0-0.368 0.299-0.667 0.667-0.667s0.667 0.299 0.667 0.667zM9.333 6c0 0.368-0.299 0.667-0.667 0.667s-0.667-0.299-0.667-0.667c0-0.368 0.299-0.667 0.667-0.667s0.667 0.299 0.667 0.667z"></path>
</svg></span></span>
</div>
</div>
<div class="wpb_text_column wpb_content_element wpb_animate_when_almost_visible wpb_fadeInUp fadeInUp vc_custom_1721038332742">
<div class="wpb_wrapper">
<h4 class="c-expertise-item-title">SAAS Development</h4>
</div>
</div>
<p style="color: rgba(10,10,10,0.65);text-align: center" class="vc_custom_heading wpb_animate_when_almost_visible wpb_fadeInUp fadeInUp">Far far away, behind the word mountains, far from the countries Vokalia and texts</p>
</div>
</div>
</div>
</div>
</div>
<div id="fws_66fd5018c6ffb" data-midnight="" data-column-margin="default" class="wpb_row vc_row-fluid vc_row inner_row">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col child_column centered-text has-animation no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="grow-in" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<a class="nectar-button jumbo regular accent-color has-icon regular-button" role="button" style="margin-top: 50px; background-color: #3452ff;" target="_blank" href="/request-a-free-quote/" data-color-override="#3452ff" data-hover-color-override="false" data-hover-text-color-override="#fff"><span>Request a Quote</span><i class="fa fa-rocket"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="fws_66fd5018c9240" data-column-margin="default" data-midnight="light" data-top-percent="2%" data-bottom-percent="2%" class="wpb_row vc_row-fluid vc_row full-width-section" style="padding-top: calc(100vw * 0.02); padding-bottom: calc(100vw * 0.02);">
<div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="true">
<div class="inner-wrap row-bg-layer using-image"><div class="row-bg viewport-desktop using-image using-bg-color" style="background-image: url(/wp-content/uploads/2019/09/blake-wisz-q3o_8MteFM0-unsplash.jpg); background-position: left top; background-repeat: no-repeat; background-color: rgba(52,82,255,0.97);"></div></div>
<div class="row-bg-overlay row-bg-layer" style="background-color:#3452ff; opacity: 0.95;"></div>
</div>
<div class="row_col_wrap_12 col span_12 light left">
<div class="vc_col-sm-1 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
</div>
</div>
</div>
<div class="vc_col-sm-10 wpb_column column_container vc_column_container col centered-text no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div id="fws_66fd5018c9c49" data-midnight="" data-column-margin="default" class="wpb_row vc_row-fluid vc_row inner_row">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 left">
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col child_column padding-2-percent inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar-milestone " data-symbol="+" data-symbol-alignment="default" data-symbol-pos="after" data-symbol-size="62" data-animation-delay="" data-ms-align="default"> <div class="number default" data-number-size="76"><h2><span>500</span></h2></div> <div class="subject" style="padding: 2%;">Projects Delivered</div> </div>
</div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col child_column padding-2-percent inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar-milestone " data-symbol="+" data-symbol-alignment="default" data-symbol-pos="after" data-symbol-size="62" data-animation-delay="" data-ms-align="default"> <div class="number default" data-number-size="76"><h2><span>50</span></h2></div> <div class="subject" style="padding: 2%;">Hours Per Week Worked</div> </div>
</div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col child_column padding-2-percent inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar-milestone " data-symbol="+" data-symbol-alignment="default" data-symbol-pos="after" data-symbol-size="62" data-animation-delay="" data-ms-align="default"> <div class="number default" data-number-size="76"><h2><span>150</span></h2></div> <div class="subject" style="padding: 2%;">Trusted by Silicone Valley based Startups</div> </div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_col-sm-1 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
</div>
</div>
</div>
</div>
</div>
<div id="work" data-column-margin="default" data-midnight="light" data-top-percent="8%" data-bottom-percent="8%" class="wpb_row vc_row-fluid vc_row full-width-content vc_row-o-equal-height vc_row-flex vc_row-o-content-top top_padding_tablet_20pct bottom_padding_tablet_20pct" style="padding-top: calc(100vw * 0.08); padding-bottom: calc(100vw * 0.08);">
<div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="false"><div class="inner-wrap row-bg-layer"><div class="row-bg viewport-desktop using-bg-color" style="background-color: #131418;"></div></div></div>
<div class="row_col_wrap_12 col span_12 light left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div id="fws_66fd5018cc7d3" data-midnight="" data-column-margin="none" class="wpb_row vc_row-fluid vc_row inner_row right_padding_24pct left_padding_24pct bottom_padding_tablet_25px right_padding_phone_12pct left_padding_phone_12pct" style="padding-bottom: 35px;">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col child_column centered-text has-animation no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar-split-heading " data-align="default" data-m-align="inherit" data-text-effect="default" data-animation-type="line-reveal-by-space" data-animation-delay="0" data-animation-offset="" data-m-rm-animation="" data-stagger="" data-custom-font-size="false"><h2 style="max-width: 435px;">Our Recent Work</h2></div>
<div class="wpb_text_column wpb_content_element " style="max-width: 500px; display: inline-block;">
<div class="wpb_wrapper">
<p class="large-text opacity-text hero-description pad-on-right">We have a proven track record of delivering success for businesses of all sizes and across various industries. Our team thrives on challenges, and our adaptable skillset can be tailored to propel your business forward.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="nectar-post-grid-wrap nectar-browser-window-style text-color-light spacing-25px" data-el-settings='{"post_type":"portfolio","pagination":"load-more","image_size":"portfolio-thumb_large","parallax_scrolling":"","aspect_ratio_image_size":"yes","category_position":"default","category_display":"default","display_categories":"yes","display_excerpt":"0","excerpt_length":"20","display_date":"0","display_estimated_reading_time":"0","display_author":"0","author_functionality":"default","author_position":"default","color_overlay":"","color_overlay_opacity":"","color_overlay_hover_opacity":"","card_bg_color":"#1f2125","grid_style":"content_under_image","hover_effect":"none","post_title_overlay":"","heading_tag":"h4","enable_gallery_lightbox":"0","category_style":"underline","overlay_secondary_project_image":"","vertical_list_hover_effect":"none","vertical_list_read_more":"","read_more_button":"0","animation":"fade-in-from-bottom"}' data-style="content_under_image" data-query='{"post_type":"portfolio","posts_per_page":"6","order":"DESC","orderby":"date","offset":"0","cpt_name":"post","custom_query_tax":"","ignore_sticky_posts":""}' data-load-more-color="accent-color" data-load-more-text="Load More">
<div class="nectar-post-grid-filters" data-active-color="accent-color" data-align="default" data-animation="fade-in-from-bottom" data-sortable="yes">
<h4>Filter</h4>
<div>
<a href="#" onclick="event.preventDefault();" class="active all-filter" data-filter="-1" data-total-count="14">All</a><a href="#" onclick="event.preventDefault();" data-filter="branding" data-total-count="5">Branding</a><a href="#" onclick="event.preventDefault();" data-filter="ecommerce-development" data-total-count="3">Ecommerce Development</a><a href="#" onclick="event.preventDefault();" data-filter="mobile-web-design" data-total-count="9">Mobile & Web Design</a><a href="#" onclick="event.preventDefault();" data-filter="software-development" data-total-count="2">Software Development</a><a href="#" onclick="event.preventDefault();" data-filter="ui-ux-designing" data-total-count="5">UI/UX Designing</a><a href="#" onclick="event.preventDefault();" data-filter="web-development" data-total-count="7">Web development</a>
</div>
</div>
<div class="nectar-post-grid card_hover_color_25272b category-position-before-title " data-indicator="yes" data-indicator-style="default" data-indicator-text-color="#fff" data-indicator-color="#3452ff" data-indicator-text="View" data-columns="3" data-hover-effect="none" data-text-style="default" data-border-radius="10px" data-grid-item-height="30vh" data-grid-spacing="25px" data-text-layout="top_left" data-text-color="light" data-text-hover-color="light" data-shadow-hover="" data-animation="fade-in-from-bottom" data-animation-stagger="90" data-cat-click="static" data-lock-aspect="yes" data-text-align="center" data-card="yes" style="--post-grid-border-radius:10px;">
<div class="nectar-post-grid-item" style="background-color: #1f2125;" data-post-id="6169" data-has-img="true"> <div class="inner">
<div class="nectar-post-grid-item-bg-wrap"><div class="nectar-post-grid-item-bg-wrap-inner">
<a class="bg-wrap-link" aria-label="Kirrin Finch" href="/portfolio/kirrin-finch/"></a><div class="nectar-post-grid-item-bg"><img fetchpriority="high" decoding="async" class="nectar-lazy skip-lazy" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%201955%201213'%2F%3E" alt="" height="1213" width="1955" data-nectar-img-src="/wp-content/uploads/2024/06/f91129200953265.666b1176e911b-1-e1719331754142-900x604.png" data-nectar-img-srcset="/wp-content/uploads/2024/06/f91129200953265.666b1176e911b-1-e1719331754142-900x604.png 900w, /wp-content/uploads/2024/06/f91129200953265.666b1176e911b-1-e1719331754142-600x403.png 600w, /wp-content/uploads/2024/06/f91129200953265.666b1176e911b-1-e1719331754142-400x269.png 400w" sizes="(max-width: 900px) 100vw, 900px"></div>
</div></div>
<div class="content">
<a class="nectar-post-grid-link" href="/portfolio/kirrin-finch/" aria-label="Kirrin Finch"></a><span class="meta-category"><a class="branding" href="/project-type/branding/">Branding</a><a class="ecommerce-development" href="/project-type/ecommerce-development/">Ecommerce Development</a><a class="mobile-web-design" href="/project-type/mobile-web-design/">Mobile & Web Design</a><a class="ui-ux-designing" href="/project-type/ui-ux-designing/">UI/UX Designing</a></span><div class="item-main"><h4 class="post-heading"><a href="/portfolio/kirrin-finch/"><span>Kirrin Finch</span></a></h4></div>
</div>
</div>
</div>
<div class="nectar-post-grid-item" style="background-color: #1f2125;" data-post-id="6163" data-has-img="true"> <div class="inner">
<div class="nectar-post-grid-item-bg-wrap"><div class="nectar-post-grid-item-bg-wrap-inner">
<a class="bg-wrap-link" aria-label="GRIN" href="/portfolio/grin/"></a><div class="nectar-post-grid-item-bg"><img decoding="async" class="nectar-lazy skip-lazy" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%202669%201690'%2F%3E" alt="" height="1690" width="2669" data-nectar-img-src="/wp-content/uploads/2024/06/1fc4ae199946323.6659deb6817eb-e1719331401563-900x604.png" data-nectar-img-srcset="/wp-content/uploads/2024/06/1fc4ae199946323.6659deb6817eb-e1719331401563-900x604.png 900w, /wp-content/uploads/2024/06/1fc4ae199946323.6659deb6817eb-e1719331401563-600x403.png 600w, /wp-content/uploads/2024/06/1fc4ae199946323.6659deb6817eb-e1719331401563-400x269.png 400w" sizes="(max-width: 900px) 100vw, 900px"></div>
</div></div>
<div class="content">
<a class="nectar-post-grid-link" href="/portfolio/grin/" aria-label="GRIN"></a><span class="meta-category"><a class="branding" href="/project-type/branding/">Branding</a></span><div class="item-main"><h4 class="post-heading"><a href="/portfolio/grin/"><span>GRIN</span></a></h4></div>
</div>
</div>
</div>
<div class="nectar-post-grid-item" style="background-color: #1f2125;" data-post-id="6158" data-has-img="true"> <div class="inner">
<div class="nectar-post-grid-item-bg-wrap"><div class="nectar-post-grid-item-bg-wrap-inner">
<a class="bg-wrap-link" aria-label="Mortar Board" href="/portfolio/mortar-board/"></a><div class="nectar-post-grid-item-bg"><img decoding="async" class="nectar-lazy skip-lazy" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%201600%201000'%2F%3E" alt="" height="1000" width="1600" data-nectar-img-src="/wp-content/uploads/2024/06/Mortar-Board_New-Website-Strategy_Project-Page-3-900x604.jpg" data-nectar-img-srcset="/wp-content/uploads/2024/06/Mortar-Board_New-Website-Strategy_Project-Page-3-900x604.jpg 900w, /wp-content/uploads/2024/06/Mortar-Board_New-Website-Strategy_Project-Page-3-600x403.jpg 600w, /wp-content/uploads/2024/06/Mortar-Board_New-Website-Strategy_Project-Page-3-400x269.jpg 400w" sizes="(max-width: 900px) 100vw, 900px"></div>
</div></div>
<div class="content">
<a class="nectar-post-grid-link" href="/portfolio/mortar-board/" aria-label="Mortar Board"></a><span class="meta-category"><a class="branding" href="/project-type/branding/">Branding</a></span><div class="item-main"><h4 class="post-heading"><a href="/portfolio/mortar-board/"><span>Mortar Board</span></a></h4></div>
</div>
</div>
</div>
<div class="nectar-post-grid-item" style="background-color: #1f2125;" data-post-id="6116" data-has-img="true"> <div class="inner">
<div class="nectar-post-grid-item-bg-wrap"><div class="nectar-post-grid-item-bg-wrap-inner">
<a class="bg-wrap-link" aria-label="Hostwizard AI" href="/portfolio/hostwizard-ai/"></a><div class="nectar-post-grid-item-bg"><img loading="lazy" decoding="async" class="nectar-lazy skip-lazy" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%202871%202096'%2F%3E" alt="" height="2096" width="2871" data-nectar-img-src="/wp-content/uploads/2024/06/33d9e7199950699.6659ec995f460-1-1-e1719330808102-900x604.png" data-nectar-img-srcset="/wp-content/uploads/2024/06/33d9e7199950699.6659ec995f460-1-1-e1719330808102-900x604.png 900w, /wp-content/uploads/2024/06/33d9e7199950699.6659ec995f460-1-1-e1719330808102-600x403.png 600w, /wp-content/uploads/2024/06/33d9e7199950699.6659ec995f460-1-1-e1719330808102-400x269.png 400w" sizes="(max-width: 900px) 100vw, 900px"></div>
</div></div>
<div class="content">
<a class="nectar-post-grid-link" href="/portfolio/hostwizard-ai/" aria-label="Hostwizard AI"></a><span class="meta-category"><a class="branding" href="/project-type/branding/">Branding</a><a class="mobile-web-design" href="/project-type/mobile-web-design/">Mobile & Web Design</a><a class="software-development" href="/project-type/software-development/">Software Development</a><a class="ui-ux-designing" href="/project-type/ui-ux-designing/">UI/UX Designing</a><a class="web-development" href="/project-type/web-development/">Web development</a></span><div class="item-main"><h4 class="post-heading"><a href="/portfolio/hostwizard-ai/"><span>Hostwizard AI</span></a></h4></div>
</div>
</div>
</div>
<div class="nectar-post-grid-item" style="background-color: #1f2125;" data-post-id="6149" data-has-img="true"> <div class="inner">
<div class="nectar-post-grid-item-bg-wrap"><div class="nectar-post-grid-item-bg-wrap-inner">
<a class="bg-wrap-link" aria-label="Pride Rock" href="/portfolio/pride-rock/"></a><div class="nectar-post-grid-item-bg"><img loading="lazy" decoding="async" class="nectar-lazy skip-lazy" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%201920%201080'%2F%3E" alt="" height="1080" width="1920" data-nectar-img-src="/wp-content/uploads/2024/06/66188d711f4d79a6c7abff8d_pride-rock-consulting-brand-design-900x604.jpg" data-nectar-img-srcset="/wp-content/uploads/2024/06/66188d711f4d79a6c7abff8d_pride-rock-consulting-brand-design-900x604.jpg 900w, /wp-content/uploads/2024/06/66188d711f4d79a6c7abff8d_pride-rock-consulting-brand-design-600x403.jpg 600w, /wp-content/uploads/2024/06/66188d711f4d79a6c7abff8d_pride-rock-consulting-brand-design-400x269.jpg 400w" sizes="(max-width: 900px) 100vw, 900px"></div>
</div></div>
<div class="content">
<a class="nectar-post-grid-link" href="/portfolio/pride-rock/" aria-label="Pride Rock"></a><span class="meta-category"><a class="branding" href="/project-type/branding/">Branding</a></span><div class="item-main"><h4 class="post-heading"><a href="/portfolio/pride-rock/"><span>Pride Rock</span></a></h4></div>
</div>
</div>
</div>
<div class="nectar-post-grid-item" style="background-color: #1f2125;" data-post-id="6141" data-has-img="true"> <div class="inner">
<div class="nectar-post-grid-item-bg-wrap"><div class="nectar-post-grid-item-bg-wrap-inner">
<a class="bg-wrap-link" aria-label="Parkin.NYC" href="/portfolio/parkin-nyc/"></a><div class="nectar-post-grid-item-bg"><img loading="lazy" decoding="async" class="nectar-lazy skip-lazy" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%201920%201080'%2F%3E" alt="" height="1080" width="1920" data-nectar-img-src="/wp-content/uploads/2024/06/65e678df4ce6525e183ffd34_4-900x604.jpg" data-nectar-img-srcset="/wp-content/uploads/2024/06/65e678df4ce6525e183ffd34_4-900x604.jpg 900w, /wp-content/uploads/2024/06/65e678df4ce6525e183ffd34_4-600x403.jpg 600w, /wp-content/uploads/2024/06/65e678df4ce6525e183ffd34_4-400x269.jpg 400w" sizes="(max-width: 900px) 100vw, 900px"></div>
</div></div>
<div class="content">
<a class="nectar-post-grid-link" href="/portfolio/parkin-nyc/" aria-label="Parkin.NYC"></a><span class="meta-category"><a class="mobile-web-design" href="/project-type/mobile-web-design/">Mobile & Web Design</a><a class="software-development" href="/project-type/software-development/">Software Development</a><a class="ui-ux-designing" href="/project-type/ui-ux-designing/">UI/UX Designing</a></span><div class="item-main"><h4 class="post-heading"><a href="/portfolio/parkin-nyc/"><span>Parkin.NYC</span></a></h4></div>
</div>
</div>
</div>
</div>
</div>
<div id="fws_66fd5018e3dea" data-midnight="" data-column-margin="default" class="wpb_row vc_row-fluid vc_row inner_row">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col child_column centered-text has-animation no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="grow-in" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<a class="nectar-button jumbo regular accent-color has-icon regular-button" role="button" style="margin-top: 50px; background-color: #3452ff;" target="_blank" href="/request-a-free-quote/" data-color-override="#3452ff" data-hover-color-override="false" data-hover-text-color-override="#fff"><span>Request a Quote</span><i class="fa fa-rocket"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="reviews" data-column-margin="default" data-midnight="dark" data-top-percent="7%" data-bottom-percent="7%" class="wpb_row vc_row-fluid vc_row full-width-content vc_row-o-equal-height vc_row-flex vc_row-o-content-top" style="padding-top: calc(100vw * 0.07); padding-bottom: calc(100vw * 0.07);">
<div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="true">
<div class="inner-wrap row-bg-layer using-image"><div class="row-bg viewport-desktop using-image using-bg-color" style="background-image: url(/wp-content/uploads/2024/06/Mortar-Board_New-Website-Strategy_Project-Page-4.jpg); background-position: left top; background-repeat: no-repeat; background-color: #3452ff;"></div></div>
<div class="row-bg-overlay row-bg-layer" style="background-color:#3452ff; opacity: 0.95;"></div>
</div>
<div class="row_col_wrap_12 col span_12 dark left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="testimonial_slider span_12 col" data-color="" data-rating-color="extra-color-1" data-controls="default" data-add-border="true" data-autorotate="50000" data-style="multiple_visible_minimal"><div class="slides"><div class="flickity-viewport"> <div class="flickity-slider">
<blockquote> <div class="inner">
<div data-shadow="" class="image-icon ">“</div>
<span class="wrap"><span class="testimonial-name">Rachel Harris,</span><span class="title">Head of Operations, Logistics Leaders</span></span> <p><span class="open-quote">“</span>They took the time to understand our unique requirements and delivered a tailored solution that has revolutionized the way we operate. Their ongoing support and dedication to our success have made them an invaluable partner.<span class="close-quote">”</span> </p>
<span class="star-rating-wrap"> <span class="star-rating"><span style="width: 100%;" class="filled"></span></span></span>
</div>
</blockquote>
<blockquote> <div class="inner">
<div data-shadow="" class="image-icon ">“</div>
<span class="wrap"><span class="testimonial-name">Idu H.</span><span class="title">Founder, OGWEPA</span></span> <p><span class="open-quote">“</span>Working with Connecting Matrix has been a game-changer for our business. Their team took the time to understand our needs and delivered a custom software solution that streamlined our operations and boosted our efficiency. Their expertise and dedication to excellence are evident in every aspect of their work. Highly recommend!<span class="close-quote">”</span> </p>
<span class="star-rating-wrap"> <span class="star-rating"><span style="width: 100%;" class="filled"></span></span></span>
</div>
</blockquote>
<blockquote> <div class="inner">
<div data-shadow="" class="image-icon ">“</div>
<span class="wrap"><span class="testimonial-name">Sahar Hashemi</span><span class="title">Co founder, Coffee Republic</span></span> <p><span class="open-quote">“</span>Connecting Matrix transformed our outdated systems into a modern, agile infrastructure that has allowed us to scale our operations seamlessly. Their ability to integrate the latest technologies into our workflow has given us a competitive edge in the market. Their professionalism and technical prowess are unmatched.<span class="close-quote">”</span> </p>
<span class="star-rating-wrap"> <span class="star-rating"><span style="width: 100%;" class="filled"></span></span></span>
</div>
</blockquote>
<blockquote> <div class="inner">
<div data-shadow="" class="image-icon ">“</div>
<span class="wrap"><span class="testimonial-name">Dr. Tahir Mahmud</span><span class="title">Founder, LOC</span></span> <p><span class="open-quote">“</span>Their expertise in software development and their proactive approach ensured a smooth project execution. The end product was delivered on time and has significantly improved our operational efficiency. A big thank you to the entire team!<span class="close-quote">”</span> </p>
<span class="star-rating-wrap"> <span class="star-rating"><span style="width: 91%;" class="filled"></span></span></span>
</div>
</blockquote>
<blockquote> <div class="inner">
<div data-shadow="" class="image-icon ">“</div>
<span class="wrap"><span class="testimonial-name">Jake Smith</span><span class="title">Griffith University</span></span> <p><span class="open-quote">“</span>We had a complex project with tight deadlines, and Connecting Matrix rose to the challenge. Their skilled developers and project managers worked tirelessly to ensure we met our launch date without compromising on quality<span class="close-quote">”</span> </p>
<span class="star-rating-wrap"> <span class="star-rating"><span style="width: 100%;" class="filled"></span></span></span>
</div>
</blockquote>
</div>
</div></div></div>
</div>
</div>
</div>
</div>
</div>
<div id="fws_66fd5018e7951" data-column-margin="default" data-midnight="dark" data-top-percent="5%" data-bottom-percent="5%" class="wpb_row vc_row-fluid vc_row full-width-section" style="padding-top: calc(100vw * 0.05); padding-bottom: calc(100vw * 0.05);">
<div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="false"><div class="inner-wrap row-bg-layer"><div class="row-bg viewport-desktop"></div></div></div>
<div class="row_col_wrap_12 col span_12 dark left">
<div class="vc_col-sm-2 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div id="fws_66fd5018e7fa2" data-midnight="" data-column-margin="default" class="wpb_row vc_row-fluid vc_row inner_row" style="padding-bottom: 5%;">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col child_column no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="vc_col-sm-8 wpb_column column_container vc_column_container col centered-text no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar-split-heading " data-align="center" data-m-align="inherit" data-text-effect="default" data-animation-type="line-reveal-by-space" data-animation-delay="0" data-animation-offset="" data-m-rm-animation="" data-stagger="" data-custom-font-size="false"><h2 style="max-width: 500px;">We've Worked with Some of the Biggest Brands</h2></div>
<div class="clients no-carousel four-cols" data-he="greyscale_to_color" data-additional_padding="4">
<div class="no-link">
<img loading="lazy" decoding="async" src="/wp-content/uploads/2024/06/NHS_England_logo.svg_.png" alt="client" width="2560" height="1997"> </div>
<div class="no-link">
<img loading="lazy" decoding="async" src="/wp-content/uploads/2024/06/images.png" alt="client" width="264" height="100"> </div>
<div class="no-link">
<img loading="lazy" decoding="async" src="/wp-content/uploads/2024/06/KAUST-logo.jpg" alt="client" width="220" height="203"> </div>
<div class="no-link">
<img loading="lazy" decoding="async" src="/wp-content/uploads/2024/06/zoom-logo-E60A52864C-seeklogo.com_.png" alt="client" width="300" height="261"> </div>
<div class="no-link">
<img loading="lazy" decoding="async" src="/wp-content/uploads/2024/07/ogwepa-nigeria-1684608952-l.jpeg" alt="client" width="872" height="534"> </div>
<div class="no-link">
<img loading="lazy" decoding="async" src="/wp-content/uploads/2024/07/PatientLink-360-Logo-No-Shadow-01-1.png" alt="client" width="2571" height="1316"> </div>
<div class="no-link">
<img loading="lazy" decoding="async" src="/wp-content/uploads/2024/07/images-4.png" alt="client" width="209" height="209"> </div>
<div class="no-link">
<img loading="lazy" decoding="async" src="/wp-content/uploads/2024/07/images-5.png" alt="client" width="306" height="165"> </div>
<div class="no-link">
<img loading="lazy" decoding="async" src="/wp-content/uploads/2024/06/images-1-1.png" alt="client" width="159" height="56"> </div>
<div class="no-link">
<img loading="lazy" decoding="async" src="/wp-content/uploads/2024/06/89201769788203.png" alt="client" width="1000" height="1000"> </div>
<div class="no-link">
<img loading="lazy" decoding="async" src="/wp-content/uploads/2024/06/griffith-university-logo-B2554D5CFF-seeklogo.com_.png" alt="client" width="300" height="281"> </div>
<div class="no-link">
<img loading="lazy" decoding="async" src="/wp-content/uploads/2024/06/images.jpeg" alt="client" width="485" height="104"> </div>
</div>
</div>
</div>
</div>
<div class="vc_col-sm-2 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
</div>
</div>
</div>
</div>
</div>
<div id="fws_66fd5018ee857" data-column-margin="default" data-midnight="light" data-top-percent="4%" data-bottom-percent="4%" data-nectar-animated-gradient-settings="{"color_1":"#3452ff","color_2":"#3452ff","speed":"850","blending_mode":"linear"}" class="wpb_row vc_row-fluid vc_row full-width-section" style="padding-top: calc(100vw * 0.04); padding-bottom: calc(100vw * 0.04);">
<div class="row-bg-wrap has-animated-gradient" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="true">
<div class="inner-wrap row-bg-layer"><div class="row-bg viewport-desktop using-bg-color" style="background-color: #000000;"></div></div>
<div class="row-bg-overlay row-bg-layer" style="background-color:#0c0c0c; opacity: 0.3;"></div>
</div>
<div class="row_col_wrap_12 col span_12 light left">
<div class="vc_col-sm-2 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
</div>
</div>
</div>
<div class="vc_col-sm-8 wpb_column column_container vc_column_container col centered-text has-animation no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="zoom-out" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<h1 style="font-size: 30px;line-height: 40px;text-align: center;font-family:Playfair Display;font-weight:400;font-style:normal" class="vc_custom_heading vc_custom_1721039022226">Schedule a Free Consultation with One of Our Experts.</h1>
<h4 style="font-size: 18px;color: rgba(255,255,255,0.7);line-height: 28px;text-align: center;font-family:Roboto;font-weight:500;font-style:normal" class="vc_custom_heading vc_custom_1720542252020">Take the first step towards a brighter future and supercharge your business with cutting-edge technologies, expert guidance, and unparalleled support.</h4>
<a class="nectar-button large regular accent-color has-icon regular-button" role="button" style="margin-top: 40px; margin-right: 20px; margin-left: 20px;background-color: #3452ff;" target="_blank" href="/request-a-free-quote/" data-color-override="#3452ff" data-hover-color-override="false" data-hover-text-color-override="#fff"><span>Schedule Now</span><i class="icon-button-arrow"></i></a>
</div>
</div>
</div>
<div class="vc_col-sm-2 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
</div>
</div>
</div>
</div>
</div>
<div id="fws_66fd5018f0327" data-column-margin="default" data-midnight="dark" class="wpb_row vc_row-fluid vc_row has-global-section" style="padding-top: 0px; padding-bottom: 0px;">
<div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="false"><div class="inner-wrap row-bg-layer"><div class="row-bg viewport-desktop"></div></div></div>
<div class="row_col_wrap_12 col span_12 dark left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div id="fws_66fd5018f212a" data-column-margin="default" data-midnight="light" data-top-percent="10%" data-bottom-percent="10%" class="wpb_row vc_row-fluid vc_row full-width-content vc_row-o-equal-height vc_row-flex vc_row-o-content-top right_padding_6vw left_padding_6vw top_padding_tablet_20pct bottom_padding_tablet_10pct" style="padding-top: calc(100vw * 0.10); padding-bottom: calc(100vw * 0.10);">
<div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="false"><div class="inner-wrap row-bg-layer using-image"><div class="row-bg viewport-desktop using-image using-bg-color" style="background-image: url(/wp-content/uploads/2024/06/IMG-1.png); background-position: left top; background-repeat: no-repeat; background-color: #000000;"></div></div></div>
<div class="row_col_wrap_12 col span_12 light left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col no-extra-padding el_spacing_0px inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div id="fws_66fd5018f29a0" data-midnight="" data-column-margin="default" class="wpb_row vc_row-fluid vc_row inner_row vc_row-o-equal-height vc_row-flex vc_row-o-content-middle" style="padding-bottom: 5%;">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 left">
<div class="vc_col-sm-8 vc_col-lg-8 vc_col-md-6 wpb_column column_container vc_column_container col child_column bottom_margin_phone_30px right_padding_desktop_25pct " data-t-w-inherits="small_desktop" data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar-split-heading font_size_4vw " data-align="default" data-m-align="inherit" data-text-effect="default" data-animation-type="line-reveal-by-space" data-animation-delay="0" data-animation-offset="" data-m-rm-animation="" data-stagger="true" data-custom-font-size="true" style="font-size: 4vw; line-height: 4.4vw;"><h2>Enough Talk, Let's Build Something Together.</h2></div>
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h5>Contact Us</h5>
</div>
</div>
<div class="nectar-cta alignment_tablet_default alignment_phone_default display_tablet_inherit display_phone_inherit font_size_desktop_1-3vw font_size_tablet_16px " data-color="default" data-using-bg="false" data-display="block" data-style="underline" data-alignment="left" data-text-color="std" style="margin-top: 10px;"><h4> <span class="link_wrap"><a href="tel:+1 (415) 917-2074" class="link_text" role="button">+1 (415) 917-2074</a></span>
</h4></div>
<div class="nectar-cta alignment_tablet_default alignment_phone_default display_tablet_inherit display_phone_inherit font_size_desktop_1-3vw font_size_tablet_16px " data-color="default" data-using-bg="false" data-display="block" data-style="underline" data-alignment="left" data-text-color="std"><h4> <span class="link_wrap"><a href="matilto:business@connectingmatrix.com" class="link_text" role="button">business@connectingmatrix.com</a></span>
</h4></div>
</div>
</div>
</div>
<div class="vc_col-sm-2 vc_col-lg-2 vc_col-md-3 wpb_column column_container vc_column_container col child_column has-animation no-extra-padding el_spacing_10px bottom_margin_tablet_0px inherit_tablet inherit_phone " data-t-w-inherits="small_desktop" data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="150">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element ">
<div class="wpb_wrapper">
<h3>Navigate</h3>
</div>
</div>
<div class="nectar-cta alignment_tablet_default alignment_phone_default display_tablet_inherit display_phone_inherit font_size_desktop_1-3vw font_size_tablet_16px " data-color="default" data-using-bg="false" data-display="block" data-style="underline" data-alignment="left" data-text-color="std" style="margin-top: 10px;"><h4> <span class="link_wrap"><a class="link_text" role="button" href="/work/">Work</a></span>
</h4></div>
<div class="nectar-cta alignment_tablet_default alignment_phone_default display_tablet_inherit display_phone_inherit font_size_desktop_1-3vw font_size_tablet_16px " data-color="default" data-using-bg="false" data-display="block" data-style="underline" data-alignment="left" data-text-color="std"><h4> <span class="link_wrap"><a class="link_text" role="button" href="/#services">Expertise</a></span>
</h4></div>
</div>
</div>
</div>
<div class="vc_col-sm-2 vc_col-lg-2 vc_col-md-3 wpb_column column_container vc_column_container col child_column has-animation no-extra-padding el_spacing_10px inherit_tablet inherit_phone " data-t-w-inherits="small_desktop" data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="300">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar-cta alignment_tablet_default alignment_phone_default display_tablet_inherit display_phone_inherit font_size_desktop_1-3vw font_size_tablet_16px " data-color="default" data-using-bg="false" data-display="block" data-style="underline" data-alignment="left" data-text-color="std"><h4> <span class="link_wrap"><a class="link_text" role="button" href="/careers/">Careers</a></span>
</h4></div>
<!-- -->
</div>
</div>
</div>
</div>
</div>
<div id="fws_66fd501901463" data-midnight="" data-column-margin="default" class="wpb_row vc_row-fluid vc_row inner_row vc_row-o-equal-height vc_row-flex vc_row-o-content-top">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 left">
<div class="vc_col-sm-8 wpb_column column_container vc_column_container col child_column has-animation no-extra-padding bottom_margin_phone_30px inherit_tablet inherit_phone " data-t-w-inherits="small_desktop" data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar-cta alignment_tablet_default alignment_phone_default display_tablet_inherit display_phone_inherit font_size_desktop_1-2vw font_size_tablet_16px " data-color="accent-color" data-using-bg="true" data-style="text-reveal-wave" data-display="block" data-alignment="left" data-text-color="custom"><h6 style="color: #ffffff;"><span class="link_wrap" style="padding-top: 1em; padding-right: 2.5em; padding-bottom: 1em; padding-left: 2.5em;"><a target="_blank" class="link_text" role="button" href="/request-a-free-quote/"><span class="text"><span class="char">R</span><span class="char">e</span><span class="char">q</span><span class="char">u</span><span class="char">e</span><span class="char">s</span><span class="char">t</span> <span class="char">a</span> <span class="char">Q</span><span class="char">u</span><span class="char">o</span><span class="char">t</span><span class="char">e</span></span></a></span></h6></div>
</div>
</div>
</div>
<div class="vc_col-sm-4 wpb_column column_container vc_column_container col child_column has-animation no-extra-padding inherit_tablet inherit_phone mobile-disable-entrance-animation " data-t-w-inherits="small_desktop" data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="fade-in-from-bottom" data-delay="150" data-animation-offset="110%">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar-responsive-text nectar-link-underline-effect">
<p>© <span class="nectar-current-year">2024</span>. All rights reserved. Connecting Matrix.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="fws_66fd501903c50" data-column-margin="none" data-midnight="light" class="wpb_row vc_row-fluid vc_row full-width-content vc_row-o-equal-height vc_row-flex vc_row-o-content-top" style="padding-top: 0px; padding-bottom: 0px;">
<div class="row-bg-wrap" data-bg-animation="none" data-bg-animation-delay="" data-bg-overlay="true">
<div class="inner-wrap row-bg-layer"><div class="row-bg viewport-desktop using-bg-color" style="background-color: #111111;"></div></div>
<div class="row-bg-overlay row-bg-layer" style="background-color:#111111; opacity: 0.8;"></div>
</div>
<div class="row_col_wrap_12 col span_12 light left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone border_top_desktop_1px border_top_tablet_0px border_top_phone_0px border_color_5e5e5e border_style_solid " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div id="fws_66fd50190437f" data-midnight="" data-column-margin="default" class="wpb_row vc_row-fluid vc_row inner_row top_padding_tablet_0px" style="padding-top: 50px; padding-bottom: 50px;">
<div class="row-bg-wrap"> <div class="row-bg"></div> </div>
<div class="row_col_wrap_12_inner col span_12 left">
<div class="vc_col-sm-12 wpb_column column_container vc_column_container col child_column no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0">
<div class="vc_column-inner">
<div class="wpb_wrapper">
<div class="nectar-scrolling-text font_size_11vh font_size_mobile_8vh has-custom-divider " data-style="text_outline" data-s-dir="ltr" data-spacing="false" data-outline-thickness="thin" data-s-speed="slowest" data-overflow="hidden"><div class="nectar-scrolling-text-inner">
<div class="nectar-scrolling-text-inner__text-chunk">
<h2>
<i>Grow Your Brand</i><span class="custom" data-scale="half"><span>·</span></span>
</h2>
</div>
<div class="nectar-scrolling-text-inner__text-chunk">
<h2>
<i>Grow Your Brand</i><span class="custom" data-scale="half"><span>·</span></span>
</h2>
</div>
<div class="nectar-scrolling-text-inner__text-chunk">
<h2>
<i>Grow Your Brand</i><span class="custom" data-scale="half"><span>·</span></span>
</h2>
</div>
<div class="nectar-scrolling-text-inner__text-chunk">
<h2>
<i>Grow Your Brand</i><span class="custom" data-scale="half"><span>·</span></span>
</h2>
</div>
<div class="nectar-scrolling-text-inner__text-chunk">
<h2>
<i>Grow Your Brand</i><span class="custom" data-scale="half"><span>·</span></span>
</h2>
</div>
</div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="footer-outer" data-midnight="light" data-cols="4" data-custom-color="false" data-disable-copyright="true" data-matching-section-color="true" data-copyright-line="false" data-using-bg-img="false" data-bg-img-overlay="0.8" data-full-width="false" data-using-widget-area="false" data-link-hover="default">
</div>
<!--/footer-outer-->
<div id="slide-out-widget-area-bg" class="slide-out-from-right dark">
</div>
<div id="slide-out-widget-area" class="slide-out-from-right" data-dropdown-func="separate-dropdown-parent-link" data-back-txt="Back">
<div class="inner" data-prepend-menu-mobile="false">
<a class="slide_out_area_close" href="#"><span class="screen-reader-text">Close Menu</span>
<span class="icon-salient-x icon-default-style"></span> </a>
<div id="text-2" class="widget widget_text"> <div class="textwidget">
<h4>About Connecting Matrix</h4>
<div class="textwidget">
<p>1001 Block Q, Johar Town Lahore</p>
<p>T: <a href="tel: +1 (415) 917-2074">+1 (415) 917-2074</a><br>
E: <a href="mailto:business@connectingmatrix.com">business@connectingmatrix.com</a></p>
</div>
</div>
</div>
</div>
<div class="bottom-meta-wrap"><ul class="off-canvas-social-links mobile-only"><li><a target="_blank" rel="noopener" href="https://www.linkedin.com/company/connectingmatrix/"><span class="screen-reader-text">linkedin</span><i class="fa fa-linkedin" aria-hidden="true"></i> </a></li></ul></div>
<!--/bottom-meta-wrap-->
</div>
</div> <!--/ajax-content-wrap-->
<a id="to-top" aria-label="Back to top" href="#" class="mobile-disabled"><i role="presentation" class="fa fa-angle-up"></i></a>
<script type="text/html" id="wpb-modifications"> window.wpbCustomElement = 1; <link rel="stylesheet" id="0-css" href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,0,3000,4000,6000,700&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" type="text/css" media="all">
<link rel="stylesheet" id="wpo_min-footer-0-css" href="/wp-content/cache/wpo-minify/1727877087/assets/wpo-minify-footer-2c012467.min.css" type="text/css" media="all">
<script type="text/javascript" id="wpo_min-footer-0-js-extra">
/* <![CDATA[ */
var wpcf7 = {"api":{"root":"\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":"1"};
var awsmJobsPublic = {"ajaxurl":"\/wp-admin\/admin-ajax.php","is_tax_archive":"","is_search":"","job_id":"0","wp_max_upload_size":"3145728000","deep_linking":{"search":true,"spec":true,"pagination":true},"i18n":{"loading_text":"Loading...","form_error_msg":{"general":"Error in submitting your application. Please try again later!","file_validation":"The file you have selected is too large."}},"vendors":{"selectric":true,"jquery_validation":true}};
var nectarLove = {"ajaxurl":"\/wp-admin\/admin-ajax.php","postID":"5","rooturl":"","disqusComments":"false","loveNonce":"e032c005c9","mapApiKey":""};
var nectarOptions = {"delay_js":"false","quick_search":"false","react_compat":"disabled","header_entrance":"false","simplify_ocm_mobile":"0","mobile_header_format":"default","ocm_btn_position":"default","left_header_dropdown_func":"default","ajax_add_to_cart":"0","ocm_remove_ext_menu_items":"remove_images","woo_product_filter_toggle":"0","woo_sidebar_toggles":"true","woo_sticky_sidebar":"0","woo_minimal_product_hover":"default","woo_minimal_product_effect":"default","woo_related_upsell_carousel":"false","woo_product_variable_select":"default","woo_using_cart_addons":"false"};
var nectar_front_i18n = {"menu":"Menu","next":"Next","previous":"Previous","close":"Close"};
/* ]]> */