-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
847 lines (823 loc) · 43.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ribbash Digital</title>
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" media="all" />
<link rel="stylesheet" href="css/all.min.css" media="all" />
<link rel="stylesheet" href="css/owl.carousel.min.css" media="all" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" media="all" />
<link rel="stylesheet" href="css/animate.min.css" media="all" />
<link rel="stylesheet" href="css/el_style.css">
<link rel="stylesheet" href="css/style.css" media="all" />
<link rel="stylesheet" href="css/colors.css" media="all" />
<link rel="stylesheet" href="css/responsive.css" media="all" />
<link rel="icon" href="img/favicon.svg" type="image/svg+xml" sizes="any" />
</head>
<body>
<div class="rd-wrap">
<!--Header Section Start-->
<header class="rd-header rd-header-transparent">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-dark px-0 rd-navbar">
<a class="navbar-brand rd-logo py-0" href="index.html">
<img src="img/logo-white.svg" data-src-alt="img/logo-black.svg" alt="logo" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#defaultNavbar1" aria-controls="defaultNavbar1" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="defaultNavbar1">
<ul class="navbar-nav ml-auto rd-navmenu">
<li class="nav-item">
<a class="nav-link pl-3 pr-3" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle pl-3 pr-3" href="#" id="ourWorkDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Our Work</a>
<div class="dropdown-menu rd-dropdown-work" aria-labelledby="ourWorkDropdown">
<div class="container">
<div class="row row-cols-1 row-cols-lg-6 align-items-center justify-content-sm-center">
<div class="col">
<a class="dropdown-item" href="nomad.html" data-toggle="tooltip" data-placement="bottom" title="Nomad">
<img src="img/Nomad.svg" alt="Nomad" />
<span>Nomad</span>
</a>
</div>
<div class="col">
<a class="dropdown-item" href="onshore.html" data-toggle="tooltip" data-placement="bottom" title="Onshore Momentum">
<img src="img/Onshore-Momentum.svg" alt="Onshore" />
<span>Onshore Momentum</span>
</a>
</div>
<div class="col">
<a class="dropdown-item" href="one-gift.html" data-toggle="tooltip" data-placement="bottom" title="OneGift">
<img src="img/OneGift.svg" alt="OneGift" />
<span>OneGift</span>
</a>
</div>
<div class="col">
<a class="dropdown-item" href="no-bs-dashboard.html" data-toggle="tooltip" data-placement="bottom" title="NO-BS Dashboard">
<img src="img/NO-BS.svg" alt="NO-BS Dashboard" />
<span>NO-BS Dashboard</span>
</a>
</div>
<div class="col">
<a class="dropdown-item" href="yor-hero.html" data-toggle="tooltip" data-placement="bottom" title="YOR Hero">
<img src="img/YorHero.svg" alt="YOR Hero" />
<span>YOR Hero</span>
</a>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle pl-3 pr-3" href="#" id="servicesDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Services</a>
<div class="dropdown-menu rd-dropdown-services" aria-labelledby="servicesDropdown">
<div class="container">
<div class="row row-cols-1 row-cols-lg-3">
<div class="col">
<a class="dropdown-item" href="ui-ux.html">
<img src="img/ui-ux-icon.svg" alt="ui-ux-icon" />
<span>UI/UX Design</span>
</a>
</div>
<div class="col">
<a class="dropdown-item" href="web-development.html">
<img src="img/web-development-icon.svg" alt="web-developer-icon" />
<span>Web Development</span>
</a>
</div>
<div class="col">
<a class="dropdown-item" href="mobile-development.html">
<img src="img/mobile-development-icon.svg" alt="mobile-developer-icon" />
<span>Mobile Development</span>
</a>
</div>
</div>
</div>
</div>
</li>
<!-- <li class="nav-item"><a class="nav-link pl-3 pr-3" href="#">Jobs</a></li> -->
<li class="nav-item"><a class="nav-link pl-3 pr-3" href="about-us.html">About Us</a></li>
<li class="nav-item px-3 px-lg-0"><a class="btn btn-light rd-button rd-button-effect1" href="contact-us.html">Contact Us</a></li>
</ul>
</div>
</nav>
</div>
</header>
<!--Header Section End-->
<!--Banner Section Start-->
<section class="rd-home-banner rd-gradient-bg-green rd-clip-bg-bottom-right">
<div class="container">
<div class="row">
<div class="col-12 col-lg-6 pt-0 pt-lg-5">
<div class="rd-infobox text-white wow fadeInUp">
<h2 class="rd-title rd-title-strip mb-3">
<span class="font-weight-normal d-block">We Build</span>
<span class="font-weight-bold d-block">Digital Products</span>
</h2>
<p class="rd-text">Ribbash, a company that can cater to all the technology-based issues under one roof.</p>
<a class="btn btn-light rd-button rd-button-effect1 mt-4 wow rubberBand" href="#" data-wow-delay="1s">Lets Work</a>
</div>
</div>
<div class="col-12 col-lg-6 mt-5 mt-lg-0">
<div id="section-home" class="wow fadeInUp">
<div class="container-caroussel show-marks">
<div class="wrapper-container-el">
<div class="container-el el-ly">
<div class="el el-chauffeurprive desktop displayBlock show" data-el="show-chauffeurprive">
<!-- <a href="#" class="delay link-zone"></a> -->
<div class="container-illu">
<div class="container-obj">
<div class="rd-obj-slop"></div>
</div>
<div class="container-device">
<div class="device desktop">
<div class="head">
<div class="ptn"></div>
<div class="ptn"></div>
<div class="ptn"></div>
</div>
<div class="container-screen">
<img src="img/nomad-landing-page.jpg" alt="nomad">
</div>
</div>
</div>
</div>
<div class="desc">
<h2>Nomed</h2>
<div class="container-p">
<p>We had the opportunity to work with Nomad a platform where you find like minded people while traveling</p>
</div>
</div>
</div>
<div class="el el-lecollectionist desktop" data-el="show-lecollectionist">
<!-- <a href="#" class="delay link-zone"></a> -->
<div class="container-illu">
<div class="container-obj">
<div class="rd-obj-slop"></div>
</div>
<div class="container-device">
<div class="device desktop">
<div class="head">
<div class="ptn"></div>
<div class="ptn"></div>
<div class="ptn"></div>
</div>
<div class="container-screen">
<img class="obj-1" src="img/home-1.jpg" alt="Onshore Momentum">
</div>
</div>
</div>
</div>
<div class="desc">
<h2>Onshore Momentum</h2>
<div class="container-p">
<p>To address the needs of the clients regarding cost-efficiency and time management in the case of providing training, the company wanted to develop a website.</p>
</div>
</div>
</div>
<div class="el el-qonto desktop" data-el="show-qonto">
<!-- <a href="#" class="delay link-zone"></a> -->
<div class="container-illu">
<div class="container-obj d-none d-sm-block">
<svg class="bubble-group left" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 213 373">
<g fill="none" fill-rule="evenodd" transform="translate(0 1)">
<ellipse cx="95.6128042" cy="39.1465171" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="185.486222" cy="66.1683089" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="140.549513" cy="111.204629" stroke="#FFF" stroke-width="1.0079999" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="32.7014118" cy="102.197365" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="95.6128042" cy="138.22642" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="167.511538" cy="174.255476" stroke="#FFF" stroke-width="1.0079999" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="113.587488" cy="210.284532" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="68.6507789" cy="183.26274" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="203.460905" cy="237.306323" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="158.524197" cy="282.342643" stroke="#FFF" stroke-width="1.0079999" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="50.6760954" cy="273.335379" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="113.587488" cy="309.364435" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="86.6254625" cy="354.400754" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="149.536855" cy="3.11746145" stroke="#FFF" stroke-width="1.0079999" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="192.014209" cy="8.14888747" fill="#FFF" opacity=".19999999" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="138.090159" cy="44.1779432" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="102.140792" cy="89.2142628" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="183.026868" cy="116.236055" fill="#FFF" opacity=".19999999" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="129.102817" cy="152.26511" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="3.28003218" cy="197.30143" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="48.216741" cy="224.323222" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="209.988893" cy="179.286902" fill="#FFF" opacity=".19999999" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="156.064842" cy="215.315958" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="120.115475" cy="260.352277" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="201.001551" cy="287.374069" fill="#FFF" opacity=".19999999" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="147.077501" cy="323.403125" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="21.2547157" cy="368.439444" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="57.2040828" cy="332.410389" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
</g>
</svg>
<svg class="bubble-group right" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 213 373">
<g fill="none" fill-rule="evenodd" transform="matrix(-1 0 0 1 213 1)">
<ellipse cx="95.6128042" cy="39.1465171" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="185.486222" cy="66.1683089" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="140.549513" cy="111.204629" stroke="#FFF" stroke-width="1.0079999" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="32.7014118" cy="102.197365" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="95.6128042" cy="138.22642" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="167.511538" cy="174.255476" stroke="#FFF" stroke-width="1.0079999" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="113.587488" cy="210.284532" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="68.6507789" cy="183.26274" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="203.460905" cy="237.306323" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="158.524197" cy="282.342643" stroke="#FFF" stroke-width="1.0079999" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="50.6760954" cy="273.335379" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="113.587488" cy="309.364435" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="86.6254625" cy="354.400754" stroke="#FFF" stroke-width="1.0079999" opacity=".59999996" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="149.536855" cy="3.11746145" stroke="#FFF" stroke-width="1.0079999" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="192.014209" cy="8.14888747" fill="#FFF" opacity=".19999999" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="138.090159" cy="44.1779432" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="102.140792" cy="89.2142628" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="183.026868" cy="116.236055" fill="#FFF" opacity=".19999999" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="129.102817" cy="152.26511" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="3.28003218" cy="197.30143" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="48.216741" cy="224.323222" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="209.988893" cy="179.286902" fill="#FFF" opacity=".19999999" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="156.064842" cy="215.315958" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="120.115475" cy="260.352277" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="201.001551" cy="287.374069" fill="#FFF" opacity=".19999999" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="147.077501" cy="323.403125" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="21.2547157" cy="368.439444" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
<ellipse cx="57.2040828" cy="332.410389" fill="#FFF" opacity=".70000005" rx="3.01110706" ry="3.01885561"></ellipse>
</g>
</svg>
</div>
<div class="container-device">
<div class="device desktop">
<div class="head">
<div class="ptn"></div>
<div class="ptn"></div>
<div class="ptn"></div>
</div>
<div class="container-screen">
<img src="img/landing-page.jpg" alt="OneGift">
</div>
</div>
</div>
</div>
<div class="desc">
<h2>OneGift</h2>
<div class="container-p">
<p>OneGiftFund connects donor companies, NGOs, and donors via a specially designed platform.</p>
</div>
</div>
</div>
<div class="el el-orangelabs mobile" data-el="show-orangelabs">
<div class="container-illu">
<div class="container-device">
<div class="device">
<img class="iphone" src="img/iPhoneX.svg" alt="">
<div class="container-screen">
<img class="scroll" src="img/YorHero-1.png" alt="">
</div>
</div>
<div class="device">
<img class="iphone" src="img/iPhoneX.svg" alt="">
<div class="container-screen">
<img class="scroll" src="img/YorHero-2.png" alt="">
</div>
</div>
</div>
</div>
<div class="desc">
<h2>YorHero</h2>
<div class="container-p">
<p>The designing for a mobile app is altogether a different style of designing where UX/ UI has the maximum value</p>
</div>
</div>
</div>
<div class="el el-mondocteur desktop" data-el="show-mondocteur">
<div class="container-illu">
<div class="container-obj">
<div class="rd-obj-slop"></div>
</div>
<div class="container-device">
<div class="device desktop">
<div class="head">
<div class="ptn"></div>
<div class="ptn"></div>
<div class="ptn"></div>
</div>
<div class="container-screen">
<img src="img/no-bs-dashboard.jpg" alt="">
</div>
</div>
</div>
</div>
<div class="desc">
<h2>NO-BS</h2>
<div class="container-p">
<p>Curating and cultivating authoritative digital publishers at a large scale is an uphill task.</p>
</div>
</div>
</div>
</div>
</div>
<div class="btn show">
<svg class="progress active" viewBox="0 0 120 120">
<circle cx="60" cy="60" r="54"></circle>
</svg>
<i class="fas fa-arrow-right"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Banner Section End-->
<!--Services Section Start-->
<section class="rd-services-section rd-pt-65 rd-pb-65">
<div class="container">
<div class="row">
<div class="col">
<div class="rd-infobox text-center wow fadeInUp">
<h2 class="rd-title rd-title-strip rd-title-strip-green rd-title-strip-center rd-text-dark mb-3">
<span class="font-weight-bold">Services</span>
<span class="font-weight-normal">We Offer</span>
</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-md-6 col-lg-4 pt-3 pb-2">
<div class="rd-services-card text-center text-md-left wow fadeInLeft">
<figure class="rd-service-img">
<img src="img/ui-ux-icon.svg" alt="service" />
</figure>
<h4 class="rd-sub-title rd-text-dark mb-1">UI/UX Design</h4>
<p class="rd-sub-text mb-0">Creating attractive graphics for web and mobile solutions engages your audience, and we, at Ribbash, take care of it by providing you high-quality designs at extremely competitive prices.</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 pt-3 pb-2">
<div class="rd-services-card text-center text-md-left wow fadeInUp">
<figure class="rd-service-img">
<img src="img/web-development-icon.svg" alt="service" />
</figure>
<h4 class="rd-sub-title rd-text-dark mb-1">Web Development</h4>
<p class="rd-sub-text mb-0">Need customized web-based solutions like E-Commerce Websites, industry-related web services, and web applications? Well, we have expert web developers that can address all your requirements based on different technologies and languages.</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-4 pt-3 pb-2">
<div class="rd-services-card text-center text-md-left wow fadeInRight">
<figure class="rd-service-img">
<img src="img/mobile-development-icon.svg" alt="service" />
</figure>
<h4 class="rd-sub-title rd-text-dark mb-1">Mobile Development</h4>
<p class="rd-sub-text mb-0">Mobile apps keep your business available anywhere and anytime. Are you interested in it? Our team of Android, iOS, Native, and Hybrid developers provide unique applications having excellent functionality and the most advanced features.</p>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="rd-services-button-wrap text-center">
<a class="btn btn-light rd-button rd-bg-orient-blue rd-button-effect1 wow rubberBand" href="contact-us.html" data-wow-delay="1s">Contact With Us</a>
</div>
</div>
</div>
</div>
</section>
<!--Services Section End-->
<!--YOR Hero Section Start-->
<section class="rd-mobile-app-section rd-pt-65 rd-pb-65">
<div class="container-fluid">
<div class="row">
<div class="col-12 col-md-6 px-0 pr-md-3">
<div class="rd-image-box rd-image-box-left rd-mobile-app-bg h-100 d-flex align-items-center justify-content-end">
<div class="rd-swip-overlay rd-swip-overlay-right"></div>
<figure class="rd-mobile-app-img wow fadeInUp" data-wow-delay="1.2s">
<img src="img/mobile-mockups.png" srcset="img/[email protected] 2x, img/[email protected] 3x" alt="" data-parallax="{"y": -80, "smoothness": 30}">
</figure>
</div>
</div>
<div class="col-12 col-md-6">
<div class="rd-content-box-wrap rd-content-box-right">
<div class="rd-infobox rd-text-dark wow fadeInUp">
<h2 class="rd-title rd-title-strip rd-title-strip-blue mb-3">
<span class="font-weight-bold d-block">YOR Hero</span>
<span class="font-weight-normal d-block">Mobile App</span>
</h2>
<p class="rd-sub-text mb-0">The designing for a mobile app is altogether a different style of designing where UX/ UI has the maximum value. Yor Hero Mobile App is specifically designed to develop a connection between technicians and users to fix the issues of electronic gadgets and devices like TV, Laptops, Desktops, Electric Appliances, and Wi-Fi Routers, etc.</p>
<a class="btn btn-light rd-button rd-button-blue rd-button-effect1 mt-4 wow rubberBand" href="yor-hero.html" data-wow-delay="1s">Case Study</a>
</div>
<div class="rd-testimonial-box wow fadeInUp">
<div class="rd-testimonial-info">
<!-- <figure class="rd-testimonial-thumb">
<img src="img/layer--1.png" srcset="img/[email protected] 2x, img/[email protected] 3x" alt="" />
</figure> -->
<div class="rd-testimonial-thumb">RC</div>
<div class="rd-testimonial-basic">
<h4 class="rd-client-name rd-text-dark mb-0">Roderick Castalio</h4>
<span class="rd-client-designation">Founder YOR Hero</span>
</div>
</div>
<p class="rd-sub-text mb-0">We have worked with Ribbash many times and found them professional, enthusiastic, and technically strong. They always deliver tasks when we are expecting.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--YOR Hero Section End-->
<!--One Gift Section Start-->
<section class="rd-mobile-app-section rd-pt-65 rd-pb-65">
<div class="container-fluid">
<div class="row flex-column-reverse flex-md-row">
<div class="col-12 col-md-6">
<div class="rd-content-box-wrap rd-content-box-left">
<div class="rd-infobox rd-text-dark wow fadeInUp">
<h2 class="rd-title rd-title-strip rd-title-strip-orange mb-3">
<span class="font-weight-bold d-block">One Gift</span>
<span class="font-weight-normal d-block">Fund Raising Portal</span>
</h2>
<p class="rd-sub-text mb-0">OneGiftFund connects donor companies, NGOs, and donors via a specially designed platform</p>
<a class="btn btn-light rd-button rd-button-orange rd-button-effect1 mt-4 wow rubberBand" href="one-gift.html" data-wow-delay="1s">Case Study</a>
</div>
<div class="rd-testimonial-box wow fadeInUp">
<div class="rd-testimonial-info">
<div class="rd-testimonial-thumb">CA</div>
<div class="rd-testimonial-basic">
<h4 class="rd-client-name rd-text-dark mb-0">Chris Abbot</h4>
<span class="rd-client-designation">CTO OneGift</span>
</div>
</div>
<p class="rd-sub-text mb-0">Our expectations from an IT company were to address our niche and develop a product that would match our requirements exactly. </p>
</div>
</div>
</div>
<div class="col-12 col-md-6 px-0 pl-md-3">
<div class="rd-image-box rd-image-box-right rd-fund-raising-bg h-100 d-flex align-items-center justify-content-start">
<div class="rd-swip-overlay rd-swip-overlay-left"></div>
<figure class="rd-one-gift-img wow fadeInUp" data-wow-delay="1.2s">
<img src="img/group-13627.png" srcset="img/[email protected] 2x, img/[email protected] 3x" alt="" data-parallax="{"y": -80, "smoothness": 30}">
</figure>
</div>
</div>
</div>
</div>
</section>
<!--One Gift Section End-->
<!--Nomad Section Start-->
<section class="rd-mobile-app-section rd-pt-65 rd-pb-65">
<div class="container-fluid">
<div class="row">
<div class="col-12 col-md-6 px-0 pr-md-3">
<div class="rd-image-box rd-image-box-left rd-nomad-bg h-100 d-flex align-items-center justify-content-end">
<div class="rd-swip-overlay rd-swip-overlay-right"></div>
<figure class="rd-nomad-img wow fadeInUp" data-wow-delay="1.2s">
<img src="img/group-13625.png" srcset="img/[email protected] 2x, img/[email protected] 3x" alt="" data-parallax="{"y": -80, "smoothness": 30}">
</figure>
</div>
</div>
<div class="col-12 col-md-6">
<div class="rd-content-box-wrap rd-content-box-right">
<div class="rd-infobox rd-text-dark wow fadeInUp">
<h2 class="rd-title rd-title-strip rd-title-strip-gradient-green mb-3">
<span class="font-weight-bold d-block">Nomad</span>
<span class="font-weight-normal d-block">Find People To Meet</span>
</h2>
<p class="rd-sub-text mb-0">Tourism and traveling are some of the most flourishing industries in the world. In the present digital world, its importance has increased a lot, as people have numerous online opportunities to find out the right destination and choose the best companies to assist.</p>
<a class="btn btn-light rd-button rd-button-green rd-button-effect1 mt-4 wow rubberBand" href="nomad.html" data-wow-delay="1s">Case Study</a>
</div>
<div class="rd-testimonial-box wow fadeInUp">
<div class="rd-testimonial-info">
<div class="rd-testimonial-thumb">js</div>
<div class="rd-testimonial-basic">
<h4 class="rd-client-name rd-text-dark mb-0">Jordan Schwartz</h4>
<span class="rd-client-designation">Founder</span>
</div>
</div>
<p class="rd-sub-text mb-0">As we had been the clients of Ribbash and completed some projects before with their assistance, we were convinced that they would be able to complete this assignment as well.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Nomad Section End-->
<!--OnShor Section Start-->
<section class="rd-mobile-app-section rd-pt-65 rd-pb-65">
<div class="container-fluid">
<div class="row flex-column-reverse flex-md-row">
<div class="col-12 col-md-6">
<div class="rd-content-box-wrap rd-content-box-left">
<div class="rd-infobox rd-text-dark wow fadeInUp">
<h2 class="rd-title rd-title-strip rd-title-strip-yellow mb-3">
<span class="font-weight-bold d-block">OnShor Momentum</span>
<span class="font-weight-normal d-block">Search Technical Jobs</span>
</h2>
<p class="rd-sub-text mb-0">To address the needs of the clients regarding cost-efficiency and time management in the case of providing training, the company wanted to develop a website.</p>
<a class="btn btn-light rd-button rd-button-yellow rd-button-effect1 mt-4 wow rubberBand" href="onshore.html" data-wow-delay="1s">Case Study</a>
</div>
<div class="rd-testimonial-box wow fadeInUp">
<div class="rd-testimonial-info">
<div class="rd-testimonial-thumb">c</div>
<div class="rd-testimonial-basic">
<h4 class="rd-client-name rd-text-dark mb-0">Chris</h4>
<span class="rd-client-designation">Founder</span>
</div>
</div>
<p class="rd-sub-text mb-0">We are thankful to Ribbash for creating such a wonderful website for use. Your efforts and guidance give us the opportunity to describe our business and present it online.</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 px-0 pl-md-3">
<div class="rd-image-box rd-image-box-right rd-onshor-bg h-100 d-flex align-items-center justify-content-start">
<div class="rd-swip-overlay rd-swip-overlay-left"></div>
<figure class="rd-onshor-img wow fadeInUp" data-wow-delay="1.2s">
<img src="img/group-13621.png" srcset="img/[email protected] 2x, img/[email protected] 3x" alt="" data-parallax="{"y": -80, "smoothness": 30}">
</figure>
</div>
</div>
</div>
</div>
</section>
<!--OnShor Section End-->
<!--NO-BS Section Start-->
<section class="rd-mobile-app-section rd-pt-65 rd-pb-65">
<div class="container-fluid">
<div class="row">
<div class="col-12 col-md-6 px-0 pr-md-3">
<div class="rd-image-box rd-image-box-left rd-nobs-bg h-100 d-flex align-items-center justify-content-end">
<div class="rd-swip-overlay rd-swip-overlay-right"></div>
<figure class="rd-nobs-img wow fadeInUp" data-wow-delay="1.2s">
<img src="img/group-13619.png" srcset="img/[email protected] 2x, img/[email protected] 3x" alt="" data-parallax="{"y": -80, "smoothness": 30}">
</figure>
</div>
</div>
<div class="col-12 col-md-6">
<div class="rd-content-box-wrap rd-content-box-right">
<div class="rd-infobox rd-text-dark wow fadeInUp">
<h2 class="rd-title rd-title-strip rd-title-strip-red mb-3">
<span class="font-weight-bold d-block">NO-BS</span>
<span class="font-weight-normal d-block">Backend Management</span>
</h2>
<p class="rd-sub-text mb-0">Curating and cultivating authoritative digital publishers at a large scale is an uphill task. Through this system, the client will be able to coordinate with those online publishing platforms that have got success in the market via their premium services.</p>
<a class="btn btn-light rd-button rd-button-red rd-button-effect1 mt-4 wow rubberBand" href="no-bs.html" data-wow-delay="1s">Case Study</a>
</div>
<div class="rd-testimonial-box wow fadeInUp">
<div class="rd-testimonial-info">
<div class="rd-testimonial-thumb">ag</div>
<div class="rd-testimonial-basic">
<h4 class="rd-client-name rd-text-dark mb-0">Aaron Gray</h4>
<span class="rd-client-designation">CEO NO-BS</span>
</div>
</div>
<p class="rd-sub-text mb-0">We had been fully exhausted with the IT companies, as they were trying to confuse us through fake information and commitments. Then Ribbash connected us, and we found them as a safeguard.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--NO-BS Section End-->
<!--Business Logos Section Start-->
<section class="rd-testimonials-section rd-pt-65 pb-4">
<div class="container">
<div class="row wow fadeInUp">
<div class="col">
<div class="rd-infobox text-center">
<h2 class="rd-title rd-title-strip rd-title-strip-green rd-title-strip-center rd-text-dark mb-3">
<span class="font-weight-bold">Businesses We Worked With</span>
</h2>
</div>
</div>
</div>
<div class="row wow fadeInUp">
<div class="col-12 col-sm-6 col-md-4 col-lg-3 py-3 py-lg-5 px-4 d-flex justify-content-center align-items-center">
<figure class="rd-testimonial-logo mb-0">
<img src="img/OneGift.svg" alt="">
</figure>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3 py-3 py-lg-5 px-4 d-flex justify-content-center align-items-center">
<figure class="rd-testimonial-logo mb-0">
<img src="img/YorHero.svg" alt="">
</figure>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3 py-3 py-lg-5 px-4 d-flex justify-content-center align-items-center">
<figure class="rd-testimonial-logo mb-0">
<img src="img/Nomad.svg" alt="" />
</figure>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3 py-3 py-lg-5 px-4 d-flex justify-content-center align-items-center">
<figure class="rd-testimonial-logo mb-0">
<img src="img/NO-BS.svg" alt="" />
</figure>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3 py-3 py-lg-5 px-4 d-flex justify-content-center align-items-center">
<figure class="rd-testimonial-logo mb-0">
<img src="img/Onshore-Momentum.svg" alt="" />
</figure>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3 py-3 py-lg-5 px-4 d-flex justify-content-center align-items-center">
<figure class="rd-testimonial-logo mb-0">
<img src="img/Lemontree.svg" alt="" />
</figure>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3 py-3 py-lg-5 px-4 d-flex justify-content-center align-items-center">
<figure class="rd-testimonial-logo mb-0">
<img src="img/Auj-Lawyers.svg" alt="" />
</figure>
</div>
<div class="col-12 col-sm-6 col-md-4 col-lg-3 py-3 py-lg-5 px-4 d-flex justify-content-center align-items-center">
<figure class="rd-testimonial-logo mb-0">
<img src="img/PropLogix.svg" alt="" />
</figure>
</div>
</div>
</div>
</section>
<!--Business Logos Section End-->
<!--Contact Form Section Start-->
<section class="rd-contact-form-section rd-pt-65">
<div class="container-fluid">
<div class="rd-contact-form-box rd-container-1170 wow pulse">
<div class="rd-infobox text-center">
<h2 class="rd-title rd-title-strip rd-title-strip-dark rd-title-strip-center rd-text-dark mb-3">
<span class="font-weight-bold">Let Us Help In Your Next Project</span>
</h2>
</div>
<form class="rd-contact-form" action="includes/contact-form-handler.php" method="post">
<div class="row">
<div class="form-group col-md-4 mb-4">
<label for="full-name">Full Name</label>
<input type="text" name="full-name" id="full-name" class="form-control" placeholder="John Smiths">
</div>
<div class="form-group col-md-4 mb-4">
<label for="email">Email</label>
<input type="email" name="email" id="email" class="form-control" placeholder="[email protected]" required>
</div>
<div class="form-group col-md-4 mb-4">
<label for="website">Website</label>
<input type="text" name="website" id="website" class="form-control" placeholder="https://www.example.com/">
</div>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" name="message" id="message" rows="3" required></textarea>
</div>
<div class="text-center">
<button class="btn btn-light rd-button rd-gradient-bg-orient-blue rd-button-effect1 mt-4" type="submit">Submit</button>
</div>
</form>
</div>
</div>
</section>
<!--Contact Form Section End-->
<!--Footer Section Start-->
<footer class="rd-footer">
<div class="rd-footer-top rd-gradient-bg-orient-blue pb-5 rd-clip-bg-top-left font-weight-light">
<div class="container">
<div class="row d-none">
<div class="col">
<div class="rd-infobox text-center">
<h2 class="rd-title rd-title-strip rd-title-strip-center text-white mb-3">
<span class="font-weight-bold">Company News</span>
</h2>
</div>
<!--Owl-Carousel Start-->
<div class="owl-carousel owl-theme rd-blog-carousel">
<div class="card rd-blog-item border-0">
<figure class="rd-blog-img mb-0">
<img src="img/mask-group--14.jpg" srcset="img/[email protected] 2x, img/[email protected] 3x" alt="">
</figure>
<div class="card-body d-flex flex-column rd-blog-content">
<h4 class="rd-blog-title">
<a href="#">Lorem Ipsum is simply dummy text of the printing</a>
</h4>
<div class="rd-blog-metadata mt-auto">
<span class="rd-blog-published"><i class="far fa-calendar-alt"></i>2 Days Ago</span>
<span class="rd-blog-time"><i class="far fa-clock"></i>2 mint</span>
</div>
</div>
</div>
<div class="card rd-blog-item border-0">
<figure class="rd-blog-img mb-0">
<img src="img/mask-group--11.jpg" srcset="img/[email protected] 2x, img/[email protected] 3x" alt="">
</figure>
<div class="card-body d-flex flex-column rd-blog-content">
<h4 class="rd-blog-title">
<a href="#">Porem Ipsum is simply dummy of the printing and typesetting.</a>
</h4>
<div class="rd-blog-metadata mt-auto">
<span class="rd-blog-published"><i class="far fa-calendar-alt"></i>2 Days Ago</span>
<span class="rd-blog-time"><i class="far fa-clock"></i>2 mint</span>
</div>
</div>
</div>
<div class="card rd-blog-item border-0">
<figure class="rd-blog-img mb-0">
<img src="img/people-inside-room-3184657.jpg" srcset="img/[email protected] 2x, img/[email protected] 3x" alt="">
</figure>
<div class="card-body d-flex flex-column rd-blog-content">
<h4 class="rd-blog-title">
<a href="#">Horem Ipsum has been the industrys standard dummy text ever since.</a>
</h4>
<div class="rd-blog-metadata mt-auto">
<span class="rd-blog-published"><i class="far fa-calendar-alt"></i>2 Days Ago</span>
<span class="rd-blog-time"><i class="far fa-clock"></i>2 mint</span>
</div>
</div>
</div>
<div class="card rd-blog-item border-0">
<figure class="rd-blog-img mb-0">
<img src="img/mask-group--11.jpg" srcset="img/[email protected] 2x, img/[email protected] 3x" alt="">
</figure>
<div class="card-body d-flex flex-column rd-blog-content">
<h4 class="rd-blog-title">
<a href="#">Porem Ipsum is simply dummy of the printing and typesetting.</a>
</h4>
<div class="rd-blog-metadata mt-auto">
<span class="rd-blog-published"><i class="far fa-calendar-alt"></i>2 Days Ago</span>
<span class="rd-blog-time"><i class="far fa-clock"></i>2 mint</span>
</div>
</div>
</div>
</div>
<!--Owl-Carousel End-->
</div>
</div>
<span class="rd-divider w-100 mt-5 mb-5 d-none"></span>
<div class="row text-white">
<div class="col-12 col-md-4">
<div class="rd-footer-intro">
<a class="rd-footer-logo d-inline-block mb-4" href="index.html">
<img src="img/logo-white.svg" alt="logo" />
</a>
<p class="mb-0">When someone thinks web designing, development, mobile app development, IoT, Business Automation Processes, graphic designing, and E-Commerce Business Solutions, he will think Ribbash.</p>
</div>
</div>
<div class="col-12 col-md-8">
<div class="row">
<div class="col-12 col-md-4">
<h4 class="rd-sub-title mt-4 mb-3">Quick Links</h4>
<ul class="rd-footer-list rd-quick-links list-inline mb-0">
<li><a href="ui-ux.html">UI/UX Design</a></li>
<li><a href="web-development.html">Website Development</a></li>
<li><a href="mobile-development.html">Mobile Development</a></li>
</ul>
</div>
<div class="col-12 col-md-4">
<div class="rd-footer-links-wrap">
<h4 class="rd-sub-title mt-4 mb-3">Follow Us</h4>
<ul class="rd-footer-list rd-social-links-vr list-inline mb-0">
<li>
<i class="fab fa-facebook-f"></i>
<a href="#" target="_blank">Facebook</a>
</li>
<li>
<i class="fab fa-instagram"></i>
<a href="#" target="_blank">Instagram</a>
</li>
</ul>
</div>
</div>
<div class="col-12 col-md-4">
<div class="rd-footer-links-wrap">
<h4 class="rd-sub-title mt-4 mb-3">Contact Us</h4>
<ul class="rd-footer-list rd-contact-info list-inline mb-0">
<li>
<i class="fas fa-envelope"></i>
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li class="d-flex align-items-baseline">
<i class="fas fa-map-marker-alt"></i>
<span>Main Boulevard, Gulberg III, Lahore, Punjab, Pakistan</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="rd-copyright-footer rd-text-dark">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<p class="rd-sub-text mb-0 font-weight-normal">©2020 - Ribbash | All Right Reserved</p>
</div>
</div>
</div>
</div>
</footer>
<!--Footer End-->
</div>
<!-- jQuery library -->
<script src="js/jquery-3.4.1.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/bodymovin.js"></script>
<script src="js/home_index.js"></script>
<script src="js/jquery.parallax-scroll.js"></script>
<script src="js/custom-script.js"></script>
</body>
</html>