-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
774 lines (719 loc) · 45.5 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
<!DOCTYPE html>
<html class="has-sidemenu" lang="en-US" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- ===============================================-->
<!-- Document Title-->
<!-- ===============================================-->
<title> Home | R-Tech Global Limited</title>
<!-- ===============================================-->
<!-- Favicons-->
<!-- ===============================================-->
<link rel="apple-touch-icon" sizes="180x180" href="./assets/images/logo.jpg">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/logo.jpg">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/images/logo.jpg">
<link rel="shortcut icon" type="image/x-icon" href="./assets/images/logo.jpg">
<meta name="msapplication-TileImage" content="./assets/images/logo.jpg">
<meta name="theme-color" content="#ffffff">
<!-- ===============================================-->
<!-- Stylesheets-->
<!-- ===============================================-->
<link href="./vendors/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="./vendors/loaders.css/loaders.min.css" rel="stylesheet" type="text/css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css?family=PT+Mono%7cPT+Serif:400,400i%7cLato:100,300,400,700,800,900"
rel="stylesheet">
<link href="./assets/css/theme.min.css" rel="stylesheet" />
</head>
<body class="overflow-hidden-x">
<nav class="fancynavbar fancynavbar-expand-lg"
data-zanim-lg='{"from":{"opacity":1,"x":70},"to":{"opacity":1,"x":0},"ease":"CubicBezier","duration":0.8,"delay":0.3}'
data-zanim-xs='{"from":{"opacity":1,"y":-37},"to":{"opacity":1,"y":0},"ease":"CubicBezier","duration":0.8,"delay":0.3}'
data-zanim-trigger="scroll" data-exclusive="true">
<div class="fancynavbar-togglerbar" data-onscroll-fade-in="data-onscroll-fade-in"><a class="fancynavbar-brand"
href="index.html">
<img class="fancynavbar-brand-img" src="./assets/images/logo.jpg" alt="" width="30" height="30"
data-zanim-lg='{"from":{"opacity":0,"x":45},"to":{"opacity":1,"x":0},"ease":"CubicBezier","duration":0.8,"delay":0.4}'
data-zanim-trigger="scroll" />
<!--You can use icon or text logo as well-->
<!--<span class='fab fa-superpowers fs-3'></span>-->
<!-- <span class='logo-sparrow'>R</span> -->
</a>
<div class="fancynavbar-toggler"><svg class="fancynavbar-toggler-icon" viewBox="0 0 70 70"
xmlns="http://www.w3.org/2000/svg"
data-zanim-lg='{"from":{"opacity":0,"x":45},"to":{"opacity":1,"x":0},"ease":"CubicBezier","duration":0.8,"delay":0.5}'
data-zanim-trigger="scroll">
<path id="path-top"
d="M20,25c0,0,22,0,30,0c16,0,18.89,40.71-.15,21.75C38.7,35.65,19.9,16.8,19.9,16.8"></path>
<path id="path-middle" d="M20,32h30"></path>
<path id="path-bottom"
d="M19.9,46.98c0,0,18.8-18.85,29.95-29.95C68.89-1.92,66,38.78,50,38.78c-8,0-30,0-30,0"></path>
</svg></div>
<div class="fancynavbar-addon fancynavbar-addon-height"
data-zanim-lg='{"from":{"opacity":1,"x":45},"to":{"opacity":1,"x":0},"ease":"CubicBezier","duration":0.8,"delay":0.4}'
data-zanim-trigger="scroll"><a class="fancynavbar-addon-item" href="index.html"><span
class="fas fa-home"></span></a>
</div>
</div>
<div class="fancynavbar-collapse">
<ul class="fancynavbar-nav">
<li class="fancynav-item"><a class="fancynav-link" href="index.html"><span
class="fancynav-link-content text-capitalize">Home</span></a></li>
<li class="fancynav-item"><a class="fancynav-link" href="about.html"><span
class="fancynav-link-content text-capitalize">About us</span></a></li>
<li class="fancynav-item" data-one-page="data-one-page"><a class="fancynav-link"
href="index.html#Services"><span class="fancynav-link-content text-capitalize">Out
Services</span></a></li>
<li class="fancynav-item"><a class="fancynav-link" href="portfolio.html"><span
class="fancynav-link-content text-capitalize">portfolio</span></a></li>
<li class="fancynav-item"><a class="fancynav-link" href="contact.html"><span
class="fancynav-link-content text-capitalize">contact</span></a></li>
</ul>
</div>
</nav>
<!-- ===============================================-->
<!-- Main Content-->
<!-- ===============================================-->
<main class="main min-vh-100" id="top">
<!-- ============================================-->
<!-- Preloader ==================================-->
<div class="preloader" id="preloader">
<div class="loader">
<div class="line-scale-pulse-out-rapid">
<div> </div>
<div></div>
<div></div>
<div></div>
<div> </div>
</div>
</div>
</div><!-- ============================================-->
<!-- End of Preloader ===========================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section class="py-0">
<div class="container-fluid">
<div class="row h-100 border-bottom">
<div class="col-lg-6 px-0 order-lg-2" data-zanim-lg='{"animation":"slide-left","delay":0.4}'
data-zanim-trigger="scroll">
<div class="swiper-container theme-slider swiper-theme"
data-swiper='{"autoplay":{"delay":5000,"disableOnInteraction":false},"loop":true,"effect":"fade","pagination":{"el":".swiper-pagination","clickable":true,"type":"bullets"}}'
data-zanim-lg='{"animation":"zoom-out","delay":0}' data-zanim-trigger="scroll">
<div class="swiper-wrapper">
<div class="swiper-slide min-vh-lg-100 py-9">
<div class="bg-holder"
style="background-image:url(./assets/images/hero-image-1.jpg);">
</div>
<!--/.bg-holder-->
</div>
<div class="swiper-slide min-vh-lg-100 py-9">
<div class="bg-holder"
style="background-image:url(./assets/images/hero-image-2.jpg);">
</div>
<!--/.bg-holder-->
</div>
<div class="swiper-slide min-vh-lg-100 py-9">
<div class="bg-holder"
style="background-image:url(./assets/images/hero-image-3.jpg);">
</div>
<!--/.bg-holder-->
</div>
</div>
<div class="swiper-pagination"></div>
<div class="swiper-nav">
<div class="swiper-button-next me-md-3"></div>
<div class="swiper-button-prev ms-md-3"> </div>
</div>
</div>
</div>
<div class="col-lg-6 bg-white py-7 py-md-8">
<div class="row flex-center h-100">
<div class="col-lg-10 text-black text-center text-lg-start" data-zanim-timeline="{}"
data-zanim-trigger="scroll">
<div class="overflow-hidden">
<h4 class="text-uppercase fw-normal ls text-white bg-dark p-1 rounded d-inline-block"
data-zanim-xs='{"delay":0.1}'>Welcome to</h4>
</div>
<div class="overflow-hidden">
<h1 class="display-3 fs-5 fs-sm-6" id="sc" data-zanim-xs='{"delay":0.2}'><span
class="text-decoration-underline">R-TECH</span><br /><span
class="fw-light text-uppercase">global limited</span></h1>
</div>
<div class="overflow-hidden">
<p class="text-900 fs-0 mt-3 mt-md-5" data-zanim-xs='{"delay":0.3}'>
Building the future through innovative technology
</p>
</div>
<!-- <div class="overflow-hidden">
<div class="d-lg-flex align-items-center fw-bold ls mt-3 mt-md-5 text-uppercase"
data-zanim-xs='{"delay":0.4}'>
<h6 class="mb-lg-0">Follow Us:</h6>
<div class="overflow-hidden"><a class="me-1" href="#!"><span
class="fab fa-facebook text-dark me-2 ms-3 fs-0"></span></a><a
class="me-1" href="#!"><span
class="fab fa-twitter text-dark me-2 fs-0"></span></a><a
class="me-1" href="#!"><span
class="fab fa-google-plus-g text-dark fs-0"></span></a></div>
</div>
</div> -->
</div>
</div>
</div>
</div>
</div><!-- end of .container-->
</section><!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section class="py-6 py-md-8" id="defaultWhyUs">
<div class="container">
<div class="row flex-center">
<div class="col-12 mb-2 mb-lg-5 text-center">
<h2 class="fs-3 fs-sm-4"><span class="text-decoration-underline" data-zanim-xs='{"delay":0.3}'
data-zanim-trigger="scroll">Why R-Tech Global?</span></h2>
</div>
</div>
<div class="row">
<div class="col-sm-8 col-lg-4 text-lg-end mt-5 mt-lg-0 pe-lg-3 pe-xl-4">
<div class="overflow-hidden">
<p class="lead" data-zanim-xs='{"delay":0.2}' data-zanim-trigger="scroll">
At R-Tech Global, we specialize in cutting-edge web development and captivating web
design solutions. Our team of skilled
professionals crafts stunning websites that not only look incredible but also function
seamlessly across all devices.
Whether you need a sleek portfolio site or a robust e-commerce platform, we bring your
vision to life.
</p>
</div>
</div>
<div class="col-sm-8 col-lg-4 mt-4 mt-lg-0 px-lg-4"><img
class="h-100 w-100 rounded object-fit-cover" src="./assets/images/about-us.jpg" alt=""
data-zanim-xs='{"animation":"zoom-out","delay":0.1}' data-zanim-trigger="scroll" /></div>
<div class="col-sm-8 col-lg-4 mt-5 mt-lg-0 ps-lg-3 ps-xl-4">
<div class="overflow-hidden">
<p class="lead" data-zanim-xs='{"delay":0.3}' data-zanim-trigger="scroll">
With a commitment to excellence and a passion for innovation, R-Tech Global is your
partner in achieving digital success.
Let's collaborate and transform your online presence into something extraordinary.
</p>
</div>
</div>
</div>
</div><!-- end of .container-->
</section>
<!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section id="Services">
<div class="container">
<div class="row justify-content-center gy-4 gx-lg-4">
<div class="col-12">
<div class="col-lg-9 px-0 mx-auto text-center">
<h2 class="fs-3 fs-sm-4 text-decoration-underline mb-3">Our Services</h2>
<p class="text-500 fst-italic">At Tech Company, we offer a wide range of services to help
businesses succeed online. Our
team of experts is passionate
about web development and web design, and we take pride in delivering high-quality
solutions
that meet our clients'
unique needs. From building responsive websites to creating custom web applications, we
have
the skills and experience
to bring your vision to life. Contact us today to learn more about how we can help your
business thrive.</p>
<hr class="hr-short mt-5" />
</div>
</div>
<div class="col-lg-5">
<div class="d-flex" id="bootstrap5" data-zanim-trigger="scroll" data-zanim-timeline="{}">
<div class="overflow-hidden"><img class="me-3 me-sm-4" src="./assets/images/s-icon-1.svg"
width="50" alt="" data-zanim-xs='{"delay":0.2,"animation":"slide-right"}' /></div>
<div class="flex-1">
<div class="overflow-hidden">
<h4 class="mb-2" data-zanim-xs='{"delay":0.1,"animation":"slide-right"}'>
Custom Website Development
</h4>
</div>
<div class="overflow-hidden">
<p data-zanim-xs='{"delay":0.2,"animation":"slide-right"}'>
Crafting tailored websites to suit your unique needs and goals.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="d-flex" id="responsiveCSShelperclasses" data-zanim-trigger="scroll"
data-zanim-timeline="{}">
<div class="overflow-hidden"><img class="me-3 me-sm-4" src="./assets/images/s-icon-2.png"
width="50" alt="" data-zanim-xs='{"delay":0.2,"animation":"slide-right"}' /></div>
<div class="flex-1">
<div class="overflow-hidden">
<h4 class="mb-2" data-zanim-xs='{"delay":0.1,"animation":"slide-right"}'>
Responsive Web Design
</h4>
</div>
<div class="overflow-hidden">
<p data-zanim-xs='{"delay":0.2,"animation":"slide-right"}'>
Build responsive, mobile-first projects on the web with the world's most popular
front-end component library.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="d-flex" id="32setsofelements" data-zanim-trigger="scroll" data-zanim-timeline="{}">
<div class="overflow-hidden"><img class="me-3 me-sm-4" src="./assets/images/s-icon-3.png"
width="50" alt="" data-zanim-xs='{"delay":0.2,"animation":"slide-right"}' /></div>
<div class="flex-1">
<div class="overflow-hidden">
<h4 class="mb-2" data-zanim-xs='{"delay":0.1,"animation":"slide-right"}'>
E-commerce Solutions
</h4>
</div>
<div class="overflow-hidden">
<p data-zanim-xs='{"delay":0.2,"animation":"slide-right"}'>
Elevate your online business with robust e-commerce solutions designed for
efficiency and growth.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="d-flex" id="butterysmoothanimation" data-zanim-trigger="scroll"
data-zanim-timeline="{}">
<div class="overflow-hidden"><img class="me-3 me-sm-4" src="./assets/images/s-icon-4.png"
width="50" alt="" data-zanim-xs='{"delay":0.2,"animation":"slide-right"}' /></div>
<div class="flex-1">
<div class="overflow-hidden">
<h4 class="mb-2" data-zanim-xs='{"delay":0.1,"animation":"slide-right"}'>
User Experience (UX) Optimization
</h4>
</div>
<div class="overflow-hidden">
<p data-zanim-xs='{"delay":0.2,"animation":"slide-right"}'>Crazy fast, responsive,
efficient and freakishly robust GSAP; giving you the new standard for HTML5 and
javascript animation.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="d-flex" id="modular&amp;multipurpose" data-zanim-trigger="scroll"
data-zanim-timeline="{}">
<div class="overflow-hidden"><img class="me-3 me-sm-4" src="./assets/images/s-icon-5.png"
width="50" alt="" data-zanim-xs='{"delay":0.2,"animation":"slide-right"}' /></div>
<div class="flex-1">
<div class="overflow-hidden">
<h4 class="mb-2" data-zanim-xs='{"delay":0.1,"animation":"slide-right"}'>
Mobile App Development
</h4>
</div>
<div class="overflow-hidden">
<p data-zanim-xs='{"delay":0.2,"animation":"slide-right"}'>
Embark on your mobile journey with R-Tech Global today. Let's build an app that
resonates with your audience and propels
your business forward!"
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="d-flex" id="familiarmarkup" data-zanim-trigger="scroll" data-zanim-timeline="{}">
<div class="overflow-hidden"><img class="me-3 me-sm-4" src="./assets/images/s-icon-6.png"
width="50" alt="" data-zanim-xs='{"delay":0.2,"animation":"slide-right"}' /></div>
<div class="flex-1">
<div class="overflow-hidden">
<h4 class="mb-2" data-zanim-xs='{"delay":0.1,"animation":"slide-right"}'>
SEO Strategies
</h4>
</div>
<div class="overflow-hidden">
<p data-zanim-xs='{"delay":0.2,"animation":"slide-right"}'>
R-Tech Global coding structure is instantly recognizable, comprehensible, and
effortlessly extendable, providing a solid
foundation for effective SEO strategies.
</p>
</div>
</div>
</div>
</div>
</div>
</div><!-- end of .container-->
</section><!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section class="border-top" id="defaultProcess">
<div class="container">
<div class="row justify-content-center text-center mb-6">
<div class="col-lg-6">
<h2 class="fs-3 fs-sm-4 text-decoration-underline mb-3 text-capitalize">our process</h2>
<p class="text-500 fst-italic">Our process is a flexible framework that adapts, evolves and
responds to your needs. It is the streamlined result of two decades of website design and
marketing for hundreds of clients.</p>
<hr class="hr-short mt-5" />
</div>
</div>
<div class="row">
<div class="col-12 ps-lg-7">
<div class="row align-items-end">
<div class="col-lg-6 order-lg-2 text-center"><img class="img-fluid"
src="./assets/images/process-01.svg" alt="" width="400" /></div>
<div class="col-lg-6 border-lg-start border-lg-bottom pb-lg-8 mt-4 mt-lg-0 mb-8 mb-lg-0">
<div class="process-item ms-6 ms-sm-8 ms-lg-6"><span
class="process-item-number">01</span>
<h3 class="text-capitalize">plan</h3>
<p>We set priorities, organize content, and understand the buyer’s journey that your
audience takes as they navigate your website. At the end of strategy, you will
have a Blueprint for your website project, a comprehensive strategic plan for
your website design, content, and functionality.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 border-lg-end border-lg-bottom text-center py-lg-8"><img
class="img-fluid" src="./assets/images/process-02.svg" alt="" width="400" /></div>
<div class="col-lg-6 mt-4 mb-8 my-lg-8">
<div class="process-item ms-6 ms-sm-8 ms-lg-6"><span
class="process-item-number">02</span>
<h3 class="text-capitalize">design</h3>
<p>Once the Blueprint is approved, we create wireframes and a design comp for your
review. This process involves various reviews, approvals, and close
communication between you and our creative team. We begin with the Homepage to
set style, image and branding standards, then move toward interior layouts.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 order-lg-2 text-center align-self-center"><img class="img-fluid"
src="./assets/images/process-03.svg" alt="" width="400" /></div>
<div class="col-lg-6 border-lg-start border-lg-bottom py-lg-8 mt-4 mt-lg-0 mb-8 mb-lg-0">
<div class="process-item ms-6 ms-sm-8 ms-lg-6"><span
class="process-item-number">03</span>
<h3 class="text-capitalize">develop</h3>
<p>With the blueprint & design comps as our guide, the development team begins
to create your website with the state of the earth tools. Our entire team works
to add content, final design elements, review, & test your website for
quality.</p>
</div>
</div>
</div>
<div class="row pb-1">
<div class="col-lg-6 border-lg-end text-center py-lg-8"><img class="img-fluid"
src="./assets/images/process-04.svg" alt="" width="400" /></div>
<div class="col-lg-6 align-self-center mt-4 mt-lg-0 mt-lg-8">
<div class="process-item process-item-last ms-6 ms-sm-8 ms-lg-6"><span
class="process-item-number">04</span>
<h3 class="text-capitalize">deploy</h3>
<p>After testing and review, we present your new website. Upon your approval, your
website will be launched, promoted and optimized for search engines such as
Google & Bing.</p>
</div>
</div>
</div>
</div>
</div>
</div><!-- end of .container-->
</section><!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section class="overflow-hidden py-0" id="defaultCta2">
<div class="container">
<div class="position-absolute overflow-hidden all-0">
<div class="bg-holder overlay overlay-2 rounded"
style="background-image:url(./assets/images/banner-1.jpg);" data-zanim-trigger="scroll"
data-zanim-lg='{"animation":"zoom-out","delay":0}'></div>
<!--/.bg-holder-->
</div>
<div class="row flex-center text-center py-8">
<div class="col-lg-9 px-lg-8 mt-6 mt-lg-0 position-relative">
<div class="swiper-container theme-slider position-static"
data-swiper='{"autoplay":{"delay":3000},"loop":true,"effect":"slide"}'>
<div class="swiper-wrapper">
<div class="swiper-slide">
<h4 class="font-base fw-light text-white fst-italic fs-1 fs-sm-2 mb-4">"R-Tech
Global revamped our website flawlessly. Their professionalism and
understanding of our brand made the process
enjoyable. Highly recommended!
"</h4>
<h6 class="fs-0 mb-0 text-white fw-black">Mane Dumas</h6>
</div>
<div class="swiper-slide">
<h4 class="font-base fw-light text-white fst-italic fs-1 fs-sm-2 mb-4">
"Collaborating with R-Tech Global was a revelation. Their expertise in mobile
app
development surpassed our expectations.
Seamless process, remarkable results!"</h4>
<h6 class="fs-0 mb-0 text-white fw-black">Jane Dumas</h6>
</div>
</div>
<div class="swiper-nav">
<div class="swiper-button-next me-md-5"></div>
<div class="swiper-button-prev ms-md-5"></div>
</div>
</div>
</div>
</div>
</div><!-- end of .container-->
</section><!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section class="text-center pb-0" id="defaultProgressbar">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6">
<h2 class="fs-3 fs-sm-4 text-decoration-underline mb-3">Performance?</h2>
<p class="text-500 fst-italic">Be surprised seeing the final outcome of your creation with
R-Tech Global and want more, no matter the task.</p>
</div>
</div>
<div class="row align-items-center mt-6">
<div class="col-md-6 position-relative">
<div class="progress-circle mb-4"
data-progress-circle='{"progress":100,"subText":"<span class='text-700 pt-2'></span>"}'>
</div>
<h4>Record Breaking in History</h4>
<p class="px-4">Creating with R-Tech Global is an easier, faster way to get things done.
And it makes
development even more effortless.</p>
</div>
<div class="col-md-6 ps-md-7 text-start mt-8 mt-md-0">
<div class="progress-line me-4"
data-progress-line='{"progress":100,"subText":"Client Satisfaction"}'>
</div>
<div class="progress-line me-4 mt-4"
data-progress-line='{"progress":100,"subText":"Product Satisfaction"}'></div>
<div class="progress-line me-4 mt-4"
data-progress-line='{"progress":100,"subText":"Support Satisfaction"}'></div>
<p class="mt-4">
As a software solution provider, we help organizations to expand and achieve their goals.
</p>
</div>
</div>
</div><!-- end of .container-->
</section><!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section class="text-center pb-0" id="defaultMembers">
<div class="container">
<div class="row flex-center">
<div class="col-lg-7 col-xl-6">
<h2 class="fs-3 fs-sm-4 text-decoration-underline mb-3 text-capitalize">meet the crews</h2>
<p class="text-500 fst-italic">A passionate group of experienced designers, developers and
programmers motivated to continually reach goals and tackle new challenges</p>
</div>
<div class="w-100"></div>
<div class="col-lg-6 pt-5 pt-xl-7" data-zanim-timeline="{"delay":0.1}">
<div class="hoverbox"><img class="rounded img-fluid image-cover-2"
src="./assets/images/jeet-chaudhary.jpg" alt=""
data-zanim-xs="{"animation":"zoom-in","delay":0.1}"
style="filter: blur(0px); opacity: 1; transform: translate(0px, 0px);">
</div>
<div class="overflow-hidden">
<h5 class="fs-0 fw-bold mt-3 mb-1"
data-zanim-xs="{"from":{"y":45},"delay":0.2}"
style="transform: translate(0px, 0px); opacity: 1;">
Jeet chaudhary
</h5>
</div>
<div class="overflow-hidden">
<h6 class="text-700 fw-normal text-uppercase ls"
data-zanim-xs="{"from":{"y":22},"delay":0.3}"
style="transform: translate(0px, 0px); opacity: 1;">
CEO & Founder
</h6>
</div>
</div>
<div class="w-100"></div>
<div class="col-sm-6 col-lg-3 pt-5 pt-xl-7" data-zanim-timeline='{"delay":0.2}'
data-zanim-trigger="scroll">
<div class="hoverbox"><img class="rounded image-cover img-fluid" src="./assets/images/sajid.jpg"
alt="" data-zanim-xs='{"animation":"zoom-in","delay":0.1}' />
<!-- <div class="hoverbox-content p-3 d-flex align-items-end justify-content-end"><a
class="text-white" href="#!"><span class="fs-1 ms-2 fab fa-twitter"></span></a><a
class="text-white" href="#!"><span class="fs-1 ms-2 fab fa-facebook"></span></a>
</div> -->
</div>
<div class="overflow-hidden">
<h5 class="fs-0 fw-bold mt-3 mb-1 text-capitalize"
data-zanim-xs='{"from":{"y":45},"delay":0.2}'>
Sajid Hussain
</h5>
</div>
<div class="overflow-hidden">
<h6 class="text-700 fw-normal text-uppercase ls"
data-zanim-xs='{"from":{"y":22},"delay":0.3}'>
HR
</h6>
</div>
</div>
<div class="col-sm-6 col-lg-3 pt-5 pt-xl-7" data-zanim-timeline='{"delay":0.3}'
data-zanim-trigger="scroll">
<div class="hoverbox"><img class="rounded image-cover img-fluid"
src="./assets/images/jatinder-singh.jpg" alt=""
data-zanim-xs='{"animation":"zoom-in","delay":0.1}' />
</div>
<div class="overflow-hidden">
<h5 class="fs-0 fw-bold mt-3 mb-1 text-capitalize"
data-zanim-xs='{"from":{"y":45},"delay":0.2}'>
Jatinder Singh
</h5>
</div>
<div class="overflow-hidden">
<h6 class="text-700 fw-normal text-uppercase ls"
data-zanim-xs='{"from":{"y":22},"delay":0.3}'>
full stack developer
</h6>
</div>
</div>
<div class="col-sm-6 col-lg-3 pt-5 pt-xl-7" data-zanim-timeline='{"delay":0.4}'
data-zanim-trigger="scroll">
<div class="hoverbox"><img class="rounded image-cover img-fluid" src="./assets/images/sahir.jpg"
alt="" data-zanim-xs='{"animation":"zoom-in","delay":0.1}' />
</div>
<div class="overflow-hidden">
<h5 class="fs-0 fw-bold mt-3 mb-1 text-capitalize"
data-zanim-xs='{"from":{"y":45},"delay":0.2}'>
Sahir Ayub
</h5>
</div>
<div class="overflow-hidden">
<h6 class="text-700 fw-normal text-uppercase ls"
data-zanim-xs='{"from":{"y":22},"delay":0.3}'>
Marketing Director
</h6>
</div>
</div>
<div class="col-sm-6 col-lg-3 pt-5 pt-xl-7" data-zanim-timeline='{"delay":0.5}'
data-zanim-trigger="scroll">
<div class="hoverbox"><img class="rounded image-cover img-fluid"
src="./assets/images/icon-woman.png" alt=""
data-zanim-xs='{"animation":"zoom-in","delay":0.1}' />
</div>
<div class="overflow-hidden">
<h5 class="fs-0 fw-bold mt-3 mb-1 text-capitalize"
data-zanim-xs='{"from":{"y":45},"delay":0.2}'>
Maryam younas
</h5>
</div>
<div class="overflow-hidden">
<h6 class="text-700 fw-normal text-uppercase ls"
data-zanim-xs='{"from":{"y":22},"delay":0.3}'>
Director
</h6>
</div>
</div>
<div class="col-sm-6 col-lg-3 pt-5 pt-xl-7" data-zanim-timeline='{"delay":0.6}'
data-zanim-trigger="scroll">
<div class="hoverbox"><img class="rounded image-cover img-fluid"
src="./assets/images/komail-shah.jpg" alt=""
data-zanim-xs='{"animation":"zoom-in","delay":0.1}' />
</div>
<div class="overflow-hidden">
<h5 class="fs-0 fw-bold mt-3 mb-1 text-capitalize"
data-zanim-xs='{"from":{"y":45},"delay":0.2}'>
Komail Shah
</h5>
</div>
<div class="overflow-hidden">
<h6 class="text-700 fw-normal text-uppercase ls"
data-zanim-xs='{"from":{"y":22},"delay":0.3}'>
Software Engineer
</h6>
</div>
</div>
</div>
</div><!-- end of .container-->
</section><!-- <section> close ============================-->
<!-- ============================================-->
<!-- ============================================-->
<!-- <section> begin ============================-->
<section id="defaultCta4">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-8">
<h2 class="text-capitalize">Contact us today.</h2>
<p>
Get in touch with us today to discuss your web development and web design needs. Our team of
experts is ready to help
you create a stunning and functional website that will impress your audience. Whether you
need a simple website or a
complex e-commerce platform, we have the skills and experience to deliver. Contact us now to
get started on your
project!
</p>
<a class="btn btn-outline-dark rounded-pill mt-4" href="contact.html">Contact us</a>
</div>
</div>
</div><!-- end of .container-->
</section><!-- <section> close ============================-->
<!-- ============================================-->
</main><!-- ===============================================-->
<!-- End of Main Content-->
<!-- ===============================================-->
<!--===============================================-->
<!-- Footer-->
<!--===============================================-->
<footer class="footer bg-black text-600 py-4 font-sans-serif text-center overflow-hidden" data-zanim-timeline="{}"
data-zanim-trigger="scroll">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-4 order-lg-2 position-relative"><a class="indicator indicator-up" href="#top"><span
class="indicator-arrow indicator-arrow-one"
data-zanim-xs='{"from":{"opacity":0,"y":15},"to":{"opacity":1,"y":-5,"scale":1},"ease":"Back.easeOut","duration":0.4,"delay":0.9}'></span><span
class="indicator-arrow indicator-arrow-two"
data-zanim-xs='{"from":{"opacity":0,"y":15},"to":{"opacity":1,"y":-5,"scale":1},"ease":"Back.easeOut","duration":0.4,"delay":1.05}'></span></a>
</div>
<div class="col-lg-4 text-lg-start mt-4 mt-lg-0">
<p class="fs--1 text-uppercase ls fw-bold mb-0">Copyright © 2023 R-TechGLOBALLIMITED™
inc.
</p>
</div>
<div class="col-lg-4 text-lg-end order-lg-2 mt-2 mt-lg-0">
<a href="contact.html" class="footer-link">
Contact
</a> | <a href="#" class="footer-link">Terms and Conditions</a> | <a href="#"
class="footer-link">Privacy Policy</a>
</div>
</div>
</div>
</footer>
<!-- ===============================================-->
<!-- JavaScripts-->
<!-- ===============================================-->
<script src="./vendors/popper/popper.min.js"></script>
<script src="./vendors/bootstrap/bootstrap.min.js"></script>
<script src="./vendors/anchorjs/anchor.min.js"></script>
<script src="./vendors/is/is.min.js"></script>
<script src="./vendors/swiper/swiper-bundle.min.js"></script>
<script src="./vendors/bigpicture/BigPicture.js"> </script>
<script src="./vendors/progressbar/progressbar.min.js"></script>
<script src="./vendors/rellax/rellax.min.js"> </script>
<script src="./vendors/fontawesome/all.min.js"></script>
<script src="./vendors/lodash/lodash.min.js"></script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=window.scroll"></script>
<script src="./vendors/imagesloaded/imagesloaded.pkgd.js"></script>
<script src="./vendors/gsap/gsap.js"></script>
<script src="./vendors/gsap/customEase.js"></script>
<script src="./vendors/gsap/drawSVGPlugin.js"></script><!-- Global site tag (gtag.js) - Google Analytics-->
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-122907869-1');
</script>
<script src="./assets/js/theme.js"></script>
</body>
</html>