-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathour-acheivement.php
1154 lines (1042 loc) · 50.9 KB
/
our-acheivement.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:#ff3300">
<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>We have to stop optimizing for programmers and start optimizing for users.</p>
<footer>
— Jeff Atwood
</footer>
</blockquote>
</div></h2></div>
<div class="col-lg-7 mb20" style="margin-top: 2%">
<div class="text-l service-desc- pr25">
<span>GROW TRAFFIC & INCREASE REVENUE</span>
<h2>Our Achievements</h2>
<p style="text-align: justify">The company is valued and trusted by its awards, achievements and certifications. But the
best achievement of a company is always it’s happy and satisfied clientele.
The company is valued and trusted by its awards, achievements and certifications. But the
best achievement of a company is always it’s happy and satisfied clientele.</p>
<p style="text-align: justify">The company is valued and trusted by its awards, achievements and certifications. But the
best achievement of a company is always it’s happy and satisfied clientele. </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/achievement.png" alt="image" class="img-fluid no-shadow">
</div>
</div>
</div>
</div>
</section>
<section class="badges-section bg-gradient15 pad-tb">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="common-heading w-tdxt">
<span>WE MAKE RELATIONSHIPS</span>
<h2>Our major Achievement</h2>
<p class="mb30">In our journey, the major achievement has been the growth of out team number, the
clientele acquired, the projects completed, the trust built and the recognitions received.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 col-6 wow fadeIn" data-wow-delay=".2s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeIn;">
<div class="badges-content">
<img src="images/about/badges-a.png" alt="budges" class="img-fluid">
<p>ABC DEF Industry Leader</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-6 wow fadeIn" data-wow-delay=".4s" style="visibility: visible; animation-delay: 0.4s; animation-name: fadeIn;">
<div class="badges-content">
<img src="images/about/badges-b.png" alt="budges" class="img-fluid">
<p>Best eCommerce Development Company</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-6 wow fadeIn" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.6s; animation-name: fadeIn;">
<div class="badges-content">
<img src="images/about/badges-c.png" alt="budges" class="img-fluid">
<p>ABC DEF High Performer Winner</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-6 wow fadeIn" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.8s; animation-name: fadeIn;">
<div class="badges-content">
<img src="images/about/badges-d.png" alt="budges" class="img-fluid">
<p>Top App Developer 2019-20</p>
</div>
</div>
</div>
<div class="-cta-btn mt70">
<div class="free-cta-title v-center wow fadeInUp" data-wow-delay="1s" style="visibility: visible; animation-delay: 1s; animation-name: fadeInUp;">
<p>We <span>Promise.</span> We <span>Deliver.</span></p>
<a href="#" class="btn-main bg-btn2 lnk">Let's Work Together<i class="fas fa-chevron-right fa-icon"></i><span class="circle"></span></a>
</div>
</div>
</div>
</section>
<section class="badges-section pad-tb">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="common-heading w-tdxt">
<span>WE MAKE RELATIONSHIPS</span>
<h2>Years added to existence</h2>
<p class="mb30">
WEBINGO has marked a footprint in the digital world since the last 3 years by “its service
over self” mentality and grinding each year to leave no client unsatisfied or with complains.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 col-6 wow fadeIn" data-wow-delay=".2s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeIn;">
<div class="badges-content">
<img src="images/about/badges-a.png" alt="budges" class="img-fluid">
<p>ABC DEF Industry Leader</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-6 wow fadeIn" data-wow-delay=".4s" style="visibility: visible; animation-delay: 0.4s; animation-name: fadeIn;">
<div class="badges-content">
<img src="images/about/badges-b.png" alt="budges" class="img-fluid">
<p>Best eCommerce Development Company</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-6 wow fadeIn" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.6s; animation-name: fadeIn;">
<div class="badges-content">
<img src="images/about/badges-c.png" alt="budges" class="img-fluid">
<p>ABC DEF High Performer Winner</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-6 wow fadeIn" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.8s; animation-name: fadeIn;">
<div class="badges-content">
<img src="images/about/badges-d.png" alt="budges" class="img-fluid">
<p>Top App Developer 2019-20</p>
</div>
</div>
</div>
<div class="-cta-btn mt70">
<div class="free-cta-title v-center wow fadeInUp" data-wow-delay="1s" style="visibility: visible; animation-delay: 1s; animation-name: fadeInUp;">
<p>We <span>Promise.</span> We <span>Deliver.</span></p>
<a href="#" class="btn-main bg-btn2 lnk">Let's Work Together<i class="fas fa-chevron-right fa-icon"></i><span class="circle"></span></a>
</div>
</div>
</div>
</section>
<section class="badges-section bg-gradient15 pad-tb">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="common-heading w-tdxt">
<span>WE MAKE RELATIONSHIPS</span>
<h2>Motivated Team</h2>
<p class="mb30">
A team is as strong as its weakest member. We ensure that every team member feels at
home and comfortable to work, because a happy team always ensures a happy client.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 col-6 wow fadeIn" data-wow-delay=".2s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeIn;">
<div class="badges-content">
<img src="images/about/badges-a.png" alt="budges" class="img-fluid">
<p>ABC DEF Industry Leader</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-6 wow fadeIn" data-wow-delay=".4s" style="visibility: visible; animation-delay: 0.4s; animation-name: fadeIn;">
<div class="badges-content">
<img src="images/about/badges-b.png" alt="budges" class="img-fluid">
<p>Best eCommerce Development Company</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-6 wow fadeIn" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.6s; animation-name: fadeIn;">
<div class="badges-content">
<img src="images/about/badges-c.png" alt="budges" class="img-fluid">
<p>ABC DEF High Performer Winner</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-6 wow fadeIn" data-wow-delay=".8s" style="visibility: visible; animation-delay: 0.8s; animation-name: fadeIn;">
<div class="badges-content">
<img src="images/about/badges-d.png" alt="budges" class="img-fluid">
<p>Top App Developer 2019-20</p>
</div>
</div>
</div>
<div class="-cta-btn mt70">
<div class="free-cta-title v-center wow fadeInUp" data-wow-delay="1s" style="visibility: visible; animation-delay: 1s; animation-name: fadeInUp;">
<p>We <span>Promise.</span> We <span>Deliver.</span></p>
<a href="#" class="btn-main bg-btn2 lnk">Let's Work Together<i class="fas fa-chevron-right fa-icon"></i><span class="circle"></span></a>
</div>
</div>
</div>
</section>
<section class="testinomial-section pad-tb">
<div class="container">
<div class="row justify-content-center ">
<div class="col-lg-8">
<div class="common-heading">
<span>What our clients say about Niwax.</span>
<h2>Satisfied Clients</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="video-testimonials owl-carousel owl-loaded owl-drag">
<div class="owl-stage-outer"><div class="owl-stage" style="transform: translate3d(0px, 0px, 0px); transition: all 0s ease 0s; width: 590px;"><div class="owl-item active" style="width: 275px; margin-right: 20px;"><div class="video-review" data-tilt="" data-tilt-max="5" data-tilt-speed="1000" style="will-change: transform; transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);">
<a class="video-link" href="https://www.youtube.com/watch?v=SZEflIVnhH8?autoplay=1&rel=0"><img src="images/client/client-pic.jpg" alt="client" class="img-fluid">
<div class="review-vid-details">
<div class="-vid-ico"><span class="triangle-play2"></span></div>
<p>Cina Cleaves</p>
</div></a>
</div></div><div class="owl-item active" style="width: 275px; margin-right: 20px;"><div class="video-review" data-tilt="" data-tilt-max="5" data-tilt-speed="1000" style="will-change: transform; transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);">
<a class="video-link" href="https://www.youtube.com/watch?v=SZEflIVnhH8?autoplay=1&rel=0"><img src="images/client/client-pic-a.jpg" alt="client" class="img-fluid">
<div class="review-vid-details">
<div class="-vid-ico"><span class="triangle-play2"></span></div>
<p>Jokvch Marlin</p>
</div></a>
</div></div></div></div><div class="owl-nav disabled"><button type="button" role="presentation" class="owl-prev"><span aria-label="Previous">‹</span></button><button type="button" role="presentation" class="owl-next"><span aria-label="Next">›</span></button></div><div class="owl-dots disabled"></div></div>
</div>
<div class="col-lg-6">
<div class="owl-carousel testimonial-card-a pl25 owl-loaded owl-drag">
<div class="owl-stage-outer"><div class="owl-stage" style="transform: translate3d(-1090px, 0px, 0px); transition: all 0.5s ease 0s; width: 3815px;"><div class="owl-item cloned" style="width: 545px;"><div class="testimonial-card">
<div class="t-text">
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
<div class="client-thumbs mt30">
<div class="media v-center">
<div class="user-image bdr-radius"><img src="images/user-thumb/girl.jpg" alt="girl" class="img-fluid"></div>
<div class="media-body user-info">
<h5>Fred Chener</h5>
<p>CEO of Aramxx, <small>Ohio, US State</small></p>
</div>
</div>
</div>
</div></div><div class="owl-item cloned" style="width: 545px;"><div class="testimonial-card">
<div class="t-text">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
<div class="client-thumbs mt30">
<div class="media v-center">
<div class="user-image bdr-radius"><img src="images/user-thumb/girl.jpg" alt="girl" class="img-fluid"></div>
<div class="media-body user-info">
<h5>Mathilda Burns</h5>
<p>Backery Shop, <small>Tronto, Italy</small></p>
</div>
</div>
</div>
</div></div><div class="owl-item active" style="width: 545px;"><div class="testimonial-card">
<div class="t-text">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
<div class="client-thumbs mt30">
<div class="media v-center">
<div class="user-image bdr-radius"><img src="images/user-thumb/girl.jpg" alt="girl" class="img-fluid"></div>
<div class="media-body user-info v-center">
<h5>Mike Smith</h5>
<p>Business Owner, <small>Sydney, Australia</small></p>
</div>
</div>
</div>
</div></div><div class="owl-item" style="width: 545px;"><div class="testimonial-card">
<div class="t-text">
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
<div class="client-thumbs mt30">
<div class="media v-center">
<div class="user-image bdr-radius"><img src="images/user-thumb/girl.jpg" alt="girl" class="img-fluid"></div>
<div class="media-body user-info">
<h5>Fred Chener</h5>
<p>CEO of Aramxx, <small>Ohio, US State</small></p>
</div>
</div>
</div>
</div></div><div class="owl-item" style="width: 545px;"><div class="testimonial-card">
<div class="t-text">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
<div class="client-thumbs mt30">
<div class="media v-center">
<div class="user-image bdr-radius"><img src="images/user-thumb/girl.jpg" alt="girl" class="img-fluid"></div>
<div class="media-body user-info">
<h5>Mathilda Burns</h5>
<p>Backery Shop, <small>Tronto, Italy</small></p>
</div>
</div>
</div>
</div></div><div class="owl-item cloned" style="width: 545px;"><div class="testimonial-card">
<div class="t-text">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
<div class="client-thumbs mt30">
<div class="media v-center">
<div class="user-image bdr-radius"><img src="images/user-thumb/girl.jpg" alt="girl" class="img-fluid"></div>
<div class="media-body user-info v-center">
<h5>Mike Smith</h5>
<p>Business Owner, <small>Sydney, Australia</small></p>
</div>
</div>
</div>
</div></div><div class="owl-item cloned" style="width: 545px;"><div class="testimonial-card">
<div class="t-text">
<p>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
<div class="client-thumbs mt30">
<div class="media v-center">
<div class="user-image bdr-radius"><img src="images/user-thumb/girl.jpg" alt="girl" class="img-fluid"></div>
<div class="media-body user-info">
<h5>Fred Chener</h5>
<p>CEO of Aramxx, <small>Ohio, US State</small></p>
</div>
</div>
</div>
</div></div></div></div><div class="owl-nav disabled"><button type="button" role="presentation" class="owl-prev"><span aria-label="Previous">‹</span></button><button type="button" role="presentation" class="owl-next"><span aria-label="Next">›</span></button></div><div class="owl-dots"><button role="button" class="owl-dot active"><span></span></button><button role="button" class="owl-dot"><span></span></button><button role="button" class="owl-dot"><span></span></button></div></div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-12">
<div class="review-ref mt100">
<div class="review-title-ref">
<h4>Read More Reviews</h4>
<p>Read our reviews from all over world.</p>
</div>
<div class="review-icons">
<a href="#" target="blank" class="wow fadeIn" data-wow-delay=".2s" style="visibility: visible; animation-delay: 0.2s; animation-name: fadeIn;"><img src="images/about/reviews-icon-1.png" alt="review" class="img-fluid"></a>
<a href="#" target="blank" class="wow fadeIn" data-wow-delay=".4s" style="visibility: visible; animation-delay: 0.4s; animation-name: fadeIn;"><img src="images/about/reviews-icon-2.png" alt="review" class="img-fluid"></a>
<a href="#" target="blank" class="wow fadeIn" data-wow-delay=".6s" style="visibility: visible; animation-delay: 0.6s; animation-name: fadeIn;"><img src="images/about/reviews-icon-3.png" alt="review" class="img-fluid"></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="portfolio-page bg-gradient15 pad-tb">
<div class="container">
<div class="row justify-content-left">
<div class="col-lg-6">
<div class="common-heading pp">
<span>Our Work</span>
<h2>Our best project list</h2>
</div>
</div>
<div class="col-lg-6 v-center">
<div class="filters">
<ul class="filter-menu">
<li data-filter="*" class="is-checked">All</li>
<li data-filter=".website">Website</li>
<li data-filter=".app">Mobile App</li>
<li data-filter=".graphic">Graphic</li>
</ul>
</div>
</div>
</div>
<div class="row card-list" style="position: relative; height: 1591.69px;">
<div class="col-lg-4 col-md-6 grid-sizer"></div>
<div class="col-lg-4 col-sm-6 single-card-item app" style="position: absolute; left: 0%; top: 0px;">
<div class="isotope_item hover-scale">
<div class="item-image">
<a href="#"><img src="images/portfolio/image-1.jpg" alt="portfolio" class="img-fluid"> </a>
</div>
<div class="item-info">
<h4><a href="#">Creative App</a></h4>
<p>ios, design</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 single-card-item graphic" style="position: absolute; left: 33.3333%; top: 0px;">
<div class="isotope_item hover-scale">
<div class="item-image">
<a href="#"><img src="images/portfolio/image-2.jpg" alt="image" class="img-fluid"> </a>
</div>
<div class="item-info">
<h4><a href="#">Brochure Design</a></h4>
<p>Graphic, Print</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 single-card-item website" style="position: absolute; left: 66.6667%; top: 0px;">
<div class="isotope_item hover-scale">
<div class="item-image">
<a href="#"><img src="images/portfolio/image-3.jpg" alt="image" class="img-fluid"> </a>
</div>
<div class="item-info">
<h4><a href="#">Ecommerce Development</a></h4>
<p>Web Application</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 single-card-item app" style="position: absolute; left: 0%; top: 530px;">
<div class="isotope_item hover-scale">
<div class="item-image">
<a href="#"><img src="images/portfolio/image-4.jpg" alt="image" class="img-fluid"> </a>
</div>
<div class="item-info">
<h4><a href="#">Icon Pack</a></h4>
<p>Android & iOs, Design</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 single-card-item graphic" style="position: absolute; left: 33.3333%; top: 530px;">
<div class="isotope_item hover-scale">
<div class="item-image">
<a href="#"><img src="images/portfolio/image-5.jpg" alt="image" class="img-fluid"> </a>
</div>
<div class="item-info">
<h4><a href="#">Smart Watch</a></h4>
<p>UI/UX Design</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 single-card-item graphic" style="position: absolute; left: 66.6667%; top: 530px;">
<div class="isotope_item hover-scale">
<div class="item-image">
<a href="#"><img src="images/portfolio/image-6.jpg" alt="image" class="img-fluid"> </a>
</div>
<div class="item-info">
<h4><a href="#">Brochure Design</a></h4>
<p>Graphic, Print</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 single-card-item website" style="position: absolute; left: 0%; top: 1061px;">
<div class="isotope_item hover-scale">
<div class="item-image">
<a href="#"><img src="images/portfolio/image-7.jpg" alt="image" class="img-fluid"> </a>
</div>
<div class="item-info">
<h4><a href="#">Packaging Design</a></h4>
<p>Graphic, Print</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 single-card-item app" style="position: absolute; left: 33.3333%; top: 1061px;">
<div class="isotope_item hover-scale">
<div class="item-image">
<a href="#"><img src="images/portfolio/image-8.jpg" alt="image" class="img-fluid"> </a>
</div>
<div class="item-info">
<h4><a href="#">Restaurant App</a></h4>
<p>Android App</p>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-6 single-card-item website" style="position: absolute; left: 66.6667%; top: 1061px;">
<div class="isotope_item hover-scale">
<div class="item-image">
<a href="#"><img src="images/portfolio/image-9.jpg" alt="image" class="img-fluid"> </a>
</div>
<div class="item-info">
<h4><a href="#">Portfolio Website</a></h4>
<p>Web Design</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="reviews-block bg-gradient5 pad-tb">
<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">Our Testimonials</span>
<h2>Client Speaks</h2>
<p class="mb30" style="color: #fff">Check our customers success stories.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 mt30">
<div class="reviews-card pr-shadow">
<div class="row v-center">
<div class="col"> <span class="revbx-lr"><i class="fas fa-quote-left"></i></span> </div>
<div class="col"> <span class="revbx-rl"><img src="images/client/envato.png" alt="review service logo"></span> </div>
</div>
<div class="review-text">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
<div class="-client-details-">
<div class="reviewer-text">
<h4>Sue Vaneer</h4>
<p>Business Owner, <small>Jaipur</small></p>
<div class="star-rate">
<ul>
<li> <a href="javascript:void(0)" class="chked"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
<li> <a href="javascript:void(0)" class="chked"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
<li> <a href="javascript:void(0)" class="chked"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
<li> <a href="javascript:void(0)" class="chked"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
<li> <a href="javascript:void(0)"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 mt30">
<div class="reviews-card pr-shadow">
<div class="row v-center">
<div class="col"> <span class="revbx-lr"><i class="fas fa-quote-left"></i></span> </div>
<div class="col"> <span class="revbx-rl"><img src="images/client/envato.png" alt="review service logo"></span> </div>
</div>
<div class="review-text">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
<div class="-client-details-">
<div class="reviewer-text">
<h4>Don Stairs</h4>
<p>Business Owner, <small>Jaipur</small></p>
<div class="star-rate">
<ul>
<li> <a href="javascript:void(0)" class="chked"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
<li> <a href="javascript:void(0)" class="chked"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
<li> <a href="javascript:void(0)" class="chked"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
<li> <a href="javascript:void(0)" class="chked"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
<li> <a href="javascript:void(0)"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 mt30">
<div class="reviews-card pr-shadow">
<div class="row v-center">
<div class="col"> <span class="revbx-lr"><i class="fas fa-quote-left"></i></span> </div>
<div class="col"> <span class="revbx-rl"><img src="images/client/envato.png" alt="review service logo"></span> </div>
</div>
<div class="review-text">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</div>
<div class="-client-details-">
<div class="reviewer-text">
<h4>Russ L. Rogers</h4>
<p>Business Owner, <small>Jaipur</small></p>
<div class="star-rate">
<ul>
<li> <a href="javascript:void(0)" class="chked"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
<li> <a href="javascript:void(0)" class="chked"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
<li> <a href="javascript:void(0)" class="chked"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
<li> <a href="javascript:void(0)" class="chked"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
<li> <a href="javascript:void(0)"><i class="fas fa-star" aria-hidden="true"></i></a> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="our-office pad-tb bg-gradient6" style="padding-top: 10px;padding-bottom: 10px;">
<div class="container" style="margin-bottom: -65px;">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="common-heading">
<h2 style="margin-bottom: 10px">Our partners and collaborations</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12" >
<div class="owl-carousel service-logo" >
<div class="service-slide " data-tilt data-tilt-max="5" data-tilt-speed="1000"><a href="#">
<div class="service-card-hh">
<div class="image-sr-mm">
<img alt="custom-sport" src="images/DRDO.png">
</div>
</div></a>
</div>
<div class="service-slide " data-tilt data-tilt-max="5" data-tilt-speed="1000"><a href="#">
<div class="service-card-hh">
<div class="image-sr-mm">
<img alt="custom-sport" src="images/westbengal.png">
</div>
</div></a>
</div>
<div class="service-slide " data-tilt data-tilt-max="5" data-tilt-speed="1000"><a href="#">
<div class="service-card-hh">
<div class="image-sr-mm">
<img alt="custom-sport" src="images/Jharkhand-Govt.png">
</div>
</div></a>
</div>
<div class="service-slide " data-tilt data-tilt-max="5" data-tilt-speed="1000"><a href="#">
<div class="service-card-hh">
<div class="image-sr-mm">
<img alt="custom-sport" src="images/kolkata_buzz.png">
</div>
</div></a>
</div>
<div class="service-slide " data-tilt data-tilt-max="5" data-tilt-speed="1000"><a href="#">
<div class="service-card-hh">
<div class="image-sr-mm">
<img alt="custom-sport" src="images/kolkata_ventures.png">
</div>
</div></a>
</div>
<div class="service-slide " data-tilt data-tilt-max="5" data-tilt-speed="1000"><a href="#">
<div class="service-card-hh">
<div class="image-sr-mm">
<img alt="custom-sport" src="images/legal-salah.png">
</div>
</div></a>
</div>
<div class="service-slide " data-tilt data-tilt-max="5" data-tilt-speed="1000"><a href="#">
<div class="service-card-hh">
<div class="image-sr-mm">
<img alt="custom-sport" src="images/ziel_logo.png">
</div>
</div></a>
</div>
<div class="service-slide " data-tilt data-tilt-max="5" data-tilt-speed="1000"><a href="#">
<div class="service-card-hh">
<div class="image-sr-mm">
<img alt="custom-sport" src="images/mahanager.png">
</div>
</div></a>
</div>
<div class="service-slide " data-tilt data-tilt-max="5" data-tilt-speed="1000"><a href="#">
<div class="service-card-hh">
<div class="image-sr-mm">
<img alt="custom-sport" src="images/nasscom.jpg">
</div>
</div></a>
</div>
<div class="service-slide " data-tilt data-tilt-max="5" data-tilt-speed="1000"><a href="#">
<div class="service-card-hh">
<div class="image-sr-mm">
<img alt="custom-sport" src="images/flipkart.jpg">
</div>
</div></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Location-->
<section class="pad-tb bg-gradient15" >
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="common-heading">
<h2 class="mb0">FAQS</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 mt60">
<div id="accordion" class="accordion">
<div class="card-1">
<div class="card-header" id="faq1" style="background: navy">
<button class="btn btn-link btn-block text-left card-title collapsed" type="button" data-toggle="collapse" data-target="#collapse-a" aria-expanded="true" aria-controls="collapse-a"style="color: #fff;" >
How much time will it take?
</button>
</div>
<div id="collapse-a" class="card-body collapse " aria-labelledby="faq1" data-parent="#accordion">
<p>Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et.</p>
</div>
</div>
<div class="card-1 ">
<div class="card-header" id="faq4" style="background: navy">
<button class="btn btn-link btn-block text-left card-title collapsed" type="button" data-toggle="collapse" data-target="#collapse-d" aria-expanded="true" aria-controls="collapse-d" style="color: #fff;">
If I don’t like it then what to do?
</button>
</div>
<div id="collapse-d" class="card-body collapse " aria-labelledby="faq4" data-parent="#accordion2">
<p>Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et.</p>
</div>
</div>
<div class="card-1 ">
<div class="card-header" id="faq4" style="background: navy">
<button class="btn btn-link btn-block text-left card-title collapsed" type="button" data-toggle="collapse" data-target="#collapse-2" aria-expanded="true" aria-controls="collapse-d" style="color: #fff;">
Is Demo available for any designing Services?
</button>
</div>
<div id="collapse-2" class="card-body collapse " aria-labelledby="faq4" data-parent="#accordion2">
<p>Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et.</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 mt60">
<div id="accordion2" class="accordion">
<div class="card-1 ">
<div class="card-header" id="faq4" style="background: navy">
<button class="btn btn-link btn-block text-left card-title collapsed" type="button" data-toggle="collapse" data-target="#collapse-4" aria-expanded="true" aria-controls="collapse-d" style="color: #fff;">
Does Next Screen use clip art or stock logos?
</button>
</div>
<div id="collapse-4" class="card-body collapse " aria-labelledby="faq4" data-parent="#accordion2">
<p>Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et.</p>
</div>
</div>
<div class="card-1 ">
<div class="card-header" id="faq4" style="background: navy">
<button class="btn btn-link btn-block text-left card-title collapsed" type="button" data-toggle="collapse" data-target="#collapse-1" aria-expanded="true" aria-controls="collapse-d" style="color: #fff;">
After finalizing the design, who will be authorized to the logo?
</button>
</div>
<div id="collapse-1" class="card-body collapse " aria-labelledby="faq4" data-parent="#accordion2">
<p>We send signed copyright transfer documents with your final files. Once the client has
finalized the logo, we don’t bridge the trust. The design is finalized for the client.</p>
</div>
</div>
<div class="card-1 ">
<div class="card-header" id="faq4" style="background: navy">
<button class="btn btn-link btn-block text-left card-title collapsed" type="button" data-toggle="collapse" data-target="#collapse-3" aria-expanded="true" aria-controls="collapse-d" style="color: #fff;">
Shall I get any demo before paying?
</button>
</div>
<div id="collapse-3" class="card-body collapse " aria-labelledby="faq4" data-parent="#accordion2">
<p>Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Start Footer-->
<?php include 'footer.php'; ?>
<!--End Footer-->
<!--scroll to top-->
<a id="scrollUp" href="#top"></a>
<!-- js placed at the end of the document so the pages load faster -->
<script src="js/vendor/modernizr-3.5.0.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/plugin.min.js"></script>
<!--common script file-->
<script src="js/main.js"></script>
<script>
$('.bxslider').bxSlider({
autoHover: true,
auto: true,
slideWidth: 250,
minSlides: 2,
maxSlides: 6,
controls: true,
pager: true,
speed: 500,
captions: true,
slideMargin: 5,
});
</script>
<script>
$(document).foundation();
// declare variables.
var $top_bar = $('.top-bar'),
$menu_btn = $('#responsive-menu-btn');
// top bar sticky shrink class toggle.
$top_bar.on('sticky.zf.stuckto:top', function() {
var $this = $(this);
$this.addClass('shrink');
}).on('sticky.zf.unstuckfrom:top', function() {
var $this = $(this);
$this.removeClass('shrink');