-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathit-solutions.html
More file actions
1153 lines (1135 loc) · 61.2 KB
/
it-solutions.html
File metadata and controls
1153 lines (1135 loc) · 61.2 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="sk-cube-grid">
<span class="sk-cube"></span>
<span class="sk-cube"></span>
<span class="sk-cube"></span>
<span class="sk-cube"></span>
<span class="sk-cube"></span>
<span class="sk-cube"></span>
<span class="sk-cube"></span>
<span class="sk-cube"></span>
<span class="sk-cube"></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">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 active">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-layout8 bg-overlay bg-overlay-gradient bg-parallax">
<div class="bg-img"><img src="assets/images/page-titles/8.jpg" alt="background"></div>
<div class="container">
<div class="row align-items-center">
<div class="col-sm-12 col-md-12 col-lg-12 col-xl-6">
<h1 class="pagetitle__heading">Keep Business Safe And Ensure High Availability.</h1>
<p class="pagetitle__desc">We are experienced professionals who understand that It services is changing, and
are true partners who care about your success. Our team provides a consultative approach on emerging
technology.</p>
</div><!-- /.col-xl-6 -->
<div class="col-sm-12 col-md-12 col-lg-12 col-xl-6 cta-banner-wrapper d-flex justify-content-end">
<div class="cta-banner text-center">
<div class="slick-carousel" data-slick='{"slidesToShow": 1, "arrows": false, "dots": true}'>
<div class="cta__item">
<div class="cta__icon"><i class="icon-operating-system"></i></div>
<h4 class="cta__title">Software License</h4>
<p class="cta__desc">Build dynamic request templates with associated workflows, and tasks.</p>
</div><!-- /.cta__item -->
<div class="cta__item">
<div class="cta__icon"><i class="icon-dos"></i></div>
<h4 class="cta__title">Privileged Access</h4>
<p class="cta__desc">Extend proven Tech best practices to HR, finance, and other service
delivery areas.</p>
</div><!-- /.cta__item -->
</div><!-- /.slick-carousel -->
</div><!-- /.cta-banner -->
</div><!-- /.col-xl-6 -->
</div><!-- /.row -->
<div class="row">
<div class="col-12">
<nav>
<ol class="breadcrumb justify-content-center mb-0">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">IT Solutions</li>
</ol>
</nav>
</div><!-- /.col-12 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.page-title -->
<!-- ========================
Services Layout 2
=========================== -->
<section class="services-layout2 pt-130 pb-90">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-8 offset-lg-2">
<div class="heading text-center mb-50">
<h2 class="heading__subtitle">Nationwide Service, Local Expertise</h2>
<h3 class="heading__title"> Offering the latest software and IT services to our customers!</h3>
</div><!-- /.heading -->
</div><!-- /.col-lg-8 -->
</div><!-- /.row -->
<div class="row">
<!-- service item #1 -->
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="service-item">
<div class="service__content">
<div class="service__icon">
<i class="icon-server"></i>
</div><!-- /.service__icon -->
<h4 class="service__title">IT Management <br> Services</h4>
<p class="service__desc">IT management service that manages and oversees the IT infrastructure of
any civil organization responsible for network and operations which includes data </p>
<ul class="list-items list-unstyled mb-30">
<li>Business IT alignment</li>
<li> IT financial management</li>
<li> IT service management</li>
</ul>
<a href="it-solutions-single.html" class="btn btn__secondary">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.service-content -->
</div><!-- /.service-item -->
</div><!-- /.col-lg-4 -->
<!-- service item #2 -->
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="service-item">
<div class="service__content">
<div class="service__icon">
<i class="icon-cyberspace"></i>
</div><!-- /.service__icon -->
<h4 class="service__title">Cyber Security<br> Services</h4>
<p class="service__desc">Drive your business and manage risk with a global industry leader in
cybersecurity, cloud, and managed security services and extend your team with leading experts.</p>
<ul class="list-items list-unstyled mb-30">
<li>Internet security</li>
<li>Automotive security</li>
<li>Cyberwarfare</li>
</ul>
<a href="it-solutions-single.html" class="btn btn__secondary">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.service-content -->
</div><!-- /.service-item -->
</div><!-- /.col-lg-4 -->
<!-- service item #3 -->
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="service-item">
<div class="service__content">
<div class="service__icon">
<i class="icon-cloud-computing"></i>
</div><!-- /.service__icon -->
<h4 class="service__title">Cloud Computing<br> Services</h4>
<p class="service__desc">Cloud computing is on-demand availability of computer system resources,
especially data storage computing power, without direct active management by the user.</p>
<ul class="list-items list-unstyled mb-30">
<li>Private cloud services</li>
<li>Public cloud services</li>
<li>Hybrid cloud services</li>
</ul>
<a href="it-solutions-single.html" class="btn btn__secondary">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.service-content -->
</div><!-- /.service-item -->
</div><!-- /.col-lg-4 -->
<!-- service item #4 -->
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="service-item">
<div class="service__content">
<div class="service__icon">
<i class="icon-permission"></i>
</div><!-- /.service__icon -->
<h4 class="service__title">IT Consulting <br> Services</h4>
<p class="service__desc">TTrying to solve all your IT challenges internally can become costly and a
major distraction, Leveraging knowledgeable IT consulting firms like ushelps business. </p>
<ul class="list-items list-unstyled mb-30">
<li>Scoping & planning</li>
<li>Process & system design</li>
<li>Project management support</li>
</ul>
<a href="it-solutions-single.html" class="btn btn__secondary">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.service-content -->
</div><!-- /.service-item -->
</div><!-- /.col-lg-4 -->
<!-- service item #5 -->
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="service-item">
<div class="service__content">
<div class="service__icon">
<i class="icon-code"></i>
</div><!-- /.service__icon -->
<h4 class="service__title">Software Dev<br> Services</h4>
<p class="service__desc">With shorter product cycles, innovation, and mergers contributing to
constant change, you are faced making business decisions every day to advance.</p>
<ul class="list-items list-unstyled mb-30">
<li>Implementation</li>
<li>Testing & documenting</li>
<li>Deployment & maintenance</li>
</ul>
<a href="it-solutions-single.html" class="btn btn__secondary">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.service-content -->
</div><!-- /.service-item -->
</div><!-- /.col-lg-4 -->
<!-- service item #6 -->
<div class="col-sm-12 col-md-6 col-lg-4">
<div class="service-item">
<div class="service__content">
<div class="service__icon">
<i class="icon-internet"></i>
</div><!-- /.service__icon -->
<h4 class="service__title">Backup & Recovery<br> Services</h4>
<p class="service__desc">While you can’t predict unexpected events, we’ll ensure the right
precautions are in place to minimize downtime and keep you moving in the right direction.</p>
<ul class="list-items list-unstyled mb-30">
<li>Compression & Deduplication</li>
<li>Duplication & Encryption</li>
<li>Multiplexing & Refactoring</li>
</ul>
<a href="it-solutions-single.html" class="btn btn__secondary">
<span>Read More</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.service-content -->
</div><!-- /.service-item -->
</div><!-- /.col-lg-4 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.Services Layout 2 -->
<!-- ======================
Features Layout 1
========================= -->
<section class="features-layout1 pb-0">
<div class="features-bg">
<div class="bg-img"><img src="assets/images/backgrounds/14.jpg" alt="background"></div>
</div>
<div class="container">
<div class="row heading heading-light mb-30">
<div class="col-sm-12 col-md-12 col-lg-5">
<div class="divider divider-primary mb-20"></div>
<h3 class="heading__title">Provides consultative approach on emerging technology. </h3>
</div><!-- /col-lg-5 -->
<div class="col-sm-12 col-md-12 col-lg-6 offset-lg-1">
<div class="row">
<div class="col-sm-6">
<p class="heading__desc">As one of the world's largest ITService Providers with over 120 engineers and
IT support staff are ready to help.</p>
<a href="#" class="btn btn__primary btn__primary-style2 btn__icon mt-30 mb-30">
<span>Our Pricing</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.col-sm-6 -->
<div class="col-sm-6">
<p class="heading__desc">SmartData been helping organizations and Providers through the World to manage
their IT with our unique approach to technology management and consultancy solutions. </p>
</div><!-- /.col-sm-6 -->
</div><!-- /.row -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
<div class="row">
<!-- Feature item #1 -->
<div class="col-sm-6 col-md-6 col-lg-3">
<div class="feature-item text-center">
<div class="feature__icon">
<i class="icon-software"></i>
</div>
<h4 class="feature__title">Software Asset</h4>
<p class="feature__desc">All aspects of your software assets including purchasing, deployment &
maintenance.</p>
<a href="#" class="btn__link"><i class="icon-arrow-right icon-outlined"></i></a>
</div><!-- /.feature-item -->
</div><!-- /.col-lg-3 -->
<!-- Feature item #2 -->
<div class="col-sm-6 col-md-6 col-lg-3">
<div class="feature-item text-center">
<div class="feature__icon">
<i class="icon-dos"></i>
</div>
<h4 class="feature__title">Privileged Access</h4>
<p class="feature__desc">Extend proven Tech best practices to HR, finance, and other service delivery
areas.</p>
<a href="#" class="btn__link"><i class="icon-arrow-right icon-outlined"></i></a>
</div><!-- /.feature-item -->
</div><!-- /.col-lg-3 -->
<!-- Feature item #3 -->
<div class="col-sm-6 col-md-6 col-lg-3">
<div class="feature-item text-center">
<div class="feature__icon">
<i class="icon-operating-system"></i>
</div>
<h4 class="feature__title">Software License</h4>
<p class="feature__desc">Build dynamic request templates with associated workflows, and tasks.</p>
<a href="#" class="btn__link"><i class="icon-arrow-right icon-outlined"></i></a>
</div><!-- /.feature-item -->
</div><!-- /.col-lg-3 -->
<!-- Feature item #4 -->
<div class="col-sm-6 col-md-6 col-lg-3">
<div class="feature-item text-center">
<div class="feature__icon">
<i class="icon-machine-learning"></i>
</div>
<h4 class="feature__title">Enterprise Service</h4>
<p class="feature__desc">Our technology allows you to offer the latest software to your possible
customers!</p>
<a href="#" class="btn__link"><i class="icon-arrow-right icon-outlined"></i></a>
</div><!-- /.feature-item -->
</div><!-- /.col-lg-3 -->
</div><!-- /.row -->
<div class="row mt-40">
<div class="col-sm-12 col-md-12 col-lg-6 d-flex flex-column justify-content-between">
<div class="row row-no-gutter read-note">
<div class="col-sm-4">
<div class="rating mb-10">
<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>
</div><!-- /.col-lg-4 -->
<div class="col-sm-8">
<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><!-- /.col-lg-8 -->
</div><!-- /.row -->
<div class="row">
<div class="col-sm-6">
<p class="mb-30 font-weight-bold sub__desc">As one of the world's largest ITService Providers with over
120
engineers and IT support staff are ready to help.</p>
<a href="#" class="btn btn__primary btn__bordered btn__icon mb-30">
<span>Request Demo</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.col-sm-6 -->
<div class="col-sm-6">
<ul class="list-items list-unstyled mb-30">
<li>450,000 client’s interactions </li>
<li>Help challenge critical activities</li>
<li>Simplify & Automate Workflows</li>
<li>Peer perspectives and advice</li>
</ul>
</div><!-- /.col-sm-6 -->
</div><!-- /.row -->
</div><!-- /.col-lg-6 -->
<div class="col-sm-12 col-md-12 col-lg-6">
<img src="assets/images/banners/3.jpg" alt="banner">
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.Features Layout 1 -->
<hr class="mt-120 mb-30">
<!-- ===========================
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 2
=========================== -->
<section class="banner-layout2 pb-0 bg-overlay bg-overlay-primary">
<div class="bg-img"><img src="assets/images/banners/8.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">
<div class="heading heading-light">
<h3 class="heading__title mb-30">Satisfied Users Over The Globe</h3>
</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><!-- /.testimonials -->
<div class="divider divider-light w-100 mt-60 mb-60"></div>
<div class="heading heading-light">
<h3 class="heading__title mb-30">Our Trusted Clients</h3>
</div>
<div class="clients">
<div class="slick-carousel"
data-slick='{"slidesToShow": 4, "arrows": false, "dots": false, "autoplay": true,"autoplaySpeed": 2000, "infinite": true, "responsive": [ {"breakpoint": 992, "settings": {"slidesToShow": 3}}, {"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>
</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 2 -->
<!-- =========================
Awards
=========================== -->
<section class="awards pb-70">
<div class="container">
<div class="row heading mb-60">
<div class="col-12 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>
<div class="col-sm-12 col-md-12 col-lg-5">
<h3 class="heading__title">Trusted by the world's best organizations for 21 years.
</h3>
</div><!-- /col-lg-5 -->
<div class="col-sm-12 col-md-12 col-lg-5 offset-lg-2">
<p class="heading__desc">SmartData been helping organizations and Providers through the World to manage
their IT with our unique approach to technology management and consultancy solutions. </p>
<a href="#" class="btn btn__primary btn__icon mt-20">
<span>Get Started</span>
<i class="icon-arrow-right"></i>
</a>
</div><!-- /.col-lg-5 -->
</div><!-- /.row -->
<div class="row awards-wrapper">
<div class="col-sm-6 col-md-6 col-lg-3">
<!-- fancybox item #1 -->
<div class="fancybox-item">
<div class="fancybox__icon-img">
<img src="assets/images/awards/icons/1.png" alt="icon">
</div><!-- /.fancybox__icon-img -->
<div class="fancybox__content">
<h4 class="fancybox__title">CSS Design Award</h4>
<p class="fancybox__desc">A web design & development award platform for digital folk, UI/UX peeps
and inspiring leaders of the web.
</p>
</div><!-- /.fancybox-content -->
</div><!-- /.fancybox-item -->
</div><!-- /.col-lg-3 -->
<div class="col-sm-6 col-md-6 col-lg-3">
<!-- fancybox item #2 -->
<div class="fancybox-item">
<span class="pinned-ribbon"></span>
<div class="fancybox__icon-img">
<img src="assets/images/awards/icons/2.png" alt="icon">
</div><!-- /.fancybox__icon-img -->
<div class="fancybox__content">
<h4 class="fancybox__title">W3 Design Award</h4>
<p class="fancybox__desc">Awards celebrates digital by honoring outstanding Websites, Web
Marketing, Video, Sites, Apps & Social content.
</p>
</div><!-- /.fancybox-content -->
</div><!-- /.fancybox-item -->
</div><!-- /.col-lg-3 -->
<div class="col-sm-6 col-md-6 col-lg-3">
<!-- fancybox item #3 -->
<div class="fancybox-item">
<div class="fancybox__icon-img">
<img src="assets/images/awards/icons/3.png" alt="icon">
</div><!-- /.fancybox__icon-img -->
<div class="fancybox__content">
<h4 class="fancybox__title">The FWA Award</h4>
<p class="fancybox__desc">Showcasing innovation every day since 2000, our mission is to showcase
cutting edge creativity, regardless
</p>
</div><!-- /.fancybox-content -->
</div><!-- /.fancybox-item -->
</div><!-- /.col-lg-3 -->
<div class="col-sm-6 col-md-6 col-lg-3">
<!-- fancybox item #4 -->
<div class="fancybox-item">
<div class="fancybox__icon-img">
<img src="assets/images/awards/icons/3.png" alt="icon">
</div><!-- /.fancybox__icon-img -->
<div class="fancybox__content">
<h4 class="fancybox__title">WWW Awards</h4>
<p class="fancybox__desc">The awards that recognize the talent and effort of the best web
designers, developers and agencies in the world.
</p>
</div><!-- /.fancybox-content -->
</div><!-- /.fancybox-item -->
</div><!-- /.col-lg-3 -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.Awards -->
<!-- =====================
Clients
======================== -->
<section class="clients border-top pt-50 pb-50">
<div class="container">
<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 -->
<!-- ========================
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>