-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
995 lines (947 loc) · 88.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
<!DOCTYPE html>
<!-- Last Published: Tue Nov 26 2019 02:11:20 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="5dd749adb9c85cba607b915f" data-wf-site="5dd749adb9c85ce7bf7b9191">
<head>
<meta charset="utf-8">
<title>AlphaDevs</title>
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href="css/normalize.css" rel="stylesheet" type="text/css">
<link href="css/components.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
<link href="css/omyra-template.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">
WebFont.load({
google: {
families: [
"Montserrat:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic"
]
}
});
</script>
<!-- [if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" type="text/javascript"></script><![endif] -->
<script type="text/javascript">
! function (o, c) {
var n = c.documentElement,
t = " w-mod-";
n.className += t + "js", ("ontouchstart" in o || o.DocumentTouch && c instanceof DocumentTouch) && (n.className +=
t + "touch")
}(window, document);
</script>
<link href="images/alpha_favicon.png" rel="shortcut icon" type="image/x-icon">
<link href="images/webclip.png" rel="apple-touch-icon">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
</head>
<body>
<header class="navigation-section fixed-top is-transparent">
<div class="navigation-overlay"></div>
<div class="navigation-and-offcanvas">
<div class="col lg-2 no-margin-bottom-lg md-basis-auto">
<a href="index.html#" class="brand w-inline-block">
<h2 class="font-run-medium mb-0 font-colored">
alpha<span>devs</span>
</h2>
</a>
</div>
<div class="col lg-12 no-margin-bottom-lg lg-text-align-right md-basis-auto md-margin-bottom-small">
<div class="inline-block position-relative">
<nav class="navigation-menu flexh-justify-center position-relative"><a href="index.html#"
class="c-nav__link">Home</a>
<a href="contact-us.html" class="c-nav__link">Contact Us</a>
<a href="pricing.html" class="c-nav__link">Pricing</a>
</nav>
</div>
</div>
<a data-w-id="5fdb8a12-9519-42e0-9c63-f85cfbd14551" href="index.html#" class="c-nav__close-button w-inline-block">
<div class="iconfont is-offcanvas-close-button"><em class="iconfont__no-italize"></em></div>
</a>
</div>
<div class="mobile-navigation-bar">
<a href="index.html#" class="brand-2 w-inline-block">
<h2 class="font-run-medium mb-0 font-colored">
alpha<span>devs</span>
</h2>
</a>
<a data-w-id="5fdb8a12-9519-42e0-9c63-f85cfbd14558" href="index.html#" class="burger-button w-inline-block">
<div class="iconfont is-burger"><em class="iconfont__no-italize"></em></div>
</a>
</div>
</header>
<div class="section is-hero img-hero flexh-align-bottom">
<div class="container">
<div class="col on-dark lg-5 md-12">
<h2>Bring us your ideas, we will do the rest.</h2>
<div class="margin-bottom">IDEATE | CREATE | DEPLOY</div>
<div class="flexh-align-center xs-is-wrapping">
<a data-w-id="a73c96af-ffb4-8180-7dce-65d3db4801bd" href="contact-us.html"
class="button-primary animated margin-right xs-margin-bottom w-inline-block">
<div
style="-webkit-transform:translate3d(0, 0PX, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 0PX, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 0PX, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 0PX, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:1"
class="button-primary-text">Know More</div>
<div
style="opacity:0;display:block;-webkit-transform:translate3d(0, 20PX, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 20PX, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 20PX, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 20PX, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0)"
class="button-primary-text for-hover">let's go <span class="fa margin-left"></span></div>
</a></div>
</div>
<div class="col lg-6"></div>
</div>
</div>
<div class="section position-relative overflow-hidden">
<div class="c-shadowing-text">Who we are</div>
<div class="container position-relative align-items-center">
<div class="col lg-5 md-12">
<!-- <div class="pre-title margin-bottom-double">Our Services</div> -->
<div class="size-h2 margin-bottom">About Us</div>
<div class="text-medium low-text-contrast">
AlphaDevs is a group of like-minded people working towards the goal
of leveraging technology to make the world around them better.
<br>
Our team consists of people with a variety of skills, ranging from Software Development to IoT, AI, Data
Science, Robotics, graphic designing and much more!
</div>
</div>
<div class="col lg-1 no-margin-bottom"></div>
<div class="col lg-6 md-12 pt-4">
<!-- <div class="pre-title margin-bottom-double">Our approachment</div> -->
<div class="container container-nested">
<div class="col lg-6"><img src="images/step1.svg" width="77" alt="" class="margin-bottom-double">
<h4>Commitment to Quality</h4>
<div>
As a team we are committed to delivering the best products/services to our partners and clients. Because
we strongly believe in the fact that, ‘Delivering quality is the best business plan.’
</div>
</div>
<div class="col lg-6"><img src="images/step2.svg" width="70" alt="" class="margin-bottom-double">
<h4>Commitment to making tech easily accessible</h4>
<div>We are also committed to bridge the gap that currently exists in the world of tech, and make it more
accessible to the people.</div>
</div>
</div>
</div>
</div>
<div class="c-decoration-right hidden-md"><img src="images/decor.svg"
data-w-id="9c28524f-362e-81fc-d856-3b63087645db" alt="" class="c-decoration-right__image"></div>
</div>
<div class="section position-relative overflow-hidden">
<div class="c-shadowing-text is-dark">What we do</div>
<div class="container margin-bottom">
<div class="col text-align-center block-centered lg-8 md-12">
<h2>Our Services</h2>
<div class="text-medium low-text-contrast">We do everything from web design, web/app development, consulting,
maintenance, graphics, marketing, and everything in between!</div>
</div>
</div>
<div class="container padding-left padding-right c-service-container">
<div class="col lg-12 padding-left-right">
<div class="row">
<div class="col-xl-4 col-lg-6 col-md-6 col-12 d-md-flex mb-5">
<div class="card c-service-card">
<div class="card-body">
<h3>
Website and Mobile app Development
</h3>
<hr>
<div class="c-services-content">
<ul>
<li> E-Commerce Apps </li>
<li> E-Commerce Website </li>
<li> ERPs : Enterprise resource planning systems </li>
<li> CMS : Content Management Systems </li>
<li> Static /Dynamic Portfolios </li>
<li> Blogs </li>
<li> LMS: Learning Management systems </li>
</ul>
<small class="d-block pl-md-4">And any custom product of your choice as well!</small>
<svg class="bg-image" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="200" height="200"
viewBox="0 0 172 172" style=" fill:#000000;">
<g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<path d="M0,172v-172h172v172z" fill="none"></path>
<g fill="#DB3A74">
<path
d="M13.4375,0c-7.41764,0.00889 -13.42861,6.01986 -13.4375,13.4375v18.8125h5.375v-5.375h69.875h8.0625v-5.375h-5.375v-8.0625c0.13649,-3.60396 -1.23536,-7.10172 -3.78557,-9.65193c-2.55021,-2.55021 -6.04797,-3.92206 -9.65193,-3.78557zM83.3125,0v5.375h5.375v-5.375zM94.0625,0v5.375h64.5c4.4528,0 8.0625,3.6097 8.0625,8.0625v8.0625h-77.9375v5.375h77.9375v131.6875c0,4.4528 -3.6097,8.0625 -8.0625,8.0625h-145.125c-4.4528,0 -8.0625,-3.6097 -8.0625,-8.0625v-120.9375h-5.375v120.9375c0.00889,7.41764 6.01986,13.42861 13.4375,13.4375h145.125c7.41764,-0.00889 13.42861,-6.01986 13.4375,-13.4375v-145.125c-0.00889,-7.41764 -6.01986,-13.42861 -13.4375,-13.4375zM65.09314,5.3645c2.07145,0.04985 4.03447,0.93624 5.44166,2.45715c1.40719,1.52092 2.13866,3.54677 2.0277,5.61584v8.0625h-67.1875v-8.0625c0,-4.4528 3.6097,-8.0625 8.0625,-8.0625h51.0625c0.1975,-0.01115 0.39536,-0.01465 0.59314,-0.0105zM10.75,10.75v5.375h45.6875v-5.375zM61.8125,10.75v5.375h5.375v-5.375zM134.375,10.75v5.375h5.375v-5.375zM145.125,10.75v5.375h5.375v-5.375zM155.875,10.75v5.375h5.375v-5.375zM37.625,32.25c-1.48427,0 -2.6875,1.20323 -2.6875,2.6875v3.94202c-1.50065,0.47088 -2.95678,1.07336 -4.35144,1.80042l-2.78723,-2.78723c-1.04949,-1.04926 -2.75081,-1.04926 -3.80029,0l-7.60583,7.60584c-1.04926,1.04949 -1.04926,2.7508 0,3.80029l2.79248,2.78723c-0.72885,1.39448 -1.33309,2.85062 -1.80566,4.35144h-3.94202c-1.48427,0 -2.6875,1.20323 -2.6875,2.6875v10.75c0,1.48427 1.20323,2.6875 2.6875,2.6875h3.94202c0.47088,1.50065 1.07336,2.95678 1.80042,4.35144l-2.78723,2.78723c-1.04926,1.04949 -1.04926,2.7508 0,3.80029l7.60583,7.60584c1.04949,1.04926 2.75081,1.04926 3.80029,0l2.78723,-2.79248c1.39448,0.72885 2.85062,1.33309 4.35144,1.80566v3.94202c0,1.48427 1.20323,2.6875 2.6875,2.6875h10.75c1.48427,0 2.6875,-1.20323 2.6875,-2.6875v-3.94202c1.50065,-0.47088 2.95678,-1.07336 4.35144,-1.80042l2.78723,2.78723c1.04949,1.04926 2.7508,1.04926 3.80029,0l7.60584,-7.60584c1.04926,-1.04949 1.04926,-2.7508 0,-3.80029l-2.79248,-2.78723c0.72885,-1.39448 1.33309,-2.85062 1.80566,-4.35144h3.94202c1.48427,0 2.6875,-1.20323 2.6875,-2.6875v-10.75c0,-1.48427 -1.20323,-2.6875 -2.6875,-2.6875h-3.94202c-0.47088,-1.50065 -1.07336,-2.95678 -1.80042,-4.35144l2.78723,-2.78723c1.04926,-1.04949 1.04926,-2.7508 0,-3.80029l-7.60584,-7.60584c-1.04949,-1.04926 -2.7508,-1.04926 -3.80029,0l-2.78723,2.79248c-1.39448,-0.72885 -2.85062,-1.33309 -4.35144,-1.80566v-3.94202c0,-1.48427 -1.20323,-2.6875 -2.6875,-2.6875zM88.6875,34.9375c-4.4528,0 -8.0625,3.6097 -8.0625,8.0625v43c0,4.4528 3.6097,8.0625 8.0625,8.0625h64.5c4.4528,0 8.0625,-3.6097 8.0625,-8.0625v-43c0,-4.4528 -3.6097,-8.0625 -8.0625,-8.0625zM40.3125,37.625h5.375v3.30689c0.00036,1.25343 0.86714,2.34018 2.08911,2.61926c2.3576,0.53579 4.60664,1.46949 6.65051,2.76099c1.06176,0.66934 2.44542,0.51463 3.33313,-0.37268l2.34106,-2.34107l3.80029,3.80029l-2.34107,2.34106c-0.88731,0.88771 -1.04202,2.27137 -0.37268,3.33313c1.2915,2.04387 2.22519,4.29291 2.76099,6.65051c0.27908,1.22197 1.36583,2.08875 2.61926,2.08911h3.30689v5.375h-3.30689c-1.25343,0.00036 -2.34018,0.86714 -2.61926,2.08911c-0.53579,2.3576 -1.46949,4.60664 -2.76099,6.65051c-0.66934,1.06176 -0.51463,2.44542 0.37268,3.33313l2.34107,2.34106l-3.80029,3.80029l-2.34106,-2.34107c-0.88771,-0.88731 -2.27137,-1.04202 -3.33313,-0.37268c-2.04387,1.2915 -4.29291,2.22519 -6.65051,2.76099c-1.22197,0.27908 -2.08875,1.36583 -2.08911,2.61926v3.30689h-5.375v-3.30689c-0.00036,-1.25343 -0.86714,-2.34018 -2.08911,-2.61926c-2.3576,-0.53579 -4.60664,-1.46949 -6.65051,-2.76099c-1.06176,-0.66934 -2.44542,-0.51463 -3.33313,0.37268l-2.34106,2.34107l-3.80029,-3.80029l2.34106,-2.34106c0.88731,-0.88771 1.04202,-2.27137 0.37268,-3.33313c-1.2915,-2.04387 -2.22519,-4.29291 -2.76099,-6.65051c-0.27908,-1.22197 -1.36583,-2.08875 -2.61926,-2.08911h-3.30688v-5.375h3.30688c1.25343,-0.00036 2.34018,-0.86714 2.61926,-2.08911c0.53579,-2.3576 1.46949,-4.60664 2.76099,-6.65051c0.66934,-1.06176 0.51463,-2.44542 -0.37268,-3.33313l-2.34106,-2.34106l3.80029,-3.80029l2.34106,2.34107c0.88771,0.88731 2.27137,1.04202 3.33313,0.37268c2.04387,-1.2915 4.29291,-2.22519 6.65051,-2.76099c1.22197,-0.27908 2.08875,-1.36583 2.08911,-2.61926zM88.6875,40.3125h64.5c1.48427,0 2.6875,1.20323 2.6875,2.6875v43c0,1.48427 -1.20323,2.6875 -2.6875,2.6875h-64.5c-1.48427,0 -2.6875,-1.20323 -2.6875,-2.6875v-43c0,-1.48427 1.20323,-2.6875 2.6875,-2.6875zM126.64319,47.08899l-16.13025,29.5625l4.71887,2.57202l16.13025,-29.5625zM105.59985,49.16235l-13.4375,13.4375c-1.04926,1.04949 -1.04926,2.7508 0,3.80029l13.4375,13.4375l3.80029,-3.80029l-11.53735,-11.53735l11.53735,-11.53735zM136.27515,49.16235l-3.80029,3.80029l11.53735,11.53735l-11.53735,11.53735l3.80029,3.80029l13.4375,-13.4375c1.04926,-1.04949 1.04926,-2.7508 0,-3.80029zM42.4436,51.073c-7.31729,0.28905 -13.05585,6.38385 -12.90421,13.70527c0.15164,7.32143 6.13763,13.17339 13.46061,13.15923c7.41764,-0.00889 13.42861,-6.01986 13.4375,-13.4375c0.00028,-3.66055 -1.49283,-7.16279 -4.13418,-9.69714c-2.64135,-2.53435 -6.2023,-3.88143 -9.85972,-3.72986zM43,56.4375c4.4528,0 8.0625,3.6097 8.0625,8.0625c0,4.4528 -3.6097,8.0625 -8.0625,8.0625c-4.4528,0 -8.0625,-3.6097 -8.0625,-8.0625c0,-4.4528 3.6097,-8.0625 8.0625,-8.0625zM123.625,96.75c-1.48427,0 -2.6875,1.20323 -2.6875,2.6875v3.94202c-1.50122,0.47147 -2.95746,1.07575 -4.35144,1.80566l-2.78723,-2.79248c-1.04949,-1.04926 -2.7508,-1.04926 -3.80029,0l-7.60584,7.60584c-1.04926,1.04949 -1.04926,2.7508 0,3.80029l2.79248,2.78723c-0.72938,1.39423 -1.33363,2.85042 -1.80566,4.35144h-3.94202c-1.48427,0 -2.6875,1.20323 -2.6875,2.6875v10.75c0,1.48427 1.20323,2.6875 2.6875,2.6875h3.94202c0.47034,1.50084 1.07284,2.95703 1.80042,4.35144l-2.78723,2.78723c-1.04926,1.04949 -1.04926,2.7508 0,3.80029l7.60584,7.60584c1.04949,1.04926 2.7508,1.04926 3.80029,0l2.78723,-2.79248c1.39398,0.72992 2.85022,1.33419 4.35144,1.80566v3.94202c0,1.48427 1.20323,2.6875 2.6875,2.6875h10.75c1.48427,0 2.6875,-1.20323 2.6875,-2.6875v-3.94202c1.50122,-0.47147 2.95746,-1.07575 4.35144,-1.80566l2.78723,2.79248c1.04949,1.04926 2.7508,1.04926 3.80029,0l7.60584,-7.60584c1.04926,-1.04949 1.04926,-2.7508 0,-3.80029l-2.79248,-2.78723c0.72938,-1.39423 1.33363,-2.85042 1.80566,-4.35144h3.94202c1.48427,0 2.6875,-1.20323 2.6875,-2.6875v-10.75c0,-1.48427 -1.20323,-2.6875 -2.6875,-2.6875h-3.94202c-0.47034,-1.50084 -1.07284,-2.95703 -1.80042,-4.35144l2.78723,-2.78723c1.04926,-1.04949 1.04926,-2.7508 0,-3.80029l-7.60584,-7.60584c-1.04949,-1.04926 -2.7508,-1.04926 -3.80029,0l-2.78723,2.79248c-1.39398,-0.72992 -2.85022,-1.33419 -4.35144,-1.80566v-3.94202c0,-1.48427 -1.20323,-2.6875 -2.6875,-2.6875zM18.8125,99.4375c-4.4528,0 -8.0625,3.6097 -8.0625,8.0625v43c0,4.4528 3.6097,8.0625 8.0625,8.0625h64.5c4.4528,0 8.0625,-3.6097 8.0625,-8.0625v-43c0,-4.4528 -3.6097,-8.0625 -8.0625,-8.0625zM126.3125,102.125h5.375v3.30689c0.00036,1.25343 0.86714,2.34018 2.08911,2.61926c2.35694,0.53789 4.60563,1.47144 6.65051,2.76099c1.06176,0.66934 2.44542,0.51463 3.33313,-0.37268l2.34106,-2.34107l3.80029,3.80029l-2.34107,2.34106c-0.88731,0.88771 -1.04202,2.27137 -0.37268,3.33313c1.29168,2.04377 2.2254,4.29284 2.76099,6.65051c0.27908,1.22197 1.36583,2.08875 2.61926,2.08911h3.30689v5.375h-3.30689c-1.25343,0.00036 -2.34018,0.86714 -2.61926,2.08911c-0.53559,2.35767 -1.4693,4.60674 -2.76099,6.65051c-0.66934,1.06176 -0.51463,2.44542 0.37268,3.33313l2.34107,2.34106l-3.80029,3.80029l-2.34106,-2.34107c-0.88771,-0.88731 -2.27137,-1.04202 -3.33313,-0.37268c-2.04488,1.28955 -4.29358,2.2231 -6.65051,2.76099c-1.22197,0.27908 -2.08875,1.36583 -2.08911,2.61926v3.30689h-5.375v-3.30689c-0.00767,-1.24754 -0.87286,-2.32576 -2.08911,-2.60352c-2.35793,-0.54277 -4.60668,-1.48167 -6.65051,-2.77673c-1.06176,-0.66934 -2.44542,-0.51463 -3.33313,0.37268l-2.34106,2.34107l-3.80029,-3.80029l2.34107,-2.34106c0.88731,-0.88771 1.04202,-2.27137 0.37268,-3.33313c-1.29168,-2.04377 -2.2254,-4.29284 -2.76099,-6.65051c-0.27908,-1.22197 -1.36583,-2.08875 -2.61926,-2.08911h-3.30689v-5.375h3.30689c1.25343,-0.00036 2.34018,-0.86714 2.61926,-2.08911c0.53559,-2.35767 1.4693,-4.60674 2.76099,-6.65051c0.66934,-1.06176 0.51463,-2.44542 -0.37268,-3.33313l-2.34107,-2.34106l3.80029,-3.80029l2.34106,2.34107c0.88771,0.88731 2.27137,1.04202 3.33313,0.37268c2.04488,-1.28955 4.29358,-2.2231 6.65051,-2.76099c1.22197,-0.27908 2.08875,-1.36583 2.08911,-2.61926zM18.8125,104.8125h64.5c1.48427,0 2.6875,1.20323 2.6875,2.6875v43c0,1.48427 -1.20323,2.6875 -2.6875,2.6875h-64.5c-1.48427,0 -2.6875,-1.20323 -2.6875,-2.6875v-43c0,-1.48427 1.20323,-2.6875 2.6875,-2.6875zM21.5,110.1875v5.375h5.375v-5.375zM32.25,110.1875v5.375h48.375v-5.375zM128.4436,115.573c-7.31729,0.28905 -13.05585,6.38385 -12.90421,13.70527c0.15164,7.32143 6.13763,13.17339 13.46061,13.15923c7.41764,-0.00889 13.42861,-6.01986 13.4375,-13.4375c0.00028,-3.66055 -1.49283,-7.16279 -4.13418,-9.69714c-2.64135,-2.53435 -6.2023,-3.88143 -9.85972,-3.72986zM21.5,120.9375v5.375h59.125v-5.375zM129,120.9375c4.4528,0 8.0625,3.6097 8.0625,8.0625c0,4.4528 -3.6097,8.0625 -8.0625,8.0625c-4.4528,0 -8.0625,-3.6097 -8.0625,-8.0625c0,-4.4528 3.6097,-8.0625 8.0625,-8.0625zM21.5,131.6875v5.375h59.125v-5.375zM21.5,142.4375v5.375h59.125v-5.375z">
</path>
</g>
</g>
</svg>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-12 d-md-flex mb-5">
<div class="card c-service-card">
<div class="card-body">
<h3>
Maintenance/Deployment Solutions
</h3>
<hr>
<div class="c-services-content">
<p>
For your already existing websites, we provide support for:-
</p>
<ul>
<li> Building new APIs </li>
<li> Adding new features </li>
<li> Providing Short/Long term maintenance support </li>
<li> Deploying websites/Apps/Desktop Apps etc. </li>
<li> Redesigning your existing Products </li>
</ul>
<small class="d-block pl-md-4">And much-much More!</small>
<svg class="bg-image" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="200" height="200"
viewBox="0 0 172 172" style=" fill:#000000;">
<g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<path d="M0,172v-172h172v172z" fill="none"></path>
<g fill="#DB3A74">
<path
d="M104.94373,0.06299c-2.17918,-0.03347 -4.27908,0.81672 -5.82117,2.35681l-33.86145,34.89551c-1.00796,1.04188 -1.00796,2.69543 0,3.7373l11.34839,11.70007c-3.90709,4.16918 -4.10057,10.5945 -0.45141,14.99121c1.92907,2.25475 4.72348,3.58614 7.68982,3.66382c2.92497,0.05031 5.74255,-1.10138 7.7948,-3.18615l11.23816,11.59509c0.50811,0.51952 1.20495,0.81114 1.93164,0.80835c0.72564,-0.00001 1.42043,-0.29345 1.92639,-0.8136l6.31982,-6.50354c0.651,9.45809 4.0546,22.55732 13.25379,28.43921v8.44043h-2.6875c-1.48427,0 -2.6875,1.20323 -2.6875,2.6875v16.125c0,1.48427 1.20323,2.6875 2.6875,2.6875v37.625h5.375v-37.625h32.25v37.625h5.375v-37.625c1.48427,0 2.6875,-1.20323 2.6875,-2.6875v-16.125c0,-1.48427 -1.20323,-2.6875 -2.6875,-2.6875h-2.6875v-7.82104l5.375,-59.125c0.07209,-0.85592 -0.26929,-1.69475 -0.91858,-2.25708l-21.5,-18.8125c-0.40409,-0.35414 -0.90506,-0.57903 -1.43823,-0.64563l-18.64978,-2.32532l-16.29297,-16.78113c-1.48031,-1.47843 -3.47734,-2.32354 -5.56921,-2.35681zM104.802,5.41174c0.69325,-0.00275 1.35801,0.27565 1.84241,0.77161l32.02954,33.00061l-9.40625,9.7002c-1.96389,-2.01191 -4.6513,-3.15413 -7.46275,-3.17188c-2.81146,-0.01775 -5.51308,1.09045 -7.50221,3.0774c-1.06059,-0.66651 -2.441,-0.51192 -3.32788,0.37268l-8.0625,8.0625c-1.04926,1.04949 -1.04926,2.7508 0,3.80029l7.40112,7.40113l-5.50098,5.6532l-11.23291,-11.57935c-0.50684,-0.51821 -1.20152,-0.80972 -1.92639,-0.80835c-0.72487,-0.00137 -1.41955,0.29013 -1.92639,0.80835l-1.8844,1.94214c-0.99359,1.05696 -2.39225,1.63783 -3.84229,1.5957c-1.46523,-0.04355 -2.84295,-0.70761 -3.78979,-1.82666c-1.86811,-2.40776 -1.64742,-5.83058 0.5144,-7.97852l1.55896,-1.58521c1.02501,-1.04514 1.02501,-2.7184 0,-3.76355l-11.34839,-11.70007l32.05054,-33.00061c0.47803,-0.48945 1.13202,-0.7673 1.81616,-0.77161zM42.21265,8.84985l-3.80029,3.80029l13.4375,13.4375l3.80029,-3.80029zM132.78455,25.35803l11.19092,1.39624l19.84656,17.36902l-5.25952,58.00171v8.0625h-26.875v-6.09936c1.6632,0.43741 3.43055,0.72436 5.375,0.72436v-5.375c-18.54375,0 -18.8125,-29.26687 -18.8125,-29.5625c-0.00011,-0.71273 -0.28333,-1.39623 -0.78735,-1.90015l-8.84985,-8.84985l4.26221,-4.26221l22.28735,22.28735l3.80029,-3.80029l-7.27515,-7.27515v-11.96778l12.68689,-13.07007c1.01135,-1.04254 1.01135,-2.70001 0,-3.74255zM32.25,29.5625v5.375h21.5v-5.375zM51.84985,38.41235l-13.4375,13.4375l3.80029,3.80029l13.4375,-13.4375zM121.62512,51.052c1.44339,-0.04293 2.83748,0.52729 3.83704,1.56946l0.85034,0.88708v7.19116l-8.16223,-8.16223c0.93012,-0.91473 2.17092,-1.44516 3.47485,-1.48547zM10.75,59.125c-4.4528,0 -8.0625,3.6097 -8.0625,8.0625v48.375v48.375c0,4.4528 3.6097,8.0625 8.0625,8.0625h48.375h48.375c4.4528,0 8.0625,-3.6097 8.0625,-8.0625v-48.375c0,-1.48427 -1.20323,-2.6875 -2.6875,-2.6875h-16.125c-0.1075,-5.67026 -4.52114,-10.3229 -10.17786,-10.72901c-2.94975,-0.17054 -5.83773,0.89225 -7.97327,2.9342c-2.13243,2.03295 -3.34211,4.8486 -3.34888,7.7948h-13.4375v-16.125c0,-1.48427 -1.20323,-2.6875 -2.6875,-2.6875h-2.23083c-2.97234,0.08864 -5.5125,-2.12457 -5.83167,-5.08105c-0.08083,-1.47575 0.44958,-2.91967 1.46648,-3.99218c1.0169,-1.07251 2.43056,-1.67898 3.90852,-1.67676h2.6875c1.48427,0 2.6875,-1.20323 2.6875,-2.6875v-18.8125c0,-1.48427 -1.20323,-2.6875 -2.6875,-2.6875zM10.75,64.5h45.6875v13.4375c-2.9462,0.00677 -5.76185,1.21645 -7.7948,3.34888c-2.04549,2.1379 -3.11025,5.02987 -2.93945,7.98376c0.41146,5.65456 5.06571,10.063 10.73425,10.16736v13.4375h-16.125c-1.37969,0.00122 -2.53433,1.04697 -2.67175,2.4198c-0.0097,0.08892 -0.01496,0.17826 -0.01575,0.2677v2.23083c0.08588,2.94853 -2.09397,5.4746 -5.02332,5.82117c-0.03496,0.00384 -0.06995,0.00734 -0.10498,0.0105c-0.12244,0.00419 -0.24499,0.00419 -0.36743,0c-0.06651,-0.00052 -0.13301,-0.00227 -0.19946,-0.00525c-2.94396,-0.33167 -5.1419,-2.86511 -5.05481,-5.82642v-2.23083c0,-1.48427 -1.20323,-2.6875 -2.6875,-2.6875h-16.125v-45.6875c0,-1.48427 1.20323,-2.6875 2.6875,-2.6875zM85.7533,107.5c0.1801,-0.00907 0.36055,-0.00907 0.54065,0c2.95648,0.31916 5.16969,2.85933 5.08105,5.83167v2.23083c0,1.48427 1.20323,2.6875 2.6875,2.6875h16.125v45.6875c0,1.48427 -1.20323,2.6875 -2.6875,2.6875h-45.6875v-13.4375c2.9462,-0.00677 5.76185,-1.21645 7.7948,-3.34888c1.81652,-1.90256 2.86535,-4.40964 2.9447,-7.03894c0.00005,-0.01925 0.00005,-0.03849 0,-0.05774c0.01056,-0.29564 0.00881,-0.59159 -0.00525,-0.88708c-0.00338,-0.02976 -0.00688,-0.0595 -0.0105,-0.08923c-0.14894,-2.51908 -1.18683,-4.90361 -2.92895,-6.72925c-2.03295,-2.13243 -4.8486,-3.34211 -7.7948,-3.34888v-13.4375h16.125c1.48427,0 2.6875,-1.20323 2.6875,-2.6875v-2.6875c-0.00303,-2.8748 2.25653,-5.24305 5.1283,-5.375zM126.3125,115.5625h37.625v10.75h-37.625zM8.0625,118.25h13.4375c0.00677,2.9462 1.21645,5.76185 3.34888,7.7948c1.82254,1.74045 4.20318,2.77826 6.71875,2.92895c0.03323,0.00365 0.06647,0.00715 0.09973,0.0105c0.01916,0.0016 0.03853,-0.0013 0.05774,0c0.04021,0.00271 0.08038,0.00364 0.12073,0.00525c0.13502,0.00538 0.26995,0.0105 0.40418,0.0105c0.17507,-0.00093 0.35009,-0.00618 0.5249,-0.01575c0.01925,0.00005 0.03849,0.00005 0.05774,0c0.00525,0 0.0105,0 0.01575,0c2.5465,-0.1332 4.96054,-1.1763 6.80273,-2.93945c2.13243,-2.03295 3.34211,-4.8486 3.34888,-7.7948h13.4375v16.125c0,1.48427 1.20323,2.6875 2.6875,2.6875h2.23083c2.94853,-0.08588 5.4746,2.09397 5.82117,5.02332c0.01042,0.15724 0.01393,0.31486 0.0105,0.47241c-0.00052,0.06651 -0.00227,0.13301 -0.00525,0.19946c-0.33167,2.94396 -2.86511,5.1419 -5.82642,5.05481h-2.23083c-1.48427,0 -2.6875,1.20323 -2.6875,2.6875v16.125h-45.6875c-1.48427,0 -2.6875,-1.20323 -2.6875,-2.6875zM13.4375,155.875v5.375h5.375v-5.375zM24.1875,155.875v5.375h26.875v-5.375z">
</path>
</g>
</g>
</svg>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-12 d-md-flex mb-5">
<div class="card c-service-card">
<div class="card-body">
<h3>
UI/UX and Designing
</h3>
<hr>
<div class="c-services-content">
<p>
We have a team of designers from a variety of backgrounds providing services like:
</p>
<ul>
<li> Website Designing </li>
<li> App Designing </li>
<li> Wireframing </li>
<li> Prototyping </li>
<li> End to End Product Designing </li>
<li> Brand Brand Creation (From fonts to assets! Everything is covered.) </li>
</ul>
<svg class="bg-image" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="200" height="200"
viewBox="0 0 172 172" style=" fill:#000000;">
<g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<path d="M0,172v-172h172v172z" fill="none"></path>
<g fill="#DB3A74">
<path
d="M19.14778,12.09309c-7.59454,0 -13.77344,6.17955 -13.77344,13.77409v90.03059c0,7.5942 6.1789,13.77409 13.77344,13.77409h53.0486c-1.11867,3.87437 -4.69779,6.71875 -8.92859,6.71875h-0.44748c-5.55741,0 -10.07812,4.52071 -10.07812,10.07813c0,5.55775 4.52071,10.07878 10.07813,10.07878h46.69531c5.55708,0 10.07813,-4.52103 10.07813,-10.07878c0,-5.55741 -4.52137,-10.07812 -10.07878,-10.07812h-0.78407c-4.23046,0 -7.80758,-2.84438 -8.92793,-6.71875h53.04794c7.59454,0 13.77409,-6.17989 13.77409,-13.77409v-90.03059c0,-7.59487 -6.17955,-13.77409 -13.77409,-13.77409zM19.14778,18.81184h133.70313c3.89083,0 7.05534,3.16418 7.05534,7.05534v76.92969h-147.81316v-76.92969c0,-3.89116 3.16386,-7.05534 7.05469,-7.05534zM85.99934,25.93805c-13.40962,0 -24.42718,11.20177 -23.78923,24.94598c-7.8868,3.88579 -13.32596,12.00505 -13.32596,21.37468c0,13.13415 10.68498,23.81941 23.81744,23.81941c4.92081,0 9.49695,-1.50109 13.29775,-4.06799c3.8008,2.5669 8.37759,4.06799 13.2984,4.06799c13.13247,0 23.81744,-10.68526 23.81744,-23.81941c0,-9.36963 -5.4405,-17.48889 -13.32596,-21.37468c0.63929,-13.76705 -10.40345,-24.94598 -23.78988,-24.94598zM22.17122,28.88997c-1.85505,0 -3.35937,1.50433 -3.35937,3.35938v23.51563c0,1.85505 1.50433,3.35938 3.35938,3.35938c1.85505,0 3.35938,-1.50433 3.35938,-3.35937v-23.51563c0,-1.85505 -1.50433,-3.35937 -3.35937,-3.35937zM146.46875,28.89063c-1.85505,0 -3.35937,1.50433 -3.35937,3.35938v36.95313c0,1.85505 1.50433,3.35938 3.35938,3.35938c1.85505,0 3.35938,-1.50433 3.35938,-3.35937v-36.95312c0,-1.85505 -1.50433,-3.35937 -3.35937,-3.35937zM85.99934,32.6568c9.08912,0 16.54147,7.12683 17.06654,16.08629c-5.9854,-0.95641 -12.05536,0.38228 -17.06654,3.76618c-5.00446,-3.3792 -11.07172,-4.72427 -17.0672,-3.76618c0.52843,-8.95945 7.97808,-16.08629 17.0672,-16.08629zM133.03125,49.04622c-1.85533,0 -3.35937,1.50404 -3.35937,3.35938c0,1.85533 1.50404,3.35938 3.35938,3.35938c1.85533,0 3.35938,-1.50404 3.35938,-3.35937c0,-1.85533 -1.50404,-3.35937 -3.35937,-3.35937zM32.24934,49.04688c-1.85505,0 -3.35937,1.50433 -3.35937,3.35938v26.875c0,1.85505 1.50433,3.35938 3.35938,3.35938c1.85505,0 3.35938,-1.50433 3.35938,-3.35937v-26.875c0,-1.85505 -1.50433,-3.35937 -3.35938,-3.35937zM72.72981,55.16133c2.85083,0.00099 5.63083,0.71572 8.11105,2.06418c-1.68943,2.06837 -3.03661,4.42662 -3.95842,6.98579c-3.23306,-2.0472 -5.7323,-5.1444 -7.0186,-8.81048c0.95751,-0.16117 1.91569,-0.23982 2.86597,-0.23949zM99.26428,55.16199c0.95168,-0.00072 1.912,0.07767 2.87253,0.23883c-1.28765,3.66609 -3.78719,6.76328 -7.01991,8.81049c-0.92181,-2.55917 -2.27033,-4.91743 -3.95842,-6.98579c2.47368,-1.34467 5.25075,-2.06135 8.10581,-2.06352zM63.5847,57.80421c2.09961,5.8312 6.41377,10.61256 11.92381,13.32727c-0.27883,5.95449 1.64813,11.64673 5.33235,16.1624c-2.4211,1.31755 -5.1931,2.06484 -8.13927,2.06484c-9.42876,0 -17.09869,-7.67056 -17.09869,-17.10066c0,-6.07677 3.19032,-11.41898 7.9818,-14.45384zM108.41399,57.80487c4.79181,3.03251 7.98245,8.3764 7.98245,14.45384c0,9.4301 -7.67027,17.10066 -17.09869,17.10066c-2.94483,0 -5.71783,-0.74829 -8.13927,-2.06483c3.64492,-4.46663 5.61118,-10.14106 5.33235,-16.1624c5.50803,-2.71471 9.82187,-7.49607 11.92315,-13.32727zM133.03125,59.125c-1.85505,0 -3.35937,1.50433 -3.35937,3.35938v10.07813c0,1.85505 1.50433,3.35938 3.35938,3.35938c1.85505,0 3.35938,-1.50433 3.35938,-3.35937v-10.07812c0,-1.85505 -1.50433,-3.35937 -3.35937,-3.35937zM85.99934,61.52774c1.21878,1.50567 2.18531,3.22352 2.83972,5.08696c-1.84866,0.31007 -3.71557,0.32955 -5.67878,0c0.6544,-1.86345 1.62028,-3.58095 2.83906,-5.08696zM82.22989,73.27243c2.4211,0.387 4.93274,0.41656 7.5376,0c-0.215,3.66777 -1.59261,7.02932 -3.76814,9.72119c-2.1752,-2.69187 -3.55278,-6.05343 -3.76946,-9.72119zM146.46875,75.92188c-1.85533,0 -3.35937,1.50404 -3.35937,3.35938c0,1.85533 1.50404,3.35938 3.35938,3.35938c1.85533,0 3.35938,-1.50404 3.35938,-3.35937c0,-1.85533 -1.50404,-3.35937 -3.35937,-3.35937zM32.24934,86c-1.85533,0 -3.35937,1.50404 -3.35937,3.35938c0,1.85533 1.50404,3.35938 3.35938,3.35938c1.85533,0 3.35938,-1.50404 3.35938,-3.35937c0,-1.85533 -1.50404,-3.35937 -3.35937,-3.35937zM12.09309,109.51563h147.81316v6.38216c0,3.88915 -3.16451,7.05534 -7.05534,7.05534h-133.70313c-3.89083,0 -7.05469,-3.16619 -7.05469,-7.05534zM129.67188,112.875c-1.85533,0 -3.35937,1.50404 -3.35937,3.35938c0,1.85533 1.50404,3.35938 3.35938,3.35938c1.85533,0 3.35938,-1.50404 3.35938,-3.35937c0,-1.85533 -1.50404,-3.35937 -3.35937,-3.35937zM139.75,112.875c-1.85533,0 -3.35937,1.50404 -3.35937,3.35938c0,1.85533 1.50404,3.35938 3.35938,3.35938c1.85533,0 3.35938,-1.50404 3.35938,-3.35937c0,-1.85533 -1.50404,-3.35937 -3.35937,-3.35937zM149.82813,112.875c-1.85533,0 -3.35937,1.50404 -3.35937,3.35938c0,1.85533 1.50404,3.35938 3.35938,3.35938c1.85533,0 3.35938,-1.50404 3.35938,-3.35937c0,-1.85533 -1.50404,-3.35937 -3.35937,-3.35937zM79.07457,129.67188h13.8502c1.23726,7.60898 7.85381,13.4375 15.80612,13.4375h0.78407c1.85202,0 3.35938,1.50769 3.35938,3.35938c0,1.85236 -1.50735,3.36003 -3.35937,3.36003h-46.69466c-1.8537,0 -3.35937,-1.50767 -3.35937,-3.36003c0,-1.85169 1.50567,-3.35937 3.35938,-3.35937h0.44748c7.95231,0 14.57187,-5.82852 15.80678,-13.4375zM126.3125,133.03125c-1.85533,0 -3.35937,1.50404 -3.35937,3.35938c0,1.85533 1.50404,3.35938 3.35938,3.35938c1.85533,0 3.35938,-1.50404 3.35938,-3.35937c0,-1.85533 -1.50404,-3.35937 -3.35937,-3.35937zM42.32747,136.39063c-1.85533,0 -3.35937,1.50404 -3.35937,3.35938c0,1.85533 1.50404,3.35938 3.35938,3.35938c1.85533,0 3.35938,-1.50404 3.35938,-3.35937c0,-1.85533 -1.50404,-3.35937 -3.35937,-3.35937zM144.78906,136.39063c-6.48259,0 -11.75781,5.27388 -11.75781,11.75781c0,6.48292 5.27523,11.75847 11.75781,11.75847c6.48259,0 11.75781,-5.27555 11.75781,-11.75847c0,-6.48393 -5.27523,-11.75781 -11.75781,-11.75781zM25.53059,139.75c-5.55741,0 -10.07812,4.52103 -10.07812,10.07878c0,5.55741 4.52071,10.07813 10.07813,10.07813c5.55741,0 10.07813,-4.52071 10.07813,-10.07812c0,-5.55775 -4.52071,-10.07878 -10.07813,-10.07878zM144.78906,143.10938c2.77854,0 5.03906,2.26052 5.03906,5.03906c0,2.77887 -2.26052,5.03972 -5.03906,5.03972c-2.77854,0 -5.03906,-2.26084 -5.03906,-5.03972c0,-2.77854 2.26052,-5.03906 5.03906,-5.03906zM25.53059,146.46875c1.85202,0 3.35938,1.50801 3.35938,3.36003c0,1.85202 -1.50735,3.35938 -3.35937,3.35938c-1.85202,0 -3.35937,-1.50735 -3.35937,-3.35937c0,-1.85202 1.50735,-3.36003 3.35938,-3.36003z">
</path>
</g>
</g>
</svg>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-12 d-md-flex mb-5">
<div class="card c-service-card">
<div class="card-body">
<h3>
Data Analytics & Data Science Sol.
</h3>
<hr>
<div class="c-services-content">
<p>
In the age where everything is data driven, we provide a wide variety of services like:
</p>
<ul>
<li> Analytics Dashboards </li>
<li> Data Monitoring </li>
<li> Complex Data driven Analysis (ML) </li>
<li> Machine Learning </li>
<li> Artificial Intelligence </li>
</ul>
<small class="d-block pl-md-4">And anything else that has the word data or intelligence in it!</small>
<svg class="bg-image" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="200" height="200"
viewBox="0 0 172 172" style=" fill:#000000;">
<g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<path d="M0,172v-172h172v172z" fill="none"></path>
<g fill="#DB3A74">
<path
d="M107.04465,2.68881c-0.00328,0.00021 -0.00656,0.00043 -0.00984,0.00066h-60.9077c-1.12822,-0.01858 -2.06693,0.86288 -2.11929,1.99004v23.53925h-29.64977c-0.51812,-0.0124 -1.01848,0.18915 -1.38333,0.55723c-0.36486,0.36808 -0.56199,0.87019 -0.54503,1.38819v107.8484c-0.02159,0.53129 0.16998,1.04918 0.53211,1.43854c0.36213,0.38936 0.8648,0.6179 1.39625,0.63483h43.4232v9.40625h-13.45456c-1.12512,0.03967 -2.01263,0.97059 -1.99857,2.09633v15.73198c-0.00269,0.53027 0.20722,1.03951 0.5828,1.41385c0.37558,0.37435 0.8855,0.58258 1.41576,0.57815h83.34596c0.53037,0.00461 1.04047,-0.20355 1.41619,-0.57792c0.37572,-0.37437 0.58572,-0.8837 0.58303,-1.41409v-15.73198c0.01407,-1.12573 -0.87344,-2.05666 -1.99857,-2.09633h-13.45456v-9.40625h43.4232c0.53146,-0.01692 1.03413,-0.24547 1.39625,-0.63483c0.36213,-0.38936 0.55369,-0.90725 0.53211,-1.43854v-107.8484c0.01697,-0.51799 -0.18017,-1.0201 -0.54503,-1.38819c-0.36485,-0.36808 -0.86521,-0.56964 -1.38333,-0.55723h-29.64977v-3.93808c-0.01767,-0.12733 -0.0471,-0.25275 -0.08792,-0.37465c0,-0.00504 -0.0272,-0.0094 -0.02821,-0.01443c-0.02811,-0.12012 -0.06721,-0.23741 -0.11679,-0.35037c-0.00235,-0.00638 -0.01043,-0.01265 -0.01312,-0.01903c-0.0464,-0.11066 -0.10261,-0.21694 -0.16797,-0.31757l-0.01706,-0.02493c-0.06514,-0.09864 -0.13892,-0.1913 -0.22046,-0.27689c-0.00504,-0.00571 -0.00874,-0.013 -0.01378,-0.01837l-18.83874,-19.60182c-0.00437,-0.0047 -0.00908,-0.00842 -0.01378,-0.01312c-0.02721,-0.02788 -0.05641,-0.05384 -0.0853,-0.08005c-0.02016,-0.01814 -0.03953,-0.03765 -0.06036,-0.05511c-0.03359,-0.02788 -0.06772,-0.0532 -0.10367,-0.07874c-0.0178,-0.01344 -0.035,-0.02726 -0.05315,-0.04002c-0.04703,-0.03359 -0.09562,-0.06101 -0.145,-0.08923c-0.00773,-0.00403 -0.01492,0.00206 -0.02231,-0.00197c-0.29519,-0.15769 -0.62526,-0.23869 -0.95991,-0.23555zM48.03906,6.71875h57.10938v17.56192c-0.02575,0.51101 0.16346,1.00948 0.52181,1.37469c0.35835,0.36521 0.85315,0.56383 1.36455,0.54777h16.92613v83.64844h-75.92187v-79.40395c0,-0.09305 0.02231,-0.18703 0.02231,-0.28345c0,-0.09641 -0.02231,-0.19039 -0.02231,-0.28345zM109.17969,9.68576l11.95924,12.48611h-11.95924zM94.50998,27.94711c-2.65672,-0.12052 -5.10458,1.4352 -6.12349,3.89172c-1.01891,2.45652 -0.3908,5.28808 1.57127,7.08334l-1.91524,3.41514c-2.03467,-0.3223 -4.09818,0.37252 -5.52351,1.85987c-1.42533,1.48735 -2.03167,3.57857 -1.62304,5.59768l-3.48994,1.60751c-1.95795,-2.10717 -5.09574,-2.61792 -7.62089,-1.24048c-2.52515,1.37743 -3.7944,4.29216 -3.08267,7.07912c0.71172,2.78696 3.22311,4.7362 6.09952,4.73421l0.00131,-0.00197c3.47491,-0.00402 6.29087,-2.81999 6.29489,-6.29489c0,-0.20391 -0.01203,-0.40507 -0.03084,-0.60495l3.87575,-1.78335c2.53427,2.19615 6.34622,2.01628 8.66244,-0.40874c2.31621,-2.42503 2.32102,-6.24122 0.01092,-8.67207l2.04909,-3.65726c0.17603,0.01478 0.35271,0.0269 0.53278,0.0269c3.43621,0.00963 6.25035,-2.72825 6.33511,-6.16343c0.08475,-3.43518 -2.59094,-6.30851 -6.02345,-6.46835zM60.74564,28.91556c-1.08982,0.03194 -1.95669,0.92468 -1.95657,2.01497v37.58563c-0.02874,0.52249 0.15644,1.03418 0.51292,1.41726c0.35647,0.38308 0.85352,0.60456 1.37673,0.61345h38.29884c1.1132,0 2.01563,-0.90243 2.01563,-2.01562c0,-1.1132 -0.90243,-2.01562 -2.01562,-2.01562h-36.15724v-35.5851c0.00006,-0.54485 -0.22047,-1.06652 -0.61132,-1.44613c-0.39085,-0.3796 -0.91874,-0.58481 -1.46336,-0.56884zM94.19897,32.01904c0.91556,-0.00023 1.7411,0.55111 2.09164,1.39691c0.35054,0.8458 0.15703,1.81948 -0.49027,2.46697c-0.64731,0.64749 -1.62093,0.84128 -2.46683,0.49099c-0.8459,-0.35029 -1.39748,-1.17567 -1.39752,-2.09123c0.00143,-1.24933 1.01366,-2.26185 2.26299,-2.26364zM16.46094,32.25h27.54688v9.07031h-16.43469c-1.12653,0.018 -2.03288,0.93163 -2.04187,2.05827v81.41891c0,1.1133 0.92857,1.85094 2.04187,1.85094h116.85376c1.1133,0 2.04187,-0.73764 2.04187,-1.85094v-81.41891c-0.00899,-1.12664 -0.91534,-2.04027 -2.04187,-2.05827h-16.43469v-9.07031h27.54688v103.80469h-139.07812zM29.5625,45.35156h14.44531v66.52481c0.04982,1.13086 0.9874,2.01851 2.11929,2.00644h79.74579c1.1319,0.01207 2.06947,-0.87558 2.11929,-2.00644v-66.52481h14.44531v77.26563h-112.875zM87.06752,46.28261c0.26666,0.00064 0.53107,0.04886 0.78079,0.14238c0.05106,0.03359 0.10369,0.06847 0.15878,0.10039c0.1006,0.05525 0.20574,0.10179 0.31429,0.1391c0.93264,0.62248 1.26844,1.83429 0.78921,2.84801c-0.47923,1.01372 -1.62881,1.52333 -2.70178,1.19768c-1.07296,-0.32565 -1.74538,-1.38824 -1.58033,-2.49732c0.16505,-1.10908 1.11774,-1.92982 2.23903,-1.92893zM72.8033,53.41406h0.00066h0.00131c0.76271,0.00127 1.47341,0.38684 1.8903,1.02553c0.05589,0.23573 0.15536,0.45893 0.29329,0.6581c0.24773,0.9364 -0.12818,1.92661 -0.93491,2.46271c-0.80673,0.53609 -1.86525,0.4991 -2.63259,-0.09201c-0.76734,-0.59111 -1.0732,-1.60515 -0.7607,-2.52197c0.3125,-0.91682 1.17402,-1.53295 2.14263,-1.53235zM59.28378,80.28906c-1.1132,0 -2.01562,0.90243 -2.01562,2.01563c0,1.1132 0.90243,2.01563 2.01563,2.01563h30.10905c1.1132,0 2.01563,-0.90243 2.01563,-2.01562c0,-1.1132 -0.90243,-2.01562 -2.01562,-2.01562zM59.28378,93.05469c-1.1132,0 -2.01562,0.90243 -2.01562,2.01563c0,1.1132 0.90243,2.01563 2.01563,2.01563h51.97452c1.1132,0 2.01563,-0.90243 2.01563,-2.01562c0,-1.1132 -0.90243,-2.01562 -2.01562,-2.01562zM61.8125,140.08594h48.375v9.40625h-48.375zM46.35938,153.52344h79.28125v11.75781h-79.28125z">
</path>
</g>
</g>
</svg>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-12 d-md-flex mb-5">
<div class="card c-service-card">
<div class="card-body">
<h3>
IoT: Internet of Things
</h3>
<hr>
<div class="c-services-content">
<ul>
<li> IoT Business Solutions </li>
<li> IoT Home Solutions </li>
<li> IoT Product development </li>
<li> IoT Maintenance </li>
<li> And any custom IoT centric requirements you might have! </li>
</ul>
<svg class="bg-image" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="200" height="200"
viewBox="0 0 172 172" style=" fill:#000000;">
<g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<path d="M0,172v-172h172v172z" fill="none"></path>
<g fill="#DB3A74">
<path
d="M86,6.12036c-9.44791,0 -18.8959,3.59755 -26.08765,10.79199l3.80029,3.80029c12.28725,-12.28725 32.28746,-12.28725 44.57471,0l3.80029,-3.80029c-7.19175,-7.19444 -16.63974,-10.79199 -26.08765,-10.79199zM86,17.54749c-6.50207,0 -13.00263,2.47699 -17.95166,7.42737l3.80029,3.80029c7.8045,-7.8045 20.50348,-7.8045 28.30798,0l3.80029,-3.80029c-4.95037,-4.95038 -11.45484,-7.42737 -17.95691,-7.42737zM86,29.11108c-3.44067,0 -6.88176,1.3073 -9.50073,3.92627l3.80029,3.80029c3.14437,-3.14437 8.25651,-3.14437 11.40088,0l3.80029,-3.80029c-2.61897,-2.61897 -6.06006,-3.92627 -9.50073,-3.92627zM86,40.3125c-25.19262,0 -45.6875,20.49488 -45.6875,45.6875c0,13.92125 6.27531,26.38453 16.125,34.76953v15.18018l-12.65015,12.65015c-0.50525,0.50256 -0.78735,1.18527 -0.78735,1.90015v5.375h5.375v-4.26221l12.65015,-12.65015c0.50525,-0.50256 0.78735,-1.18527 0.78735,-1.90015v-12.37195c2.53431,1.58831 5.22988,2.93269 8.0625,4.00501v12.62915l-7.27515,7.27515c-0.50525,0.50256 -0.78735,1.18527 -0.78735,1.90015v5.375h5.375v-4.26221l7.27515,-7.27515c0.50525,-0.50256 0.78735,-1.18527 0.78735,-1.90015v-12.078c2.60956,0.63156 5.30244,1.03028 8.0625,1.19153v24.32397h5.375v-24.32397c2.76006,-0.16125 5.45294,-0.55997 8.0625,-1.19153v12.078c0,0.71488 0.2821,1.39758 0.78735,1.90015l7.27515,7.27515v4.26221h5.375v-5.375c0,-0.71488 -0.2821,-1.39758 -0.78735,-1.90015l-7.27515,-7.27515v-12.62915c2.83263,-1.075 5.52819,-2.41669 8.0625,-4.00501v12.37195c0,0.71488 0.2821,1.39758 0.78735,1.90015l12.65015,12.65015v4.26221h5.375v-5.375c0,-0.71488 -0.2821,-1.39758 -0.78735,-1.90015l-12.65015,-12.65015v-15.18018c9.84969,-8.385 16.125,-20.84828 16.125,-34.76953c0,-25.19262 -20.49487,-45.6875 -45.6875,-45.6875zM86,45.6875c4.77837,0 9.89651,6.50211 13.05432,17.20105c-8.60537,1.73075 -17.50327,1.73075 -26.10864,0c3.15781,-10.69894 8.27595,-17.20105 13.05432,-17.20105zM74.36816,47.41443c-2.68481,3.612 -4.93933,8.45811 -6.61902,14.19861c-3.5475,-1.01856 -7.01807,-2.33183 -10.37207,-3.95776c4.66819,-4.71388 10.48196,-8.27628 16.99109,-10.24085zM97.63184,47.41443c6.50912,1.96725 12.3229,5.52441 16.99109,10.2356c-3.354,1.62863 -6.82457,2.9392 -10.37207,3.95776c-1.677,-5.73781 -3.93421,-10.57867 -6.61902,-14.19336zM16.91235,59.91235c-14.38619,14.38619 -14.38619,37.7891 0,52.17529l3.80029,-3.80029c-12.28725,-12.28994 -12.28725,-32.28477 0,-44.57471zM155.08765,59.91235l-3.80029,3.80029c12.28725,12.28994 12.28725,32.28477 0,44.57471l3.80029,3.80029c14.38619,-14.38619 14.38619,-37.79179 0,-52.17529zM53.79724,61.85449c4.06887,2.07475 8.3019,3.73201 12.6449,4.96558c-1.075,5.04713 -1.72327,10.59874 -1.87915,16.49243h-18.73902c0.53213,-8.02219 3.41527,-15.39232 7.97327,-21.45801zM118.20276,61.85449c4.558,6.06569 7.44114,13.44107 7.97327,21.46326h-18.73902v-0.00525c-0.15587,-5.89369 -0.80415,-11.45068 -1.87915,-16.49243c4.343,-1.23625 8.57602,-2.89083 12.6449,-4.96558zM147.02515,68.04309l-3.80029,3.80029c7.8045,7.8045 7.8045,20.50348 0,28.30798l3.80029,3.80029c9.90075,-9.90075 9.90075,-26.01051 0,-35.90857zM24.97485,68.04834c-9.90075,9.89807 -9.90075,26.00782 0,35.90857l3.80029,-3.80029c-7.8045,-7.8045 -7.8045,-20.50348 0,-28.30798zM71.65442,68.10608c4.72731,0.96481 9.53496,1.46973 14.34558,1.46973c4.81063,0 9.61827,-0.50491 14.34558,-1.46973c0.95675,4.55531 1.56849,9.65942 1.72168,15.20642h-32.13452c0.15319,-5.547 0.76493,-10.6538 1.72168,-15.20642zM33.03735,76.49927c-5.23794,5.23794 -5.23794,13.76353 0,19.00146l3.80029,-3.80029c-3.14437,-3.14438 -3.14437,-8.25651 0,-11.40088zM138.96265,76.49927l-3.80029,3.80029c3.14437,3.14437 3.14437,8.25651 0,11.40088l3.80029,3.80029c5.23794,-5.23794 5.23794,-13.76353 0,-19.00146zM45.82397,88.6875h18.73902c0.15587,5.89369 0.80415,11.44799 1.87915,16.49243c-4.343,1.23356 -8.57602,2.88814 -12.6449,4.96558c-4.558,-6.06569 -7.44114,-13.43582 -7.97327,-21.45801zM69.93799,88.6875h32.12927c-0.15319,5.54969 -0.76493,10.65636 -1.72168,15.21167c-9.44925,-1.92963 -19.23666,-1.92963 -28.68592,0c-0.95675,-4.55531 -1.56849,-9.66198 -1.72168,-15.21167zM107.43701,88.6875h18.73902c-0.53213,8.02219 -3.41527,15.39232 -7.97327,21.45801c-4.06888,-2.07475 -8.3019,-3.72933 -12.6449,-4.96558c1.075,-5.04444 1.72328,-10.59874 1.87915,-16.49243zM86,107.81494c4.37659,0 8.75163,0.43113 13.05432,1.29651c-3.15781,10.69894 -8.27595,17.20105 -13.05432,17.20105c-4.77837,0 -9.89651,-6.50211 -13.05432,-17.20105c4.30269,-0.86538 8.67773,-1.29651 13.05432,-1.29651zM67.74914,110.39221c1.677,5.73781 3.93421,10.57867 6.61902,14.19336c-6.50644,-1.96456 -12.32559,-5.52441 -16.99109,-10.2356c3.35131,-1.62862 6.82457,-2.9392 10.37207,-3.95776zM104.25086,110.39221c3.5475,1.01856 7.01807,2.33183 10.37207,3.95776c-4.6655,4.71119 -10.48465,8.27103 -16.99109,10.2356c2.68212,-3.612 4.94202,-8.45555 6.61902,-14.19336zM43,161.25v5.375h5.375v-5.375zM61.8125,161.25v5.375h5.375v-5.375zM83.3125,161.25v5.375h5.375v-5.375zM104.8125,161.25v5.375h5.375v-5.375zM123.625,161.25v5.375h5.375v-5.375z">
</path>
</g>
</g>
</svg>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-lg-6 col-md-6 col-12 d-md-flex mb-5">
<div class="card c-service-card">
<div class="card-body">
<h3>
Digital Marketing & SEO
</h3>
<hr>
<div class="c-services-content">
<ul>
<li> Creating Sitemaps </li>
<li> Increasing website ranking and visibility on Google </li>
<li> Adding SEO keywords to the website </li>
<li> Increasing Brand reach through Social Media marketing </li>
<li> Content driven Marketing </li>
</ul>
<svg class="bg-image" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="200" height="200"
viewBox="0 0 172 172" style=" fill:#000000;">
<g fill="none" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<path d="M0,172v-172h172v172z" fill="none"></path>
<g fill="#DB3A74">
<path
d="M48.11077,8.26923c-8.26824,0 -14.99509,6.7262 -14.99509,14.99444v125.47266c0,8.26824 6.72685,14.99444 14.99509,14.99444h59.31752c8.26824,0 14.99509,-6.72685 14.99509,-14.99509v-31.14012c1.41933,-0.58348 2.80571,-1.28308 4.14301,-2.10736l1.76303,1.76303l-0.60598,0.60598c-1.62342,1.62308 -1.62341,4.26485 0,5.8886c1.36608,1.36608 3.40333,1.56397 4.9596,0.69901l12.08083,12.08148c3.19722,3.19722 8.37227,3.19821 11.56982,0c3.18961,-3.18928 3.19025,-8.37923 0.00064,-11.56917l-12.08341,-12.08341c0.87422,-1.58273 0.64322,-3.61641 -0.69771,-4.95701c-1.62738,-1.62738 -4.26088,-1.62772 -5.8886,0l-0.60598,0.60533l-1.60733,-1.60733c7.54187,-11.32091 6.12723,-26.53527 -3.61327,-36.27544c-2.73943,-2.73943 -5.93529,-4.85637 -9.41465,-6.28397v-41.09162c0,-8.26824 -6.7262,-14.99444 -14.99444,-14.99444zM48.11077,11.57692h59.31752c6.44405,0 11.6874,5.24237 11.6874,11.68675v4.85171h-82.69231v-4.85171c0.00033,-6.44438 5.24302,-11.68675 11.68739,-11.68675zM131.51953,16.53846c-1.37009,0 -2.48077,1.11068 -2.48077,2.48077c0,1.37009 1.11068,2.48077 2.48077,2.48077c1.37009,0 2.48077,-1.11068 2.48077,-2.48077c0,-1.37009 -1.11068,-2.48077 -2.48077,-2.48077zM71.04432,18.19231c-0.91325,0 -1.65385,0.74059 -1.65385,1.65385c0,0.91325 0.74026,1.65385 1.65385,1.65385h13.34059c0.91325,0 1.65385,-0.74059 1.65385,-1.65385c0,-0.91325 -0.74059,-1.65385 -1.65385,-1.65385zM146.40415,28.11538c-5.92772,0 -10.75,4.82262 -10.75,10.75c0,5.92738 4.82228,10.75 10.75,10.75c5.92772,0 10.75,-4.82262 10.75,-10.75c0,-5.92738 -4.82228,-10.75 -10.75,-10.75zM36.42338,31.42308h82.69231v31.81393c-1.08426,-0.29604 -2.18672,-0.53552 -3.30769,-0.70288v-26.1495c0,-0.91325 -0.74026,-1.65385 -1.65385,-1.65385h-72.76923c-0.91325,0 -1.65385,0.74059 -1.65385,1.65385v99.23077c0,0.91358 0.74059,1.65385 1.65385,1.65385h72.76923c0.91358,0 1.65385,-0.74026 1.65385,-1.65385v-16.1909c1.11105,-0.16737 2.21549,-0.39837 3.30769,-0.69771v21.85015h-82.69231zM146.40415,31.42308c4.10352,0 7.44231,3.33845 7.44231,7.44231c0,4.10385 -3.33878,7.44231 -7.44231,7.44231c-4.10352,0 -7.44231,-3.33845 -7.44231,-7.44231c0,-4.10385 3.33878,-7.44231 7.44231,-7.44231zM20.71184,33.07692c-1.37009,0 -2.48077,1.11068 -2.48077,2.48077c0,1.37009 1.11068,2.48077 2.48077,2.48077c1.37009,0 2.48077,-1.11068 2.48077,-2.48077c0,-1.37009 -1.11068,-2.48077 -2.48077,-2.48077zM43.03811,38.03846h69.46154v24.19977c-16.59006,-0.56165 -29.76923,12.73679 -29.76923,28.74139c0,7.56899 2.87852,14.8226 8.57933,20.48702l-10.23317,10.23317l-9.58003,-9.58003c-0.64599,-0.64599 -1.69329,-0.64599 -2.33929,0l-10.75,10.75c-0.64566,0.64533 -0.64535,1.69233 0.00064,2.338c0.64599,0.64599 1.69265,0.64599 2.33864,0l9.58068,-9.58068l9.58003,9.58068c0.64632,0.64665 1.69462,0.645 2.33929,0l11.55625,-11.55625c5.14346,4.01951 11.70274,6.31661 18.69686,6.08176v14.22824h-69.46154zM48.0003,41.34615c-0.91325,0 -1.65385,0.74059 -1.65385,1.65385c0,0.91325 0.74026,1.65385 1.65385,1.65385h19.84615c0.91325,0 1.65385,-0.74059 1.65385,-1.65385c0,-0.91325 -0.74059,-1.65385 -1.65385,-1.65385zM72.80799,41.34615c-0.91339,0 -1.65385,0.74045 -1.65385,1.65385c0,0.91339 0.74045,1.65385 1.65385,1.65385c0.91339,0 1.65385,-0.74045 1.65385,-1.65385c0,-0.91339 -0.74045,-1.65385 -1.65385,-1.65385zM48.0003,47.96154c-0.91325,0 -1.65385,0.74059 -1.65385,1.65385c0,0.91325 0.74026,1.65385 1.65385,1.65385h19.84615c0.91325,0 1.65385,-0.74059 1.65385,-1.65385c0,-0.91325 -0.74059,-1.65385 -1.65385,-1.65385zM72.80799,47.96154c-0.91339,0 -1.65385,0.74045 -1.65385,1.65385c0,0.91339 0.74045,1.65385 1.65385,1.65385c0.91339,0 1.65385,-0.74045 1.65385,-1.65385c0,-0.91339 -0.74045,-1.65385 -1.65385,-1.65385zM48.0003,54.57692c-0.91325,0 -1.65385,0.74059 -1.65385,1.65385c0,0.91325 0.74026,1.65385 1.65385,1.65385h19.84615c0.91325,0 1.65385,-0.74059 1.65385,-1.65385c0,-0.91325 -0.74059,-1.65385 -1.65385,-1.65385zM72.80799,54.57692c-0.91339,0 -1.65385,0.74045 -1.65385,1.65385c0,0.91339 0.74045,1.65385 1.65385,1.65385c0.91339,0 1.65385,-0.74045 1.65385,-1.65385c0,-0.91339 -0.74045,-1.65385 -1.65385,-1.65385zM48.0003,61.19231c-0.91325,0 -1.65385,0.74059 -1.65385,1.65385c0,0.91325 0.74026,1.65385 1.65385,1.65385h19.84615c0.91325,0 1.65385,-0.74059 1.65385,-1.65385c0,-0.91325 -0.74059,-1.65385 -1.65385,-1.65385zM72.80799,61.19231c-0.91339,0 -1.65385,0.74045 -1.65385,1.65385c0,0.91339 0.74045,1.65385 1.65385,1.65385c0.91339,0 1.65385,-0.74045 1.65385,-1.65385c0,-0.91339 -0.74045,-1.65385 -1.65385,-1.65385zM111.48021,65.51815c2.92673,-0.00226 5.83751,0.4951 8.58579,1.4749c0.06483,0.03076 0.13275,0.05505 0.20221,0.07688c3.42809,1.25527 6.57278,3.24959 9.23118,5.90798c8.85172,8.85172 9.91405,23.09846 2.47108,33.1383c-0.48822,0.65823 -0.42058,1.57437 0.15892,2.15387l2.59059,2.5906l-4.05128,4.05192l-2.71076,-2.71011c-0.56264,-0.56264 -1.44658,-0.64462 -2.10349,-0.1951c-9.0128,6.16984 -21.0013,5.86306 -29.69623,-0.70999l3.38134,-3.38199c7.96558,5.6502 19.26157,5.08164 26.61788,-2.27533c8.08367,-8.08334 8.08367,-21.23721 0,-29.32088c-8.10186,-8.10219 -21.21738,-8.10318 -29.32024,0c-8.05688,8.05688 -8.16277,21.30946 0.15376,29.46689l-3.34193,3.34258c-10.05869,-9.86652 -10.19723,-26.10727 -0.15375,-36.15075c5.0304,-5.03063 11.54613,-7.45478 17.98493,-7.45975zM48.0003,67.80769c-0.91325,0 -1.65385,0.74059 -1.65385,1.65385c0,0.91325 0.74026,1.65385 1.65385,1.65385h19.84615c0.91325,0 1.65385,-0.74059 1.65385,-1.65385c0,-0.91325 -0.74059,-1.65385 -1.65385,-1.65385zM72.80799,67.80769c-0.91339,0 -1.65385,0.74045 -1.65385,1.65385c0,0.91339 0.74045,1.65385 1.65385,1.65385c0.91339,0 1.65385,-0.74045 1.65385,-1.65385c0,-0.91339 -0.74045,-1.65385 -1.65385,-1.65385zM149.71184,71.11538c-1.37009,0 -2.48077,1.11068 -2.48077,2.48077c0,1.37009 1.11068,2.48077 2.48077,2.48077c1.37009,0 2.48077,-1.11068 2.48077,-2.48077c0,-1.37009 -1.11068,-2.48077 -2.48077,-2.48077zM111.49636,73.55029c4.45823,-0.00013 8.91718,1.70227 12.32245,5.10754c6.794,6.794 6.794,17.84896 0,24.64296c-6.02066,6.02066 -15.22456,6.651 -21.90313,2.23721l7.51854,-7.51854l-0.2287,1.8328c-0.12305,0.98404 0.64328,1.85993 1.64286,1.85993c0.82196,0 1.5348,-0.61318 1.63898,-1.4497c0.89142,-7.17306 0.87727,-6.78035 0.81013,-7.12898c-0.01918,-0.09857 -0.04199,-0.18033 -0.08334,-0.28684c-0.00529,-0.0129 -0.00924,-0.02586 -0.01486,-0.03876c-0.06781,-0.16406 -0.18366,-0.34387 -0.28619,-0.45997c-0.0172,-0.01952 -0.03672,-0.03671 -0.05491,-0.05556c-0.00595,-0.00628 -0.00922,-0.0131 -0.01551,-0.01938c-0.21302,-0.21302 -0.51334,-0.38445 -0.84113,-0.45093c-0.32382,-0.06615 -0.18529,-0.0177 -6.94357,-0.03424c-0.91358,0 -1.65385,0.74026 -1.65385,1.65385c0,0.91358 0.74026,1.65385 1.65385,1.65385h2.6229l-8.35128,8.35192c-7.0563,-6.92168 -6.89416,-18.04985 -0.1544,-24.78961c3.40477,-3.40477 7.86292,-5.10742 12.32115,-5.10754zM48.0003,74.42308c-0.91325,0 -1.65385,0.74059 -1.65385,1.65385c0,0.91325 0.74059,1.65385 1.65385,1.65385h19.84615c0.91325,0 1.65385,-0.74059 1.65385,-1.65385c0,-0.91325 -0.74059,-1.65385 -1.65385,-1.65385zM72.80799,74.42308c-0.91339,0 -1.65385,0.74045 -1.65385,1.65385c0,0.91339 0.74045,1.65385 1.65385,1.65385c0.91339,0 1.65385,-0.74045 1.65385,-1.65385c0,-0.91339 -0.74045,-1.65385 -1.65385,-1.65385zM24.01953,94.26923c-1.37009,0 -2.48077,1.11068 -2.48077,2.48077c0,1.37009 1.11068,2.48077 2.48077,2.48077c1.37009,0 2.48077,-1.11068 2.48077,-2.48077c0,-1.37009 -1.11068,-2.48077 -2.48077,-2.48077zM140.60923,110.00403c0.7568,0 1.14647,0.92148 0.60533,1.46262l-0.35467,0.35467c-0.40519,0.40519 -10.22392,10.22456 -9.5852,9.58585c-0.32415,0.32316 -0.88946,0.32348 -1.21196,0.00065c-0.33408,-0.33408 -0.33375,-0.87788 0,-1.21196c4.20143,-4.20077 9.97823,-9.97887 9.94052,-9.94117c0.16175,-0.16141 0.37709,-0.25066 0.60598,-0.25066zM19.05799,114.11538c-3.19159,0 -5.78846,2.59687 -5.78846,5.78846c0,3.19159 2.59687,5.78846 5.78846,5.78846c3.19159,0 5.78846,-2.59687 5.78846,-5.78846c0,-3.19159 -2.59687,-5.78846 -5.78846,-5.78846zM142.02856,115.32993l11.96648,11.96648c1.90027,1.90027 1.90027,4.99162 0,6.89189c-1.90358,1.90424 -4.98666,1.90523 -6.89189,0l-11.96648,-11.96648zM19.05799,117.42308c1.36806,0 2.48077,1.11271 2.48077,2.48077c0,1.36806 -1.11304,2.48077 -2.48077,2.48077c-1.36806,0 -2.48077,-1.11271 -2.48077,-2.48077c0,-1.36806 1.11271,-2.48077 2.48077,-2.48077zM134.82722,140.57692c-1.37009,0 -2.48077,1.11068 -2.48077,2.48077c0,1.37009 1.11068,2.48077 2.48077,2.48077c1.37009,0 2.48077,-1.11068 2.48077,-2.48077c0,-1.37009 -1.11068,-2.48077 -2.48077,-2.48077zM17.40415,142.23077c-1.37009,0 -2.48077,1.11068 -2.48077,2.48077c0,1.37009 1.11068,2.48077 2.48077,2.48077c1.37009,0 2.48077,-1.11068 2.48077,-2.48077c0,-1.37009 -1.11068,-2.48077 -2.48077,-2.48077zM36.42338,143.88462h82.69231v4.85107c-0.00033,6.44438 -5.24302,11.68739 -11.6874,11.68739h-59.31752c-6.44438,0 -11.68739,-5.2427 -11.68739,-11.68675zM77.76953,145.53846c-3.64772,0 -6.61538,2.96766 -6.61538,6.61538c0,3.64772 2.96766,6.61538 6.61538,6.61538c3.64772,0 6.61538,-2.96766 6.61538,-6.61538c0,-3.64772 -2.96766,-6.61538 -6.61538,-6.61538zM77.76953,148.84615c1.82386,0 3.30769,1.48383 3.30769,3.30769c0,1.82386 -1.48383,3.30769 -3.30769,3.30769c-1.82386,0 -3.30769,-1.48383 -3.30769,-3.30769c0,-1.82386 1.48383,-3.30769 3.30769,-3.30769z">
</path>
</g>
</g>
</svg>
</div>
</div>
</div>
</div>
<div class="col-12 text-center">
<!-- <p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas, dolores.
</p> -->
<a name="" id="" class="btn btn-theme-home button-primary-text" href="contact-us.html" role="button">
Contact Us
</a>
</div>
</div>
</div>
</div>
<img class="c-service-img d-none d-xl-block" src="./images/servicies.svg" alt="">
</div>
<!-- <div class="section bg-accent position-relative overflow-hidden">
<div class="c-shadowing-text is-white">what we do</div>
<div class="container margin-bottom">
<div class="col text-align-center block-centered lg-8 md-12">
<h2>Unique web design solutions</h2>
<div class="text-medium low-text-contrast">Omyra Studio is a full-service, interactive agency offering innovative web design & branding solutions which move the boundaries. Our sophisticated approach to the development of digital experiences exceeds all expectations.</div>
</div>
</div>
<div class="container is-fullwidth padding-left padding-right">
<div class="col lg-12 xs-no-padding-left-right">
<div class="w-layout-grid c-grid-services">
<div class="c-grid-services__item"><img src="images/icon1.svg" width="128" alt="" class="margin-bottom">
<h3>Corporate Web development</h3>
<div class="margin-bottom">Maecenas sed diam eget risus varius blandit sit amet non magna. Nullam quis risus eget urna mollis ornare vel eu leo.</div>
<a href="index.html#" class="button-primary is-ghost is-small on-lg-margin-bottom w-inline-block">
<div class="button-primary-text">Let's talk</div>
</a>
</div>
<div data-w-id="26c3a647-0233-582b-5d9a-3ec60d35adbd" class="c-grid-services__item pull-down"><img src="images/icon6.svg" width="128" alt="" class="margin-bottom">
<h3>UI/UX Services</h3>
<div class="margin-bottom">Maecenas sed diam eget risus varius blandit sit amet non magna. Nullam quis risus eget urna mollis ornare vel eu leo.</div>
<a href="index.html#" class="button-primary is-ghost is-small on-lg-margin-bottom w-inline-block">
<div class="button-primary-text">Let's talk</div>
</a>
</div>
<div class="c-grid-services__item"><img src="images/icon2.svg" width="128" alt="" class="margin-bottom">
<h3>Branding</h3>
<div class="margin-bottom">Maecenas sed diam eget risus varius blandit sit amet non magna. Nullam quis risus eget urna mollis ornare vel eu leo.</div>
<a href="index.html#" class="button-primary is-ghost is-small on-lg-margin-bottom w-inline-block">
<div class="button-primary-text">Let's talk</div>
</a>
</div>
<div class="c-grid-services__item"><img src="images/icon3.svg" width="128" alt="" class="margin-bottom">
<h3>Web hosting & management</h3>
<div class="margin-bottom">Maecenas sed diam eget risus varius blandit sit amet non magna. Nullam quis risus eget urna mollis ornare vel eu leo.</div>
<a href="index.html#" class="button-primary is-ghost is-small on-lg-margin-bottom w-inline-block">
<div class="button-primary-text">Let's talk</div>
</a>
</div>
<div class="c-grid-services__item pull-down"><img src="images/icon4.svg" width="128" alt="" class="margin-bottom">
<h3>Digital Marketing</h3>
<div class="margin-bottom">Maecenas sed diam eget risus varius blandit sit amet non magna. Nullam quis risus eget urna mollis ornare vel eu leo.</div>
<a href="index.html#" class="button-primary is-ghost is-small on-lg-margin-bottom w-inline-block">
<div class="button-primary-text">Let's talk</div>
</a>
</div>
<div class="c-grid-services__item"><img src="images/icon5.svg" width="128" alt="" class="margin-bottom">
<h3>Web application</h3>
<div class="margin-bottom">Maecenas sed diam eget risus varius blandit sit amet non magna. Nullam quis risus eget urna mollis ornare vel eu leo.</div>
<a href="index.html#" class="button-primary is-ghost is-small on-lg-margin-bottom w-inline-block">
<div class="button-primary-text">Let's talk</div>
</a>
</div>
</div>
</div>
</div>
</div> -->
<!-- <div class="section is-dark bg-memphis position-relative overflow-hidden"><img src="images/memphis-bg2.svg" data-w-id="be62d2d7-66d5-38e8-5285-da0acd449db4" alt="" class="img-background image">
<div class="container is-narrow position-relative">
<div class="col flexh-justify-center flexh-align-center">
<div>
<div class="size-h2">Are you ready to improve your online business presence today?<br></div>
<div class="low-text-contrast">Aenean lacinia bibendum nulla sed consectetur fusce dapibus.</div>
</div>
</div>
<div class="col lg-1"></div>
<div class="col no-margin-bottom-lg md-12 md-text-align-center">
<div class="iconfont is-100px"><a href="index.html#" class="on-dark"><em class="iconfont__no-italize"></em></a></div>
</div>
</div>
</div> -->
<div class="section position-relative overflow-hidden no-padding-bottom process-section pb-5 mb-5">
<div class="c-shadowing-text is-smaller">our process</div>
<div class="container margin-bottom">
<div class="col text-align-center block-centered lg-8 md-12">
<h2>Creative Process</h2>
<div class="text-medium low-text-contrast">As a team of people obsessed with quality, having a well defined end
to end process for taking on any problem is of utmost importance to us! And it also helps us establish a
deeper connection with our partners and clients. </div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-12 position-relative">
<div class="process-box process-step-1">
<div class="marker marker-1">
<img src="./images/Producttdefinition.svg" alt="" width="150">
<div class="pl-3 pl-lg-0">
<h4>
Project Definition
</h4>
<p>
The very first and most quintessential step of any successful product/project is defining and
documenting all the aspects of its development.
</p>
<!-- <a name="" id="" class="btn btn-outline-dark btn-sm" href="#" role="button">
View More
</a> -->
</div>
</div>
<div class="marker marker-2">
<img src="./images/Productresearch.svg" alt="" width="150">
<div class="content pl-3 pl-lg-0">
<h4>
Product and UX Research
</h4>
<p>
Once the scope of the project is defined, the next important step is to create the best possible user
experience for the product.
</p>
<!-- <a name="" id="" class="btn btn-outline-dark btn-sm" href="#" role="button">
View More
</a> -->
</div>
</div>
</div>
<div class="box-1"></div>
</div>
<div class="col-12">
<div class="process-box process-step-2">
<div class="marker marker-2">
<img src="./images/Productdevelopment.svg" alt="" width="150">
<div class="content pl-3 pl-lg-0">
<h4>
Product Development
</h4>
<p>
Once all the design is done, and the product looks as good as it can and has the best user experience
defined for it, the process of developing and coding finally starts!
</p>
<!-- <a name="" id="" class="btn btn-outline-dark btn-sm" href="#" role="button">
View More
</a> -->
</div>
</div>
<div class="marker marker-2">
<img src="./images/Wireframing.svg" alt="" width="150">
<div class="content pl-3 pl-lg-0">
<h4>
Wireframes and Design
</h4>
<p>
This step involves translating all the research and insights collected in the previous step, into
unique and eye-catching designs/wire frames.
</p>
<!-- <a name="" id="" class="btn btn-outline-dark btn-sm" href="#" role="button">
View More
</a> -->
</div>
</div>
</div>
</div>
<div class="col-12 position-relative">
<div class="process-box process-step-3">
<div class="marker marker-2">
<img src="./images/Producttesting.svg" alt="" width="150">
<div class="content pl-3 pl-lg-0">
<h4>
Product Testing
</h4>
<p>
Developing the product by itself is not enough. Continuous testing and validation is required at each
and every step to esure, that we are creating a robust and well rounded application/product.
</p>
<!-- <a name="" id="" class="btn btn-outline-dark btn-sm" href="#" role="button">
View More
</a> -->
</div>
</div>
<div class="marker marker-2">
<img src="./images/Deploymentsolution.svg" alt="" width="150">
<div class="content pl-3 pl-lg-0">
<h4>
Deployment Solutions
</h4>
<p>
This is the step where the product finally goes live . Deploying the product to the internet/app
store/play store for everyone to use!
</p>
<!-- <a name="" id="" class="btn btn-outline-dark btn-sm" href="#" role="button">
View More
</a> -->
</div>
</div>
<div class="marker marker-1">
<img src="./images/Productmaintainance.svg" alt="" width="150">
<div class="content pl-3 pl-lg-0">
<h4>
Product Maintenance
</h4>
<p>
This is the step which binds everything together. Once the product goes live, there are several
feedbacks and issues that might come, and all of that is encompassed in this final step.
</p>
<!-- <a name="" id="" class="btn btn-outline-dark btn-sm" href="#" role="button">
View More
</a> -->
</div>
</div>
</div>
<div class="box-2"></div>
</div>
</div>
</div>
</div>
<!-- <div id="layout" class="section position-relative overflow-hidden">
<div class="c-shadowing-text is-smaller">Our work</div>
<div class="container">
<div class="col lg-7 block-centered md-12 text-align-center">
<h2>Portfolio</h2>
<div class="low-text-contrast-2 text-medium">Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus</div>
</div>
</div>
<div class="container is-fullwidth padding-left padding-right">
<div class="col lg-12 xs-no-padding-left-right">
<div class="w-layout-grid c-grid-portfolio"><a href="portfolio-detail.html" class="w-inline-block"><img src="images/cleanco_ss.jpg" srcset="images/cleanco_ss-p-500.jpeg 500w, images/cleanco_ss.jpg 740w" sizes="(max-width: 479px) 90vw, (max-width: 767px) 87vw, (max-width: 991px) 88vw, 740px" alt="" class="has-shadow has-hover-animation"></a><a href="portfolio-detail.html" class="w-inline-block"><img src="images/Billio_ss.jpg" srcset="images/Billio_ss-p-500.jpeg 500w, images/Billio_ss.jpg 740w" sizes="(max-width: 479px) 90vw, (max-width: 767px) 87vw, (max-width: 991px) 88vw, 740px" alt="" class="has-shadow has-hover-animation"></a><a href="portfolio-detail.html" class="w-inline-block"><img src="images/financia_ss.jpg" srcset="images/financia_ss-p-500.jpeg 500w, images/financia_ss.jpg 740w" sizes="(max-width: 479px) 90vw, (max-width: 767px) 87vw, (max-width: 991px) 88vw, 740px" alt="" class="has-shadow has-hover-animation"></a><a href="portfolio-detail.html" class="w-inline-block"><img src="images/Hnd_ss.jpg" srcset="images/Hnd_ss-p-500.jpeg 500w, images/Hnd_ss.jpg 740w" sizes="(max-width: 479px) 90vw, (max-width: 767px) 87vw, (max-width: 991px) 88vw, 740px" alt="" class="has-shadow has-hover-animation"></a><a href="portfolio-detail.html" class="w-inline-block"><img src="images/donatics_ss.jpg" srcset="images/donatics_ss-p-500.jpeg 500w, images/donatics_ss.jpg 740w" sizes="(max-width: 479px) 90vw, (max-width: 767px) 87vw, (max-width: 991px) 88vw, 740px" alt="" class="has-shadow has-hover-animation"></a><a href="portfolio-detail.html" class="w-inline-block"><img src="images/Grade_ss.jpg" srcset="images/Grade_ss-p-500.jpeg 500w, images/Grade_ss.jpg 740w" sizes="(max-width: 479px) 90vw, (max-width: 767px) 87vw, (max-width: 991px) 88vw, 740px" alt="" class="has-shadow has-hover-animation"></a></div>
</div>
</div>
<div class="container">
<div class="col lg-12"><a href="portfolio.html" class="cta-link text-align-center"><span class="margin-right">See all works</span> <span class="fa c-cta1_arrow-hovered"></span> <span class="fa c-cta1__arrow-normal"></span></a></div>
</div>
</div> -->
<!-- <div class="section bg-accent position-relative overflow-hidden">
<div class="c-shadowing-text is-white xs-hidden">testimonial</div>
<div class="container flexh-justify-center">
<div class="col lg-8 md-12">
<div class="flexh-justify-center margin-bottom"><img src="images/logo-djavaweb.svg" width="64" alt=""></div>
<div class="quote style2 text-align-center margin-bottom-double">We are a solution partner with the Omyra Studio team. I would definitely recommend if you are looking for a long-term partner. They finish the work on time, and we're happy with their support. Cheers..!</div>
<div class="c-testimonial2__info"><img src="images/portrait3.png" width="70" alt="" class="margin-right is-rounded">
<div class="c-testimonial1__text">
<div class="is-bold">Miyagi Turbo</div>
<div class="text-small low-text-contrast">Djavaweb Counselor</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- <div class="section position-relative overflow-hidden">
<div class="c-shadowing-text is-smaller">Blog</div>
<div class="container">
<div class="col lg-7 block-centered md-12 text-align-center">
<h2>Latest News</h2>
</div>
</div>
<div class="container is-wrapping">
<div class="col lg-4 md-12"><a href="single-post.html" class="w-inline-block"><img src="images/gratisography-384H.jpg" srcset="images/gratisography-384H-p-500.jpeg 500w, images/gratisography-384H.jpg 1000w" sizes="(max-width: 479px) 90vw, (max-width: 767px) 94vw, (max-width: 991px) 95vw, 29vw" alt="" class="margin-bottom"></a>
<div class="c-gridpost__category"><a href="index.html#">Design</a> / <a href="index.html#">Technology</a></div>
<a href="single-post.html" class="c-gridpost__title-2 w-inline-block">
<h3>The Peeping Tom Effect Makes Us Worry About the Wrong Threats to Our Privacy</h3>
</a>
<div class="margin-bottom">Nullam id dolor id nibh ultricies vehicula ut id elit. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.</div><a href="single-post.html" class="cta-link-2"><span class="margin-right">Read more</span><span class="fa c-cta1_arrow-hovered"></span> <span class="fa c-cta1__arrow-normal"></span></a></div>
<div class="col lg-4 md-12"><a href="single-post.html" class="w-inline-block"><img src="images/gratisography-346H.jpg" srcset="images/gratisography-346H-p-500.jpeg 500w, images/gratisography-346H.jpg 1000w" sizes="(max-width: 479px) 90vw, (max-width: 767px) 94vw, (max-width: 991px) 95vw, 29vw" alt="" class="margin-bottom"></a>
<div class="c-gridpost__category"><a href="index.html#">Design</a> / <a href="index.html#">Technology</a></div>
<a href="single-post.html" class="c-gridpost__title-2 w-inline-block">
<h3>50 Years Later, the Internet’s Inventors Are Horrified by What It’s Become</h3>
</a>
<div class="margin-bottom">Nullam id dolor id nibh ultricies vehicula ut id elit. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.</div><a href="single-post.html" class="cta-link-2"><span class="margin-right">Read more</span><span class="fa c-cta1_arrow-hovered"></span> <span class="fa c-cta1__arrow-normal"></span></a></div>
<div class="col lg-4 md-12"><a href="single-post.html" class="w-inline-block"><img src="images/gratisography-358H.jpg" srcset="images/gratisography-358H-p-500.jpeg 500w, images/gratisography-358H-p-1080.jpeg 1080w, images/gratisography-358H.jpg 1200w" sizes="(max-width: 479px) 90vw, (max-width: 767px) 94vw, (max-width: 991px) 95vw, 29vw" alt="" class="margin-bottom"></a>
<div class="c-gridpost__category"><a href="index.html#">Design</a> / <a href="index.html#">Technology</a></div>
<a href="single-post.html" class="c-gridpost__title-2 w-inline-block">
<h3>How To Calculate Customer Retention Rate — A Practical Approach</h3>
</a>
<div class="margin-bottom">Nullam id dolor id nibh ultricies vehicula ut id elit. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.</div><a href="single-post.html" class="cta-link-2"><span class="margin-right">Read more</span><span class="fa c-cta1_arrow-hovered"></span> <span class="fa c-cta1__arrow-normal"></span></a></div>
</div>
</div> -->
<!-- <div class="section position-relative overflow-hidden">
<div class="c-shadowing-text is-dark">Capability</div>
<div class="container margin-bottom">
<div class="col text-align-center block-centered lg-8 md-12">
<h2>Our Initiatives</h2>
<div class="text-medium low-text-contrast">While we are always focused on delivering the very best to our
clients, we also have our own ventures and initiatives that we've been working on.</div>
</div>
</div>
<div class="container is-fullwidth padding-left padding-right">
<div class="col lg-12 xs-no-padding-left-right">
<div class="w-layout-grid c-grid-services1">
<div data-w-id="26c3a647-0233-582b-5d9a-3ec60d35adbd" class="c-grid-services__item"><img src="images/api.png"
width="128" alt="" class="margin-bottom">
<h3>Covid-19 Platform</h3>
<div class="margin-bottom">An incentivised news sharing platform, that curbs the spread of fake news which
has proven to be very harmful.</div>
</div>
<div class="c-grid-services__item"><img src="images/iot.png" width="128" alt="" class="margin-bottom">
<h3>ATL++</h3>
<div class="margin-bottom">An edu-tech initiative, based around leveraging AI and Robotics to enhance the
existing education system.</div>
</div>
</div>
</div>
</div>
</div> -->
<div class="section margin-top is-dark bg-memphis position-relative overflow-hidden pt-5 pb-2"><img
src="images/memphis-bg2.svg" data-w-id="be62d2d7-66d5-38e8-5285-da0acd449db4" alt="" class="img-background image">
<div class="container is-narrow position-relative justify-content-center">
<div class="col lg-12">
<div class="row">
<div class="col-md-12 my-auto">
<div>
<div class="size-h2 text-center text-capitalize">
Our Initiative
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="offer-section">
<div class="container padding-left padding-right c-service-container">
<div class="col lg-12 padding-left-right py-5">
<div class="alpha-crat-section my-5">
<div class="row p-lg-0 p-md-5 p-5">
<div class="col-md-7 text-center my-auto">
<img src="./images/alphaCrat.svg" alt="" width="300">
<h4 class="mb-1 mt-3">
New Space for
</h4>
<h2>
LEARNERS
</h2>
<p>
One Stop Solution For Teachers And Students
</p>
</div>
<div class="col-md-5">
<img src="./images/alphaCrat-logo.svg" alt="" width="">
</div>
</div>
</div>
<div class="row">
<div class="col-12 text-center mt-5">
<h2>
What we are offering
</h2>
</div>
</div>
<div class="row py-5">
<div class="col-md-4 mb-4 d-md-flex">
<div class="card card-offer">
<div class="card-body">
<h3 class="text-center">Workshops and Seminars</h3>
<hr class="bg-white mt-3 mb-4">
<ul class="pl-3 pb-1">
<li> Industry Experts/ Speakers </li>
<li> Interactive Activities </li>
<li> Covering a variety of domains </li>
<li> Free swags and gifts </li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 mb-4 d-flex">
<div class="card card-offer">
<div class="card-body">
<h3 class="text-center">Bootcamps</h3>
<hr class="bg-white mt-3 mb-4">
<ul class="pl-3 pb-1">
<li> Extensive tech bootcamps. </li>
<li> Led by expert instructors and mentors. </li>
<li> Hands on Activities </li>
<li> Longer sessions spanning over multiple days/weeks </li>
<li> Focused on Didactic / Self Paced Learning </li>
<li> Dedicated Doubt sessions </li>
</ul>
<small>
And much much more!
</small>
</div>
</div>
</div>
<div class="col-md-4 mb-4 d-flex">
<div class="card card-offer">
<div class="card-body">
<h3 class="text-center">Our own LMS</h3>
<hr class="bg-white mt-3 mb-4">
<ul class="pl-3 pb-1">
<li> A platform built by our team, focused around making learning much more fun and at the same time
making technology less intimidating for the teachers. </li>
</ul>
<small>
It’s still under work, and coming soon!
</small>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-12 text-center mt-5">
<h2>
Our Past Boot camps and workshops
</h2>
</div>
</div>
<div class="row py-5">
<div class="col-md-4 mb-4 d-flex">
<div class="card card-offer offer-part-2">
<div class="card-body">
<h3 class="text-center">Tech Wizards</h3>
<hr class="bg-white mt-3 mb-4">
<p>
As Knowledge partners of the event, in collaboration with IncubateIND. It is a collective group
initiative, to spark the interest in kids of all ages towards STEM.
</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4 d-flex">
<div class="card card-offer offer-part-2">
<div class="card-body">
<h3 class="text-center">The School of Code</h3>
<hr class="bg-white mt-3 mb-4">
<p>
As Knowledge partners of the event, in collaboration with IncubateIND, SOC aims at harnessing creative
and critical thinking amongst students via help of technology.
</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4 d-flex">
<div class="card card-offer offer-part-2">
<div class="card-body">
<h3 class="text-center">SDTC</h3>
<hr class="bg-white mt-3 mb-4">
<p>
As Knowledge partners of the event, in collaboration with IncubateIND, Student Developer Tech Camp is
a platform dedicated to teaching young learners Python & AI.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="section bg-accent position-relative overflow-hidden">
<div class="c-shadowing-text is-white xs-hidden">partners</div>
<div class="container">
<div class="col lg-12">
<div class="w-layout-grid c-grid4x2">
<div class="fa-brand _70px my-4">
<img src="https://www.alphadevs.tech/images/Workimg/anndata.png" alt="">
</div>
<div class="fa-brand _70px my-4">
<img src="https://www.alphadevs.tech/images/Workimg/myfurries.png" alt="">
</div>
<div class="fa-brand _70px my-4">
<img src="https://www.alphadevs.tech/images/Workimg/voto.png" alt="">
</div>
<div class="fa-brand _70px my-4">
<img src="https://www.alphadevs.tech/images/Workimg/kvest.png" alt="">
</div>
<div class="fa-brand _70px my-4">
<img src="./images/drivetech.jpg" alt="">
</div>
<div class="fa-brand _70px my-4">
<img src="https://www.alphadevs.tech/images/Workimg/gkmart.png" alt="">
</div>
<div class="fa-brand _70px my-4">
<img src="https://www.alphadevs.tech/images/Workimg/loofre.png" alt="">
</div>
<div class="fa-brand _70px my-4">
<img src="https://www.incubateind.com/en-in/codeforfuture/images/IncubateIND%20Black.png" alt=""
width="150">
</div>
<div class="fa-brand _70px my-4">
<img src="./images/afterschool.jpg" alt="" width="">
</div>
<div class="fa-brand _70px my-4">
<img src="./images/bfb.jpg" alt="" width="">
</div>
<div class="fa-brand _70px my-4">
<img src="./images/khojo.jpg" alt="" width="">
</div>
</div>
</div>
</div>
</div>
<footer class="section padding-bottom-16 is-black">
<div class="container flex-horizontal">
<div class="col lg-6 my-1 flexv-space-between md-12">
<!-- <img src="images/logo-alt.png" width="110" alt=""> -->
<h2 class="font-run-medium">
alpha<span>devs</span>
</h2>
<br>
<div class="m-2">AlphaDevs is a group of like-minded people working towards the goal of leveraging technology to
make the world around them better.<br>
Our team consists of people with a variety of skills, ranging from software development to IoT, AI etc.
Putting the same skills to use has yielded us a good track record in number of events and competitions as
well.</div><br>
<div class="footer-tagline">love the hustle</div>
</div>
<div class="col lg-1 no-margin-bottom"></div>
<div class="col lg-8 md-12">
<div class="text-large is-thin margin-bottom-double">Let's build something great together<a
href="mailto:monggo@nikisae.ninja" class="email-footer"></a></div>
<div class="container container-nested is-wrapped">
<div class="col lg-3 no-margin-bottom-lg md-12">
<div class="size-h4 margin-bottom">Helpful Link</div>
<a href="index.html#" class="footer-nav-link on-dark">Home</a>
<a href="contact-us.html" class="footer-nav-link on-dark">Contact Us</a>
<a href="pricing.html" class="footer-nav-link on-dark">Pricing</a>
<!-- <a href="index.html#" class="footer-nav-link on-dark">Services</a> -->
</div>
<div class="col lg-5 no-margin-bottom-lg md-12">
<div class="size-h4 margin-bottom">Our Work</div>
<a href="https://anndata.co.in/" class="footer-nav-link on-dark">
Anndata
</a>
<a href="http://myfurries.com/" class="footer-nav-link on-dark">
My Furries
</a>
<!-- <a href="index.html#" class="footer-nav-link on-dark">
ATL++
</a> -->
<a href="https://youtu.be/1tdWHL4j9EM" class="footer-nav-link on-dark">
Covid-19 platform
</a>
</div>
<div class="col lg-4 no-margin-bottom-lg md-12">
<div class="size-h4 margin-bottom">Let's connect</div>
<a href="https://www.linkedin.com/company/thealphadevs/" class="footer-nav-link on-dark w-inline-block">
<div><span class="fa-brand-2 w24"></span>Linkdein</div>
</a>
<a href="https://twitter.com/devsalpha" class="footer-nav-link on-dark w-inline-block">
<div><span class="fa-brand-2 w24"><i class="fab fa-twitter"></i></span>Telegram</div>
</a>
<a href="https://m.facebook.com/Alphadevs11/" class="footer-nav-link on-dark w-inline-block">
<div><span class="fa-brand-2 w24"></span> Facebook</div>
</a>
<a href="https://www.instagram.com/alpha_devs/?igshid=1nx5ce20x4edk"
class="footer-nav-link on-dark w-inline-block">
<div><span class="fa-brand-2 w24"></span> Instagram</div>
</a>
<a href="https://github.com/alphadevs" class="footer-nav-link on-dark w-inline-block">
<div><span class="fa-brand-2 w24"><i class="fab fa-github"></i></span>Github</div>
</a>
</div>
</div>
</div>
</div>
<div class="container">
<div class="col lg-12 margin-bottom">
<div class="hr on-dark opacity"></div>
</div>
</div>
<div class="container">
<div class="col lg-6 no-margin-bottom md-12 md-order-last">
<div class="low-text-contrast text-small flexh-space-between md-flex-vertical">
<div class="md-order-last on-dark">©2021 Copyright Alphadevs Pvt. Ltd. </div>
<!-- <a href="index.html#" class="footer-bottom-link on-dark">
Privacy Policy
</a>
<a href="index.html#" class="footer-bottom-link on-dark">
Term Of Service
</a> -->
</div>
</div>
<div class="col lg-6 no-margin-bottom md-12">
<div class="w100 text-align-right footer-bottom md-text-align-left">India</div>
</div>
</div>
</footer>
<script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.4.1.min.220afd743d.js" type="text/javascript"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="js/omyra-template.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<script>
$(window).scroll(function () {
var scroll = $(window).scrollTop();
//>=, not <= if (scroll>= 500) {
//clearHeader, not clearheader - caps H
if (scroll >= 100) {
//clearHeader, not clearheader - caps H\
$(".navigation-section").addClass("shadow-sm");
} else {
$(".navigation-section").removeClass("shadow-sm");
}
});
</script>
</body>
</html>