-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1133 lines (1100 loc) · 63.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>HYR Global Source</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="images/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" rel="stylesheet">
<!-- Google Fonts -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<!-- Font Awesome CSS -->
<link rel="stylesheet" type="text/css" href="css/animate.css">
<!-- animate CSS -->
<link rel="stylesheet" type="text/css" href="css/owl.carousel.css">
<!--- owl carousel Slider Css-->
<link rel="stylesheet" type="text/css" href="css/magnific-popup.css">
<!-- Lightbox CSS-->
<link rel="stylesheet" href="css/style.css">
<!-- Style CSS -->
<link rel="stylesheet" href="css/responsive.css">
<!-- Responsive CSS -->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="home">
<div id="wrapper">
<!--PRELOADER START-->
<div class="preloader">
<div class="preloader-bounce">
<div class="pl-child pl-double-bounce1"></div>
<div class="pl-child pl-double-bounce2"></div>
</div>
<h3>HYR Global Source</h3>
</div><!--/.preloader-->
<!--PRELOADER END-->
<!--HEADER START-->
<header id="header">
<div class="container-fluid">
<div class="navbar">
<div class="logo">
<span><a href="index.html" id="logo"><img src="images/logoHYR.png" alt="Angles"></a></span>
</div><!--/.logo-->
<div class="navigation-row">
<nav id="navigation">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<i class="fa fa-bars"></i>
</button>
<div class="nav-box navbar-collapse collapse">
<ul class="navigation-menu nav navbar-nav navbar-right navbars">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="careers.html">Careers</a></li>
<li><a href="students.html">Students</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul><!--/.navigation-menu-->
</div><!--/.nav-box-->
</nav><!--/#navigation-->
</div><!--/.navigation-row-->
</div><!--/.navbar-->
</div><!--/.container-fluid-->
</header><!--/#header-->
<!--HEADER END-->
<!--BANNER SECTION START-->
<section class="banner-section bg-dark" id="home">
<div class="main-slide owl-carouse" style="height: 100vh">
<div class="item" style="height: 100%">
<div class="slide-img" style="background-image:url(images/home1.jpg);"></div>
<div class="slider-contentbox">
<div class="slider-content">
<div class="container">
<div class="row">
<div class="col-md-8 col-lg-8 text-left">
<h2 class="banner-heading">A SOFTWARE DEVELOPMENT COMPANY SPECIALIZING IN PEOPLE <Span class="green-text">PEOPLE</Span> FIRST</h2>
<h6 style="margin-bottom: 2em; font-size: 17px; margin-top: 3em;">Valued Talent. Esteemed Clients. Top Results.</h6>
<div class="home-icon"><img src="images/[email protected]" alt=""><h6>Transform your business</h6></div>
<div class="home-icon"><img src="images/[email protected]" alt=""><h6>Hire a consultant</h6></div>
<div class="home-icon"><img src="images/[email protected]" alt=""><h6>Become a consultant</h6></div>
</div>
</div><!--/.container-->
</div><!--/.slider-content-->
</div><!--/.slider-contentbox-->
</div><!--/.item-->
</div><!--/.main-slider-->
<a href="#" class="scroll-down"></a>
</section><!--/.banner-section-->
<!--BANNER SECTION END-->
<p id="main">
<!--WHO WE ARE START-->
<div id="about-section" class="section">
<div class="container text-center">
<div class="row">
<div class="column col-lg-8 offset-lg-2">
<h2 class="section-title inner-header">Who We Are<span></span></h2>
<!-- <h4>We Are Corporate Web Agency</h4> -->
<p class="inner-paragraph">HYR Global Source, Inc. is a software development solutions company specializing in
project-based services. We offer custom software solutions, pre-built package
deployments and staff augmentation.</p>
</div><!--/.col-->
</div><!--/.row-->
</div><!--/.container-->
</div><!--/#about-section-->
<!--WHO WE ARE END-->
<!--WHY CHOOSE US START-->
<div id="why-choose-section" class="section no-padding bg-grey">
<div class="row no-margin">
<div class="column col-lg-6 no-padding">
<div class="why-choose-contentbox animated-row">
<h2 class="inner-header">Why Choose <span class="green-text">Us</span></span></h2>
<p class="inner-paragraph">Founded in 2013, HYR Global Source has its roots in the rapidly advancing era of Business Intelligence (BI) and software development.</p>
<p class="inner-paragraph">Our professional consultants have amassed years of experience serving clients across Fortune 1000 and small to medium businesses.</p>
<p class="inner-paragraph">Our leadership fosters the next generation of young professionals with project-driven training. In a rapidly developing industry, this is the only way to gain market-applicable experience.</p>
<p class="inner-paragraph">We implement efficient management & delivery processes allowing for competitive pricing.</p>
<p class="inner-paragraph">We offer on-shore, near-shore and offshore resources for project tasks and remote support.</p>
<p class="inner-paragraph">Our highly skilled developers have collaborated closely with clients from a wide range of sectors.</p>
</div><!--/.why-choose-contentbox-->
</div><!--/.col-->
<div class="column col-lg-6 no-padding">
<div class="video-col">
<img class="back-image" src="./images/Home3.jpg"></img>
</div><!--/.video-col-->
</div><!--/.col-->
</div><!--/.row-->
</div><!--/.why-choose-section-->
<!--WHY CHOOSE US START-->
<!--WHAT WE DO START-->
<div id="services-section" class="section">
<div class="container text-center">
<div class="row">
<div class="column col-lg-8 offset-lg-2 title-col">
<h2 class="section-title">What We Do<span></span></h2>
</div><!--/.col-->
</div><!--/.row-->
<div class="services-list animated-row">
<div class="row">
<div class="column col-md-6 col-lg-4 animate" data-animate="fadeInUp" data-toggle="modal" data-target="#fullStackModal">
<div class="service-col">
<img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;">
<h3>Full Stack Development</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4 animate" data-animate="fadeInUp" data-toggle="modal" data-target="#digitalTranformationModal">
<div class="service-col">
<img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;">
<h3>Digital Transformation</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4 animate" data-animate="fadeInUp" data-toggle="modal" data-target="#cloudConsultingModal">
<div class="service-col">
<img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;">
<h3>Cloud Consulting</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4 animate" data-animate="fadeInUp" data-toggle="modal" data-target="#mobileDevelopmentModal">
<div class="service-col">
<img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;">
<h3>Mobile Development</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4 animate" data-animate="fadeInUp" data-toggle="modal" data-target="#oracleErpModal">
<div class="service-col">
<img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;">
<h3>Oracle ERP Consulting</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4 animate" data-animate="fadeInUp" data-toggle="modal" data-target="#sapConsultingModal">
<div class="service-col">
<img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;">
<h3>SAP Consulting</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4 animate" data-animate="fadeInUp" data-toggle="modal" data-target="#workDayConsultingModal">
<div class="service-col">
<img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;">
<h3>Work Day Consulting</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4 animate" data-animate="fadeInUp" data-toggle="modal" data-target="#salesForceModal">
<div class="service-col">
<img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;">
<h3>Sales Force</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4 animate" data-animate="fadeInUp" data-toggle="modal" data-target="#dbaModal">
<div class="service-col">
<img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;">
<h3>DBA On Demand</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4 animate" data-animate="fadeInUp" data-toggle="modal" data-target="#etlModal">
<div class="service-col">
<img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;">
<h3>ETL Informatica/Data Stage</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4 animate" data-animate="fadeInUp" data-toggle="modal" data-target="#biModal">
<div class="service-col">
<img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;">
<h3>BI Reporting</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4 animate" data-animate="fadeInUp" data-toggle="modal" data-target="#qaModal">
<div class="service-col">
<img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;">
<h3>QA Automation</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div><!--/.service-col-->
</div><!--/.col-->
</div><!--/.row-->
</div><!--/.services-list-->
</div><!--/.container-->
</div><!--/#services-section-->
<!--WHAT WE DO END-->
<!--COUNTERS START-->
<div id="counters-section" class="section bg-dark">
<div class="container text-center">
<div class="row">
<div class="column col-md-6">
<div class="counter-box">
<span class="count-number">
240
</span><!--/.count-number-->
Projects
</div><!--/.counter-box-->
</div><!--/.col-->
<div class="column col-md-6">
<div class="counter-box">
<span class="count-number">
75
</span><!--/.count-number-->
Clients
</div><!--/.counter-box-->
</div><!--/.col-->
</div><!--/.row-->
</div><!--/.container-->
</div><!--/#counters-section-->
<!--COUNTERS END-->
<!-- Industries Served Start -->
<div id="team-section" class="industries-served-section">
<div class="container text-center">
<div class="row">
<div class="column col-lg-8 offset-lg-2 title-col">
<h2 class="section-title">Industries Served<span></span></h2>
</div><!--/.col-->
</div><!--/.row-->
<div class="row">
<div class="column col-md-6 col-lg-4">
<div class="industries-served-col">
<img src="images/[email protected]" alt="Full Stack Development" height="80" width="80" style="margin-bottom:25px;">
<h6>All Major ERP implementation partners and IT staffing companies</h6>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4">
<div class="industries-served-col" style="border: 0px">
<img src="images/[email protected]" alt="Full Stack Development" height="80" width="80" style="margin-bottom:25px;">
<h6>Financial & Banking Services</h6>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4">
<div class="industries-served-col" style="border: 0px">
<img src="images/[email protected]" alt="Full Stack Development" height="80" width="80" style="margin-bottom:25px;">
<h6>Government</h6>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4">
<div class="industries-served-col" style="border: 0px">
<img src="images/[email protected]" alt="Full Stack Development" height="80" width="80" style="margin-bottom:25px;">
<h6>Automobile</h6>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4">
<div class="industries-served-col" style="border: 0px">
<img src="images/[email protected]" alt="Full Stack Development" height="80" width="80" style="margin-bottom:25px;">
<h6>Retail & Distribution</h6>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4">
<div class="industries-served-col" style="border: 0px">
<img src="images/[email protected]" alt="Full Stack Development" height="80" width="80" style="margin-bottom:25px;">
<h6>Manufacturing</h6>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4">
<div class="industries-served-col" style="border: 0px">
<img src="images/[email protected]" alt="Full Stack Development" height="80" width="80" style="margin-bottom:25px;">
<h6>Insurance</h6>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4">
<div class="industries-served-col" style="border: 0px">
<img src="images/[email protected]" alt="Full Stack Development" height="80" width="80" style="margin-bottom:25px;">
<h6>Health Care & Pharmaceutical</h6>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4">
<div class="industries-served-col" style="border: 0px">
<img src="images/[email protected]" alt="Full Stack Development" height="80" width="80" style="margin-bottom:25px;">
<h6>Utility & Energy</h6>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4">
<div class="industries-served-col" style="border: 0px">
<img src="images/[email protected]" alt="Full Stack Development" height="80" width="80" style="margin-bottom:25px;">
<h6>Communication</h6>
</div><!--/.service-col-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4">
<div class="industries-served-col" style="border: 0px">
<img src="images/[email protected]" alt="Full Stack Development" height="80" width="80" style="margin-bottom:25px;">
<h6>Service & Technology</h6>
</div><!--/.service-col-->
</div><!--/.col-->
</div><!--/.row-->
</div>
</div>
<!-- Industries Served End -->
<!--LATEST PROJECTS START-->
<!--LATEST PROJECTS END-->
<!--MEET OUR TEAM START-->
<!--MEET OUR TEAM END-->
<!--TESTIMONIALS START-->
<div id="testimonials-section" class="section bg-dark">
<div class="container text-center">
<div class="row">
<div class="column col-lg-8 offset-lg-2 title-col">
<h2 class="section-title">What Our Clients Say<span></span></h2>
</div><!--/.col-->
</div><!--/.row-->
<div class="testimonials-row text-white">
<div class="testimonials-slider owl-carousel">
<div class="item">
<div class="testimonial-box">
<figure class="client-image img-round">
<img src="http://via.placeholder.com/160x160" alt="">
</figure><!--/.client-image-->
<span class="quote-icon"><i class="fa fa-quote-right" aria-hidden="true"></i></span>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.</p>
<h4>Patsy Thompson</h4>
<span class="client-designation">CEO, Lipsum</span>
</div><!--/.testimonial-box-->
</div><!--/.item-->
<div class="item">
<div class="testimonial-box">
<figure class="client-image img-round">
<img src="http://via.placeholder.com/160x160" alt="">
</figure><!--/.client-image-->
<span class="quote-icon"><i class="fa fa-quote-right" aria-hidden="true"></i></span>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.</p>
<h4>Patsy Thompson</h4>
<span class="client-designation">CEO, Lipsum</span>
</div><!--/.testimonial-box-->
</div><!--/.item-->
<div class="item">
<div class="testimonial-box">
<figure class="client-image img-round">
<img src="http://via.placeholder.com/160x160" alt="">
</figure><!--/.client-image-->
<span class="quote-icon"><i class="fa fa-quote-right" aria-hidden="true"></i></span>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour.</p>
<h4>Patsy Thompson</h4>
<span class="client-designation">CEO, Lipsum</span>
</div><!--/.testimonial-box-->
</div><!--/.item-->
</div><!--/.team-slider-->
</div><!--/.team-row-->
</div><!--/.container-->
</div><!--/#testimonials-section-->
<!--TESTIMONIALS END-->
<!--LATEST BLOG START-->
<div id="blog-section" class="section">
<div class="container text-center">
<div class="row">
<div class="column col-lg-8 offset-lg-2 title-col">
<h2 class="section-title">Latest Blog Posts<span></span></h2>
</div><!--/.col-->
</div><!--/.row-->
<div class="blog-posts animated-row">
<div class="row">
<div class="column col-lg-4 animate" data-animate="fadeInUp">
<div class="blog-box">
<div class="blog-img-box">
<figure><a href="#"><img src="http://via.placeholder.com/370x260" alt=""></a></figure>
<span class="blog-category">Business</span><!--/.blog-category-->
</div><!--/.blog-img-box-->
<div class="blog-info">
<div class="blog-details">
<span class="posted-date hr-primary">Mar 20, 2017</span><!--/.posted-date-->
<h3 class="post-title"><a href="#">Presentation in Office</a></h3>
<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested.</p>
</div><!--/.blog-details-->
<div class="blog-bottom-row">
<span class="posted-by"><i class="fa fa-user" aria-hidden="true"></i> By <a href="#">Glenn Mexwell</a></span><!--/.posted-by-->
<span class="comments"><i class="fa fa-comments-o" aria-hidden="true"></i> 08</span><!--/.comments-->
</div><!--/.blog-bottom-row-->
</div><!--/.blog-info-->
</div><!--/.blog-box-->
</div><!--/.col-->
<div class="column col-lg-4 animate" data-animate="fadeInUp">
<div class="blog-box">
<div class="blog-img-box">
<figure><a href="#"><img src="http://via.placeholder.com/370x260" alt=""></a></figure>
<span class="blog-category">Business</span><!--/.blog-category-->
</div><!--/.blog-img-box-->
<div class="blog-info">
<div class="blog-details">
<span class="posted-date hr-primary">Mar 20, 2017</span><!--/.posted-date-->
<h3 class="post-title"><a href="#">Presentation in Office</a></h3>
<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested.</p>
</div><!--/.blog-details-->
<div class="blog-bottom-row">
<span class="posted-by"><i class="fa fa-user" aria-hidden="true"></i> By <a href="#">Glenn Mexwell</a></span><!--/.posted-by-->
<span class="comments"><i class="fa fa-comments-o" aria-hidden="true"></i> 08</span><!--/.comments-->
</div><!--/.blog-bottom-row-->
</div><!--/.blog-info-->
</div><!--/.blog-box-->
</div><!--/.col-->
<div class="column col-lg-4 animate" data-animate="fadeInUp">
<div class="blog-box">
<div class="blog-img-box">
<figure><a href="#"><img src="http://via.placeholder.com/370x260" alt=""></a></figure>
<span class="blog-category">Business</span><!--/.blog-category-->
</div><!--/.blog-img-box-->
<div class="blog-info">
<div class="blog-details">
<span class="posted-date hr-primary">Mar 20, 2017</span><!--/.posted-date-->
<h3 class="post-title"><a href="#">Presentation in Office</a></h3>
<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested.</p>
</div><!--/.blog-details-->
<div class="blog-bottom-row">
<span class="posted-by"><i class="fa fa-user" aria-hidden="true"></i> By <a href="#">Glenn Mexwell</a></span><!--/.posted-by-->
<span class="comments"><i class="fa fa-comments-o" aria-hidden="true"></i> 08</span><!--/.comments-->
</div><!--/.blog-bottom-row-->
</div><!--/.blog-info-->
</div><!--/.blog-box-->
</div><!--/.col-->
</div><!--/.row-->
<a href="blog.html" class="btn">View All</a>
</div><!--/.blog-posts-->
</div><!--/.container-->
</div><!--/#blog-section-->
<!--LATEST BLOG END-->
<!--OUR PARTNERS START-->
<div id="partners-section" class="section">
<div class="container">
<div class="row">
<div class="column col-md-3 mt-75">
<h3>Our Partners</h3>
</div><!--/.col-->
<div class="column col-md-9">
<div class="partners-slider owl-carousel">
<figure><img src="images/01.png"></figure>
<figure><img src="images/02.jpg" alt=""></figure>
<figure><img src="images/03.png" alt=""></figure>
<figure><img src="images/04.png" alt=""></figure>
<figure><img src="images/05.png" alt=""></figure>
<figure><img src="images/06.png" alt=""></figure>
<figure><img src="images/07.png" alt=""></figure>
<figure><img src="images/08.png" alt=""></figure>
<figure><img src="images/09.png" alt=""></figure>
<figure><img src="images/10.png" alt=""></figure>
<figure><img src="images/11.png" alt=""></figure>
<figure><img src="images/12.png" alt=""></figure>
<figure><img src="images/13.png" alt=""></figure>
<figure><img src="images/14.png" alt=""></figure>
<figure><img src="images/15.png" alt=""></figure>
<figure><img src="images/16.png" alt=""></figure>
</div><!--/.partner-slider-->
</div><!--/.col-->
</div><!--/.row-->
</div><!--/.container-->
</div><!--/#partners-section-->
<!--OUR PARTNERS END-->
<!--FOOTER START-->
<footer id="foote1" class="bg-grey">
<div class="container">
<div class="row footer-cols">
<div class="column col-md-6 col-lg-5">
<div class="widget">
<h4 class="hr-primary">Navigation</h4>
<div class="row">
<div class="column col-md-4 col-lg-4">
<ul class="custom-list">
<li><a href="#">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
</ul><!--/.nav-list-->
</div><!--/.col-->
<div class="column col-md-4 col-lg-4">
<ul class="custom-list">
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul><!--/.nav-list-->
</div><!--/.col-->
<div class="column col-md-4 col-lg-4">
<ul class="custom-list">
<li><a href="careers.html">Careers</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms</a></li>
</ul><!--/.nav-list-->
</div><!--/.col-->
</div><!--/.row-->
</div><!--/.widget-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-3">
<div class="widget">
<h4 class="hr-primary">Contact Information</h4>
<div class="address-col getintouch1">
<span>S-202, Lipsum street, <br>California, USA</span>
</div><!--/.getintouch-->
<div class="phone-col getintouch1">
<span>+02 000 000 0202</span>
</div><!--/.getintouch-->
<div class="email-col getintouch1">
<span><a href="#">[email protected]</a></span>
</div><!--/.getintouch-->
</div><!--/.widget-->
</div><!--/.col-->
<div class="column col-md-6 col-lg-4">
<div class="widget">
<h4 class="hr-primary">Newsletter</h4>
<div class="footer-newsletter">
<form action="#">
<div class="newsletter-subscribe">
<input class="form-control" required type="email">
</div><!--/.newsletter-subscribe-->
</form>
</div><!--/.footer-newsletter-->
<div class="social-block" style="float: right">
<ul class="social-links">
<li class="fb"><a href="#" target="_blank" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li class="tw"><a href="#" target="_blank" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li class="in"><a href="#" target="_blank" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
</ul><!--/.social-links-->
</div><!--/.social-block-->
</div><!--/.widget-->
</div><!--/.col-->
</div><!--/.row-->
<div class="copyright">
© Copyrights 2013 HYR Global Source. All Rights Reserved
</div><!--/.copyright-->
</div><!--/.container-->
</footer><!--#/footer-->
<!--FOOTER END-->
<div id="fullStackModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header custom-modal-header">
<button type="button" class="close close-position" data-dismiss="modal" aria-hidden="true">× </button>
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<div class=row>
<div class="col-md-3 col-lg-3"><img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;"></div>
<div class="col-md-9 col-lg-9">
<div>Why</div>
<h6>Full Stack Development</h6>
<div>with <span style="font-weight:600"> HYR Global Source</span></div>
</div>
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<p>Our experienced software engineers have extensive end-to-end knowledge that can see your project through from concept to finished product. HYR Global Source Full Stack developers can navigate roles between UX, database, and UI to bring your project to its quality-tested fruition.</p>
<p>We are well versed in a variety of development solutions including the popular MEAN stack, consisting of Mongo DB, Express, Angular and Node.js, as well as MERN Stack, consisting of Mongo DB, Express, React, Redux and Node.js.</p>
</div>
</div>
<div class="row justify-content-md-center justify-content-lg-center bg-grey" style="margin-top: 30px">
<div class="col-md-11 col-lg-11" style="padding: 20px 0">
<h6>Front-end technologies and tools we use include:</h6>
<ul>
<li>React</li>
<li>Angular JS</li>
<li>Vue.js</li>
<li>Bootstrap</li>
<li>Ember.js</li>
</ul>
<h6>Front-end technologies and tools we use include:</h6>
<ul>
<li>JavaScript</li>
<li>Node.js</li>
<li>Ruby on Rails</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="digitalTranformationModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header custom-modal-header">
<button type="button" class="close close-position" data-dismiss="modal" aria-hidden="true">× </button>
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<div class=row>
<div class="col-md-3 col-lg-3"><img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;"></div>
<div class="col-md-9 col-lg-9">
<h6>Digital Transformation</h6>
<p>HYR Global Source Can Help You Adopt the Right Digital Processes to Achieve Your Strategic Business Goals.</p>
</div>
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<p>From vision to execution, our consultants can help you determine the platforms, tools and practices you need in place to become a successful digital business. As a people-first company, we recognize that digital transformation is not only about the technology, but about how your organization’s culture and teams work around this workplace conversion. Our experienced consultants are ready to augment your staff to assist in meeting the challenges of your digital transformation.</p>
</div>
</div>
<div class="row justify-content-md-center justify-content-lg-center bg-grey" style="margin-top: 30px">
<div class="col-md-11 col-lg-11" style="padding: 20px 0">
<h6>Our developers are skilled in the areas of:</h6>
<ul>
<li>Project planning and management</li>
<li>Business Intelligence readiness assessments</li>
<li>Solution Architecture and Data Modeling/Architect services</li>
<li>Tool selections and recommendations (build versus buy)</li>
<li>Team integration through implementation and beyond</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="cloudConsultingModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header custom-modal-header">
<button type="button" class="close close-position" data-dismiss="modal" aria-hidden="true">× </button>
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<div class=row>
<div class="col-md-3 col-lg-3"><img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;"></div>
<div class="col-md-9 col-lg-9">
<h6>Find Your Full Potential in the Cloud with HYR Global Source Consulting</h6>
</div>
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<p>Our expert consultants empower companies to successfully execute leaps and journeys into software and technology solutions, and our service is no different when comes to cloud migration and management. </p>
<p>Whether it’s a large-scale migration or a non-standard project, it’s likely that your team could benefit from a specialized consultant who can help streamline your strategy and implementation, and assist with smoothing out processes and enabling management—maximizing your budget and minimizing the stress and chaos experienced by your IT team and departments.</p>
</div>
</div>
<div class="row justify-content-md-center justify-content-lg-center bg-grey" style="margin-top: 30px">
<div class="col-md-11 col-lg-11" style="padding: 20px 0">
<h6>HYR Global Source delivers top cloud consultants that have the expertise, tools and experience to assist with your company’s cloud solutions in the following areas:</h6>
<ul>
<li>Cloud Migration</li>
<li>Cloud Enablement</li>
<li>Management and Optimization</li>
<li>Managed Security</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="mobileDevelopmentModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header custom-modal-header">
<button type="button" class="close close-position" data-dismiss="modal" aria-hidden="true">× </button>
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<div class=row>
<div class="col-md-3 col-lg-3"><img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;"></div>
<div class="col-md-9 col-lg-9">
<h6>Your Mobile Development Solutions in Our Hands Puts</h6>
<h6>Your Business in Customers’ Hands.</h6>
</div>
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<h6>How Mobile Development can boost your business</h6>
<ul>
<li>Create a direct channel for reaching your customers.</li>
<li>Promotes brand awareness.</li>
<li>Increase sales.</li>
<li>Learn about your customers.</li>
<li>Get an edge over competitors who haven’t gone mobile.</li>
<li>Always be accessible.</li>
</ul>
</div>
</div>
<div class="row justify-content-md-center justify-content-lg-center bg-grey" style="margin-top: 30px">
<div class="col-md-11 col-lg-11" style="padding: 20px 0">
<h6>What Mobile Development with HYR Global Source brings to your business</h6>
<p>With over half of all web traffic generated on mobile devices, we understand that you want your valued customers to have convenient access to your business. And we’ve got the Mobile Development experience and resources to build and implement the software you require with the design and feel you want. Our engineers can:</p>
<ul>
<li>Integrate your mobile with your existing web-based application.</li>
<li>Quickly and efficiently build your apps for iOS and Android platforms.</li>
<li>Design a stand-alone mobile app.</li>
<li>Implement custom software to suit your needs.</li>
<li>Augment your in-house team if you’ve already begun mobile development.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="oracleErpModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header custom-modal-header">
<button type="button" class="close close-position" data-dismiss="modal" aria-hidden="true">× </button>
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<div class=row>
<div class="col-md-3 col-lg-3"><img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;"></div>
<div class="col-md-9 col-lg-9">
<h6>Oracle ERP Consulting</h6>
<p>Be Confident in Your Data with HYR Global Source ERP Consulting</p>
</div>
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<p>As Oracle has continued to develop a sophisticated portfolio of software applications to address the increasing needs of modern businesses, our HYR Global Source consultants have continued to update and refine their skill sets to ensure expertise relevant to your business needs.</p>
<p>Over the years, our professionals have developed extensive proficiency in Oracle ERP consulting. Our consultants are versed in the intricacies and optimization of Oracle Fusion Applications, Oracle E-Business Suite, and PeopleSoft Enterprise implementations. With cost-effective Oracle ERP Cloud solutions, we can help your small to medium business leverage the same ERP heft that larger enterprises do.</p>
</div>
</div>
<div class="row justify-content-md-center justify-content-lg-center bg-grey" style="margin-top: 30px">
<div class="col-md-11 col-lg-11" style="padding: 20px 0">
<h6>HYR Global Source provides experts that quickly and efficiently integrate with your IT team to guide them through:</h6>
<ul>
<li>Strategic Planning</li>
<li>Procedural Review</li>
<li>Data Collection and Clean-Up</li>
<li>Training and QA</li>
<li>Go Live Assessment</li>
</ul>
</div>
</div>
<div class="row justify-content-md-center justify-content-lg-center" style="margin-top: 30px">
<div class="col-md-11 col-lg-11">
<h6>Six Ways Oracle ERP Implementation with HYR Global Can Benefit Your Business</h6>
<ol>
<li>Improves business insight with real-time reports.</li>
<li>Lowers operational costs through streamlined processes.</li>
<li>Enhances collaboration between users sharing data.</li>
<li>Improves efficiency through a common user experience.</li>
<li>Creates a consistent business infrastructure.</li>
<li>Reduces risks with improved data integrity.</li>
</ol>
<p>Contact us today to begin discussing your ERP solutions with one of our experienced consultants.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="sapConsultingModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header custom-modal-header">
<button type="button" class="close close-position" data-dismiss="modal" aria-hidden="true">× </button>
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<div class=row>
<div class="col-md-3 col-lg-3"><img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;"></div>
<div class="col-md-9 col-lg-9">
<h6>Leverage Our SAP Consultants for Your Next SAP Project</h6>
</div>
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<p>With HYR Global Source your business has access to our top SAP consultants who can provide solutions and services tailored to your business needs. From our experts’ comprehensive assessment capabilities to their extensive knowledge of SAP technology, we can deliver the expertise your IT team requires.</p>
</div>
</div>
<div class="row justify-content-md-center justify-content-lg-center bg-grey" style="margin-top: 30px">
<div class="col-md-11 col-lg-11" style="padding: 20px 0">
<h6>For your SAP projects, HYR Global Source consultants can implement a wide range of SAP software, including:</h6>
<ul>
<li>SAP S/4HANA</li>
<li>SAP Business ByDesign</li>
<li>SAP Business One</li>
<li>SAP SuccessFactors.</li>
</ul>
</div>
</div>
<div class="row justify-content-md-center justify-content-lg-center" style="margin-top: 30px">
<div class="col-md-11 col-lg-11">
<p>SAP consulting services are a cost-effective way to augment your team’s SAP Application Management and Enhancement requirements. Hire our experienced professionals to oversee day-to-day technical support needed to optimize your SAP solutions.</p>
<p>HRY Global Source delivers consultants with hard-to-find skillsets, a people-first mentality, and the professionalism to integrate quickly and smoothly with your IT team in order to streamline implementation and management of SAP solutions.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="workDayConsultingModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header custom-modal-header">
<button type="button" class="close close-position" data-dismiss="modal" aria-hidden="true">× </button>
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<div class=row>
<div class="col-md-3 col-lg-3"><img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;"></div>
<div class="col-md-9 col-lg-9">
<h6>Workday Consulting</h6>
<p>Experienced Workday Software Solutions Professionals</p>
</div>
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<p>HYR Global Source’s experienced consultants are adept at assessing your project needs and implementing the Workday software product line. Whether you’re looking to gain insights into your business operations and financials, align your processes, or better manage human capital, our software specialists have the expertise to make Workday applications work for you and give your business a cost-effective edge over even larger competitors.</p>
</div>
</div>
<div class="row justify-content-md-center justify-content-lg-center bg-grey" style="margin-top: 30px">
<div class="col-md-11 col-lg-11" style="padding: 20px 0">
<h6>HYR Global Source Offers Expert Consulting in the Following Workday Solutions: </h6>
<ul>
<li><p style="font-weight:600; display:inline">Workday Project and Work Management—</p><p style="display: inline">Allows your company to efficiently plan, staff, track, manage and analyze what is needed to meet your business goals. Our expert consultants can seamlessly unify with Workday Human Capital Management and Workday Financial Management applications.</p></li>
<li><p style="font-weight:600; display:inline">Workday Human Capital Management—</p><p style="display: inline">Streamline your HR and Talent Management into a single system-of-record.</p></li>
<li><p style="font-weight:600; display:inline">Workday Financials Management—</p><p style="display: inline">An ERP financials solution that offers a wide variety of finance and accounting capabilities, real-time business insights, and fully auditable process management. Workday ERP has functionality uniquely designed for many industries in which our experts have experience consulting, including: financial services, professional services, healthcare, hospitality, business services, software and Internet services, education, government, and non-profit sectors.</p></li>
</ul>
<p>Workday’s seamless cloud ERP system enables small to medium businesses to gain a competitive edge. Contact HYR Global Source today for an expert Workday consultant.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="salesForceModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header custom-modal-header">
<button type="button" class="close close-position" data-dismiss="modal" aria-hidden="true">× </button>
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<div class=row>
<div class="col-md-3 col-lg-3"><img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;"></div>
<div class="col-md-9 col-lg-9">
<h6>Sales Force</h6>
<p>HYR Global Source for Top Salesforce Developers</p>
</div>
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<p>Our consultants have the experience and the expertise to make Salesforce an integral part of your business. We can augment your team with project inception, project management, implementation, systems integration, test automation and execution, data migration, and reporting/analytics and deployment. Our Salesforce solutions can be quickly and efficiently expedited to help maximize your project budget.</p>
<p>As a prominent CRM solution on the market, Salesforce has a wide array of options in terms of features, existing solution components, integration, and development efficiency. Our consultants are versed in a variety of scenarios in which Salesforce can fit your business. Cloud-based, integrated server, fully custom and customizable pre-built applications are available, and our highly qualified Salesforce consultants are available to guide you in assessing your requirements.</p>
<p>HYR Global Source provides services and resources across a wide array of industries and can implement Salesforce Cloud Services for Marketing, Service, Community, Commerce, Analytics, and App platforms.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="dbaModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header custom-modal-header">
<button type="button" class="close close-position" data-dismiss="modal" aria-hidden="true">× </button>
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<div class=row>
<div class="col-md-3 col-lg-3"><img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;"></div>
<div class="col-md-9 col-lg-9">
<h6>DBA On Demand</h6>
<p>Trusted Monitoring and Support for Your Database and Oracle EBS Technology Stack</p>
</div>
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<p>Why trust HYR Global Source with your DBA on Demand service? Because we provide experienced senior Oracle DBAs. We offer full support of RAC, Data Guard, Disaster Recovery and other advanced Oracle environments. We will customize our service to fit your unique DBA needs. If your DBA team needs occasional help, supplemental service, or fully managed service, our DBA on Demand professionals can accommodate you for your most cost-effective approach to support and monitoring.</p>
</div>
</div>
<div class="row justify-content-md-center justify-content-lg-center bg-grey" style="margin-top: 30px">
<div class="col-md-11 col-lg-11" style="padding: 20px 0">
<h6>Benefits of DBA on Demand with HYR Global Source:</h6>
<ul>
<li>24/7 database and Oracle EBS technology stack monitoring</li>
<li>Proactive database administration</li>
<li>Quick response time for emergencies</li>
<li>Active issue management</li>
<li>Backup and recovery monitoring</li>
<li>Installations, patches, minor point release upgrades</li>
<li>24/7 on-call, live support</li>
<li>Custom support for Oracle E-Business Suite</li>
</ul>
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="etlModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header custom-modal-header">
<button type="button" class="close close-position" data-dismiss="modal" aria-hidden="true">× </button>
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<div class=row>
<div class="col-md-3 col-lg-3"><img src="images/[email protected]" alt="Full Stack Development" height="60" width="60" style="margin-bottom:25px;"></div>
<div class="col-md-9 col-lg-9">
<h6>ETL Informatica/Data Stage</h6>
<p>Complementing Your Business Intelligence with Custom Data Solutions</p>
</div>
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row justify-content-md-center justify-content-lg-center">
<div class="col-md-11 col-lg-11">
<p>HYR Global Source is a trusted ETL developer resource. Extracting, transforming, cleaning up and loading your data into your custom data warehouse is a complex undertaking. ETL tools offer a cost-effective way to accomplish data Integration. Our consultants are versed in both Informatica and DataStage, as well as other ETL architecture.</p>
</div>
</div>
<div class="row justify-content-md-center justify-content-lg-center bg-grey" style="margin-top: 30px">
<div class="col-md-11 col-lg-11" style="padding: 20px 0">
<h6>HYR Global Source Data Integrations Services Include:</h6>
<ul>
<li><p style="font-weight:600; display:inline">Determining Your Data Storage Needs—</p><p style="display: inline">Our developers will analyze your current data situation and figure out your company’s exact storage needs.</p></li>
<li><p style="font-weight:600; display:inline">Designing and Creating Your Data Warehouse—</p><p style="display: inline">HYR Global Source consultants are highly skilled at customizing data warehousing systems based on specific business needs. They will work with your IT team to build the data warehouse you require.</p></li>