-
Notifications
You must be signed in to change notification settings - Fork 2
/
contact.html
1194 lines (1128 loc) · 68.7 KB
/
contact.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>Contact us</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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- bootstrap script -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css">
<link rel="stylesheet" href="./contact.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css" integrity="sha384-wESLQ85D6gbsF459vf1CiZ2+rr+CsxRY0RpiF1tLlQpDnAgg6rwdsUF1+Ics2bni" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<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="icon" href="Images/favicon.png" type="image/png">
<style>
.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 {
position: absolute;
font-size: 30px;
left: 40px;
color: #fff;
}
.logo-container img {
visibility: hidden;
}
.mail-us {
align-items: center;
}
}
@media only screen and (max-width: 1024px) {
.icons-1 {
display: block;
}
.left-title {
position: absolute;
left: 20px;
color: #fff;
}
.logo-container img {
visibility: hidden;
}
.contact-button {
margin: 0;
}
#h2 {
left: 50%;
text-align: center;
margin: 0 !important;
padding: 0 !important;
}
}
.typed-cursor {
font-size: 30px;
}
</style>
<meta name="msapplication-TileImage" content="https://mk0demosgcc89fcb9u9m.kinstacdn.com/wp-content/uploads/2019/02/cropped-favicon-270x270.png">
<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;
}
@media only screen and (max-width: 1024px) {
.icons-1 {
display: block;
}
}
.fa-bars {
color: #fff;
}
.logo-container img {
width: 125px;
/* position: relative; */
}
.row > div {
border: none;
}
.main-text {
width: 100%;
text-align: center;
text-transform: capitalize;
line-height: 22px;
font-size: 16px;
font-family: 'Montserrat', sans-serif; }
</style>
<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">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" 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>
<span class="left-title">Uncertain Co.</span>
</div>
<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_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="index.html#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-menu-item 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"title="Main menu">
<span class="screen-reader-text">Main menu</span><i class="fas fa-bars"></i> </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"style="font-size:30px" >CONTACT US</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" style="font-size: 16px;color:white;"><p style="color:white" class="main-text"> You’re curious about features, a free trial, or even press—we’re ready to answer any and all questions.</p></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="#" target="_self" 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">View Open position<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></div></div></div></div></div></div></div></div>
<div class="container margin">
<div class="row">
<div class="card card-size card-margin card-background col-lg-3 col-md-6 mb-4 ">
<div class="card-body text-center">
<h3 class="card-title card-content text-center"> Contact a specialist</h3>
<p class="card-text card-content text-center">Wondering if Unbounce is the right tool for your business? Chat with our team to see if there's a fit.
</p>
<a href="#" class="btn btn-primary card-button card-button1" style="margin-top: 0px;">Let's Chat</a>
</div>
</div>
<div class="card card-size card-margin card-background col-lg-3 col-md-6 mb-4 mb-lg-0">
<div class="card-body text-center">
<h3 class="card-title card-content text-center"> Get support</h3>
<p class="card-text card-content text-center">Looking for help in the builder or have questions about your existing account? Chat with a real human from our award-winning customer success team
</p>
<a href="#" class="btn btn-primary card-button card-button2" style="margin-top: 0px;">Let's Chat</a>
</div>
</div>
<div class="card card-size card-margin card-background col-lg-3 col-md-6 mb-4">
<div class="card-body text-center">
<h3 class="card-title card-content text-center">Media inquiries</h3>
<p class="card-text card-content text-center">We love working with journalists to share compelling stories. Send us a note and our PR and Communications Manager will be in touch.
</p>
<a href="#" class="btn btn-primary card-button card-button3" style="margin-top: 0px;">Let's Chat</a>
</div>
</div>
<div class="card card-size card-margin card-background col-lg-3 col-md-6 mb-4 mb-lg-0">
<div class="card-body text-center">
<h3 class="card-title card-content text-center">Partnership inquiries</h3>
<p class="card-text card-content text-center">We're into co-marketing with awesome brands. Fill out the form here, and our Partnerships Manager will circle back.
</p>
<a href="#" class="btn btn-primary card-button card-button4" style="margin-top: 0px;">Let's Chat</a>
</div>
</div>
</div>
</div>
<div class="container mail-us">
<h2 id="h2" >Want to know something.</h2>
<div class="contact-button">
<a class="btn btn-primary card-button card-button4" href="mailto:[email protected]">Mail us</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfUZfseSMiETAGxSu8sAyTAgAjHImiiraI4LBw91c7J7M4HJA/viewform" class="btn btn-primary card-button card-button4">Fill google form</a>
</div>
</div>
<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>
<div class="content-open with_icon"><i class="fas fa-clock"></i>Mon. - Fri. 8AM - 6PM</div>
</div>
</div>
<div id="recent-posts-11" class="widget widget_recent_posts widget_about_posts">
<h3 class="title"><span>Recent Posts</span></h3>
<div class="item"><a class="post-title" href="https://www.linkedin.com/company/uncertain-co/" title="Night Colors">Night Colors</a><time class="entry-date published updated" datetime="2019-01-29T14:35:16+00:00" itemprop="datePublished">January 29, 2019</time> </div>
<div class="item"><a class="post-title" href="https://www.linkedin.com/company/uncertain-co/" title="North Pole">North Pole</a><time class="entry-date published updated" datetime="2019-01-29T14:31:29+00:00" itemprop="datePublished">January 29, 2019</time> </div>
<div class="item"><a class="post-title" href="https://www.linkedin.com/company/uncertain-co/" title="Lost Paradise">Lost Paradise</a><time class="entry-date published updated" datetime="2019-01-29T14:31:20+00:00" itemprop="datePublished">January 29, 2019</time> </div>
</div>
</div>
</div>
<div class="foot-items">
<div class="foot-content clearfix">
<div class="f-links">
<div class="socials icons-only white white_hover">
<a target="_blank" title="Instagram" href="#" class="a13_soc-instagram fa fa-instagram" rel="noopener"></a>
<a target="_blank" title="Dribbble" href="#" class="a13_soc-dribbble fa fa-dribbble" rel="noopener"></a>
<a target="_blank" title="Twitter" href="#" class="a13_soc-twitter fa fa-twitter" rel="noopener"></a>
</div>
</div>
<div class="foot-text"> Proudly Built By <a href="https://www.linkedin.com/company/uncertain-co/">Uncertain Co</a></div>
</div>
</div>
</footer>
<script>
var _SEARCHWP_LIVE_AJAX_SEARCH_BLOCKS = true;
var _SEARCHWP_LIVE_AJAX_SEARCH_ENGINE = 'default';
var _SEARCHWP_LIVE_AJAX_SEARCH_CONFIG = 'default';
</script>
<style id="a13-posts-grid-1-inline-css" type="text/css">
.posts-bricks-1 {
max-width: 1920px
}
.posts-bricks-1 .posts-grid-container {
margin-right: -30px
}
.rtl .posts-bricks-1 .posts-grid-container {
margin-right: 0;
margin-left: -30px
}
.posts-bricks-1 .layout-fitRows .archive-item,
.posts-bricks-1 .layout-masonry .archive-item {
margin-bottom: 30px
}
.posts-bricks-1.posts-columns-4 .archive-item,
.posts-bricks-1.posts-columns-4 .grid-master {
width: calc(25% - 30px)
}
.posts-bricks-1.posts-columns-4 .archive-item.w2 {
width: calc(50% - 30px)
}
.posts-bricks-1.posts-columns-4 .archive-item.w3 {
width: calc(75% - 30px)
}
.posts-bricks-1.posts-columns-3 .archive-item,
.posts-bricks-1.posts-columns-3 .grid-master {
width: calc(33.3333333% - 30px)
}
.posts-bricks-1.posts-columns-3 .archive-item.w2 {
width: calc(66.6666666% - 30px)
}
.posts-bricks-1.posts-columns-2 .archive-item,
.posts-bricks-1.posts-columns-2 .grid-master {
width: calc(50% - 30px)
}
.posts-bricks-1.posts-columns-1 .grid-master,
.posts-bricks-1.posts-columns-1 .archive-item,
.posts-bricks-1.posts-columns-2 .archive-item.w2,
.posts-bricks-1.posts-columns-2 .archive-item.w3,
.posts-bricks-1.posts-columns-2 .archive-item.w4,
.posts-bricks-1.posts-columns-3 .archive-item.w3,
.posts-bricks-1.posts-columns-3 .archive-item.w4,
.posts-bricks-1.posts-columns-4 .archive-item.w4 {
width: calc(100% - 30px)
}
@media only screen and (max-width:1600px) {
.header-vertical .with-sidebar .posts-bricks-1.posts-columns-4 .archive-item,
.header-vertical .with-sidebar .posts-bricks-1.posts-columns-4 .grid-master {
width: calc(33.3333333% - 30px)
}
.header-vertical .with-sidebar .posts-bricks-1.posts-columns-4 .archive-item.w2 {
width: calc(66.6666666% - 30px)
}
.header-vertical .with-sidebar .posts-bricks-1.posts-columns-4 .archive-item.w3 {
width: calc(100% - 30px)
}
}
@media only screen and (max-width:1279px) {
.posts-bricks-1.posts-columns-4 .archive-item,
.posts-bricks-1.posts-columns-4 .grid-master {
width: calc(33.3333333% - 30px)
}
.posts-bricks-1.posts-columns-4 .archive-item.w2 {
width: calc(66.6666666% - 30px)
}
.posts-bricks-1.posts-columns-4 .archive-item.w3 {
width: calc(100% - 30px)
}
.header-vertical .layout-fluid.with-sidebar .posts-bricks-1.posts-columns-4 .grid-master,
.header-vertical .layout-fluid.with-sidebar .posts-bricks-1.posts-columns-4 .archive-item,
.header-vertical .layout-fluid.with-sidebar .posts-bricks-1.posts-columns-4 .archive-item.w2,
.header-vertical .layout-fluid.with-sidebar .posts-bricks-1.posts-columns-3 .grid-master,
.header-vertical .layout-fluid.with-sidebar .posts-bricks-1.posts-columns-3 .archive-item {
width: calc(50% - 30px)
}
.header-vertical .layout-fluid.with-sidebar .posts-columns-4 .archive-item.w3,
.header-vertical .layout-fluid.with-sidebar .posts-columns-3 .archive-item.w2 {
width: calc(100% - 30px)
}
.header-vertical .with-sidebar .posts-bricks-1.posts-columns-4 .grid-master,
.header-vertical .with-sidebar .posts-bricks-1.posts-columns-4 .archive-item,
.header-vertical .with-sidebar .posts-bricks-1.posts-columns-4 .archive-item.w2,
.header-vertical .with-sidebar .posts-bricks-1.posts-columns-3 .grid-master,
.header-vertical .with-sidebar .posts-bricks-1.posts-columns-3 .archive-item {
width: calc(50% - 30px)
}
.header-vertical .with-sidebar .posts-bricks-1.posts-columns-4 .archive-item.w3,
.header-vertical .with-sidebar .posts-bricks-1.posts-columns-3 .archive-item.w2 {
width: calc(100% - 30px)
}
}
@media only screen and (max-width:800px) {
#mid .posts-bricks-1.posts-columns-4 .archive-item,
#mid .posts-bricks-1.posts-columns-4 .grid-master,
#mid .posts-bricks-1.posts-columns-4 .archive-item.w2,
#mid .posts-bricks-1.posts-columns-3 .archive-item,
#mid .posts-bricks-1.posts-columns-3 .grid-master {
width: calc(50% - 30px)
}
#mid .posts-bricks-1.posts-columns-4 .archive-item.w3,
#mid .posts-bricks-1.posts-columns-3 .archive-item.w2 {
width: calc(100% - 30px)
}
}
@media only screen and (max-width:480px) {
.posts-bricks-1 .posts-grid-container {
margin-right: 0
}
.rtl .posts-bricks-1 .posts-grid-container {
margin-left: 0
}
#mid .posts-bricks-1.posts-columns-4 .grid-master,
#mid .posts-bricks-1.posts-columns-4 .archive-item,
#mid .posts-bricks-1.posts-columns-4 .archive-item.w2,
#mid .posts-bricks-1.posts-columns-4 .archive-item.w3,
#mid .posts-bricks-1.posts-columns-4 .archive-item.w4,
#mid .posts-bricks-1.posts-columns-3 .grid-master,
#mid .posts-bricks-1.posts-columns-3 .archive-item,
#mid .posts-bricks-1.posts-columns-3 .archive-item.w2,
#mid .posts-bricks-1.posts-columns-3 .archive-item.w3,
#mid .posts-bricks-1.posts-columns-2 .grid-master,
#mid .posts-bricks-1.posts-columns-2 .archive-item,
#mid .posts-bricks-1.posts-columns-2 .archive-item.w2,
#mid .posts-bricks-1.posts-columns-1 .grid-master,
#mid .posts-bricks-1.posts-columns-1 .archive-item {
width: 100%
}
}
.posts-list .layout-full.with-sidebar .content-box,
.posts-list .layout-full_fixed.with-sidebar .content-box,
.posts-list .layout-full_padding.with-sidebar .content-box {
margin-left: 30px;
width: calc(75% - 30px)
}
.posts-list .layout-full.right-sidebar .content-box,
.posts-list .layout-full_fixed.right-sidebar .content-box,
.posts-list .layout-full_padding.right-sidebar .content-box {
margin-left: 0;
margin-right: 30px
}
@media only screen and (min-width:1560px) {
.posts-list .layout-full.with-sidebar .content-box {
width: calc(100% - 320px - 30px)
}
}
@media only screen and (min-width:1640px) {
.posts-list .layout-full_padding.with-sidebar .content-box {
width: calc(100% - 320px - 30px)
}
}
@media only screen and (max-width:1400px) and (min-width:1025px) {
.posts-list .layout-full_padding.with-sidebar .content-box {
width: calc(70% - 30px)
}
}
@media only screen and (max-width:1320px) and (min-width:1025px) {
.posts-list .layout-full.with-sidebar .content-box {
width: calc(70% - 30px)
}
}
@media only screen and (max-width:1024px) {
.posts-list .layout-full.with-sidebar .content-box,
.posts-list .layout-full_fixed.with-sidebar .content-box,
.posts-list .layout-full_padding.with-sidebar .content-box {
width: calc(70% - 30px)
}
}
@media only screen and (max-width:768px) {
.posts-list .layout-full.with-sidebar .content-box,
.posts-list .layout-full_fixed.with-sidebar .content-box,
.posts-list .layout-full_padding.with-sidebar .content-box {
width: auto;
margin-left: 0;
margin-right: 0
}
}
</style>
<link rel="stylesheet" id="mediaelement-css" href="MYFILES/mediaelementplayer-legacy.min.css" type="text/css" media="all">
<link rel="stylesheet" id="wp-mediaelement-css" href="MYFILES/wp-mediaelement.min.css" type="text/css" media="all">
<style id="a13-works-grid-1-inline-css" type="text/css">
.works-bricks-1 {
max-width: 1920px
}
.works-bricks-1 .works-grid-container {
margin-right: -0
}
.rtl .works-bricks-1 .works-grid-container {
margin-right: 0;
margin-left: -0
}
.works-bricks-1 .layout-fitRows .archive-item,
.works-bricks-1 .layout-masonry .archive-item {
margin-bottom: 0
}
.works-bricks-1.works-columns-4 .archive-item,
.works-bricks-1.works-columns-4 .grid-master {
width: calc(25%)
}
.works-bricks-1.works-columns-4 .archive-item.w2 {
width: calc(50%)
}
.works-bricks-1.works-columns-4 .archive-item.w3 {
width: calc(75%)
}
.works-bricks-1.works-columns-3 .archive-item,
.works-bricks-1.works-columns-3 .grid-master {
width: calc(33.3333333%)
}
.works-bricks-1.works-columns-3 .archive-item.w2 {
width: calc(66.6666666%)
}
.works-bricks-1.works-columns-2 .archive-item,
.works-bricks-1.works-columns-2 .grid-master {
width: calc(50%)
}
.works-bricks-1.works-columns-1 .grid-master,
.works-bricks-1.works-columns-1 .archive-item,
.works-bricks-1.works-columns-2 .archive-item.w2,
.works-bricks-1.works-columns-2 .archive-item.w3,
.works-bricks-1.works-columns-2 .archive-item.w4,
.works-bricks-1.works-columns-3 .archive-item.w3,
.works-bricks-1.works-columns-3 .archive-item.w4,
.works-bricks-1.works-columns-4 .archive-item.w4 {
width: calc(100%)
}
@media only screen and (max-width:1279px) {
.works-columns-4 .archive-item,
.works-columns-4 .grid-master {
width: calc(33.3333333%)
}
.works-columns-4 .archive-item.w2 {
width: calc(66.6666666%)
}
.works-columns-4 .archive-item.w3 {
width: calc(100%)
}
}
@media only screen and (max-width:800px) {
.works-bricks-1.works-columns-4 .grid-master,
.works-bricks-1.works-columns-4 .archive-item,
.works-bricks-1.works-columns-4 .archive-item.w2,
.works-bricks-1.works-columns-3 .grid-master,
.works-bricks-1.works-columns-3 .archive-item {
width: calc(50%)
}
.works-bricks-1.works-columns-4 .archive-item.w3,
.works-bricks-1.works-columns-3 .archive-item.w2 {
width: calc(100%)
}
}
@media only screen and (max-width:480px) {
.works-bricks-1 .works-grid-container {
margin-right: 0
}
.rtl .works-bricks-1 .works-grid-container {
margin-left: 0
}
.works-bricks-1.works-columns-4 .grid-master,
.works-bricks-1.works-columns-4 .archive-item,
.works-bricks-1.works-columns-4 .archive-item.w2,
.works-bricks-1.works-columns-4 .archive-item.w3,
.works-bricks-1.works-columns-4 .archive-item.w4,
.works-bricks-1.works-columns-3 .grid-master,
.works-bricks-1.works-columns-3 .archive-item,
.works-bricks-1.works-columns-3 .archive-item.w2,
.works-bricks-1.works-columns-3 .archive-item.w3,
.works-bricks-1.works-columns-2 .grid-master,
.works-bricks-1.works-columns-2 .archive-item,
.works-bricks-1.works-columns-2 .archive-item.w2,
.works-bricks-1.works-columns-1 .grid-master,
.works-bricks-1.works-columns-1 .archive-item {
width: 100%
}
}
</style>
<script type="text/javascript" id="apollo13framework-plugins-js-extra">
/* <![CDATA[ */
var ApolloParams = {
"ajaxurl": "https:\/\/rifetheme.com\/lander\/wp-admin\/admin-ajax.php",
"site_url": "https:\/\/rifetheme.com\/lander\/",
"defimgurl": "https:\/\/rifetheme.com\/wp-content\/themes\/rife-free\/images\/holders\/photo.png",
"options_name": "apollo13_option_rife",
"load_more": "Load more",
"loading_items": "Loading next items",
"anchors_in_bar": "",
"scroll_to_anchor": "1",
"writing_effect_mobile": "",
"writing_effect_speed": "90",
"hide_content_under_header": "content",
"default_header_variant": "normal",
"header_sticky_top_bar": "",
"header_color_variants": "on",
"show_header_at": "0",
"header_normal_social_colors": "white|color_hover|color|color_hover",
"header_light_social_colors": "semi-transparent|color_hover|color|color_hover",
"header_dark_social_colors": "semi-transparent|color_hover|color|color_hover",
"header_sticky_social_colors": "white|color_hover|color|color_hover",
"close_mobile_menu_on_click": "1",
"menu_overlay_on_click": "",
"allow_mobile_menu": "1",
"submenu_opener": "fa-angle-down",
"submenu_closer": "fa-angle-up",
"submenu_third_lvl_opener": "fa-angle-right",
"submenu_third_lvl_closer": "fa-angle-left",
"posts_layout_mode": "packery",
"products_brick_margin": "0",
"products_layout_mode": "packery",
"albums_list_layout_mode": "packery",
"album_bricks_thumb_video": "",
"works_list_layout_mode": "packery",
"work_bricks_thumb_video": "",
"people_list_layout_mode": "fitRows",
"lg_lightbox_share": "1",
"lg_lightbox_controls": "1",
"lg_lightbox_download": "",
"lg_lightbox_counter": "1",
"lg_lightbox_thumbnail": "1",
"lg_lightbox_show_thumbs": "",
"lg_lightbox_autoplay": "1",
"lg_lightbox_autoplay_open": "",
"lg_lightbox_progressbar": "1",
"lg_lightbox_full_screen": "1",
"lg_lightbox_zoom": "1",
"lg_lightbox_mode": "lg-slide",
"lg_lightbox_speed": "600",
"lg_lightbox_preload": "1",
"lg_lightbox_hide_delay": "2000",
"lg_lightbox_autoplay_pause": "5000",
"lightbox_single_post": ""
};
/* ]]> */
</script>
<script type="text/javascript" src="MYFILES/helpers.min.js.download" id="apollo13framework-plugins-js"></script>
<script type="text/javascript" src="MYFILES/jquery.fitvids.min.js.download" id="jquery-fitvids-js"></script>
<script type="text/javascript" src="MYFILES/jquery.fittext.min.js.download" id="jquery-fittext-js"></script>
<script type="text/javascript" src="MYFILES/jquery.slides.min.js.download" id="jquery-slides-js"></script>
<script type="text/javascript" src="MYFILES/jquery.sticky-kit.min.js.download" id="jquery-sticky-kit-js"></script>
<script type="text/javascript" src="MYFILES/jquery.mousewheel.min.js.download" id="jquery-mousewheel-js"></script>
<script type="text/javascript" src="MYFILES/typed.min.js.download" id="jquery-typed-js"></script>
<script type="text/javascript" src="MYFILES/isotope.pkgd.min.js.download" id="apollo13framework-isotope-js"></script>
<script type="text/javascript" src="MYFILES/lightgallery-all.min.js.download" id="jquery-lightgallery-js"></script>
<script type="text/javascript" src="MYFILES/script.min.js.download" id="apollo13framework-scripts-js"></script>
<script type="text/javascript" id="swp-live-search-client-js-extra">
/* <![CDATA[ */
var searchwp_live_search_params = [];
searchwp_live_search_params = {
"ajaxurl": "https:\/\/rifetheme.com\/lander\/wp-admin\/admin-ajax.php",
"origin_id": 8754,
"config": {
"default": {
"engine": "default",
"input": {
"delay": 500,
"min_chars": 3
},
"results": {
"position": "bottom",
"width": "css",
"offset": {
"x": 0,
"y": 0
}
},
"spinner": {
"lines": 10,
"length": 8,
"width": 4,
"radius": 8,
"corners": 1,
"rotate": 0,
"direction": 1,
"color": "#000",
"speed": 1,
"trail": 60,
"shadow": false,
"hwaccel": false,
"className": "spinner",
"zIndex": 2000000000,
"top": "50%",
"left": "50%"
},
"results_destroy_on_blur": false,
"parent_el": "#search-results-header"
}
},
"msg_no_config_found": "No valid SearchWP Live Search configuration found!",
"aria_instructions": "When autocomplete results are available use up and down arrows to review and enter to go to the desired page. Touch device users, explore by touch or with swipe gestures."
};;
/* ]]> */
</script>
<script type="text/javascript" src="MYFILES/script.min.js(1).download" id="swp-live-search-client-js"></script>
<script type="text/javascript" src="MYFILES/wp-embed.min.js.download" id="wp-embed-js"></script>
<script type="text/javascript" src="MYFILES/waypoints.min.js.download" id="elementor-waypoints-js"></script>
<script type="text/javascript" src="MYFILES/frontend.js.download" id="a13ree-frontend-js"></script>
<script type="text/javascript" src="MYFILES/jquery-numerator.min.js.download" id="jquery-numerator-js"></script>
<script type="text/javascript" src="MYFILES/anime.min.js.download" id="anime-js"></script>
<script type="text/javascript" src="MYFILES/a13-slider.min.js.download" id="apollo13framework-slider-js"></script>
<script type="text/javascript" id="mediaelement-core-js-before">
var mejsL10n = {
"language": "en",
"strings": {
"mejs.download-file": "Download File",
"mejs.install-flash": "You are using a browser that does not have Flash player enabled or installed. Please turn on your Flash player plugin or download the latest version from https:\/\/get.adobe.com\/flashplayer\/",
"mejs.fullscreen": "Fullscreen",
"mejs.play": "Play",
"mejs.pause": "Pause",
"mejs.time-slider": "Time Slider",
"mejs.time-help-text": "Use Left\/Right Arrow keys to advance one second, Up\/Down arrows to advance ten seconds.",
"mejs.live-broadcast": "Live Broadcast",
"mejs.volume-help-text": "Use Up\/Down Arrow keys to increase or decrease volume.",
"mejs.unmute": "Unmute",
"mejs.mute": "Mute",
"mejs.volume-slider": "Volume Slider",
"mejs.video-player": "Video Player",
"mejs.audio-player": "Audio Player",
"mejs.captions-subtitles": "Captions\/Subtitles",
"mejs.captions-chapters": "Chapters",
"mejs.none": "None",
"mejs.afrikaans": "Afrikaans",
"mejs.albanian": "Albanian",
"mejs.arabic": "Arabic",
"mejs.belarusian": "Belarusian",
"mejs.bulgarian": "Bulgarian",
"mejs.catalan": "Catalan",
"mejs.chinese": "Chinese",
"mejs.chinese-simplified": "Chinese (Simplified)",
"mejs.chinese-traditional": "Chinese (Traditional)",
"mejs.croatian": "Croatian",
"mejs.czech": "Czech",
"mejs.danish": "Danish",