-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch-process-plan.php
1282 lines (1157 loc) · 76 KB
/
launch-process-plan.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8"/>
<title>Niwax - Web Design & Digital Marketing Agency HTML Template</title>
<meta name="description" content="Creative Agency, Marketing Agency Template">
<meta name="keywords" content="Creative Agency, Marketing Agency">
<meta name="author" content="rajesh-doot">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme-color" content="#322d97">
<!--website-favicon-->
<link href="images/favicon.png" rel="icon">
<!--plugin-css-->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/plugin.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- template-style-->
<link href="css/style.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link href="css/sideform.css" rel="stylesheet">
<style>
@media (min-width: 320px) and (max-width: 765px){
.hide {
display:none;
}
}
@media (min-width: 320px) and (max-width: 765px){
.lm {
margin-left: 0px;
}
}
</style>
</head>
<body>
<!--Start Header -->
<?php include 'header.php'; ?>
<!--Breadcrumb Area-->
<!-- <section class="breadcrumb-area pink banner-2" style="padding-bottom: 0px">
<div class="text-block">
<div class="container">
<div class="row">
<div class="col-sm-6 col-xs-4 tabbanrt" >
<div class="banner_pic">
<picture>
<h1 style="text-align: left;color: #fff;font-weight: 500">Software development from <strong>conception</strong> to <strong>delivery</strong></h1><hr>
<h4 style="text-align: left;color: #fff;font-weight: 300">
Sharing our <strong>expertise and passion</strong> to build <strong>solutions</strong> that <strong>empower your business</strong> </h4>
</picture>
</div>
</div>
<!--<div class="col-sm-3 col-xs-4 tabbanrt" style="margin-top: 4%">
<div class="service-sec-list ">
<img src="images/icons/tech.svg" alt="service">
<h5 class="mb10" style="color: white">Trending Technologies</h5>
<ul class="-service-list">
<li > <a href="#" style="color: white">React.JS </a> </li>
<li > <a href="#" style="color: white">Node.JS </a> </li>
<li > <a href="#" style="color: white"> Angular.JS </a></li>
</ul>
<p style="color: white">Lorem Ipsum is text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500.</p>
</div>
</div>-->
<!--<div class="col-sm-2 col-xs-4 tabbanrt hide" style="margin-left: -97px;margin-right: 95px">
<svg class="svg1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 563.3 402.7" style="width: min-content;
margin-top: 179px;">
<g id="Layer_2" data-name="Layer 2">
<g id="updated">
<path id="DCSL_logo" class="cover-logo" d="M559.9,278.1c0.1-32.2-5.6-64.2-16.8-94.5c-1.3-3.2-2.4-6.8-4.1-10c-7.8-17-24.1-24.1-40-17.6
s-23.5,22.7-16.8,40c10.4,26.8,16.2,54.2,16.2,82.1l0,0c0,11.6-9.4,21-21,21c-11.6,0-21-9.4-21-21l0,0c0.2-64.9,0-130,0-195.1
c0-19.7-13.2-34.6-30.3-34.3c-17.6,0.3-30.3,14.1-30.5,34.1v61.7c-4.1-2.7-6-4.1-7.8-5.1c-37.3-27.9-79-38.9-125.5-34.9
c-83.3,7-154.4,83.3-155.8,167.6c0,2,0,4.1,0,6.1h-0.1c0,11.5-9.4,20.9-20.9,20.9s-20.9-9.4-20.9-20.9l0,0
c0-12.3,1.2-24.5,3.3-36.6C91,115.4,208.1,40,333,67.8c4.8,1.2,9.7,1.8,14.6,1.6c14.1-1.1,25.7-12.2,27.6-25.5
c2.2-16.2-5.9-29.4-22.2-34C317.6-0.3,281.4-2.5,244.9,2.7C104.3,22.1,3.3,141.6,3.5,278.1H0v124.7h563.3V278.1H559.9z M280,391.5
c-60.3-0.3-111.1-50.6-112.7-110.6l0,0c0-0.8,0-1.6,0-2.4c0-0.1,0-0.3,0-0.4l0,0c0-62.3,51.8-113.4,114.6-113.4
S395.2,215,395.5,278.1l0,0c0,0.3,0,0.6,0,1c0,0.6,0,1.2,0,1.9l0,0C394.2,342.7,343.5,391.8,280,391.5z" style="fill:#f5f4f4"></path>
</g>
</g>
</svg>
</div>
<div class="col-lg-4 col-xs-4 ">
<div class="itm-media-object lm ">
<div class="media" >
<img class="bullet__logo" src="https://www.dcslsoftware.com/wpcms/wp-content/uploads/2020/03/dcsl-people.svg" style="width: 40px;background: transparent;">
<div class="media-body">
<h6 class="h61 ">100+ software developers</h6>
</div>
</div>
<div class="media " >
<img class="bullet__logo" src="https://www.dcslsoftware.com/wpcms/wp-content/uploads/2020/03/dcsl-uk-based.svg" style="width: 40px;background: transparent;">
<div class="media-body">
<h6 class="h61 ">UK based, permanent employees</h6>
</div>
</div>
<div class="media " >
<img class="bullet__logo" src="https://www.dcslsoftware.com/wpcms/wp-content/uploads/2020/03/dcsl-competitve.svg" style="width: 40px;background: transparent;">
<div class="media-body">
<h6 class="h61 ">Competitive day rates</h6>
</div>
</div>
<div class="media " >
<img class="bullet__logo" src="https://www.dcslsoftware.com/wpcms/wp-content/uploads/2020/03/dcsl-blazing.svg" style="width: 40px;background: transparent;">
<div class="media-body">
<h6 class="h61 ">Rapid software delivery</h6>
</div>
</div>
<div class="media " >
<img class="bullet__logo" src="https://www.dcslsoftware.com/wpcms/wp-content/uploads/2020/03/dcsl-awards.svg" style="width: 40px;background: transparent;">
<div class="media-body">
<h6 class="h61 ">Multi-award winning</h6>
</div>
</div>
<div class="media " >
<img class="bullet__logo" src="https://www.dcslsoftware.com/wpcms/wp-content/uploads/2020/03/dcsl-cloud.svg" style="width: 40px;background: transparent;">
<div class="media-body">
<h6 class="h61 "> Web, Mobile, Cloud & Desktop</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>-->
<!--Breadcrumb Area-->
<section class="breadcrumb-area " style="padding: 32px 0px 32px 0px;background:#ff6666">
<div class="text-block">
<div class="container">
<div class="row">
<div class="col-sm-4 col-xs-6 tabbanrt" style="margin-top: 4%">
<div class="banner_pic">
<picture>
<img src="images/portfolioban.webp" alt="" />
</picture>
</div>
</div>
<div class="col-sm-4 col-xs-6 tabbanrt" style="margin-top: 4%">
<div class="service-sec-list ">
<img src="images/icons/tech.svg" alt="service">
<h5 class="mb10" style="color: white">Innovation Through Automation</h5>
<!--<ul class="-service-list">
<li > <a href="#" style="color: white">React.JS </a> </li>
<li > <a href="#" style="color: white">Node.JS </a> </li>
<li > <a href="#" style="color: white"> Angular.JS </a></li>
</ul>-->
<p style="color: white;text-align: justify">Design principles do not change over time. The wheel isn't constantly reinvented.
The way how logos are designed today, can be changed though. We are
convinced that professional logo design can be automated. That's what we do. We
automate the way how designers think.</p>
</div>
</div>
<div class="col-sm-4 col-xs-6">
<div class="bannerform">
<div class="quick_quoteinnr">
<h3>Quick Quote</h3>
<p>Fill Up The Form To Get A Quick Call Back From Us!</p>
<form method="POST" action="/portfolio.php" name="form1" id="form1" >
<div class="fldquary">
<input type="text" placeholder="Your Name *" id="name" name="name" value=""/>
</div>
<div id="phone_en" class="fldquary" style="display: block;">
<input type="tel" placeholder="Phone No *" id="phone" name="phone" value="" />
</div>
<div class="fldquary">
<input type="text" placeholder="Email Id *" id="email" name="email" value=""/>
</div>
<div class="fldquary">
<input type="text" placeholder="Your City *" id="city" name="city" value=""/>
</div>
<div class="fldquary with100px">
<select class="intrstd_list" name="interest" id="interest">
<option value="" class="grey_color">Interested In*</option>
<option value="Logo Design">Logo Design</option>
<option value="Packaging Design">Packaging Design</option>
<option value="Website Design">Website Design</option>
<option value="Responsive / Bootstrap HTML">Responsive / Bootstrap HTML</option>
<option value="Website Development">Website Development</option>
<option value="Wordpress">Wordpress</option>
<option value="Magento">Magento</option>
<option value="SEO & SMO">SEO & SMO</option>
<option value="Hosting">Hosting</option>
<option value="ECommerce Website">ECommerce Website</option>
<option value="Digital Marketing">Digital Marketing</option>
<option value="Graphics Design">Graphics Design</option>
<option value="Brochure, Business Card, Flyer Design">Brochure, Business Card, Flyer Design</option>
<option value="Content Writing Services">Content Writing Services</option>
</select>
</div>
<div class=" fldquary col-md-12 " style="padding-top: 3px">
<div class="g-recaptcha" data-sitekey="6LdpprMUAAAAAH-DyfhcHEy1nRxWE5YUjkjuUDcy"><div style="width: 304px; height: 78px;"><div><iframe src="https://www.google.com/recaptcha/api2/anchor?ar=2&k=6LdpprMUAAAAAH-DyfhcHEy1nRxWE5YUjkjuUDcy&co=aHR0cHM6Ly93d3cuYXJvYml0LmNvbTo0NDM.&hl=en&v=aUMtGvKgJZfNs4PdY842Qp03&size=normal&cb=kwue9ykzd3x0" width="304" height="78" role="presentation" name="a-xbh6mmmr8qsi" frameborder="0" scrolling="no" sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox"></iframe></div><textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response" style="width: 300px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea></div></div>
<span class="errormessage" id="captcha_error_header"></span>
</div>
<input type="hidden" value="" name="secret" id="secret"/>
<div class="capcha">
<div class="g-recaptcha" id="rcaptcha" data-sitekey="6LcKj6oUAAAAAFksaMchGeV_v4UqbGM5NEg2CoIF" data-theme="light"></div>
</div>
<input class="btn btn-primary bg-btn2" type="button" value="Submit" name="Submit" id="Submit" onclick="contactquick();"/>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Breadcrumb Area-->
<!--End Breadcrumb-->
<section class="service pad-tb about-agency light-dark">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center"><h2 class="mb20" style=""><div class="quotes">
<blockquote>
<p>It is as simple as this... branding makes or breaks a business.</p>
<footer>
</footer>
</blockquote>
</div></h2></div>
<div class="col-lg-7" style="margin-top:4%">
<div class="text-l service-desc- pr25">
<span>GROW TRAFFIC & INCREASE REVENUE</span>
<h2>Product Launch</h2>
<br>
<p style="text-align: justify">A product launch is a planned effort to bring a new product to market. The goal is to make
sure that everyone inside the company, your partners and target customers know about
your new product. If you don’t do the product launch effectively, customers won’t be aware
of your solution, or may potentially have a bad impression of your product, and you may not
hit your revenue and profitability goals.</p>
<a href="#" class="btn-main bg-btn2 lnk mt30">Request A Quote <i class="fas fa-chevron-right fa-icon"></i><span class="circle"></span></a>
</div>
</div>
<div class="col-lg-5">
<div class="single-image wow fadeIn" style="visibility: visible; animation-name: fadeIn;">
<img src="images/launch.png" alt="image" class="img-fluid no-shadow">
</div>
</div>
</div>
</div>
</section>
<section class="service bg-gradient15 pad-tb">
<div class="container">
<div class="row">
<div class="col-lg-7">
<div class="text-l service-desc- pr25">
<h3 style="color:#050748">What size product launch are you working on?</h3>
<h5 class="mt10 mb20"></h5><p>Not all products launch and even those that do don’t all have the same type of product
launches. Products that are continually updated such as web-based software or smartphone
apps use marketing techniques to remind customers that their product is available.</p>
<ul class="service-point-2 mt20">
<li># Social Advertisement</li>
<li># Social Monitoring</li>
<li># Strategies to promote offer and encourage sale</li>
<li># Virtual Marketing</li>
<li># Social Media Audit</li>
<li># Improve site conversion</li>
<li># Social Media Management</li>
</ul>
<a href="#" class="btn-main bg-btn2 lnk mt30">Request A Quote <i class="fas fa-chevron-right fa-icon"></i><span class="circle"></span></a>
</div>
</div>
<div class="col-lg-5">
<div class="servie-key-points">
<h4>Testing Methods we follow</h4>
<ul class="key-points mt20">
<li> Increased Brand Awareness</li>
<li> More Inbound Traffic</li>
<li> Improved Search Engine Rankings</li>
<li> Higher Conversion Rates</li>
<li> Better Customer Satisfaction</li>
<li> Improved Brand Loyalty</li>
<li> More Brand Authority</li>
<li> Cost-Effective</li>
<li>Gain Marketplace Insights</li>
<li>Thought Leadership</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="service-block about-agency pad-tb">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="common-heading">
<span>Service</span>
<h2 class="mb30">Product launches come in different sizes and types:</h2>
</div>
</div>
</div>
<div class="row upset link-hover">
<div class="col-lg-3 col-sm-6 mt30">
<div class="s-block">
<div class="s-card-icon"><img src="images/icons/content.svg" alt="service" class="img-fluid"></div>
<h4>Soft Launch</h4>
<p> When your product sneaks into the market without much fanfare. Often
products sold from one business to another launch this way. You</p>
<a href="javascript:void(0)">Learn More <i class="fas fa-chevron-right fa-icon"></i></a>
</div>
</div>
<div class="col-lg-3 col-sm-6 mt30">
<div class="s-block">
<div class="s-card-icon"><img src="images/icons/webdevelopment.svg" alt="service" class="img-fluid"></div>
<h4>Minimal Launch</h4>
<p>for smaller products or small incremental product changes, the minimal
launch gets the word out without a huge amount of marketing spend.</p>
<a href="javascript:void(0)">Learn More <i class="fas fa-chevron-right fa-icon"></i></a>
</div>
</div>
<div class="col-lg-3 col-sm-6 mt30">
<div class="s-block">
<div class="s-card-icon"><img src="images/icons/app.svg" alt="service" class="img-fluid"></div>
<h4>We’ve done it before</h4>
<p>We've been working with the web since 1996 and have a few
grey hairs to prove it! Our experience, along with our creative thinking, will help
make sure your project is a success.</p>
<a href="javascript:void(0)">Learn More <i class="fas fa-chevron-right fa-icon"></i></a>
</div>
</div>
<div class="col-lg-3 col-sm-6 mt30">
<div class="s-block">
<div class="s-card-icon"><img src="images/icons/app.svg" alt="service" class="img-fluid"></div>
<h4>We make it Easy</h4>
<p>We love a challenge. We enjoy complex web development
projects and tricky third-party software integrations and we'll talk to you about it in
plain English. You'll find us honest, reliable.</p>
<a href="javascript:void(0)">Learn More <i class="fas fa-chevron-right fa-icon"></i></a>
</div>
</div>
</div>
</div>
</section>
<section class="service-block bg-gradient15 about-agency pad-tb" style="padding-top:50px">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="common-heading ptag">
<span>Service</span>
<h2>Creating a Product Launch Plan</h2>
<p class="mb30">We think big and have hands in all leading technology platforms to provide you wide array of services.</p>
</div>
</div>
</div>
<div class="row upset link-hover">
<div class="col-lg-6 col-md-12 mt30 wow fadeInUp" data-wow-delay=".2s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeInUp;">
<div class="s-block wide-sblock">
<div class="s-card-icon-large"><img src="images/logo-design.jpg" alt="service" class="img-fluid"></div>
<div class="s-block-content-large">
<h4>Get What you pay for</h4>
<p>Out work is bespoke, so we don’t need to sell you something you
have no use for, you only pay for what you need. If it’s better for you to use a ready-made
component than build-it ourselves.</p>
</div></div>
</div>
<div class="col-lg-6 col-md-12 mt30 wow fadeInUp" data-wow-delay=".4s" style="visibility: visible; animation-delay: 0.4s; animation-name: fadeInUp;">
<div class="s-block wide-sblock">
<div class="s-card-icon-large"><img src="images/packaging-design.jpg" alt="service" class="img-fluid"></div>
<div class="s-block-content-large">
<h4>Clear Costs and Flexible Payments</h4>
<p>There is full clarity when it comes and how you can
pay. Want to pay in three Instalments? Or over 12 months? That’s fine. We’re happy to be
flexible.</p>
</div></div>
</div>
<div class="col-lg-6 col-md-12 mt30 wow fadeInUp" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.6s; animation-name: fadeInUp;">
<div class="s-block wide-sblock">
<div class="s-card-icon-large"><img src="images/brochure-.jpg" alt="service" class="img-fluid"></div>
<div class="s-block-content-large">
<h4>Honesty and Integrity</h4>
<p>We’re open and honest about what we do.</p>
</div></div>
</div>
<div class="col-lg-6 col-md-12 mt30 wow fadeInUp" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.8s; animation-name: fadeInUp;">
<div class="s-block wide-sblock">
<div class="s-card-icon-large"><img src="images/flyer-.jpg" alt="service" class="img-fluid"></div>
<div class="s-block-content-large">
<h4>We keep our promises</h4>
<p>We’re big on communication and transparency. If we say we are
going to do something, you can expect <br>us to do it.</p>
</div></div>
</div>
</div>
<div class="-cta-btn mt70">
<div class="free-cta-title v-center wow zoomInDown" data-wow-delay="1.4s" style="visibility: visible; animation-delay: 1.4s; animation-name: zoomInDown;">
<p>Hire a <span>Graphic Designer</span></p>
<a href="#" class="btn-main bg-btn2 lnk">Hire Now<i class="fas fa-chevron-right fa-icon"></i><span class="circle"></span></a>
</div>
</div>
</div>
</section>
<section class="service-block pad-tb bg-gradient8 ">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="common-heading ptag">
<span class="text-radius text-light text-animation bg-b">We Deliver Our Best</span>
<h2>Recognizing the Importance of the Product Launch Plan</h2>
<p class="mb30" style="color: #fff">Donec metus lorem, vulputate at sapien sit amet, auctor iaculis lorem. In vel hendrerit nisi. Vestibulum eget risus velit.</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-4 col-sm-6 mt30 wow fadeIn" data-wow-delay=".2s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeIn;">
<div class="s-block wide-sblock">
<div class="s-card-icon"><img src="images/icons/teama.svg" alt="service" class="img-fluid"></div>
<div class="s-block-content">
<h4>Qualified Resources</h4>
<p>Get the right resource with extensive knowledge and experience
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mt30 wow fadeIn" data-wow-delay=".5s" style="visibility: visible; animation-delay: 0.5s; animation-name: fadeIn;">
<div class="s-block wide-sblock">
<div class="s-card-icon"><img src="images/icons/link.svg" alt="service" class="img-fluid"></div>
<div class="s-block-content">
<h4>Infrastructure</h4>
<p>With an objective to take business to next level, get secured IT
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mt30 wow fadeIn" data-wow-delay="1.4s" style="visibility: visible; animation-delay: 1.4s; animation-name: fadeIn;">
<div class="s-block wide-sblock">
<div class="s-card-icon"><img src="images/icons/badge.svg" alt="service" class="img-fluid"></div>
<div class="s-block-content">
<h4>Quality Policy</h4>
<p>
Adhering to Quality Policy across all the processes, internal communication and outcomes
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mt30 wow fadeIn" data-wow-delay="1.1s" style="visibility: visible; animation-delay: 1.1s; animation-name: fadeIn;">
<div class="s-block wide-sblock">
<div class="s-card-icon"><img src="images/icons/hi.svg" alt="service" class="img-fluid"></div>
<div class="s-block-content">
<h4 style="font-size: 15px"> Confidentiality And Security</h4>
<p>
Continuous compliance and security planning to ensure seamless performance of critical </p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mt30 wow fadeIn" data-wow-delay="1.7s" style="visibility: visible; animation-delay: 1.7s; animation-name: fadeIn;">
<div class="s-block wide-sblock">
<div class="s-card-icon"><img src="images/icons/tin.svg" alt="service" class="img-fluid"></div>
<div class="s-block-content">
<h4 style="font-size: 15px">Competitive Pricing</h4>
<p>
Get affordable rates, with flexible pricing models fit for your business.
.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mt30 wow fadeIn" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.8s; animation-name: fadeIn;">
<div class="s-block wide-sblock">
<div class="s-card-icon"><img src="images/icons/tech.svg" alt="service" class="img-fluid"></div>
<div class="s-block-content">
<h4>Consulting</h4>
<p>
Avail end-to-end IT solution after carefully analysing existing system and business
.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mt30 wow fadeIn" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.8s; animation-name: fadeIn;">
<div class="s-block wide-sblock">
<div class="s-card-icon"><img src="images/icons/tech.svg" alt="service" class="img-fluid"></div>
<div class="s-block-content">
<h4>Technical Expertise</h4>
<p>
Explore a new world of innovation, technology, and business intelligence.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mt30 wow fadeIn" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.8s; animation-name: fadeIn;">
<div class="s-block wide-sblock">
<div class="s-card-icon"><img src="images/icons/tech.svg" alt="service" class="img-fluid"></div>
<div class="s-block-content">
<h4>Flexible Development</h4>
<p>
After detailed discussion with clients, we hand-pick the best suited development </p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mt30 wow fadeIn" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.8s; animation-name: fadeIn;">
<div class="s-block wide-sblock">
<div class="s-card-icon"><img src="images/icons/tech.svg" alt="service" class="img-fluid"></div>
<div class="s-block-content">
<h4>Quick Delivery</h4>
<p>
Integrating information technology with your business processes to enhance </p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mt30 wow fadeIn" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.8s; animation-name: fadeIn;">
<div class="s-block wide-sblock">
<div class="s-card-icon"><img src="images/icons/tech.svg" alt="service" class="img-fluid"></div>
<div class="s-block-content">
<h4>Intelligent Support</h4>
<p>
No more slow responses and endless times to resolve your actual problem.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mt30 wow fadeIn" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.8s; animation-name: fadeIn;">
<div class="s-block wide-sblock">
<div class="s-card-icon"><img src="images/icons/tech.svg" alt="service" class="img-fluid"></div>
<div class="s-block-content">
<h4>Complete Guidance</h4>
<p>
Create extraordinary business strategies with our highly skilled and qualified
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 mt30 wow fadeIn" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.8s; animation-name: fadeIn;">
<div class="s-block wide-sblock">
<div class="s-card-icon"><img src="images/icons/tech.svg" alt="service" class="img-fluid"></div>
<div class="s-block-content">
<h4>Quality Assurance</h4>
<p>
Providing a unique competitive advantage, we enable customers to leverage
</p>
</div>
</div>
</div>
</div>
<div class="-cta-btn mt70">
<div class="free-cta-title v-center wow zoomInDown" data-wow-delay="1.8s" style="visibility: visible; animation-delay: 1.8s;">
<p style="color: #fff">Let's Start a <span>New Project</span> Together</p>
<a href="#" class="btn-main bg-btn2 lnk">Inquire Now<i class="fas fa-chevron-right fa-icon"></i><span class="circle"></span></a>
</div>
</div>
</div>
</section>
<section class="why-choos-lg pad-tb bg-gradient15 deep-dark">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="common-heading ptag">
<span class="text-radius text-light text-animation bg-b">We Deliver Our Best</span>
<h2>Filling Out the Product Launch Plan Template</h2>
<p class="mb30">Donec metus lorem, vulputate at sapien sit amet, auctor iaculis lorem. In vel hendrerit nisi. Vestibulum eget risus velit.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="common-heading text-l">
<div class="itm-media-object mt40">
<div class="media">
<img src="images/icons/bulk-domain.png" alt="icon">
<div class="media-body">
<h4>We Offer Ongoing Assistance</h4>
<p>Getting a web site live is sometimes just the
beginning. We can provide ongoing help with search engine
optimisation, social media marketing, ppc advertising .</p>
</div>
</div>
<div class="media mt40">
<img src="images/icons/hire.png" alt="icon">
<div class="media-body">
<h4> WE like to help</h4>
<p>Got a question about your web site? Unsure about an email
you've received? Need some assistance with something? We are
available all day on our office contact numbers, social networks and
mobile phones.</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="itm-media-object mt40">
<div class="media">
<img src="images/icons/partner.png" alt="icon">
<div class="media-body">
<h4>We make your profit our priority</h4>
<p>We've grown our business by creating
websites that work, and by keeping our clients happy. The success of
your web site is our priority. We're not happy unless it works.</p>
</div>
</div>
<div class="media mt40">
<img src="images/icons/collb.png" alt="icon">
<div class="media-body">
<h4>We’ll measure your success</h4>
<p> - We'll guide you through Google analytics, so you
can measure how effective your web site is, or we'll create some custom
reports for you so you can track what's important to you.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="padding-6030 o-hidden " style="padding-bottom: 5%">
<div class="container">
<div class="row justify-content-center" >
<div class="col-lg-8">
<div class="common-heading ptag" style="margin-top: 7%">
<h2 >Our Process </h2>
<p class="mb10" style="margin-bottom: 4%">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
</div>
<div class="row justify-content-center d-none d-lg-flex">
<div class="col-lg-3 process-items wow fadeIn complete" data-wow-duration="0.2s" data-wow-delay="0" style="visibility: visible; animation-duration: 0.2s; animation-name: fadeIn;">
<i class="fas fa-angle-right"></i>
<div class="process-box">
<div class="process-box-icon">
<svg x="0px" y="0px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<g>
<path d="M31.2,3.9h53.6c-0.8,1.3-1.2,2.7-1.2,4.3v25.6c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-6.1H98c1.1,0,2-0.9,2-2V8.2
c0-4.5-3.7-8.2-8.2-8.2H31.2c-1.1,0-2,0.9-2,2C29.3,3,30.2,3.9,31.2,3.9z M87.5,8.2c0-2.4,1.9-4.3,4.3-4.3c2.4,0,4.3,1.9,4.3,4.3
v15.6h-8.6V8.2z M97.9,79.6L85.1,66.8c1.5-3,2.3-6.4,2.3-9.9c0-12.5-10.2-22.7-22.7-22.7c-12.5,0-22.7,10.2-22.7,22.7
c0,2.9,0.5,5.6,1.5,8.1l-2.3,2.3l-9.4-9.4c-0.4-0.4-0.9-0.6-1.4-0.6c-0.5,0-1,0.2-1.4,0.6l-2.2,2.2V42.3c0-1.1-0.9-2-2-2
c-1.1,0-2,0.9-2,2V64L5.4,81.7c-0.8,0.8-0.8,2,0,2.8C5.8,84.8,6.3,85,6.8,85c0.5,0,1-0.2,1.4-0.6L23,69.5v14.1h-8.6
c-1.1,0-2,0.9-2,2v6.2c0,4.5,3.7,8.2,8.2,8.2h58.6c4.5,0,8.2-3.7,8.2-8.2v-1.7c1.4,1.3,3.2,2.1,5.1,2.1h0c2,0,3.8-0.8,5.2-2.2
C100.7,87.1,100.7,82.5,97.9,79.6z M64.8,38.1c10.3,0,18.7,8.4,18.7,18.7c0,10.3-8.4,18.8-18.7,18.8c-7.1,0-13.3-4-16.5-9.8
l11.3-11.3V59c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-9.4c0-1.1-0.9-2-2-2h-9.4c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2H57L46.7,61.9
c-0.4-1.6-0.7-3.3-0.7-5C46,46.6,54.4,38.1,64.8,38.1z M20.7,96.1c-2.4,0-4.3-1.9-4.3-4.3v-4.3h54.7v2.3c0,0.1,0,0.1,0,0.2
c0,0.1,0,0.1,0,0.2v1.6c0,1.6,0.4,3,1.2,4.3H20.7z M83.6,91.8c0,2.4-1.9,4.3-4.3,4.3c-2.4,0-4.3-1.9-4.3-4.3v-1.6
c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2v-4.3c0-1.1-0.9-2-2-2H26.9v-18l3.6-3.6l9.4,9.4c0.4,0.4,0.9,0.6,1.4,0.6
c0.5,0,1-0.2,1.4-0.6l2.7-2.7c4,6.5,11.2,10.8,19.3,10.8c3.5,0,6.9-0.8,9.9-2.3l8.9,8.9V91.8z M95.1,87.2c-0.7,0.7-1.5,1-2.5,1h0
c-0.9,0-1.8-0.4-2.4-1L78.1,75.2c1.9-1.4,3.5-3,4.9-4.9l12.1,12.1C96.4,83.7,96.4,85.9,95.1,87.2z M62.8,69.3c0,1.1,0.9,2,2,2
c7.9,0,14.3-6.4,14.3-14.3c0-1.1-0.9-2-2-2s-2,0.9-2,2c0,5.7-4.7,10.4-10.4,10.4C63.7,67.3,62.8,68.2,62.8,69.3z M2,37.5H50
c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2h-1.8V20.5c0-1.1-0.9-2-2-2h-9c-1.1,0-2,0.9-2,2v13.1h-3.1V12.5c0-1.1-0.9-2-2-2h-8.6
c-1.1,0-2,0.9-2,2v21.1h-3.1V25c0-1.1-0.9-2-2-2H6.1c-1.1,0-2,0.9-2,2v8.6H2c-1.1,0-2,0.9-2,2C0,36.6,0.9,37.5,2,37.5z M39.3,22.5
h5.1v11.1h-5.1V22.5z M23.6,14.5h4.7v19.1h-4.7V14.5z M8,27h4.7v6.6H8V27z M67.9,12.5c0-1.1-0.9-2-2-2H50.8c-1.1,0-2,0.9-2,2
c0,1.1,0.9,2,2,2h15.1C67,14.5,67.9,13.6,67.9,12.5z M77,11.1c-0.4-0.4-0.9-0.6-1.4-0.6c-0.5,0-1,0.2-1.4,0.6
c-0.4,0.4-0.6,0.9-0.6,1.4c0,0.5,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.4,0.6c0.5,0,1-0.2,1.4-0.6c0.4-0.4,0.6-0.9,0.6-1.4
C77.5,12,77.3,11.5,77,11.1z M55.1,19.1c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2h3.2c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2H55.1z M65.9,23
h9.7c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2h-9.7c-1.1,0-2,0.9-2,2C64,22.2,64.8,23,65.9,23z M2,85.9c-0.5,0-1,0.2-1.4,0.6
C0.2,86.8,0,87.3,0,87.8c0,0.5,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.4,0.6c0.5,0,1-0.2,1.4-0.6c0.4-0.4,0.6-0.9,0.6-1.4
c0-0.5-0.2-1-0.6-1.4C3,86.1,2.5,85.9,2,85.9z"></path>
</g>
</g>
</svg>
</div>
<h4>01 Simplicity</h4>
<ul>
<li><i class="fas fa-chevron-right"></i>Requirement gathering</li>
<li><i class="fas fa-chevron-right"></i>Detailed Discussion</li>
<li><i class="fas fa-chevron-right"></i>Financials</li>
</ul>
</div>
</div>
<div class="col-lg-3 process-items wow fadeIn complete" data-wow-duration="0.2s" data-wow-delay="0.2s" style="visibility: visible; animation-duration: 0.2s; animation-delay: 0.2s; animation-name: fadeIn;">
<i class="fas fa-angle-right"></i>
<div class="process-box">
<div class="process-box-icon">
<svg height="496pt" viewBox="0 0 496 496" width="496pt" xmlns="http://www.w3.org/2000/svg">
<path d="m360 0h-320c-4.414062 0-8 3.585938-8 8v24h-24c-4.414062 0-8 3.585938-8 8v448c0 4.414062 3.585938 8 8 8h320c4.414062 0 8-3.585938 8-8v-24h24c4.414062 0 8-3.585938 8-8v-448c0-4.414062-3.585938-8-8-8zm-40 480h-304v-432h240v56c0 4.414062 3.585938 8 8 8h56zm-11.3125-384h-36.6875v-36.6875zm43.3125 352h-16v-344c0-2.207031-.894531-4.207031-2.34375-5.65625l-63.992188-63.992188c-1.457031-1.457031-3.457031-2.351562-5.664062-2.351562h-216v-16h304zm0 0"></path>
<path d="m64 184h11.726562c1.304688 4.128906 2.945313 8.152344 4.921876 12.03125l-6.304688 6.3125c-3.128906 3.128906-3.128906 8.183594 0 11.3125l24 24c3.128906 3.128906 8.183594 3.128906 11.3125 0l6.3125-6.304688c3.878906 1.976563 7.902344 3.617188 12.03125 4.921876v11.726562c0 4.414062 3.585938 8 8 8h32c4.414062 0 8-3.585938 8-8v-11.726562c4.128906-1.304688 8.152344-2.945313 12.03125-4.921876l6.3125 6.304688c3.128906 3.128906 8.183594 3.128906 11.3125 0l24-24c3.128906-3.128906 3.128906-8.183594 0-11.3125l-6.304688-6.3125c1.976563-3.878906 3.617188-7.902344 4.921876-12.03125h11.726562c4.414062 0 8-3.585938 8-8v-32c0-4.414062-3.585938-8-8-8h-11.726562c-1.304688-4.128906-2.945313-8.152344-4.921876-12.03125l6.304688-6.3125c3.128906-3.128906 3.128906-8.183594 0-11.3125l-24-24c-3.128906-3.128906-8.183594-3.128906-11.3125 0l-6.3125 6.304688c-3.878906-1.976563-7.902344-3.617188-12.03125-4.921876v-11.726562c0-4.414062-3.585938-8-8-8h-32c-4.414062 0-8 3.585938-8 8v11.726562c-4.128906 1.304688-8.152344 2.945313-12.03125 4.921876l-6.3125-6.304688c-3.128906-3.128906-8.183594-3.128906-11.3125 0l-24 24c-3.128906 3.128906-3.128906 8.183594 0 11.3125l6.304688 6.3125c-1.976563 3.878906-3.617188 7.902344-4.921876 12.03125h-11.726562c-4.414062 0-8 3.585938-8 8v32c0 4.414062 3.585938 8 8 8zm8-32h9.839844c3.734375 0 6.976562-2.585938 7.800781-6.222656 1.519531-6.679688 4.136719-13.089844 7.757813-19.023438 1.929687-3.160156 1.441406-7.21875-1.167969-9.832031l-4.917969-4.921875 12.6875-12.6875 4.921875 4.917969c2.613281 2.617187 6.671875 3.105469 9.832031 1.167969 5.933594-3.628907 12.335938-6.238282 19.023438-7.757813 3.636718-.824219 6.222656-4.066406 6.222656-7.800781v-9.839844h16v9.839844c0 3.734375 2.585938 6.976562 6.222656 7.800781 6.679688 1.519531 13.089844 4.136719 19.023438 7.757813 3.160156 1.929687 7.21875 1.441406 9.832031-1.167969l4.921875-4.917969 12.6875 12.6875-4.917969 4.921875c-2.617187 2.613281-3.097656 6.671875-1.167969 9.832031 3.628907 5.933594 6.238282 12.335938 7.757813 19.023438.824219 3.636718 4.066406 6.222656 7.800781 6.222656h9.839844v16h-9.839844c-3.734375 0-6.976562 2.585938-7.800781 6.222656-1.519531 6.679688-4.136719 13.089844-7.757813 19.023438-1.929687 3.160156-1.441406 7.21875 1.167969 9.832031l4.917969 4.921875-12.6875 12.6875-4.921875-4.917969c-2.613281-2.609375-6.664063-3.097656-9.832031-1.167969-5.933594 3.628907-12.335938 6.238282-19.023438 7.757813-3.636718.824219-6.222656 4.066406-6.222656 7.800781v9.839844h-16v-9.839844c0-3.734375-2.585938-6.976562-6.222656-7.800781-6.679688-1.519531-13.089844-4.136719-19.023438-7.757813-3.160156-1.921874-7.210937-1.441406-9.832031 1.167969l-4.921875 4.917969-12.6875-12.6875 4.917969-4.921875c2.617187-2.613281 3.097656-6.671875 1.167969-9.832031-3.628907-5.933594-6.238282-12.335938-7.757813-19.023438-.824219-3.636718-4.066406-6.222656-7.800781-6.222656h-9.839844zm0 0"></path>
<path d="m152 208c26.472656 0 48-21.527344 48-48s-21.527344-48-48-48-48 21.527344-48 48 21.527344 48 48 48zm0-80c17.648438 0 32 14.351562 32 32s-14.351562 32-32 32-32-14.351562-32-32 14.351562-32 32-32zm0 0"></path>
<path d="m256 368v-24c0-4.414062-3.585938-8-8-8h-88v-16h8c4.414062 0 8-3.585938 8-8v-32c0-4.414062-3.585938-8-8-8h-32c-4.414062 0-8 3.585938-8 8v32c0 4.414062 3.585938 8 8 8h8v16h-88c-4.414062 0-8 3.585938-8 8v24h-8c-4.414062 0-8 3.585938-8 8v32c0 4.414062 3.585938 8 8 8h32c4.414062 0 8-3.585938 8-8v-32c0-4.414062-3.585938-8-8-8h-8v-16h80v16h-8c-4.414062 0-8 3.585938-8 8v32c0 4.414062 3.585938 8 8 8h32c4.414062 0 8-3.585938 8-8v-32c0-4.414062-3.585938-8-8-8h-8v-16h80v16h-8c-4.414062 0-8 3.585938-8 8v32c0 4.414062 3.585938 8 8 8h32c4.414062 0 8-3.585938 8-8v-32c0-4.414062-3.585938-8-8-8zm-112-80h16v16h-16zm-80 112h-16v-16h16zm96 0h-16v-16h16zm96 0h-16v-16h16zm0 0"></path>
<path d="m480 248v152h-16v-320c0-1.121094-.230469-2.222656-.6875-3.246094l-32-72c-1.289062-2.890625-4.152344-4.753906-7.3125-4.753906s-6.023438 1.863281-7.3125 4.753906l-32 72c-.457031 1.023438-.6875 2.125-.6875 3.246094v344c0 4.414062 3.585938 8 8 8h8v56c0 4.414062 3.585938 8 8 8h32c4.414062 0 8-3.585938 8-8v-56h8c4.414062 0 8-3.585938 8-8v-8h24c4.414062 0 8-3.585938 8-8v-160zm-56-220.304688 19.6875 44.304688h-39.375zm8 452.304688h-16v-48h16zm8-64h-40v-328h48v328zm0 0"></path>
</svg>
</div>
<h4>02 Versality</h4>
<ul>
<li><i class="fas fa-chevron-right"></i>Requirement Framing</li>
<li><i class="fas fa-chevron-right"></i>Wireframe Designing</li>
<li><i class="fas fa-chevron-right"></i>Feasibility Study</li>
</ul>
</div>
</div>
<div class="col-lg-3 process-items wow fadeIn complete" data-wow-duration="0.2s" data-wow-delay="0.4s" style="visibility: visible; animation-duration: 0.2s; animation-delay: 0.4s; animation-name: fadeIn;">
<i class="fas fa-angle-right"></i>
<div class="process-box">
<div class="process-box-icon">
<svg id="Layer_5" enable-background="new 0 0 64 64" height="512" viewBox="0 0 64 64" width="512" xmlns="http://www.w3.org/2000/svg">
<path d="m56.865 43.481-5.346-5.347-2.136 1.281-.602-2.415h-2.781v-2h-32v14h18v4.781l2.415.603-1.28 2.135 5.346 5.347 2.136-1.281.602 2.415h7.562l.603-2.416 2.136 1.281 5.346-5.347-1.28-2.135 2.414-.602v-7.562l-2.416-.603zm-10.865 6.519c0 .551-.448 1-1 1s-1-.449-1-1 .448-1 1-1 1 .449 1 1zm-2-3h-20v-4h20zm-3.884 2h2.069c-.113.314-.185.648-.185 1 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.402-2-2.816v-2.083c2.279.465 4 2.484 4 4.899 0 2.757-2.243 5-5 5s-5-2.243-5-5c0-.334.046-.668.116-1zm3.884-8h-20v-4h20zm-22-4v4h-6v-4zm-6 6h6v4h-6zm40 4.781v4.438l-1.949.487-.534.202-.465 1.142 1.296 2.16-3.139 3.138-2.159-1.296-1.22.503-.611 2.445h-4.438l-.611-2.446-1.22-.503-2.159 1.296-3.139-3.138 1.296-2.16-.496-1.218-2.452-.612v-3.219h4.087c-.049.332-.087.665-.087 1 0 3.86 3.141 7 7 7s7-3.14 7-7c0-3.519-2.614-6.432-6-6.92v-4.08h1.219l.611 2.446 1.22.503 2.159-1.296 3.139 3.138-1.296 2.158.496 1.22z"></path>
<path d="m31 21v10h32v-10zm2 2h6v6h-6zm28 6h-20v-6h20z"></path>
<path d="m28 51h2v2h-2z"></path>
<path d="m24 51h2v2h-2z"></path>
<path d="m3 48v-18c0-1.654 1.346-3 3-3h13v4.618l11.236-5.618-11.236-5.618v4.618h-13c-2.757 0-5 2.243-5 5v18c0 2.757 2.243 5 5 5h16v-2h-16c-1.654 0-3-1.346-3-3zm18-24.382 4.764 2.382-4.764 2.382z"></path>
<path d="m39 1h-32v14h32zm-2 6h-20v-4h20zm-22-4v4h-6v-4zm-6 6h6v4h-6zm8 4v-4h20v4z"></path>
<path d="m49 25h2v2h-2z"></path>
<path d="m53 25h2v2h-2z"></path>
<path d="m57 25h2v2h-2z"></path>
<path d="m41 7h2v2h-2z"></path>
<path d="m55 10v3h-4l5 6.667 5-6.667h-4v-3c0-1.654-1.346-3-3-3h-9v2h9c.552 0 1 .449 1 1zm1 6.333-1-1.333h2z"></path>
</svg>
</div>
<h4>03 Color</h4>
<ul>
<li><i class="fas fa-chevron-right"></i>Deep LearningLow-fidelity prototyping</li>
<li><i class="fas fa-chevron-right"></i>Low-level MVP</li>
<li><i class="fas fa-chevron-right"></i>High-level MVP</li>
</ul>
</div>
</div>
<div class="col-lg-3 wow fadeIn complete" data-wow-duration="0.2s" data-wow-delay="0.6s" style="visibility: visible; animation-duration: 0.2s; animation-delay: 0.6s; animation-name: fadeIn;" >
<div class="process-box" style="margin-left: 5px;">
<div class="process-box-icon">
<svg height="498pt" viewBox="0 -1 498 498" width="498pt" xmlns="http://www.w3.org/2000/svg">
<path d="m489.601562 300.800781c-28.554687-38.074219-74.007812-60.800781-121.601562-60.800781s-93.046875 22.726562-121.601562 60.800781l-8.398438 11.199219 8.398438 11.199219c28.554687 38.074219 74.007812 60.800781 121.601562 60.800781s93.046875-22.726562 121.601562-60.800781l8.398438-11.199219zm-65.601562 11.199219c0 30.878906-25.121094 56-56 56s-56-25.121094-56-56 25.121094-56 56-56 56 25.121094 56 56zm-164.800781 1.601562-1.199219-1.601562 1.199219-1.601562c13.503906-18 31.25-32.117188 51.25-41.476563-9.035157 12.03125-14.449219 26.917969-14.449219 43.078125s5.414062 31.046875 14.449219 43.070312c-20-9.351562-37.746094-23.46875-51.25-41.46875zm217.601562 0c-13.503906 18-31.25 32.117188-51.25 41.476563 9.035157-12.03125 14.449219-26.917969 14.449219-43.078125s-5.414062-31.046875-14.449219-43.070312c20 9.359374 37.746094 23.476562 51.25 41.476562l1.199219 1.601562zm0 0"></path>
<path d="m368 352c22.054688 0 40-17.945312 40-40s-17.945312-40-40-40-40 17.945312-40 40 17.945312 40 40 40zm0-64c13.230469 0 24 10.769531 24 24s-10.769531 24-24 24-24-10.769531-24-24 10.769531-24 24-24zm0 0"></path>
<path d="m271.59375 192h224.40625v-192h-48v176h-16v-144h-48v144h-16v-112h-48v112h-16v-80h-48v24.136719c-22.910156-42.871094-68.089844-72.136719-120-72.136719-74.992188 0-136 61.007812-136 136 0 61.070312 40.472656 112.855469 96 129.976562v22.023438h-16v16h16v104c0 22.054688 17.945312 40 40 40s40-17.945312 40-40v-104h16v-16h-16v-22.023438c53.070312-16.367187 92.222656-64.433593 95.59375-121.976562zm192.40625-176h16v160h-16zm-64 32h16v128h-16zm-64 32h16v96h-16zm-64 32h16v64h-16zm-256 72c0-66.167969 53.832031-120 120-120s120 53.832031 120 120-53.832031 120-120 120-120-53.832031-120-120zm144 272c0 13.230469-10.769531 24-24 24s-24-10.769531-24-24v-104h48zm0-120h-48v-18.246094c7.808594 1.390625 15.800781 2.246094 24 2.246094s16.191406-.855469 24-2.246094zm0 0"></path>
<path d="m240 184c0-57.34375-46.65625-104-104-104s-104 46.65625-104 104 46.65625 104 104 104 104-46.65625 104-104zm-192 0c0-48.519531 39.480469-88 88-88s88 39.480469 88 88-39.480469 88-88 88-88-39.480469-88-88zm0 0"></path>
<path d="m128 176h16v16h-16zm0 0"></path>
<path d="m160 176h16v16h-16zm0 0"></path>
<path d="m192 176h16v16h-16zm0 0"></path>
<path d="m96 176h16v16h-16zm0 0"></path>
<path d="m64 176h16v16h-16zm0 0"></path>
</svg>
</div>
<h4>04 Meaningful</h4>
<ul>
<li><i class="fas fa-chevron-right"></i>Workout Visual Concepts</li>
<li><i class="fas fa-chevron-right"></i>Visual Presentation & Screen Designs</li>
<li><i class="fas fa-chevron-right"></i>Mock-ups</li>
</ul>
</div>
</div>
</div>
<div class="process-slider d-lg-none p-relative slick-initialized slick-slider slick-dotted" style="">
<div aria-live="polite" class="slick-list draggable"><div class="slick-track" style="opacity: 1; transform: translate3d(0px, 0px, 0px);"><div class="item slick-slide" data-slick-index="0" aria-hidden="true" id="slickSlide40" role="tabpanel" aria-labelledby="slickDot40" tabindex="-1" >
<div class="process-box">
<div class="process-box-icon">
<svg x="0px" y="0px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<g>
<path d="M31.2,3.9h53.6c-0.8,1.3-1.2,2.7-1.2,4.3v25.6c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-6.1H98c1.1,0,2-0.9,2-2V8.2
c0-4.5-3.7-8.2-8.2-8.2H31.2c-1.1,0-2,0.9-2,2C29.3,3,30.2,3.9,31.2,3.9z M87.5,8.2c0-2.4,1.9-4.3,4.3-4.3c2.4,0,4.3,1.9,4.3,4.3
v15.6h-8.6V8.2z M97.9,79.6L85.1,66.8c1.5-3,2.3-6.4,2.3-9.9c0-12.5-10.2-22.7-22.7-22.7c-12.5,0-22.7,10.2-22.7,22.7
c0,2.9,0.5,5.6,1.5,8.1l-2.3,2.3l-9.4-9.4c-0.4-0.4-0.9-0.6-1.4-0.6c-0.5,0-1,0.2-1.4,0.6l-2.2,2.2V42.3c0-1.1-0.9-2-2-2
c-1.1,0-2,0.9-2,2V64L5.4,81.7c-0.8,0.8-0.8,2,0,2.8C5.8,84.8,6.3,85,6.8,85c0.5,0,1-0.2,1.4-0.6L23,69.5v14.1h-8.6
c-1.1,0-2,0.9-2,2v6.2c0,4.5,3.7,8.2,8.2,8.2h58.6c4.5,0,8.2-3.7,8.2-8.2v-1.7c1.4,1.3,3.2,2.1,5.1,2.1h0c2,0,3.8-0.8,5.2-2.2
C100.7,87.1,100.7,82.5,97.9,79.6z M64.8,38.1c10.3,0,18.7,8.4,18.7,18.7c0,10.3-8.4,18.8-18.7,18.8c-7.1,0-13.3-4-16.5-9.8
l11.3-11.3V59c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-9.4c0-1.1-0.9-2-2-2h-9.4c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2H57L46.7,61.9
c-0.4-1.6-0.7-3.3-0.7-5C46,46.6,54.4,38.1,64.8,38.1z M20.7,96.1c-2.4,0-4.3-1.9-4.3-4.3v-4.3h54.7v2.3c0,0.1,0,0.1,0,0.2
c0,0.1,0,0.1,0,0.2v1.6c0,1.6,0.4,3,1.2,4.3H20.7z M83.6,91.8c0,2.4-1.9,4.3-4.3,4.3c-2.4,0-4.3-1.9-4.3-4.3v-1.6
c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2v-4.3c0-1.1-0.9-2-2-2H26.9v-18l3.6-3.6l9.4,9.4c0.4,0.4,0.9,0.6,1.4,0.6
c0.5,0,1-0.2,1.4-0.6l2.7-2.7c4,6.5,11.2,10.8,19.3,10.8c3.5,0,6.9-0.8,9.9-2.3l8.9,8.9V91.8z M95.1,87.2c-0.7,0.7-1.5,1-2.5,1h0
c-0.9,0-1.8-0.4-2.4-1L78.1,75.2c1.9-1.4,3.5-3,4.9-4.9l12.1,12.1C96.4,83.7,96.4,85.9,95.1,87.2z M62.8,69.3c0,1.1,0.9,2,2,2
c7.9,0,14.3-6.4,14.3-14.3c0-1.1-0.9-2-2-2s-2,0.9-2,2c0,5.7-4.7,10.4-10.4,10.4C63.7,67.3,62.8,68.2,62.8,69.3z M2,37.5H50
c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2h-1.8V20.5c0-1.1-0.9-2-2-2h-9c-1.1,0-2,0.9-2,2v13.1h-3.1V12.5c0-1.1-0.9-2-2-2h-8.6
c-1.1,0-2,0.9-2,2v21.1h-3.1V25c0-1.1-0.9-2-2-2H6.1c-1.1,0-2,0.9-2,2v8.6H2c-1.1,0-2,0.9-2,2C0,36.6,0.9,37.5,2,37.5z M39.3,22.5
h5.1v11.1h-5.1V22.5z M23.6,14.5h4.7v19.1h-4.7V14.5z M8,27h4.7v6.6H8V27z M67.9,12.5c0-1.1-0.9-2-2-2H50.8c-1.1,0-2,0.9-2,2
c0,1.1,0.9,2,2,2h15.1C67,14.5,67.9,13.6,67.9,12.5z M77,11.1c-0.4-0.4-0.9-0.6-1.4-0.6c-0.5,0-1,0.2-1.4,0.6
c-0.4,0.4-0.6,0.9-0.6,1.4c0,0.5,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.4,0.6c0.5,0,1-0.2,1.4-0.6c0.4-0.4,0.6-0.9,0.6-1.4
C77.5,12,77.3,11.5,77,11.1z M55.1,19.1c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2h3.2c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2H55.1z M65.9,23
h9.7c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2h-9.7c-1.1,0-2,0.9-2,2C64,22.2,64.8,23,65.9,23z M2,85.9c-0.5,0-1,0.2-1.4,0.6
C0.2,86.8,0,87.3,0,87.8c0,0.5,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.4,0.6c0.5,0,1-0.2,1.4-0.6c0.4-0.4,0.6-0.9,0.6-1.4
c0-0.5-0.2-1-0.6-1.4C3,86.1,2.5,85.9,2,85.9z"></path>
</g>
</g>
</svg>
</div>
<h4>01 Simplicity</h4>
<ul>
<li><i class="fas fa-chevron-right"></i>Requirement gathering</li>
<li><i class="fas fa-chevron-right"></i>Timeline planning</li>
<li><i class="fas fa-chevron-right"></i>Commercials</li>
</ul>
</div>
</div><div class="item slick-slide" data-slick-index="1" aria-hidden="true" id="slickSlide401" role="tabpanel" aria-labelledby="slickDot40" tabindex="-1" >
<div class="process-box">
<div class="process-box-icon">
<svg x="0px" y="0px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<g>
<path d="M0,0v80.6h100V0H0z M96.8,77.4H3.2V3.2h93.5V77.4z M62.9,6.5H6.5v35.5h56.5V6.5z M59.7,38.7h-50v-29h50V38.7z M93.5,6.5
H66.1v3.2h27.4V6.5z M93.5,12.9H66.1v3.2h27.4V12.9z M93.5,19.4H66.1v3.2h27.4V19.4z M93.5,25.8H66.1V29h27.4V25.8z M93.5,32.3
H66.1v3.2h27.4V32.3z M93.5,38.7H66.1v3.2h27.4V38.7z M33.9,45.2H6.5v29h27.4V45.2z M30.6,71h-21V48.4h21V71z M37.1,74.2h25.8v-29
H37.1V74.2z M40.3,48.4h19.4V71H40.3V48.4z M93.5,45.2H66.1v29h27.4V45.2z M90.3,71h-21V48.4h21V71z M33.9,35.5
c6.2,0,11.3-5.1,11.3-11.3s-5.1-11.3-11.3-11.3c-6.2,0-11.3,5.1-11.3,11.3S27.6,35.5,33.9,35.5z M33.9,16.1c4.4,0,8.1,3.6,8.1,8.1
c0,4.4-3.6,8.1-8.1,8.1s-8.1-3.6-8.1-8.1C25.8,19.7,29.4,16.1,33.9,16.1z M91.9,83.9H15.7L1.6,91.9l14.1,8.1h76.2
c4.4,0,8.1-3.6,8.1-8.1C100,87.5,96.4,83.9,91.9,83.9z M16.1,96.5l-8-4.6l8-4.6V96.5z M77.4,96.8H19.4v-9.7h58.1V96.8z M83.9,96.8
h-3.2v-9.7h3.2V96.8z M91.9,96.8h-4.8v-9.7h4.8c2.7,0,4.8,2.2,4.8,4.8S94.6,96.8,91.9,96.8z"></path>
</g>
</g>
</svg>
</div>
<h4>02 Versality</h4>
<ul>
<li><i class="fas fa-chevron-right"></i>Wireframe Designing</li>
<li><i class="fas fa-chevron-right"></i>Prototyping</li>
<li><i class="fas fa-chevron-right"></i>Brand styling & preset creation</li>
</ul>
</div>
</div><div class="item slick-slide" data-slick-index="2" aria-hidden="true" id="slickSlide41" role="tabpanel" aria-labelledby="slickDot41" tabindex="-1" >
<div class="process-box">
<div class="process-box-icon">
<svg x="0px" y="0px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<g>
<path d="M98.3,10.8H57.6c-0.9,0-1.7,0.8-1.7,1.7v32.4c-2.6,0-4.8,1.8-5.3,4.3c-0.1,0.2-0.1,0.4-0.1,0.6v7.4c0.1,1-0.7,1.8-1.7,1.9
h-4.7V12.5c0-0.9-0.8-1.7-1.7-1.7H1.7c-0.9,0-1.7,0.8-1.7,1.7v74.9c0,0.9,0.8,1.7,1.7,1.7h40.7c0.9,0,1.7-0.8,1.7-1.7v-25h4.7
c2.9-0.1,5.1-2.4,5.1-5.3v-7c0.1-1.1,1-1.9,2.1-1.8v39.2c0,0.9,0.8,1.7,1.7,1.7h40.7c0.9,0,1.7-0.8,1.7-1.7V12.5
C100,11.6,99.2,10.8,98.3,10.8z M3.4,14.2h32.7L3.4,33.4V14.2z M33.9,85.8H10.2v-1.7h23.7V85.8z M40.7,59h-3.4V48.3
c0-0.9-0.8-1.7-1.7-1.7H8.5c-0.9,0-1.7,0.8-1.7,1.7v27.2c0,0.9,0.8,1.7,1.7,1.7h27.1c0.9,0,1.7-0.8,1.7-1.7V62.4h3.4v23.3h-3.4
v-3.4c0-0.9-0.8-1.7-1.7-1.7H8.5c-0.9,0-1.7,0.8-1.7,1.7v3.4H3.4V38.1h37.3V59z M22.5,55.5c-3.1,1.1-4.6,4.6-3.5,7.6
c1.1,3.1,4.5,4.6,7.6,3.5c1.9-0.7,3.2-2.3,3.7-4.2h3.6v11.4H10.2V50h23.7v9h-3.8C29,56,25.6,54.4,22.5,55.5z M27.1,61.1
c0,1.4-1.1,2.6-2.5,2.6c-1.4,0-2.5-1.1-2.5-2.6c0-1.4,1.1-2.6,2.5-2.6C26,58.5,27.1,59.7,27.1,61.1z M40.7,34.7H8l32.7-19.2V34.7z
M59.3,61.9h33.4L59.3,84.3V61.9z M96.6,85.8H63.2l33.4-22.4V85.8z M96.6,58.5H59.3V48.3h4.4L61.9,50c-0.7,0.6-0.7,1.7-0.1,2.4
c0,0,0,0,0.1,0.1v0.1c0.7,0.7,1.7,0.7,2.4,0l4.7-4.7l0.1-0.1c0.2-0.2,0.4-0.6,0.4-0.9c0-0.1,0-0.2,0-0.3c0-0.4-0.2-0.8-0.5-1.1
l-4.7-4.7c-0.7-0.7-1.7-0.7-2.4,0c-0.7,0.7-0.7,1.7,0,2.4l1.8,1.8h-4.4V14.2h37.3V58.5z M16.9,41.5H6.8v3.4h10.2V41.5z M78,17.6
H62.7v3.4H78V17.6z M93.2,24.5H62.7v3.4h30.5V24.5z M84.7,31.3h-22v3.4h22V31.3z M71.2,41.5h22v-3.4h-22V41.5z M71.2,48.3h22v-3.4
h-22V48.3z M71.2,55.1h16.9v-3.4H71.2V55.1z"></path>
</g>
</g>
</svg>
</div>
<h4>03 Color</h4>
<ul>
<li><i class="fas fa-chevron-right"></i>Low-fidelity prototyping</li>
<li><i class="fas fa-chevron-right"></i>High-Fidelity prototyping</li>
<li><i class="fas fa-chevron-right"></i>Applying design thinking</li>
</ul>
</div>
</div><div class="item slick-slide" data-slick-index="3" aria-hidden="true" id="slickSlide413" role="tabpanel" aria-labelledby="slickDot41" tabindex="-1" >
<div class="process-box">
<div class="process-box-icon">
<svg x="0px" y="0px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<g>
<path d="M10.8,4C8.3,4,6.5,6,6.5,8.5c0,2.5,1.8,4.5,4.3,4.5c2.5,0,4.5-2,4.5-4.5C15.3,6,13.3,4,10.8,4z M10.8,9.9
c-0.8,0-1.2-0.6-1.2-1.4c0-0.8,0.6-1.4,1.4-1.4s1.4,0.6,1.4,1.4C12.2,9.2,11.6,9.9,10.8,9.9z M22.3,4c-2.5,0-4.5,2-4.5,4.5
c0,2.5,2,4.5,4.5,4.5c2.5,0,4.5-2,4.5-4.5C26.7,6,24.7,4,22.3,4z M22.3,9.9c-0.8,0-1.4-0.6-1.4-1.4c0-0.8,0.6-1.4,1.4-1.4
c0.8,0,1.4,0.6,1.4,1.4C23.6,9.2,23,9.9,22.3,9.9z M33.7,4c-2.5,0-4.5,2-4.5,4.5c0,2.5,2,4.5,4.5,4.5c2.5,0,4.5-2,4.5-4.5
C38.1,6,36.2,4,33.7,4z M33.7,9.9c-0.8,0-1.4-0.6-1.4-1.4c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4C35,9.2,34.5,9.9,33.7,9.9z
M73.8,6.9H45c-0.9,0-1.5,0.6-1.5,1.5c0,0.9,0.6,1.5,1.5,1.5h28.8c0.9,0,1.5-0.6,1.5-1.5C75.3,7.7,74.7,6.9,73.8,6.9z M66.6,71.3
l1.7,0.3c0.2,0.6,0.5,1.1,0.6,1.5L68,74.6c-0.5,0.6-0.3,1.4,0.2,2l2.8,2.8c0.5,0.5,1.4,0.6,2,0.2l1.4-0.9c0.5,0.3,1.1,0.5,1.5,0.6
l0.3,1.7c0.2,0.8,0.8,1.2,1.5,1.2h4c0.8,0,1.4-0.5,1.5-1.2l0.3-1.7c0.6-0.2,1.1-0.5,1.5-0.6l1.4,0.9c0.6,0.5,1.4,0.3,2-0.2
l2.8-2.8c0.5-0.5,0.6-1.4,0.2-2l-0.9-1.4c0.3-0.5,0.5-1.1,0.6-1.5l1.7-0.3c0.8-0.2,1.2-0.8,1.2-1.5v-4c0-0.8-0.6-1.4-1.2-1.5
l-1.7-0.3c-0.2-0.6-0.5-1.1-0.6-1.5l0.9-1.4c0.5-0.6,0.3-1.4-0.2-2l-2.8-2.8c-0.5-0.5-1.4-0.6-2-0.2L85.1,57
c-0.5-0.3-1.1-0.5-1.5-0.6l-0.3-1.7c-0.2-0.8-0.8-1.2-1.5-1.2h-4c-0.8,0-1.4,0.5-1.5,1.2l-0.3,1.7c-0.6,0.2-1.1,0.5-1.5,0.6
l-1.4-0.9c-0.6-0.5-1.4-0.3-2,0.2L68.1,59c-0.5,0.5-0.6,1.4-0.2,2l0.9,1.4c-0.3,0.5-0.5,1.1-0.6,1.5l-1.7,0.3
c-0.8,0.2-1.2,0.8-1.2,1.5v4C65.3,70.6,65.8,71.2,66.6,71.3z M68.4,66.9l1.2-0.2c0.6-0.2,1.1-0.6,1.2-1.1c0.2-0.9,0.6-1.8,1.1-2.6
c0.3-0.5,0.3-1.2,0-1.7l-0.8-1.1l0.9-0.9l1.1,0.8c0.5,0.3,1.1,0.3,1.7,0c0.8-0.5,1.7-0.8,2.6-1.1c0.6-0.2,1.1-0.6,1.2-1.2l0.3-1.4
h1.4l0.2,1.4c0.2,0.6,0.6,1.1,1.2,1.2c0.9,0.2,1.7,0.6,2.6,1.1c0.5,0.3,1.2,0.3,1.7,0l1.1-0.8l0.9,0.9l-0.8,1.1
c-0.3,0.5-0.3,1.2,0,1.7c0.5,0.8,0.9,1.7,1.1,2.6c0.2,0.6,0.6,1.1,1.2,1.2l1.2,0.3v1.2l-1.4,0.2c-0.6,0.2-1.1,0.6-1.2,1.2
c-0.2,0.9-0.6,1.7-1.1,2.6c-0.3,0.5-0.3,1.2,0,1.7l0.8,1.1l-0.9,0.9L86,75.3c-0.5-0.3-1.2-0.3-1.7,0c-0.8,0.5-1.7,0.8-2.6,1.1
c-0.6,0.2-1.1,0.6-1.2,1.2L80.1,79h-1.4l-0.2-1.4c-0.2-0.6-0.6-1.1-1.2-1.2c-0.9-0.2-1.7-0.6-2.6-1.1c-0.5-0.3-1.2-0.3-1.7,0
l-0.9,0.8l-0.9-0.9l0.8-1.1c0.3-0.5,0.3-1.2,0-1.7c-0.5-0.8-0.9-1.7-1.1-2.6c-0.2-0.6-0.6-1.1-1.2-1.2l-1.2-0.3V66.9z M79.7,74.1
c3.5,0,6.5-2.9,6.5-6.5c0-3.5-2.9-6.5-6.5-6.5c-3.5,0-6.5,2.9-6.5,6.5C73.2,71.2,76.1,74.1,79.7,74.1z M79.7,64.3
c1.8,0,3.4,1.5,3.4,3.4c0,1.8-1.5,3.4-3.4,3.4c-0.9,0-1.7-0.3-2.5-0.9c-0.6-0.6-0.9-1.5-0.9-2.5C76.3,65.8,77.8,64.3,79.7,64.3z
M15.9,38.4c0.6,0.6,1.5,0.5,2.2-0.2c0.6-0.6,0.5-1.5-0.2-2.2l-5.1-4.3l5.1-4.3c0.6-0.6,0.8-1.5,0.2-2.2c-0.6-0.6-1.5-0.8-2.2-0.2
l-6.3,5.5c-0.3,0.3-0.5,0.8-0.5,1.2c0,0.5,0.2,0.9,0.5,1.2L15.9,38.4z M35.4,31.4l-5.1,4.6c-0.6,0.5-0.6,1.5-0.2,2.2
c0.6,0.6,1.5,0.8,2.2,0.2l6.3-5.5c0.3-0.3,0.5-0.8,0.5-1.2c0-0.5-0.2-0.9-0.5-1.2l-6.3-5.5c-0.6-0.6-1.5-0.5-2.2,0.2
c-0.6,0.6-0.5,1.5,0.2,2.2L35.4,31.4z M20.6,40.4c0.8,0.3,1.7-0.2,2-0.9L28.2,25c0.3-0.8-0.2-1.7-0.9-2c-0.8-0.3-1.7,0.2-2,0.9
l-5.5,14.5C19.4,39.1,19.9,40.1,20.6,40.4z M95.1,35.4H82V4.8C82,2.2,79.8,0,77.2,0H4.8C2.2,0,0,2.2,0,4.8v72.4
C0,79.8,2.2,82,4.8,82h54.4v13.1c0,2.6,2.2,4.9,4.9,4.9h31c2.6,0,4.9-2.2,4.9-4.9V40.2C100,37.6,97.8,35.4,95.1,35.4z M2.9,4.6
c0-0.9,0.8-1.7,1.7-1.7H77c1.1,0,1.7,0.9,1.7,1.7V14H2.9V4.6z M59.2,40.2v38.7H4.6c-0.9,0-1.7-0.8-1.7-1.7V17.1h76v18.2H64.1
C61.5,35.3,59.2,37.4,59.2,40.2z M96.9,95.1c0,1.1-0.8,1.8-1.8,1.8h-31c-0.9,0-1.8-0.8-1.8-1.8v-6.2h34.7V95.1z M96.9,86H62.2
V49.5h34.7V86z M96.9,46.4H62.2v-6.2c0-0.9,0.8-1.8,1.8-1.8h31c0.9,0,1.8,0.8,1.8,1.8V46.4z M84.4,40.8h-9.6
c-0.9,0-1.5,0.6-1.5,1.5c0,0.9,0.6,1.5,1.5,1.5h9.6c0.9,0,1.5-0.6,1.5-1.5C86,41.6,85.2,40.8,84.4,40.8z M74.9,94.5h9.6
c0.9,0,1.5-0.6,1.5-1.5c0-0.8-0.8-1.5-1.5-1.5h-9.6c-0.9,0-1.5,0.6-1.5,1.5C73.3,93.8,74,94.5,74.9,94.5z M51.6,67.5H10.5
c-0.9,0-1.5,0.6-1.5,1.5c0,0.9,0.6,1.5,1.5,1.5h41.1c0.9,0,1.5-0.6,1.5-1.5C53.2,68.1,52.4,67.5,51.6,67.5z M51.6,56.9H10.5
c-0.9,0-1.5,0.6-1.5,1.5c0,0.9,0.6,1.5,1.5,1.5h41.1c0.9,0,1.5-0.6,1.5-1.5C53.2,57.6,52.4,56.9,51.6,56.9z M51.6,46.4H10.5
c-0.9,0-1.5,0.6-1.5,1.5c0,0.9,0.6,1.5,1.5,1.5h41.1c0.9,0,1.5-0.6,1.5-1.5C53.2,47,52.4,46.4,51.6,46.4z"></path>
</g>
</g>
</svg>
</div>
<h4>04 Meaningful</h4>
<ul>
<li><i class="fas fa-chevron-right"></i>Technology selection</li>
<li><i class="fas fa-chevron-right"></i>API</li>
<li><i class="fas fa-chevron-right"></i>integrations DevOps in action</li>
</ul>
</div>
</div><div class="item slick-slide slick-cloned" data-slick-index="7" aria-hidden="true" tabindex="-1" >
<div class="process-box">
<div class="process-box-icon">
<svg x="0px" y="0px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<g>
<path d="M31.2,3.9h53.6c-0.8,1.3-1.2,2.7-1.2,4.3v25.6c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-6.1H98c1.1,0,2-0.9,2-2V8.2
c0-4.5-3.7-8.2-8.2-8.2H31.2c-1.1,0-2,0.9-2,2C29.3,3,30.2,3.9,31.2,3.9z M87.5,8.2c0-2.4,1.9-4.3,4.3-4.3c2.4,0,4.3,1.9,4.3,4.3
v15.6h-8.6V8.2z M97.9,79.6L85.1,66.8c1.5-3,2.3-6.4,2.3-9.9c0-12.5-10.2-22.7-22.7-22.7c-12.5,0-22.7,10.2-22.7,22.7
c0,2.9,0.5,5.6,1.5,8.1l-2.3,2.3l-9.4-9.4c-0.4-0.4-0.9-0.6-1.4-0.6c-0.5,0-1,0.2-1.4,0.6l-2.2,2.2V42.3c0-1.1-0.9-2-2-2
c-1.1,0-2,0.9-2,2V64L5.4,81.7c-0.8,0.8-0.8,2,0,2.8C5.8,84.8,6.3,85,6.8,85c0.5,0,1-0.2,1.4-0.6L23,69.5v14.1h-8.6
c-1.1,0-2,0.9-2,2v6.2c0,4.5,3.7,8.2,8.2,8.2h58.6c4.5,0,8.2-3.7,8.2-8.2v-1.7c1.4,1.3,3.2,2.1,5.1,2.1h0c2,0,3.8-0.8,5.2-2.2
C100.7,87.1,100.7,82.5,97.9,79.6z M64.8,38.1c10.3,0,18.7,8.4,18.7,18.7c0,10.3-8.4,18.8-18.7,18.8c-7.1,0-13.3-4-16.5-9.8
l11.3-11.3V59c0,1.1,0.9,2,2,2c1.1,0,2-0.9,2-2v-9.4c0-1.1-0.9-2-2-2h-9.4c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2H57L46.7,61.9
c-0.4-1.6-0.7-3.3-0.7-5C46,46.6,54.4,38.1,64.8,38.1z M20.7,96.1c-2.4,0-4.3-1.9-4.3-4.3v-4.3h54.7v2.3c0,0.1,0,0.1,0,0.2
c0,0.1,0,0.1,0,0.2v1.6c0,1.6,0.4,3,1.2,4.3H20.7z M83.6,91.8c0,2.4-1.9,4.3-4.3,4.3c-2.4,0-4.3-1.9-4.3-4.3v-1.6
c0-0.1,0-0.1,0-0.2c0-0.1,0-0.1,0-0.2v-4.3c0-1.1-0.9-2-2-2H26.9v-18l3.6-3.6l9.4,9.4c0.4,0.4,0.9,0.6,1.4,0.6
c0.5,0,1-0.2,1.4-0.6l2.7-2.7c4,6.5,11.2,10.8,19.3,10.8c3.5,0,6.9-0.8,9.9-2.3l8.9,8.9V91.8z M95.1,87.2c-0.7,0.7-1.5,1-2.5,1h0
c-0.9,0-1.8-0.4-2.4-1L78.1,75.2c1.9-1.4,3.5-3,4.9-4.9l12.1,12.1C96.4,83.7,96.4,85.9,95.1,87.2z M62.8,69.3c0,1.1,0.9,2,2,2
c7.9,0,14.3-6.4,14.3-14.3c0-1.1-0.9-2-2-2s-2,0.9-2,2c0,5.7-4.7,10.4-10.4,10.4C63.7,67.3,62.8,68.2,62.8,69.3z M2,37.5H50
c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2h-1.8V20.5c0-1.1-0.9-2-2-2h-9c-1.1,0-2,0.9-2,2v13.1h-3.1V12.5c0-1.1-0.9-2-2-2h-8.6
c-1.1,0-2,0.9-2,2v21.1h-3.1V25c0-1.1-0.9-2-2-2H6.1c-1.1,0-2,0.9-2,2v8.6H2c-1.1,0-2,0.9-2,2C0,36.6,0.9,37.5,2,37.5z M39.3,22.5
h5.1v11.1h-5.1V22.5z M23.6,14.5h4.7v19.1h-4.7V14.5z M8,27h4.7v6.6H8V27z M67.9,12.5c0-1.1-0.9-2-2-2H50.8c-1.1,0-2,0.9-2,2
c0,1.1,0.9,2,2,2h15.1C67,14.5,67.9,13.6,67.9,12.5z M77,11.1c-0.4-0.4-0.9-0.6-1.4-0.6c-0.5,0-1,0.2-1.4,0.6
c-0.4,0.4-0.6,0.9-0.6,1.4c0,0.5,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.4,0.6c0.5,0,1-0.2,1.4-0.6c0.4-0.4,0.6-0.9,0.6-1.4
C77.5,12,77.3,11.5,77,11.1z M55.1,19.1c-1.1,0-2,0.9-2,2c0,1.1,0.9,2,2,2h3.2c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2H55.1z M65.9,23
h9.7c1.1,0,2-0.9,2-2c0-1.1-0.9-2-2-2h-9.7c-1.1,0-2,0.9-2,2C64,22.2,64.8,23,65.9,23z M2,85.9c-0.5,0-1,0.2-1.4,0.6
C0.2,86.8,0,87.3,0,87.8c0,0.5,0.2,1,0.6,1.4c0.4,0.4,0.9,0.6,1.4,0.6c0.5,0,1-0.2,1.4-0.6c0.4-0.4,0.6-0.9,0.6-1.4
c0-0.5-0.2-1-0.6-1.4C3,86.1,2.5,85.9,2,85.9z"></path>
</g>
</g>
</svg>
</div>
<h4>01 Discover</h4>
<ul>
<li><i class="fas fa-chevron-right"></i>Requirement gathering</li>
<li><i class="fas fa-chevron-right"></i>Timeline planning</li>
<li><i class="fas fa-chevron-right"></i>Commercials</li>
</ul>
</div>
</div><div class="item slick-slide slick-cloned" data-slick-index="8" aria-hidden="true" tabindex="-1" >
<div class="process-box">
<div class="process-box-icon">
<svg x="0px" y="0px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<g>
<g>
<path d="M0,0v80.6h100V0H0z M96.8,77.4H3.2V3.2h93.5V77.4z M62.9,6.5H6.5v35.5h56.5V6.5z M59.7,38.7h-50v-29h50V38.7z M93.5,6.5
H66.1v3.2h27.4V6.5z M93.5,12.9H66.1v3.2h27.4V12.9z M93.5,19.4H66.1v3.2h27.4V19.4z M93.5,25.8H66.1V29h27.4V25.8z M93.5,32.3
H66.1v3.2h27.4V32.3z M93.5,38.7H66.1v3.2h27.4V38.7z M33.9,45.2H6.5v29h27.4V45.2z M30.6,71h-21V48.4h21V71z M37.1,74.2h25.8v-29
H37.1V74.2z M40.3,48.4h19.4V71H40.3V48.4z M93.5,45.2H66.1v29h27.4V45.2z M90.3,71h-21V48.4h21V71z M33.9,35.5
c6.2,0,11.3-5.1,11.3-11.3s-5.1-11.3-11.3-11.3c-6.2,0-11.3,5.1-11.3,11.3S27.6,35.5,33.9,35.5z M33.9,16.1c4.4,0,8.1,3.6,8.1,8.1
c0,4.4-3.6,8.1-8.1,8.1s-8.1-3.6-8.1-8.1C25.8,19.7,29.4,16.1,33.9,16.1z M91.9,83.9H15.7L1.6,91.9l14.1,8.1h76.2
c4.4,0,8.1-3.6,8.1-8.1C100,87.5,96.4,83.9,91.9,83.9z M16.1,96.5l-8-4.6l8-4.6V96.5z M77.4,96.8H19.4v-9.7h58.1V96.8z M83.9,96.8
h-3.2v-9.7h3.2V96.8z M91.9,96.8h-4.8v-9.7h4.8c2.7,0,4.8,2.2,4.8,4.8S94.6,96.8,91.9,96.8z"></path>
</g>
</g>
</svg>
</div>
<h4>02 UI/UX Design</h4>
<ul>
<li><i class="fas fa-chevron-right"></i>Wireframe Designing</li>
<li><i class="fas fa-chevron-right"></i>Prototyping</li>
<li><i class="fas fa-chevron-right"></i>Brand styling & preset creation</li>
</ul>
</div>
</div></div></div>
</div>
</div>
</section>