-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhy-us.html
More file actions
1028 lines (1010 loc) · 54.6 KB
/
why-us.html
File metadata and controls
1028 lines (1010 loc) · 54.6 KB
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">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="description" content="Smart Data IT Solutions & Services Template">
<link href="assets/images/favicon/favicon.png" rel="icon">
<title>Smart Data IT Solutions & Services Template</title>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700;800;900&family=Roboto:wght@400;700&display=swap">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css">
<link rel="stylesheet" href="assets/css/libraries.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="wrapper">
<div class="preloader">
<div class="loading">
<span></span><span></span><span></span><span></span><span></span><span></span><span></span><span></span>
</div>
</div><!-- /.preloader -->
<!-- =========================
Header
=========================== -->
<header class="header header-transparent">
<nav class="navbar navbar-expand-lg sticky-navbar">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="assets/images/logo/logo-light.png" class="logo-light" alt="logo">
<img src="assets/images/logo/logo-dark.png" class="logo-dark" alt="logo">
</a>
<button class="navbar-toggler" type="button">
<span class="menu-lines"><span></span></span>
</button>
<div class="collapse navbar-collapse" id="mainNavigation">
<ul class="navbar-nav ml-auto">
<li class="nav__item has-dropdown">
<a href="index.html" data-toggle="dropdown" class="dropdown-toggle nav__item-link">Home</a>
<ul class="dropdown-menu">
<li class="nav__item">
<a href="index.html" class="nav__item-link">Home Main</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="home-modern.html" class="nav__item-link">Home Modern</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="home-classic.html" class="nav__item-link">Home Classic</a>
</li><!-- /.nav-item -->
</ul><!-- /.dropdown-menu -->
</li><!-- /.nav-item -->
<li class="nav__item has-dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle nav__item-link active">Company</a>
<ul class="dropdown-menu">
<li class="nav__item">
<a href="about-us.html" class="nav__item-link">About Us</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="why-us.html" class="nav__item-link">Why Choose Us</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="leadership-team.html" class="nav__item-link">Leadership Team</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="awards.html" class="nav__item-link">Award & Recognition</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="pricing.html" class="nav__item-link">Pricing & Plans</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="faqs.html" class="nav__item-link">Help & FAQs</a>
</li> <!-- /.nav-item -->
<li class="nav__item">
<a href="careers.html" class="nav__item-link">Careers</a>
</li><!-- /.nav-item -->
</ul><!-- /.dropdown-menu -->
</li><!-- /.nav-item -->
<li class="nav__item has-dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle nav__item-link">IT Solutions</a>
<ul class="dropdown-menu wide-dropdown-menu">
<li class="nav__item">
<div class="row mx-0">
<div class="col-sm-6 dropdown-menu-col">
<a href="it-solutions.html" class="nav__item-link dropdown-menu-title">IT Solutions</a>
<ul class="nav flex-column">
<li class="nav__item"><a class="nav__item-link" href="it-solutions-single.html">IT
Management</a>
</li> <!-- /.nav-item -->
<li class="nav__item"><a class="nav__item-link" href="it-solutions-single.html">Cyber
Security</a>
</li> <!-- /.nav-item -->
<li class="nav__item"><a class="nav__item-link" href="it-solutions-single.html">Cloud
Computing</a>
</li> <!-- /.nav-item -->
<li class="nav__item"><a class="nav__item-link" href="it-solutions-single.html">IT
Consulting</a>
</li> <!-- /.nav-item -->
<li class="nav__item"><a class="nav__item-link" href="it-solutions-single.html">Software
Dev</a>
</li> <!-- /.nav-item -->
<li class="nav__item"><a class="nav__item-link" href="it-solutions-single.html">IT Support</a>
</li>
<!-- /.nav-item -->
</ul>
</div><!-- /.col-sm-6 -->
<div class="col-sm-6 dropdown-menu-col">
<a href="industries.html" class="nav__item-link dropdown-menu-title">Industries</a>
<ul class="nav flex-column">
<li class="nav__item"><a class="nav__item-link"
href="industries-single-industry.html">Education,
Non-Profit</a></li> <!-- /.nav-item -->
<li class="nav__item"><a class="nav__item-link"
href="industries-single-industry.html">Accounting,
Finance</a></li> <!-- /.nav-item -->
<li class="nav__item"><a class="nav__item-link"
href="industries-single-industry.html">Government &
Public</a></li> <!-- /.nav-item -->
<li class="nav__item"><a class="nav__item-link" href="industries-single-industry.html">Energy
&
Utilities</a></li> <!-- /.nav-item -->
<li class="nav__item"><a class="nav__item-link" href="industries-single-industry.html">Legal,
Law
Firms</a></li> <!-- /.nav-item -->
<li class="nav__item"><a class="nav__item-link"
href="industries-single-industry.html">Manufacturing</a>
</li>
<!-- /.nav-item -->
</ul>
</div><!-- /.col-sm-6 -->
</div><!-- /.row -->
</li><!-- /.nav-item -->
</ul><!-- /.dropdown-menu -->
</li><!-- /.nav-item -->
<li class="nav__item has-dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle nav__item-link">News&Media</a>
<ul class="dropdown-menu">
<li class="nav__item">
<a href="blog.html" class="nav__item-link">Our Blog</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="blog-single-post.html" class="nav__item-link">Single Blog Post</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="case-studies-grid.html" class="nav__item-link">Case Studies Grid</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="case-studies-carousel.html" class="nav__item-link">Case Studies Carousel</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="case-studies-classic.html" class="nav__item-link">Case Studies Classic</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="case-studies-single.html" class="nav__item-link">Single Case Study</a>
</li><!-- /.nav-item -->
</ul><!-- /.dropdown-menu -->
</li><!-- /.nav-item -->
<li class="nav__item has-dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle nav__item-link">Features</a>
<ul class="dropdown-menu">
<li class="nav__item">
<a href="coming-soon.html" class="nav__item-link">Coming Soon</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="404.html" class="nav__item-link">404 Page</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="#" class="nav__item-link open-register-popup">Register</a>
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="#" class="nav__item-link open-login-popup">Login</a>
</li><!-- /.nav-item -->
</ul><!-- /.dropdown-menu -->
</li><!-- /.nav-item -->
<li class="nav__item">
<a href="contact-us.html" class="nav__item-link">Contacts</a>
</li><!-- /.nav-item -->
</ul><!-- /.navbar-nav -->
</div><!-- /.navbar-collapse -->
<ul class="navbar-actions list-unstyled mb-0 d-flex align-items-center">
<li class="d-none d-xl-block">
<a href="request-quote.html" class="btn action__btn-contact">Request A Quote</a>
</li>
<li>
<button class="action__btn action__btn-login open-login-popup">
<i class="icon-user"></i><span>Login</span>
</button>
</li>
</ul><!-- /.navbar-actions -->
</div><!-- /.container -->
</nav><!-- /.navabr -->
</header><!-- /.Header -->
<!-- ========================
page title
=========================== -->
<section class="page-title page-title-layout2 bg-overlay bg-overlay-gradient bg-parallax">
<div class="bg-img"><img src="assets/images/page-titles/2.jpg" alt="background"></div>
<div class="container">
<div class="row align-items-center">
<div class="col-sm-12 col-md-12 col-lg-7 col-xl-5">
<h1 class="pagetitle__heading">Easy solutions for all difficult IT problems, keep business safe & ensure
high availability.</h1>
<a href="it-solutions.html" class="btn btn__white mt-20 mr-30">Our Services</a>
<a href="request-quote.html" class="btn btn__white btn__bordered btn__icon mt-20">
<span>Get Started</span><i class="icon-arrow-right"></i>
</a>
</div><!-- /.col-xl-5 -->
<div class="col-sm-12 col-md-12 col-lg-5 col-xl-7 d-flex justify-content-end cta-banner-wrapper">
<div class="cta-banner">
<div class="cta__icon"><i class="icon-developer"></i></div>
<h4 class="cta__title">Since 1999</h4>
<p class="cta__desc mb-25">Provide users with appropriate view and access to requests,
problems, changes and reports.</p>
<a href="#" class="btn btn__link btn__secondary btn__icon px-0">
<span>Find Your Solution</span> <i class="icon-arrow-right"></i>
</a>
</div>
</div><!-- /.col-xl-7 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.page-title -->
<!-- ========================
Secondary Nav
=========================== -->
<section class="secondary-nav secondary-nav-layout2 sticky-top py-0">
<div class="container">
<div class="row">
<div class="col-12">
<nav class="nav nav-tabs justify-content-center">
<a href="about-us.html" class="nav__link">About Us</a>
<a href="why-us.html" class="nav__link active">Why Choose Us</a>
<a href="leadership-team.html" class="nav__link">Leadership Team</a>
<a href="awards.html" class="nav__link">Awards & Recognition</a>
<a href="pricing.html" class="nav__link">Pricing & Plans</a>
<a href="faqs.html" class="nav__link">Help & FAQs</a>
<a href="careers.html" class="nav__link">Careers</a>
</nav>
</div><!-- /.col-12 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.Secondary Nav -->
<!-- ========================
About Layout 3
=========================== -->
<section id="about" class="about-layout3 pt-130 pb-40">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12 col-xl-6">
<div class="heading mb-30">
<div class="d-flex align-items-center mb-20">
<div class="divider divider-primary mr-30"></div>
<h2 class="heading__subtitle mb-0">Timely Service Delivery & Incident Resolutions!! </h2>
</div>
<h3 class="heading__title mb-40">Manages service delivery across various business like, HR, Legal and
other IT departments!!
</h3>
</div>
</div><!-- /.col-xl-5 -->
</div><!-- /.row -->
<div class="row about__Text">
<div class="col-sm-12 col-md-12 col-lg-12 col-xl-5 offset-xl-1">
<i class="icon-quote"></i>
<p>SmartData has been helping organizations throughout the World to manage their IT with our unique approach
to technology management and consultancy solutions. Provide users with appropriate view and access
permissions to requests, problems, changes, contracts, assets, solutions, and reports </p>
<img src="assets/images/about/singnture.png" alt="singnture" class="mb-20">
</div>
<div class="col-sm-12 col-md-12 col-lg-12 col-xl-5 offset-xl-1">
<p>As one of the world's largest ITService Providers, our deep pool of certified engineers and IT staff are
ready to help you to keep your IT business safe & ensure high availability.</p>
<ul class="list-items list-items-layout2 list-horizontal list-unstyled d-flex flex-wrap mt-40">
<li>Eliminate Repeat Entry</li>
<li>Simpliy Communication</li>
<li>Drive Business Process</li>
<li>Speed Up Transactions</li>
<li>Structure Data & Docs</li>
<li>Automate Workflows</li>
</ul>
</div><!-- /.col-xl-5 -->
</div><!-- /.row -->
<div class="row align-items-center mt-60">
<div class="col-sm-12 col-md-12 col-lg-7">
<div class="about__img about__img-1">
<img src="assets/images/about/2.jpg" alt="about">
</div><!-- /.about-img -->
</div><!-- /.col-lg-5 -->
<div class="col-sm-12 col-md-12 col-lg-5">
<div class="about__img">
<img src="assets/images/about/4.jpg" alt="about">
</div><!-- /.about-img -->
</div><!-- /.col-lg-5 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.About Layout 3 -->
<!-- =====================
Clients
======================== -->
<section class="clients pt-50 pb-50">
<div class="container">
<div class="row">
<div class="col-12">
<p class="text__link text-center mb-30">Trusted By The World's
<a href="it-solutions.html" class="btn btn__link btn__primary btn__underlined">Best Organizations</a>
</p>
</div><!-- /.col-12 -->
</div><!-- /.row -->
<div class="row align-items-center">
<div class="col-12">
<div class="slick-carousel"
data-slick='{"slidesToShow": 6, "arrows": false, "dots": false, "autoplay": true,"autoplaySpeed": 2000, "infinite": true, "responsive": [ {"breakpoint": 992, "settings": {"slidesToShow": 4}}, {"breakpoint": 767, "settings": {"slidesToShow": 3}}, {"breakpoint": 480, "settings": {"slidesToShow": 2}}]}'>
<div class="client">
<img src="assets/images/clients/1.png" alt="client">
<img src="assets/images/clients/1.png" alt="client">
</div><!-- /.client -->
<div class="client">
<img src="assets/images/clients/2.png" alt="client">
<img src="assets/images/clients/2.png" alt="client">
</div><!-- /.client -->
<div class="client">
<img src="assets/images/clients/3.png" alt="client">
<img src="assets/images/clients/3.png" alt="client">
</div><!-- /.client -->
<div class="client">
<img src="assets/images/clients/4.png" alt="client">
<img src="assets/images/clients/4.png" alt="client">
</div><!-- /.client -->
<div class="client">
<img src="assets/images/clients/5.png" alt="client">
<img src="assets/images/clients/5.png" alt="client">
</div><!-- /.client -->
<div class="client">
<img src="assets/images/clients/6.png" alt="client">
<img src="assets/images/clients/6.png" alt="client">
</div><!-- /.client -->
<div class="client">
<img src="assets/images/clients/7.png" alt="client">
<img src="assets/images/clients/7.png" alt="client">
</div><!-- /.client -->
</div><!-- /.carousel -->
</div><!-- /.col-12 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.clients -->
<!-- =========================
Banner layout 3
=========================== -->
<section class="banner-layout3 pb-70">
<div class="bg-img"><img src="assets/images/backgrounds/1.jpg" alt="background"></div>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12 col-xl-5 fancybox-light">
<div class="heading heading-light mb-60">
<h3 class="heading__title mb-30">Keep business safe & ensure high availability.</h3>
<p class="heading__desc">As one of the world's largest ITService Providers, our deep pool of certified
engineers and IT staff are ready to help you to keep your IT business safe & ensure high availability.
</p>
</div><!-- /.heading -->
<!-- fancybox item #1 -->
<div class="fancybox-item d-flex flex-wrap">
<div class="fancybox__icon">
<i class="icon-coding"></i>
</div><!-- /.fancybox__icon -->
<div class="fancybox__content">
<h4 class="fancybox__title">Knowledge Base</h4>
<p class="fancybox__desc">Software assets including purchasing, deployment & maintenance. Manage
all aspects of your software assets including purchasing, deployment, maintenance, utilization, and
disposal.
</p>
<a href="#" class="btn btn__white btn__link">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.fancybox-content -->
</div><!-- /.fancybox-item -->
<!-- fancybox item #2 -->
<div class="fancybox-item d-flex flex-wrap">
<div class="fancybox__icon">
<i class="icon-programming2"></i>
</div><!-- /.fancybox__icon -->
<div class="fancybox__content">
<h4 class="fancybox__title">Custom Requests</h4>
<p class="fancybox__desc">Build and publish dynamic request templates with associated workflows,
all aspects of your software assets including purchasing, deployment, maintenance, utilization, and
disposal.
</p>
<a href="#" class="btn btn__white btn__link">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.fancybox-content -->
</div><!-- /.fancybox-item -->
<!-- fancybox item #3 -->
<div class="fancybox-item d-flex flex-wrap">
<div class="fancybox__icon">
<i class="icon-script"></i>
</div><!-- /.fancybox__icon -->
<div class="fancybox__content">
<h4 class="fancybox__title">License Management</h4>
<p class="fancybox__desc">Build and publish dynamic request templates with associated workflows,
all aspects of your software assets including purchasing, deployment, maintenance, utilization, and
disposal.
</p>
<a href="#" class="btn btn__white btn__link">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.fancybox-content -->
</div><!-- /.fancybox-item -->
</div><!-- /.col-xl-5 -->
<div class="col-sm-12 col-md-12 col-lg-12 col-xl-7">
<div class="sticky-top">
<div class="banner-img">
<img src="assets/images/banners/5.jpg" alt="banner">
<a class="video__btn video__btn-white popup-video" href="https://www.youtube.com/watch?v=nrJtHemSPW4">
<div class="video__player">
<i class="fa fa-play"></i>
</div>
</a>
</div>
<div class="d-flex flex-wrap justify-content-end read-note mt-40">
<div class="rating mb-10 mr-50">
<i class="fas fa-star color-primary"></i>
<i class="fas fa-star color-primary"></i>
<i class="fas fa-star color-primary"></i>
<i class="fas fa-star color-primary"></i>
<i class="fas fa-star color-primary"></i>
</div>
<p class="read-note__text color-white">
<span class="font-weight-bold text-underlined">99.9% Customer Satisfaction</span>
based on 750+ reviews and 20,000 Objective Resource
</p>
</div>
</div>
</div><!-- /.col-xl-7 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.Banner layout 3 -->
<!-- ===========================
portfolio Grid
============================= -->
<section class="portfolio-grid portfolio-grid-carousel pb-40">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-6">
<div class="heading mb-50">
<div class="d-flex align-items-center">
<div class="divider divider-primary mr-30"></div>
<h2 class="heading__subtitle mb-0">Success Stories</h2>
</div>
<h3 class="heading__title mb-0">Latest Case Studies</h3>
</div>
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
<div class="row">
<div class="col-12">
<div class="slick-carousel"
data-slick='{"slidesToShow": 3, "slidesToScroll": 2, "arrows": true, "dots": true, "autoplay": true,"autoplaySpeed": 4000, "infinite": true, "responsive": [ {"breakpoint": 992, "settings": {"slidesToShow": 2}}, {"breakpoint": 767, "settings": {"slidesToShow": 2}}, {"breakpoint": 480, "settings": {"slidesToShow": 1}}]}'>
<!-- portfolio item #1 -->
<div class="portfolio-item">
<div class="portfolio__img">
<img src="assets/images/portfolio/grid/1.jpg" alt="portfolio img">
</div><!-- /.portfolio-img -->
<div class="portfolio__content">
<div class="portfolio__cat">
<a href="#">Building</a><a href="#">Interior</a>
</div><!-- /.portfolio-cat -->
<h4 class="portfolio__title"><a href="#">Financial’s Need For
Strategic Advisor</a></h4>
<p class="portfolio__desc">We delivered solutions at every step, and moved seamlessly into a more
proactive role as a strategic advisor, providing support and guidance across all IT topics.</p>
<a href="blog-single-post.html" class="btn btn__secondary btn__link">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.portfolio-content -->
</div><!-- /.portfolio-item -->
<!-- portfolio item #2 -->
<div class="portfolio-item">
<div class="portfolio__img">
<img src="assets/images/portfolio/grid/2.jpg" alt="portfolio img">
</div><!-- /.portfolio-img -->
<div class="portfolio__content">
<div class="portfolio__cat">
<a href="#">Software</a><a href="#">Support</a>
</div><!-- /.portfolio-cat -->
<h4 class="portfolio__title"><a href="#">24x7 System Monitoring and
Alert Response</a></h4>
<p class="portfolio__desc">This single, unified platform integrates all operational phases of
selling and activation of their wireless services and devices, and serves as the backbone of the
operations.</p>
<a href="blog-single-post.html" class="btn btn__secondary btn__link">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.portfolio-content -->
</div><!-- /.portfolio-item -->
<!-- portfolio item #3 -->
<div class="portfolio-item">
<div class="portfolio__img">
<img src="assets/images/portfolio/grid/3.jpg" alt="portfolio img">
</div><!-- /.portfolio-img -->
<div class="portfolio__content">
<div class="portfolio__cat">
<a href="#">Management</a><a href="#">Cloud</a>
</div><!-- /.portfolio-cat -->
<h4 class="portfolio__title"><a href="#">Nonprofit Organization
Utilized Security</a></h4>
<p class="portfolio__desc">Servers going down on a weekly basis had become the organization’s
“normal.” We came on board with the objective of stabilizing the environment, assisting </p>
<a href="blog-single-post.html" class="btn btn__secondary btn__link">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.portfolio-content -->
</div><!-- /.portfolio-item -->
<!-- portfolio item #4 -->
<div class="portfolio-item">
<div class="portfolio__img">
<img src="assets/images/portfolio/grid/4.jpg" alt="portfolio img">
</div><!-- /.portfolio-img -->
<div class="portfolio__content">
<div class="portfolio__cat">
<a href="#">Digital</a><a href="#">HR</a>
</div><!-- /.portfolio-cat -->
<h4 class="portfolio__title"><a href="#">Powerful IT Upgrade Aligns
With Your Objectives</a></h4>
<p class="portfolio__desc">They needed a robust management solution to organize archive critical
documents for client cases, and wanted to determine solutions at every step, and moved </p>
<a href="blog-single-post.html" class="btn btn__secondary btn__link">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.portfolio-content -->
</div><!-- /.portfolio-item -->
<!-- portfolio item #5 -->
<div class="portfolio-item">
<div class="portfolio__img">
<img src="assets/images/portfolio/grid/5.jpg" alt="portfolio img">
</div><!-- /.portfolio-img -->
<div class="portfolio__content">
<div class="portfolio__cat">
<a href="#">Consulting</a><a href="#">Management</a>
</div><!-- /.portfolio-cat -->
<h4 class="portfolio__title"><a href="#">The Best IT Practices in Cloud
and Security</a></h4>
<p class="portfolio__desc">This single, unified platform integrates all operational phases of
selling and activation of their wireless services and devices, and serves as the backbone of the
operations.</p>
<a href="blog-single-post.html" class="btn btn__secondary btn__link">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.portfolio-content -->
</div><!-- /.portfolio-item -->
<!-- portfolio item #6 -->
<div class="portfolio-item">
<div class="portfolio__img">
<img src="assets/images/portfolio/grid/6.jpg" alt="portfolio img">
</div><!-- /.portfolio-img -->
<div class="portfolio__content">
<div class="portfolio__cat">
<a href="#">Software</a><a href="#">Security</a>
</div><!-- /.portfolio-cat -->
<h4 class="portfolio__title"><a href="#">Helping Companies With
Healthcare Inustry</a></h4>
<p class="portfolio__desc">Servers going down on a weekly basis had become the organization’s
“normal.” We came on board with the objective of stabilizing the environment, assisting </p>
<a href="blog-single-post.html" class="btn btn__secondary btn__link">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.portfolio-content -->
</div><!-- /.portfolio-item -->
</div><!-- /.carousel -->
</div><!-- /.col-12 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.portfolio Grid -->
<!-- =========================
Banner layout 1
=========================== -->
<section class="banner-layout1 pt-90 pb-90 bg-overlay bg-overlay-primary">
<div class="bg-img"><img src="assets/images/banners/5.jpg" alt="background"></div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12 col-xl-6 col-inner d-flex flex-column justify-content-between">
<div>
<div class="heading heading-light">
<h3 class="heading__title mb-30">All Kinds Of IT Services That
Vow Future Business Success!</h3>
<p class="heading__desc mb-30">We are experienced professionals who understand that It services is
changing,
and are partners who care about your success. As one of the world's largest IT Service Providers,
our
deep pool of certified engineers and IT staff are ready to help.
</p>
</div><!-- /.heading -->
<div class="d-flex align-items-center mb-40">
<a href="#" class="btn btn__white btn__icon mr-30">
<span>Get Started</span>
<i class="icon-arrow-right"></i>
</a>
<a href="request-quote.html" class="btn btn__white btn__bordered">Request Demo</a>
</div>
</div>
<div class="testimonials testimonials-wrapper">
<div class="slider-with-navs">
<!-- Testimonial #1 -->
<div class="testimonial-item">
<p class="testimonial__desc color-white">If you’re looking for a rewarding career and the
chance to make an
impact, you’ve come to the right place. We will transform your business through our techniques!
</p>
<div class="testimonial__meta">
<h4 class="testimonial__meta-title">Ahmed Abdallah</h4>
<p class="testimonial__meta-desc">Digital Media Manager</p>
</div><!-- /.testimonial-meta -->
</div><!-- /. testimonial-item -->
<!-- Testimonial #2 -->
<div class="testimonial-item">
<p class="testimonial__desc color-white"> If you’re looking for a rewarding career and the chance to
make an impact, you’ve come to the right place. We will transform your business through our
techniques! </p>
<div class="testimonial__meta">
<h4 class="testimonial__meta-title">John Peter</h4>
<p class="testimonial__meta-desc">7oroof Inc</p>
</div><!-- /.testimonial-meta -->
</div><!-- /. testimonial-item -->
<!-- Testimonial #3 -->
<div class="testimonial-item">
<p class="testimonial__desc color-white">If you’re looking for a rewarding career and the
chance to make an
impact, you’ve come to the right place. We will transform your business through our techniques!
</p>
<div class="testimonial__meta">
<h4 class="testimonial__meta-title">Ayman</h4>
<p class="testimonial__meta-desc">7oroof Inc</p>
</div><!-- /.testimonial-meta -->
</div><!-- /. testimonial-item -->
<!-- Testimonial #2 -->
<div class="testimonial-item">
<p class="testimonial__desc color-white"> If you’re looking for a rewarding career and the chance to
make an impact, you’ve come to the right place. We will transform your business through our
techniques! </p>
<div class="testimonial__meta">
<h4 class="testimonial__meta-title">John Peter</h4>
<p class="testimonial__meta-desc">7oroof Inc</p>
</div><!-- /.testimonial-meta -->
</div><!-- /. testimonial-item -->
<!-- Testimonial #3 -->
<div class="testimonial-item">
<p class="testimonial__desc color-white">My project was a simple & small task, but the
persistence and
determination turned it into an awesome and great project which make me happy .
</p>
<div class="testimonial__meta">
<h4 class="testimonial__meta-title">John Peter</h4>
<p class="testimonial__meta-desc">7oroof Inc</p>
</div><!-- /.testimonial-meta -->
</div><!-- /. testimonial-item -->
</div>
<div class="slider-nav">
<div class="testimonial__thumb">
<img src="assets/images/testimonials/thumbs/1.png" alt="author thumb">
</div><!-- /.testimonial-thumb -->
<div class="testimonial__thumb">
<img src="assets/images/testimonials/thumbs/2.png" alt="author thumb">
</div><!-- /.testimonial-thumb -->
<div class="testimonial__thumb">
<img src="assets/images/testimonials/thumbs/3.png" alt="author thumb">
</div><!-- /.testimonial-thumb -->
<div class="testimonial__thumb">
<img src="assets/images/testimonials/thumbs/2.png" alt="author thumb">
</div><!-- /.testimonial-thumb -->
<div class="testimonial__thumb">
<img src="assets/images/testimonials/thumbs/3.png" alt="author thumb">
</div><!-- /.testimonial-thumb -->
</div><!-- /.slcik-nav -->
</div>
</div><!-- /.col-xl-6 -->
<div class="col-sm-12 col-md-12 col-lg-12 col-xl-6">
<div class="contact-panel">
<form class="contact-panel__form" method="post" action="assets/php/contact.php" id="contactForm">
<div class="row">
<div class="col-12">
<h4 class="contact-panel__title mb-20">Request A Quote</h4>
<p class="contact-panel__desc mb-30">Our deep pool of certified engineers and IT staff are ready to
help you to keep your IT business safe & ensure high availability.</p>
</div> <!-- /.col-12 -->
<div class="col-sm-6 col-md-6 col-lg-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Name" id="contact-name" name="contact-name"
required>
</div>
</div><!-- /.col-lg-6 -->
<div class="col-sm-6 col-md-6 col-lg-6">
<div class="form-group">
<input type="email" class="form-control" placeholder="Email" id="contact-email"
name="contact-email" required>
</div>
</div><!-- /.col-lg-6 -->
<div class="col-sm-6 col-md-6 col-lg-6">
<div class="form-group">
<select class="form-control">
<option value="0">Inquiry</option>
<option value="1">IT Management Services 2</option>
<option value="2">IT Management Services 3</option>
</select>
</div>
</div><!-- /.col-lg-6 -->
<div class="col-sm-6 col-md-6 col-lg-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Phone" id="contact-Phone"
name="contact-phone">
</div>
</div><!-- /.col-lg-6 -->
<div class="col-12">
<div class="form-group">
<textarea class="form-control" placeholder="Additional Details!" id="contact-message"
name="contact-message"></textarea>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center mb-20">
<input type="checkbox" class="custom-control-input" id="acceptTerms">
<label class="custom-control-label" for="acceptTerms">I accept the privacy and terms.</label>
</div>
<button type="submit" class="btn btn__primary btn__xl btn__block">Submit Request </button>
<div class="contact-result"></div>
</div><!-- /.col-12 -->
</div><!-- /.row -->
</form>
</div>
</div><!-- /.col-xl-6 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.Banner layout 1 -->
<!-- ======================
Blog Grid
========================= -->
<section class="blog-grid pb-50">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-6 offset-lg-3">
<div class="heading text-center mb-40">
<h2 class="heading__subtitle">Recent Articles</h2>
<h3 class="heading__title">Resource Library</h3>
</div><!-- /.heading -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
<div class="row">
<!-- Blog Item #1 -->
<div class="col-sm-12 col-md-4 col-lg-4">
<div class="post-item">
<div class="post__img">
<a href="blog-single-post.html">
<img src="assets/images/blog/grid/1.jpg" alt="blog image">
</a>
</div><!-- /.blog-img -->
<div class="post__content">
<div class="post__meta d-flex flex-wrap">
<div class="post__meta-cat">
<a href="#">Consulting</a><a href="#">Sales</a>
</div><!-- /.blog-meta-cat -->
<span class="post__meta-date">May 13, 2020</span>
</div>
<h4 class="post__title"><a href="#">Five Ways to Develop a World Class Sales Operations
Function</a>
</h4>
<p class="post__desc">Outsourcing IT infrastructure is a concept that has been around for a while.
Characterized in terms of technicians and engineers, workstations and servers, the idea of outsourcing
your basic IT needs...
</p>
<a href="blog-single-post.html" class="btn btn__secondary btn__link">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.blog-content -->
</div><!-- /.post-item -->
</div><!-- /.col-lg-4 -->
<!-- Blog Item #2 -->
<div class="col-sm-12 col-md-4 col-lg-4">
<div class="post-item">
<div class="post__img">
<a href="blog-single-post.html">
<img src="assets/images/blog/grid/2.jpg" alt="blog image">
</a>
</div><!-- /.blog-img -->
<div class="post__content">
<div class="post__meta d-flex flex-wrap">
<div class="post__meta-cat">
<a href="#">Tech</a><a href="#">Communications</a>
</div><!-- /.blog-meta-cat -->
<span class="post__meta-date">April 17, 2020</span>
</div>
<h4 class="post__title"><a href="#">Succession Risks That Threaten Your Leadership Strategy</a>
</h4>
<p class="post__desc">Today’s organizations need a quality bench of leaders to drive business
outcomes and satisfy employees, customers and investors who now demand more transparency and
accountability...
</p>
<a href="blog-single-post.html" class="btn btn__secondary btn__link">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.blog-content -->
</div><!-- /.post-item -->
</div><!-- /.col-lg-4 -->
<!-- Blog Item #3 -->
<div class="col-sm-12 col-md-4 col-lg-4">
<div class="post-item">
<div class="post__img">
<a href="blog-single-post.html">
<img src="assets/images/blog/grid/3.jpg" alt="blog image">
</a>
</div><!-- /.blog-img -->
<div class="post__content">
<div class="post__meta d-flex flex-wrap">
<div class="post__meta-cat">
<a href="#">Digital Business</a><a href="#">Cloud</a>
</div><!-- /.blog-meta-cat -->
<span class="post__meta-date">March 20, 2020</span>
</div>
<h4 class="post__title"><a href="#">What Do Employee Engagement Surveys Tell You About
Employee?</a>
</h4>
<p class="post__desc">Outsourcing IT infrastructure is a concept that has been around for a while.
Characterized in terms of technicians and engineers, workstations and servers, the idea of outsourcing
your basic IT needs...
</p>
<a href="blog-single-post.html" class="btn btn__secondary btn__link">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.blog-content -->
</div><!-- /.post-item -->
</div><!-- /.col-lg-4 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.blog Grid -->
<!-- ========================
Footer
========================== -->
<footer class="footer">
<div class="footer-primary">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-3 footer-widget footer-widget-about">
<div class="footer-widget__content">
<img src="assets/images/logo/logo-light.png" alt="logo" class="mb-30">
</div><!-- /.footer-widget__content -->
</div><!-- /.col-xl-3 -->
<div class="col-sm-6 col-md-4 col-lg-2 footer-widget footer-widget-nav">
<h6 class="footer-widget__title">Company</h6>
<div class="footer-widget__content">
<nav>
<ul class="list-unstyled">
<li><a href="about-us.html">About Us</a></li>
<li><a href="leadership-team.html">Meet Our Team</a></li>
<li><a href="blog.html">News & Media</a></li>
<li><a href="projects-grid.html">Case Studies</a></li>
<li><a href="contact-us.html">Contacts</a></li>
<li><a href="#">Investors</a></li>
</ul>
</nav>
</div><!-- /.footer-widget__content -->
</div><!-- /.col-lg-2 -->
<div class="col-sm-6 col-md-4 col-lg-2 footer-widget footer-widget-nav">
<h6 class="footer-widget__title">Solutions</h6>
<div class="footer-widget__content">
<nav>
<ul class="list-unstyled">
<li><a href="#">IT Management</a></li>
<li><a href="#">Cyber Security</a></li>
<li><a href="#">Cloud Computing</a></li>
<li><a href="#">IT Consulting</a></li>
<li><a href="#">Software Dev</a></li>
<li><a href="#">IT Support</a></li>
</ul>
</nav>
</div><!-- /.footer-widget__content -->
</div><!-- /.col-lg-2 -->
<div class="col-sm-6 col-md-4 col-lg-2 footer-widget footer-widget-nav">
<h6 class="footer-widget__title">Resources</h6>
<div class="footer-widget__content">
<nav>
<ul class="list-unstyled">
<li><a href="pricing.html">Pricing and plans</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="faqs.html">Help & FAQ</a></li>
<li><a href="contact-us.html">Contact Us</a></li>
<li><a href="#">Site map</a></li>
</ul>
</nav>
</div><!-- /.footer-widget__content -->
</div><!-- /.col-lg-2 -->
<div class="col-sm-6 col-md-6 col-lg-3 footer-widget">
<h6 class="footer-widget__title">Newsletter</h6>
<div class="footer-widget__content">
<form class="footer-form">
<div class="form-group mb-20">
<input type="text" class="form-control" placeholder="Your Email Address">
<button type="submit" class="footer-form__submit"><i class="icon-arrow-right"></i></button>
</div>
<div class="custom-control custom-checkbox d-flex align-items-center mb-20">
<input type="checkbox" class="custom-control-input" id="terms">
<label class="custom-control-label color-gray" for="terms">I accept the privacy and terms.</label>
</div>
</form>
</div><!-- /.footer-widget__content -->
</div><!-- /.col-lg-3 -->
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.footer-primary -->
<div class="footer-secondary">
<div class="container">
<div class="row align-items-center">
<div class="col-sm-12 col-md-5 col-lg-5">
<div class="footer__copyrights">
<span class="fz-14">© 2020 Smart Data, All Rights Reserved. With Love by</span>
<a class="fz-14 color-primary" href="http://themeforest.net/user/7oroof">7oroof.com</a>
</div>
</div><!-- /.col-lg-6 -->
<div class="col-sm-12 col-md-2 col-lg-2 text-center">
<button id="scrollTopBtn" class="my-2"><i class="icon-arrow-up-2"></i></button>
</div><!-- /.col-lg-2 -->
<div class="col-sm-12 col-md-5 col-lg-5 d-flex flex-wrap justify-content-end align-items-center">
<ul class="social-icons list-unstyled mb-0 mr-30">
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
</ul><!-- /.social-icons -->
<div>
<a href="#" class="btn btn__white btn__download mr-20">
<i class="fab fa-apple"></i>
<span>App Store</span>
</a>
<a href="#" class="btn btn__white btn__download">
<i class="fab fa-google-play"></i>
<span>Google Play</span>
</a>
</div>
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.footer-secondary -->
</footer><!-- /.Footer -->
<div class="login-popup" id="login-popup">
<div class="login-popup-wrapper">
<form class="login-popup__form">
<h3 class="login-popup__title">Login!</h3>
<p class="login-popup__desc">Connect, organize and get things done to keep your IT business safe.</p>
<div class="form-group mb-20">
<i class="icon-mail input-icon"></i>
<input type="text" class="form-control" placeholder="Email">
</div>
<div class="form-group mb-20">
<i class="icon-lock input-icon"></i>
<input type="password" class="form-control" placeholder="********">
</div>
<div class="d-flex align-items-center justify-content-between mb-20">
<div class="custom-control custom-checkbox d-flex align-items-center">
<input type="checkbox" class="custom-control-input" id="customCheck1">
<label class="custom-control-label" for="customCheck1">Remember Me!</label>
</div>
<a href="#" class="fz-14 font-weight-bold color-secondary">Forget Password?</a>
</div>
<button type="submit" class="btn btn__primary btn__block btn__xl">Login</button>
</form>
<div class="d-flex justify-content-center align-items-center mt-20">
<span class="color-white fz-14 font-weight-bold">Don’t Have An Account?</span>
<button id="go-register" class="go-register fz-14 font-weight-bold">
<span>Register Here</span><i class="icon-arrow-right"></i>
</button>
</div>
</div>
</div><!-- /.login-popup -->
<div class="login-popup" id="register-popup">
<div class="login-popup-wrapper">
<form class="login-popup__form">
<h3 class="login-popup__title">Register!</h3>
<p class="login-popup__desc">Connect, organize and get things done to keep your IT business safe.</p>
<div class="form-group mb-20">
<i class="icon-mail input-icon"></i>
<input type="text" class="form-control" placeholder="Email">
</div>
<div class="form-group mb-20">