-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1743 lines (1684 loc) · 156 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>
<!-- saved from url=(0029)https://rifetheme.com/lander/ -->
<html class="js show-scroll wf-montserrat-n8-active wf-montserrat-n5-active wf-montserrat-n4-active wf-montserrat-n7-active wf-active" lang="en-US">
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="profile" href="https://gmpg.org/xfn/11">
<title>Uncertain Co.</title>
<meta name="robots" content="max-image-preview:large">
<link rel="dns-prefetch" href="https://s.w.org/">
<link href="https://fonts.gstatic.com/" crossorigin="" rel="preconnect">
<link rel="alternate" type="application/rss+xml" title="Lander - Rife Design » Feed" href="https://rifetheme.com/lander/feed/">
<link rel="alternate" type="application/rss+xml" title="Lander - Rife Design » Comments Feed" href="https://rifetheme.com/lander/comments/feed/">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css">
<script type="text/javascript" id="www-widgetapi-script" src="MYFILES/www-widgetapi.js.download" async=""></script>
<script src="MYFILES/iframe_api"></script>
<script src="MYFILES/webfontloader.min.js.download" type="text/javascript" async=""></script>
<script type="text/javascript">
window._wpemojiSettings = {
"baseUrl": "https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/",
"ext": ".png",
"svgUrl": "https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/",
"svgExt": ".svg",
"source": {
"concatemoji": "https:\/\/rifetheme.com\/lander\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.7.2"
}
};
! function(e, a, t) {
var n, r, o, i = a.createElement("canvas"),
p = i.getContext && i.getContext("2d");
function s(e, t) {
var a = String.fromCharCode;
p.clearRect(0, 0, i.width, i.height), p.fillText(a.apply(this, e), 0, 0);
e = i.toDataURL();
return p.clearRect(0, 0, i.width, i.height), p.fillText(a.apply(this, t), 0, 0), e === i.toDataURL()
}
function c(e) {
var t = a.createElement("script");
t.src = e, t.defer = t.type = "text/javascript", a.getElementsByTagName("head")[0].appendChild(t)
}
for (o = Array("flag", "emoji"), t.supports = {
everything: !0,
everythingExceptFlag: !0
}, r = 0; r < o.length; r++) t.supports[o[r]] = function(e) {
if (!p || !p.fillText) return !1;
switch (p.textBaseline = "top", p.font = "600 32px Arial", e) {
case "flag":
return s([127987, 65039, 8205, 9895, 65039], [127987, 65039, 8203, 9895, 65039]) ? !1 : !s([55356, 56826, 55356, 56819], [55356, 56826, 8203, 55356, 56819]) && !s([55356, 57332, 56128, 56423, 56128, 56418, 56128, 56421, 56128, 56430, 56128, 56423, 56128, 56447], [55356, 57332, 8203, 56128, 56423, 8203, 56128, 56418, 8203, 56128, 56421, 8203, 56128, 56430, 8203, 56128, 56423, 8203, 56128, 56447]);
case "emoji":
return !s([55357, 56424, 8205, 55356, 57212], [55357, 56424, 8203, 55356, 57212])
}
return !1
}(o[r]), t.supports.everything = t.supports.everything && t.supports[o[r]], "flag" !== o[r] && (t.supports.everythingExceptFlag = t.supports.everythingExceptFlag && t.supports[o[r]]);
t.supports.everythingExceptFlag = t.supports.everythingExceptFlag && !t.supports.flag, t.DOMReady = !1, t.readyCallback = function() {
t.DOMReady = !0
}, t.supports.everything || (n = function() {
t.readyCallback()
}, a.addEventListener ? (a.addEventListener("DOMContentLoaded", n, !1), e.addEventListener("load", n, !1)) : (e.attachEvent("onload", n), a.attachEvent("onreadystatechange", function() {
"complete" === a.readyState && t.readyCallback()
})), (n = t.source || {}).concatemoji ? c(n.concatemoji) : n.wpemoji && n.twemoji && (c(n.twemoji), c(n.wpemoji)))
}(window, document, window._wpemojiSettings);
</script>
<script src="MYFILES/wp-emoji-release.min.js.download" type="text/javascript" defer=""></script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel="stylesheet" id="wp-block-library-css" href="MYFILES/style.min.css" type="text/css" media="all">
<link rel="stylesheet" id="wpforms-base-css" href="MYFILES/wpforms-base.min.css" type="text/css" media="all">
<link rel="stylesheet" id="cookie-notice-front-css" href="MYFILES/front.min.css" type="text/css" media="all">
<link rel="stylesheet" id="elementor-icons-css" href="MYFILES/elementor-icons.min.css" type="text/css" media="all">
<link rel="stylesheet" id="elementor-animations-css" href="MYFILES/animations.min.css" type="text/css" media="all">
<link rel="stylesheet" id="elementor-frontend-legacy-css" href="MYFILES/frontend-legacy.min.css" type="text/css" media="all">
<link rel="stylesheet" id="elementor-frontend-css" href="MYFILES/frontend.min.css" type="text/css" media="all">
<link rel="stylesheet" id="elementor-post-12124-css" href="MYFILES/post-120-12124.css" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-css" href="MYFILES/font-awesome.min.css" type="text/css" media="all">
<link rel="stylesheet" id="elementor-global-css" href="MYFILES/global-120.css" type="text/css" media="all">
<link rel="stylesheet" id="elementor-post-8754-css" href="MYFILES/post-120-8754.css" type="text/css" media="all">
<link rel="stylesheet" id="jquery-lightgallery-css" href="MYFILES/lightgallery.min.css" type="text/css" media="all">
<link rel="stylesheet" id="a13-icomoon-css" href="MYFILES/icomoon.css" type="text/css" media="all">
<link rel="stylesheet" id="a13-main-style-css" href="MYFILES/style.css" type="text/css" media="all">
<link rel="stylesheet" id="a13-user-css-css" href="MYFILES/user_120.css" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-5-all-css" href="MYFILES/all.min.css" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-4-shim-css" href="MYFILES/v4-shims.min.css" type="text/css" media="all">
<script type="text/javascript" src="MYFILES/jquery.min.js.download" id="jquery-core-js"></script>
<script type="text/javascript" src="MYFILES/jquery-migrate.min.js.download" id="jquery-migrate-js"></script>
<script type="text/javascript" id="cookie-notice-front-js-extra">
/* <![CDATA[ */
var cnArgs = {
"ajaxUrl": "https:\/\/rifetheme.com\/lander\/wp-admin\/admin-ajax.php",
"nonce": "eda8fc1774",
"hideEffect": "fade",
"position": "bottom",
"onScroll": "0",
"onScrollOffset": "100",
"onClick": "0",
"cookieName": "cookie_notice_accepted",
"cookieTime": "2592000",
"cookieTimeRejected": "2592000",
"cookiePath": "\/",
"cookieDomain": "",
"redirection": "0",
"cache": "0",
"refuse": "0",
"revokeCookies": "0",
"revokeCookiesOpt": "automatic",
"secure": "1"
};
/* ]]> */
</script>
<script type="text/javascript" src="MYFILES/front.min.js.download" id="cookie-notice-front-js"></script>
<script type="text/javascript" src="MYFILES/v4-shims.min.js.download" id="font-awesome-4-shim-js"></script>
<link rel="https://api.w.org/" href="https://rifetheme.com/lander/wp-json/">
<link rel="alternate" type="application/json" href="https://rifetheme.com/lander/wp-json/wp/v2/pages/8754">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://rifetheme.com/lander/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://rifetheme.com/lander/wp-includes/wlwmanifest.xml">
<meta name="generator" content="WordPress 5.7.2">
<link rel="canonical" href="https://rifetheme.com/lander/">
<link rel="shortlink" href="https://rifetheme.com/lander/">
<link rel="alternate" type="application/json+oembed" href="https://rifetheme.com/lander/wp-json/oembed/1.0/embed?url=https%3A%2F%2Frifetheme.com%2Flander%2F">
<link rel="alternate" type="text/xml+oembed" href="https://rifetheme.com/lander/wp-json/oembed/1.0/embed?url=https%3A%2F%2Frifetheme.com%2Flander%2F&format=xml">
<script type="text/javascript">
// <![CDATA[
(function() {
var docElement = document.documentElement,
className = docElement.className;
// Change `no-js` to `js`
var reJS = new RegExp('(^|\\s)no-js( |\\s|$)');
//space as literal in second capturing group cause there is strange situation when \s is not catched on load when other plugins add their own classes
className = className.replace(reJS, '$1js$2');
docElement.className = className;
})();
// ]]>
</script>
<script type="text/javascript">
// <![CDATA[
WebFontConfig = {
google: {
"families": ["Montserrat:400,500,700,800", "Montserrat:400,500,700,800", "Montserrat:400,500,700,800"]
},
active: function() {
//tell listeners that fonts are loaded
if (window.jQuery) {
jQuery(document.body).trigger('webfontsloaded');
}
}
};
(function(d) {
var wf = d.createElement('script'),
s = d.scripts[0];
wf.src = 'https://mk0demosgcc89fcb9u9m.kinstacdn.com/wp-content/themes/rife-free/js/webfontloader.min.js';
wf.type = 'text/javascript';
wf.async = 'true';
s.parentNode.insertBefore(wf, s);
})(document);
// ]]>
</script>
<link rel="stylesheet" href="MYFILES/css" media="all">
<style id="fit-vids-style">
.fluid-width-video-wrapper {
width: 100%;
position: relative;
padding: 0;
}
.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.elementor-element-97222d3 img {
height: 55vh;
max-width: 100%;
box-sizing: border-box;
}
.fa-bars {
color: #fff;
}
.logo-container img {
width: 125px;
/* position: relative; */
}
.left-title{
font-size: 38px;
font-weight: 900;
font-family: poppins;
color: #5c7c95;
position: absolute;
top: 50%;
transform: translateY(-50%);
}
@media (max-width:720px){
.left-title {
font-size: 30px;
color: #fff;
}
.logo-container img {
visibility: hidden;
}
}
@media only screen and (max-width: 1024px) {
.icons-1 {
display: block;
}
.left-title {
position: absolute;
left: 20px;
color: #fff;
}
.logo-container img {
visibility: hidden;
}
}
</style>
<link rel="icon" href="Images/favicon.png" type="image/png">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
</head>
<body id="top" class="home page-template-default page page-id-8754 side-menu-eff-7 header-horizontal site-layout-full cookies-set cookies-accepted elementor-default elementor-kit-12124 elementor-page elementor-page-8754 e--ua-blink e--ua-edge e--ua-webkit"
itemtype="https://schema.org/WebPage" itemscope="" data-elementor-device-mode="desktop">
<div class="whole-layout">
<div id="preloader" class="flash onReady" style="display: none;">
<div class="preload-content" style="display: none;">
<div class="preloader-animation">
<div class="pace-progress">
<div class="pace-progress-inner"></div>
</div>
<div class="pace-activity"></div>
</div>
<a class="skip-preloader a13icon-cross" href="#"></a>
</div>
</div>
<div class="page-background to-move"></div>
<header id="header" class="to-move a13-horizontal header-type-one_line a13-normal-variant header-variant-one_line full tools-icons-1 sticky-no-hiding desktop_menu" itemtype="https://schema.org/WPHeader" itemscope="">
<div class="head" style="
padding-right: 0px;
">
<div class="logo-container" itemtype="https://schema.org/Organization" itemscope="">
<a href="https://www.linkedin.com/company/uncertain-co/">
<img src="navbar-logo.png" class="logo-new" width="120px"alt="">
</a>
</div>
<span class="left-title">Uncertain Co.</span>
<nav id="access" class="navigation-bar" itemtype="https://schema.org/SiteNavigationElement" itemscope="" style="
padding-right: 0px;
">
<!-- this element is need in HTML even if menu is disabled -->
<div class="menu-container loaded">
<ul id="menu-main-menu" class="top-menu with-effect menu--ferdinand opener-icons-on">
<li id="menu-item-11951" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-11951 normal-menu"><a href="index.html#home" style="line-height: 80px; height: 80px;"><span><em>Home</em></span></a></li>
<li id="menu-item-11946" class="menu-item menu-item-type-custom menu-item-object-custom current_page_item menu-item-home menu-item-11946 normal-menu"><a href="index.html#about" style="line-height: 80px; height: 80px;"><span><em>About Us</em></span></a></li>
<li id="menu-item-11950" class="menu-item menu-item-type-custom menu-item-object-custom current_page_item menu-item-home menu-item-11950 normal-menu"><a href="index.html#services" style="line-height: 80px; height: 80px;"><span><em>Services</em></span></a></li>
<li id="menu-item-11952" class="menu-item menu-item-type-custom menu-item-object-custom current_page_item menu-item-home menu-item-11952 normal-menu"><a href="#team" style="line-height: 80px; height: 80px;"><span><em>Team</em></span></a></li>
<li id="menu-item-11948" class="menu-item menu-item-type-custom menu-item-object-custom current_page_item menu-item-home menu-item-11948 normal-menu"><a href="./portfolio.html" style="line-height: 80px; height: 80px;"><span><em>Portfolio</em></span></a></li>
<li id="menu-item-11947" class="menu-item menu-item-type-custom menu-item-object-custom current_page_item menu-item-home menu-item-11947 normal-menu"><a href="./careers.html" style="line-height: 80px; height: 80px;"><span><em>Career Page</em></span></a></li>
<li id="menu-item-11949" class="menu-item menu-item-type-custom menu-item-object-custom current_page_item menu-item-home menu-item-11949 normal-menu"><a href="./contact.html" style="line-height: 80px; height: 80px;"><span><em>Contact us</em></span></a></li>
</ul>
</div>
</nav>
<!-- #access -->
<div id="header-tools" class="icons-1">
<!-- <button id="side-menu-switch" class="fa fa-bookmark tool" title="More info">
<span class="screen-reader-text">More info</span></button> -->
<button id="mobile-menu-opener" class="fas fa-bars" title="Main menu">
<span class="screen-reader-text">Main menu</span></button></div>
</div>
</header>
<div id="mid" class="to-move no-top-space no-bottom-space layout-full_fixed layout-no-edge layout-fixed no-sidebars">
<article id="content" class="clearfix" itemtype="https://schema.org/CreativeWork" itemscope="">
<div class="content-limiter">
<div id="col-mask">
<div id="post-8754" class="content-box post-8754 page type-page status-publish has-post-thumbnail">
<div class="formatter">
<div class="real-content" itemprop="text">
<div data-elementor-type="wp-post" data-elementor-id="8754" class="elementor elementor-8754" data-elementor-settings="[]">
<div class="elementor-inner">
<div class="elementor-section-wrap">
<section class="elementor-section elementor-top-section elementor-element elementor-element-bcec401 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="bcec401" data-element_type="section"
id="home" data-settings="{"stretch_section":"section-stretched","background_background":"video","background_video_link":"https:\/\/youtu.be\/wq5YoZp298M","shape_divider_bottom":"curve","shape_divider_bottom_negative":"yes"}"
style="width: 1263px; left: -111.667px;">
<div class="elementor-background-video-container elementor-hidden-phone">
<iframe class="elementor-background-video-embed" frameborder="0" allowfullscreen="1" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" title="YouTube video player" width="640" height="360" src="MYFILES/wq5YoZp298M.html"
id="widget2" style="width: 1263px; height: 710.438px;"></iframe>
</div>
<div class="elementor-shape elementor-shape-bottom" data-negative="true">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none">
<path class="elementor-shape-fill" d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z"></path>
</svg> </div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-52a7eaf animated-slow animated fadeIn" data-id="52a7eaf" data-element_type="column" data-settings="{"animation":"fadeIn","animation_delay":500}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-8682af3 elementor-widget elementor-widget-writing-effect-headline" data-id="8682af3" data-element_type="widget" data-widget_type="writing-effect-headline.default">
<div class="elementor-widget-container">
<h3 class="a13ree-written-headline" data-speed="108" data-loop="1">
<span class="written-lines">Uncertain Co.</span><span class="typed-cursor"></span>
</h3>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-9908a66 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9908a66" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-c15832f" data-id="c15832f" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-6321989 elementor-widget elementor-widget-heading" data-id="6321989" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<span class="elementor-heading-title elementor-size-default">IT Services Based Company</span></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-element elementor-element-3a2a2a4 elementor-widget elementor-widget-spacer" data-id="3a2a2a4" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-e4182bc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e4182bc" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-574690d" data-id="574690d" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-e89fee6 elementor-align-center elementor-mobile-align-center elementor-widget elementor-widget-button" data-id="e89fee6" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="#about" target="_blank" class="elementor-button-link elementor-button elementor-size-md" role="button">
<span class="elementor-button-content-wrapper"><span class="elementor-button-icon elementor-align-icon-center"><span class="elementor-button-text">Dive me in <i class="fa fa-long-arrow-down" aria-hidden="true"></i></span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-54ac680 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="54ac680" data-element_type="section" id="about">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-13836a1" data-id="13836a1" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-cd854f3 elementor-widget elementor-widget-image" data-id="cd854f3" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<a href="#about">
<img width="297" height="35" src="MYFILES/lander-downBTN.png" class="attachment-full size-full" alt="" loading="lazy"> </a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-ccac4cc elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ccac4cc" data-element_type="section"
data-settings="{"stretch_section":"section-stretched"}" style="width: 1263px; left: -111.667px;">
<div class="elementor-container elementor-column-gap-default" id="about">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-73fec25f" data-id="73fec25f" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-224080a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="224080a" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-88b51a7" data-id="88b51a7" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-83e9369 elementor-widget elementor-widget-heading" data-id="83e9369" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">BUILD YOUR PRODUCT IN A MORE SECURED WAY!</h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-ec4b834 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ec4b834" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-13ff894" data-id="13ff894" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-551fcd7 elementor-widget elementor-widget-text-editor" data-id="551fcd7" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="elementor-text-editor elementor-clearfix">
<p>Providing Tech/IT solutions in various domains including AI/ML, NLP, Android, Web and more.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-4a9355a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4a9355a" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-efcb91e" data-id="efcb91e" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-f48a6fc elementor-widget elementor-widget-image" data-id="f48a6fc" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="64" height="64" src="MYFILES/[email protected]" class="attachment-full size-full" alt="" loading="lazy"> </div>
</div>
</div>
<div class="elementor-element elementor-element-da92b6a elementor-widget elementor-widget-heading" data-id="da92b6a" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">PRODUCT DESIGN</h3>
</div>
</div>
<div class="elementor-element elementor-element-8c3f8c4 elementor-widget elementor-widget-text-editor" data-id="8c3f8c4" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="elementor-text-editor elementor-clearfix">
<p>We will work with you to find out what you need in your product.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-9a171dc" data-id="9a171dc" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-f23e910 elementor-widget elementor-widget-image" data-id="f23e910" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="64" height="64" src="MYFILES/[email protected]" class="attachment-full size-full" alt="" loading="lazy"> </div>
</div>
</div>
<div class="elementor-element elementor-element-8b838cb elementor-widget elementor-widget-heading" data-id="8b838cb" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">PRODUCT DEVELOPMENT</h3>
</div>
</div>
<div class="elementor-element elementor-element-73e8638 elementor-widget elementor-widget-text-editor" data-id="73e8638" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="elementor-text-editor elementor-clearfix">
<p>We will develop your product in the most efficient way at a affordable rate.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8089028" data-id="8089028" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5d6c96a elementor-widget elementor-widget-image" data-id="5d6c96a" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="64" height="64" src="MYFILES/[email protected]" class="attachment-full size-full" alt="" loading="lazy"> </div>
</div>
</div>
<div class="elementor-element elementor-element-57df56d elementor-widget elementor-widget-heading" data-id="57df56d" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">PRODUCT TESTING</h3>
</div>
</div>
<div class="elementor-element elementor-element-7eb895f elementor-widget elementor-widget-text-editor" data-id="7eb895f" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<div class="elementor-text-editor elementor-clearfix">
<p>We will test your product before launching into the market.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
<section class="elementor-section elementor-top-section elementor-element elementor-element-0c7cfdc elementor-section-content-middle elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default"
data-id="0c7cfdc" data-element_type="section" id="services" data-settings="{"stretch_section":"section-stretched"}" style="width: 1263px; left: -111.667px;">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-001a787" data-id="001a787" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-9dc9e6b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9dc9e6b" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-51ca32a" data-id="51ca32a" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-a9509c9 elementor-widget elementor-widget-heading" data-id="a9509c9" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Why choose us?</h2>
</div>
</div>
<div class="elementor-element elementor-element-d98be27 elementor-widget elementor-widget-heading" data-id="d98be27" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Services</h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-f032115 elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="f032115" data-element_type="section" data-settings="{"background_background":"gradient"}">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-0c0ce1f" data-id="0c0ce1f" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-d75f565 elementor-widget elementor-widget-a13fe-post-list" data-id="d75f565" data-element_type="widget" data-widget_type="a13fe-post-list.default">
<div class="elementor-widget-container">
<div class="bricks-frame works-bricks works-bricks-1 variant-overlay works-columns-3 hover-effect-drop title-mid title-center cover-hover texts-hover">
<div class="works-grid-container layout-packery" data-margin="0" style="position: relative; height: 631.48px;">
<div class="grid-master"></div>
<div class="archive-item object-item open-item-in-lightbox w1" data-category-13="1" data-category-16="1" data-id="work-11348" itemtype="https://schema.org/CreativeWork" itemscope="" style="position: absolute; left: 0px; top: 0px;"><img loading="lazy" src="Images\web.jpg" alt="" title="work4" width="640" height="480">
<div class="cover" style="background-color:rgba(0,0,0, 0.7);"></div>
<div class="covering-image"></div>
<div class="icon a13icon-plus"></div>
<div class="caption">
<div class="texts_group">
<h2 class="post-title" itemprop="headline">Web Development</h2>
<div class="excerpt">Lorem Ipsum</div>
</div>
</div>
<a href="https://rifetheme.com/lander/work/late-session/" itemprop="url"></a>
<div class="social"></div>
</div>
<div class="archive-item object-item open-item-in-lightbox w1" data-category-15="1" data-category-16="1" data-id="work-11356" itemtype="https://schema.org/CreativeWork" itemscope="" style="position: absolute; left: 420.99px; top: 0px;"><img loading="lazy" src="Images\App.jpg" alt="" title="work3" width="640" height="480">
<div class="cover" style="background-color:rgba(0,0,0, 0.7);"></div>
<div class="covering-image"></div>
<div class="icon a13icon-plus"></div>
<div class="caption">
<div class="texts_group">
<h2 class="post-title" itemprop="headline">App Development</h2>
<div class="excerpt">Lorem Ipsum</div>
</div>
</div>
<a href="https://rifetheme.com/lander/work/morning-view/" itemprop="url"></a>
<div class="social"></div>
</div>
<div class="archive-item object-item open-item-in-lightbox w1" data-category-16="1" data-category-19="1" data-id="work-11362" itemtype="https://schema.org/CreativeWork" itemscope="" style="position: absolute; left: 841.98px; top: 0px;"><img loading="lazy" src="Images\ml.jpg" alt="" title="work1" width="640" height="480">
<div class="cover" style="background-color:rgba(0,0,0, 0.7);"></div>
<div class="covering-image"></div>
<div class="icon a13icon-plus"></div>
<div class="caption">
<div class="texts_group">
<h2 class="post-title" itemprop="headline">Machine Learning</h2>
<div class="excerpt">With Brown Stripe</div>
</div>
</div>
<a href="https://rifetheme.com/lander/work/classic-watch/" itemprop="url"></a>
<div class="social"></div>
</div>
<div class="archive-item object-item open-item-in-lightbox w1" data-category-16="1" data-category-19="1" data-id="work-11333" itemtype="https://schema.org/CreativeWork" itemscope="" style="position: absolute; left: 0px; top: 315.74px;"><img loading="lazy" src="Images\AI.png" alt="" title="work2" width="640" height="480">
<div class="cover" style="background-color:rgba(0,0,0, 0.7);"></div>
<div class="covering-image"></div>
<div class="icon a13icon-plus"></div>
<div class="caption">
<div class="texts_group">
<h2 class="post-title" itemprop="headline">AI</h2>
<div class="excerpt">One and only</div>
</div>
</div>
<a href="https://rifetheme.com/lander/work/flowers-day/" itemprop="url"></a>
<div class="social"></div>
</div>
<div class="archive-item object-item open-item-in-lightbox w1" data-category-13="1" data-category-16="1" data-id="work-11332" itemtype="https://schema.org/CreativeWork" itemscope="" style="position: absolute; left: 420.99px; top: 315.74px;"><img loading="lazy" src="Images\iot.jpg" alt="" title="work5" width="640" height="480">
<div class="cover" style="background-color:rgba(0,0,0, 0.7);"></div>
<div class="covering-image"></div>
<div class="icon a13icon-plus"></div>
<div class="caption">
<div class="texts_group">
<h2 class="post-title" itemprop="headline">IOT</h2>
<div class="excerpt">Exotic Beauty</div>
</div>
</div>
<a href="https://rifetheme.com/lander/work/latest-trip/" itemprop="url"></a>
<div class="social"></div>
</div>
<div class="archive-item object-item open-item-in-lightbox w1" data-category-15="1" data-category-16="1" data-id="work-6911" itemtype="https://schema.org/CreativeWork" itemscope="" style="position: absolute; left: 841.98px; top: 315.74px;"><img loading="lazy" src="Images\robotics.jpg" alt="" title="work6" width="640" height="480">
<div class="cover" style="background-color:rgba(0,0,0, 0.7);"></div>
<div class="covering-image"></div>
<div class="icon a13icon-plus"></div>
<div class="caption">
<div class="texts_group">
<h2 class="post-title" itemprop="headline">Robotics</h2>
<div class="excerpt">with the star</div>
</div>
</div>
<a href="https://rifetheme.com/lander/work/fashion-time/" itemprop="url"></a>
<div class="social"></div>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-97222d3 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="97222d3" data-element_type="section"
id="team" data-settings="{"stretch_section":"section-stretched"}" style="width: 1263px; left: -111.667px;">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4e688ee" data-id="4e688ee" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-8f2ac95 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="8f2ac95" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-78cc3b8" data-id="78cc3b8" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-b32aec8 elementor-widget elementor-widget-heading" data-id="b32aec8" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">You couldn't get in better hands</h2>
</div>
</div>
<div class="elementor-element elementor-element-31785cb elementor-widget elementor-widget-heading" data-id="31785cb" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Our Team</h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-fa6d00a elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="fa6d00a" data-element_type="section">
<div class="elementor-container elementor-column-gap-wide">
<div class="elementor-row">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-c863254 elementor-invisible" data-id="c863254" data-element_type="column" data-settings="{"animation":"slideInLeft","animation_delay":800}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-b5a536c elementor-widget elementor-widget-image" data-id="b5a536c" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="400" height="500" src="Images\Shivang.png" class="attachment-full size-full" alt="" loading="lazy" srcset="Images\Shivang.png 400w, https://mk0demosgcc89fcb9u9m.kinstacdn.com/wp-content/uploads/2019/02/raven-face-1-240x300.jpg 240w" sizes="(max-width: 400px) 100vw, 400px"> </div>
</div>
</div>
<div class="elementor-element elementor-element-bf39810 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="bf39810" data-element_type="widget" data-widget_type="social-icons.default">
<div class="elementor-widget-container">
<div class="elementor-social-icons-wrapper elementor-grid">
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-github elementor-repeater-item-de54fb8" target="_blank" href="https://github.com/shivangdubey">
<span class="elementor-screen-only">Github</span>
<i class="fab fa-github"></i>
</a>
</div>
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-8daa597" target="_blank" href="https://twitter.com/subtleshiv">
<span class="elementor-screen-only">Twitter</span>
<i class="fa fa-twitter"></i>
</a>
</div>
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-b8e13be" target="_blank" href="https://www.linkedin.com/in/shivangdubey8/">
<span class="elementor-screen-only">Linkedin</span>
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-0488436 elementor-widget elementor-widget-heading" data-id="0488436" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Shivang Dubey</h2>
</div>
</div>
<div class="elementor-element elementor-element-6383bf4 elementor-widget elementor-widget-heading" data-id="6383bf4" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Founder</h2>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-0b1d4d8 elementor-invisible" data-id="0b1d4d8" data-element_type="column" data-settings="{"animation":"slideInLeft","animation_delay":400}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-b2f1324 elementor-widget elementor-widget-image" data-id="b2f1324" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="400" height="500" src="Images\Rahul.png" class="attachment-full size-full" alt="" loading="lazy" srcset="Images\Rahul.png 400w, https://mk0demosgcc89fcb9u9m.kinstacdn.com/wp-content/uploads/2019/02/raven-face-3-240x300.jpg 240w" sizes="(max-width: 400px) 100vw, 400px"> </div>
</div>
</div>
<div class="elementor-element elementor-element-f5cdfb4 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="f5cdfb4" data-element_type="widget" data-widget_type="social-icons.default">
<div class="elementor-widget-container">
<div class="elementor-social-icons-wrapper elementor-grid">
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-github elementor-repeater-item-de54fb8" target="_blank" href="https://github.com/rahulsain">
<span class="elementor-screen-only">Github</span>
<i class="fab fa-github"></i>
</a>
</div>
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-8daa597" target="_blank" href="https://twitter.com/_rahulsain">
<span class="elementor-screen-only">Twitter</span>
<i class="fa fa-twitter"></i>
</a>
</div>
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-b8e13be" target="_blank" href="https://www.linkedin.com/in/rahulsain/">
<span class="elementor-screen-only">Linkedin</span>
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-49630fa elementor-widget elementor-widget-heading" data-id="49630fa" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Rahul Sain</h2>
</div>
</div>
<div class="elementor-element elementor-element-35e3ea9 elementor-widget elementor-widget-heading" data-id="35e3ea9" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Co-Founder</h2>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-b375216 elementor-invisible" data-id="b375216" data-element_type="column" data-settings="{"animation":"slideInLeft"}">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-65b44c2 elementor-widget elementor-widget-image" data-id="65b44c2" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<div class="elementor-image">
<img width="400" height="500" src="Images\Utkarsh.png" class="attachment-full size-full" alt="" loading="lazy" srcset="Images\Utkarsh.png 400w, https://mk0demosgcc89fcb9u9m.kinstacdn.com/wp-content/uploads/2019/02/raven-face-2-240x300.jpg 240w" sizes="(max-width: 400px) 100vw, 400px"></div>
</div>
</div>
<div class="elementor-element elementor-element-0d8cec7 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="0d8cec7" data-element_type="widget" data-widget_type="social-icons.default">
<div class="elementor-widget-container">
<div class="elementor-social-icons-wrapper elementor-grid">
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-github elementor-repeater-item-de54fb8" target="_blank" href="http://github.com/utkzas">
<span class="elementor-screen-only">Github</span>
<i class="fab fa-github"></i>
</a>
</div>
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-8daa597" target="_blank" href="http://twitter.com/utkzas">
<span class="elementor-screen-only">Twitter</span>
<i class="fa fa-twitter"></i>
</a>
</div>
<div class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-facebook elementor-repeater-item-b8e13be" target="_blank" href="https://facebook.com/profile.php?id=100041580410660">
<span class="elementor-screen-only">Facebook</span>
<i class="fab fa-facebook-f"></i>
</a>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-8b4b848 elementor-widget elementor-widget-heading" data-id="8b4b848" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Utkarsh Sharma</h2>
</div>
</div>
<div class="elementor-element elementor-element-c94e81d elementor-widget elementor-widget-heading" data-id="c94e81d" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Chief Technology Officer</h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-d22b5d0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d22b5d0" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1067a34" data-id="1067a34" data-element_type="column">
<div class="elementor-column-wrap">
<div class="elementor-widget-wrap">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-2aadfbe elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2aadfbe" data-element_type="section"
id="clients" data-settings="{"stretch_section":"section-stretched"}" style="width: 1263px; left: -111.667px;">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-cbcf445" data-id="cbcf445" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-fabb346 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="fabb346" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-7573438" data-id="7573438" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-5795d93 elementor-widget elementor-widget-heading" data-id="5795d93" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Very best opinions</h2>
</div>
</div>
<div class="elementor-element elementor-element-b6891c8 elementor-widget elementor-widget-heading" data-id="b6891c8" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">What Clients Say</h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-e4855cb elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e4855cb" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-row">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-28cb58a" data-id="28cb58a" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-4bef521 elementor-widget elementor-widget-testimonial" data-id="4bef521" data-element_type="widget" data-widget_type="testimonial.default">
<div class="elementor-widget-container">
<div class="elementor-testimonial-wrapper elementor-testimonial-text-align-center">
<div class="elementor-testimonial-content">"We fully rely on the ong-term partnership with Uncertain Co. : in order to offer our customers excellent solutions. In addition, the results-oriented
collaboration is a lot of fun."</div>
<div class="elementor-testimonial-meta elementor-has-image elementor-testimonial-image-position-aside">
<div class="elementor-testimonial-meta-inner">
<div class="elementor-testimonial-image">
<img width="400" height="500" src="Images/t1.png" class="attachment-full size-full" alt="" loading="lazy" srcset="Images/t1.png 400w, Images/t1.png 240w" sizes="(max-width: 400px) 100vw, 400px"></div>
<div class="elementor-testimonial-details">
<div class="elementor-testimonial-name">Vinicius Wiesehofer</div>
<div class="elementor-testimonial-job">Journalist</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-c1d9a7c" data-id="c1d9a7c" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-300a5d8 elementor-widget elementor-widget-testimonial" data-id="300a5d8" data-element_type="widget" data-widget_type="testimonial.default">
<div class="elementor-widget-container">
<div class="elementor-testimonial-wrapper elementor-testimonial-text-align-center">
<div class="elementor-testimonial-content">"Uncertain Co. is the right partner for agile and innovative projects thanks to its forward-looking way of thinking and working."</div>
<div class="elementor-testimonial-meta elementor-has-image elementor-testimonial-image-position-aside">
<div class="elementor-testimonial-meta-inner">
<div class="elementor-testimonial-image">
<img width="400" height="500" src="Images/t2.png" class="attachment-full size-full" alt="" loading="lazy" srcset="Images/t2.png 400w, Images/t2.png 240w" sizes="(max-width: 400px) 100vw, 400px"></div>
<div class="elementor-testimonial-details">
<div class="elementor-testimonial-name">Joseph Gonzalez</div>
<div class="elementor-testimonial-job">Editor</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-3cd3879" data-id="3cd3879" data-element_type="column">
<div class="elementor-column-wrap elementor-element-populated">
<div class="elementor-widget-wrap">
<div class="elementor-element elementor-element-d2aeeb7 elementor-widget elementor-widget-testimonial" data-id="d2aeeb7" data-element_type="widget" data-widget_type="testimonial.default">
<div class="elementor-widget-container">
<div class="elementor-testimonial-wrapper elementor-testimonial-text-align-center">
<div class="elementor-testimonial-content">"Uncertain Co. are everything we could want from an IT service provider: creative, uncomplicated and reliable."</div>
<div class="elementor-testimonial-meta elementor-has-image elementor-testimonial-image-position-aside">
<div class="elementor-testimonial-meta-inner">
<div class="elementor-testimonial-image">
<img width="400" height="500" src="Images/t3.png" class="attachment-full size-full" alt="" loading="lazy" srcset="Images/t3.png 400w, Images/t3.png 240w" sizes="(max-width: 400px) 100vw, 400px"></div>
<div class="elementor-testimonial-details">
<div class="elementor-testimonial-name">Tamarcus Brown</div>
<div class="elementor-testimonial-job">Developer</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</div>
</div>
</div>
</div>
</article>
</div>
<!-- #mid -->
<footer id="footer" class="to-move narrow classic footer-separator" itemtype="https://schema.org/WPFooter" itemscope="">
<div class="foot-widgets four-col dark-sidebar">
<div class="foot-content clearfix">
<div id="media_image-8" class="widget widget_media_image"><img width="146" height="40" src="footer-logo.png" class="image wp-image-12104 attachment-full size-full" alt="" loading="lazy" style="max-width: 100%; height: auto;"></div>
<div id="text-17" class="widget widget_text">
<h3 class="title"><span >Uncertain Co</span></h3>
<div class="textwidget">
<p>Providing Tech/IT solutions in various domains including AI/ML, NLP, Android, Web and more. <br> Managed by students for students.</p>
<a href="https://www.linkedin.com/company/uncertain-co/">Get Started Now!</a></p>
</div>
</div>
<div id="contact-info-3" class="widget widget_contact_info">
<h3 class="title"><span> Contact</span></h3>
<div class="info">
<div class="content-text">New Delhi <br> India <br> [email protected]
</div>
<a href="https://www.linkedin.com/company/uncertain-co/"> <i class="fab fa-linkedin"></i> Uncertain Co</a>
<div class="phone with_icon"><i class="fa fa-phone"></i>+33 (0) 101 0000</div>
<div class="fax with_icon"><i class="fa fa-print"></i>+33 (0) 102 0000</div>