This repository was archived by the owner on Jun 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1023 lines (964 loc) · 63 KB
/
index.html
File metadata and controls
executable file
·1023 lines (964 loc) · 63 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>
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<!-- Title -->
<title>Case Consulting, Inc.</title>
<!-- Required Meta Tags Always Come First -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Computer Consulting Services">
<meta name="author" content="Case Consulting, Inc.">
<!-- Favicon -->
<link rel="shortcut icon" href="./assets/custom/img/case/navLogo.png">
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C700%2C800%7CPlayfair+Display%7CRoboto%7CRaleway%7CSpectral%7CRubik" type='text/css'>
<!-- CSS Global Compulsory -->
<link rel="stylesheet" href="./assets/vendor/bootstrap/bootstrap.min.css">
<!--<link rel="stylesheet"
href="./assets/vendor/icon-line/css/simple-line-icons.css">-->
<link rel="stylesheet" href="./assets/vendor/icon-awesome/css/fontawesome-all.min.css">
<link rel="stylesheet" href="./assets/vendor/icon-hs/style.css">
<!-- CSS Implementing Plugins -->
<link rel="stylesheet" href="./assets/vendor/hamburgers/hamburgers.min.css">
<link rel="stylesheet" href="./assets/vendor/slick-carousel/slick/slick.css">
<!-- Revolution Slider -->
<!-- <link rel="stylesheet" href="./assets/vendor/revolution-slider/revolution/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css"> -->
<link rel="stylesheet" href="./assets/vendor/revolution-slider/revolution/css/settings.css">
<link rel="stylesheet" href="./assets/vendor/revolution-slider/revolution/css/layers.css">
<link rel="stylesheet" href="./assets/vendor/revolution-slider/revolution/css/navigation.css">
<!-- CSS Template -->
<link rel="stylesheet" href="assets/vendor/unity/styles.op-lawyer.css">
<!-- CSS Customization -->
<link rel="stylesheet" href="./assets/custom/css/custom.css">
</head>
<body>
<main class="g-pt-65 g-pt-90--md">
<!-- Header -->
<header id="js-header" class="u-header u-header--sticky-top u-header--change-appearance g-z-index-9999" data-header-fix-moment="100">
<div class="u-header__section g-bg-white g-transition-0_3 g-py-6 g-py-18--md" data-header-fix-moment-exclude="g-py-18--md" data-header-fix-moment-classes="u-shadow-v18 g-py-13--md">
<nav class="navbar navbar-expand-lg g-py-0">
<div class="container-fluid justify-content-between g-pos-rel">
<!-- Logo -->
<a href="#body" class="js-go-to navbar-brand u-header__logo" data-type="static">
<img class="u-header__logo-img u-header__logo-img--main g-width-110" src="./assets/custom/img/case/logo-banner.gif" alt="Case Consulting, Inc.">
</a>
<!-- End Logo -->
<!-- Navigation -->
<div class="collapse navbar-collapse align-items-center flex-sm-row" id="navBar">
<ul id="js-scroll-nav" class="navbar-nav text-uppercase g-font-weight-700 g-font-size-11 g-pt-20 g-pt-5--lg ml-auto">
<li class="nav-item g-mr-15--lg g-mb-7 g-mb-0--lg active">
<a href="#about" class="nav-link p-0">About</a>
</li>
<li class="nav-item g-mx-15--lg g-mb-7 g-mb-0--lg">
<a href="#benefits" class="nav-link p-0">Benefits</a>
</li>
<li class="nav-item g-mx-15--lg g-mb-7 g-mb-0--lg">
<a href="#careers" class="nav-link p-0">Careers</a>
</li>
<li class="nav-item g-mx-15--lg g-mb-7 g-mb-0--lg">
<a href="#intern" class="nav-link p-0">Internship</a
</li>
<li class="nav-item g-mx-15--lg g-mb-7 g-mb-0--lg">
<a href="#numbers" class="nav-link p-0">Numbers</a>
</li>
<li class="nav-item g-mx-15--lg g-mb-7 g-mb-0--lg">
<a href="#awards" class="nav-link p-0">Awards</a>
</li>
<li class="nav-item g-mx-15--lg g-mb-7 g-mb-0--lg">
<a href="#events" class="nav-link p-0">Events</a>
</li>
<li class="nav-item g-mx-15--lg g-mb-7 g-mb-0--lg">
<a href="#contact" class="nav-link p-0">Contact</a>
</li>
</ul>
</div>
<div class="bptw">
<a class="navbar-brand u-header__log">
<img src="./assets/custom/img/awards/2018_BPTW_logo_C1.png" alt="Best places to work 2018 logo" class ="nav-pad">
</a>
</div>
<!-- End Navigation -->
<!-- Responsive Toggle Button --><button class="navbar-toggler btn g-line-height-1 g-brd-none g-pa-0 g-pos-abs g-top-20 g-right-0" type="button" aria-label="Toggle navigation" aria-expanded="false" aria-controls="navBar" data-toggle="collapse" data-target="#navBar">
<span class="hamburger hamburger--slider">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</span>
</button>
<!-- End Responsive Toggle Button -->
</div>
</nav>
</div>
</header>
<!-- End Header -->
<!-- Section Content -->
<section class="rev_slider_wrapper fullwidthbanner-container" data-alias="image-hero20">
<!-- START REVOLUTION SLIDER 5.0.7 fullwidth mode -->
<div id="promoSlider" class="rev_slider fullwidthabanner" style="display: none;" data-version="5.0.7">
<ul>
<!-- SLIDE -->
<li style="text-align: center;" data-index="rs-68" data-transition="zoomout" data-slotamount="default" data-easein="Power4.easeInOut" data-easeout="Power4.easeInOut" data-masterspeed="2000" data-thumb="assets/img-temp/promo/img1.jpg" data-rotate="0" data-saveperformance="off" data-title="Intro">
<img src="./assets/custom/img/online/developer-min.jpg" alt="Image description" data-bgposition="50% 10%" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="10" class="rev-slidebg" data-no-retina>
<!-- LAYERS -->
<!-- LAYER NR. 1 -->
<div id="promoSliderLayer10" class="tp-caption tp-shape tp-shapewrapper rs-parallaxlevel-0" style="z-index: 5; background-color: rgba(78, 67, 83, .4); border-color: rgba(78, 67, 83, .5);" data-x="['center','center','center','center']" data-y="['middle','middle','middle','middle']"
data-hoffset="['0','0','0','0']" data-voffset="['0','0','0','0']" data-width="full" data-height="full" data-whitespace="nowrap" data-transform_idle="o:1;" data-transform_in="opacity:0;s:1500;e:Power3.easeInOut;" data-transform_out="s:300;s:300;"
data-start="750" data-basealign="slide" data-responsive_offset="on" data-responsive="off">
</div>
<!-- LAYER NR. 3 -->
<div id="promoSliderLayer1" class="tp-caption NotGeneric-Title tp-resizeme rs-parallaxlevel-0" style="z-index: 7; white-space: nowrap; text-align: center; text-transform: uppercase;" data-x="['center','center','center','center']" data-y="['middle','middle','middle','middle']"
data-hoffset="['0','0','0','0']" data-voffset="['-60','-60','-22','-29']" data-fontsize="['60','60','60','40']" data-lineheight="['64','64','64','44']" data-width="none" data-height="none" data-whitespace="nowrap" data-transform_idle="o:1;"
data-transform_in="z:0;rX:0deg;rY:0;rZ:0;sX:1.5;sY:1.5;skX:0;skY:0;opacity:0;s:1500;e:Power3.easeInOut;" data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;" data-mask_in="x:0px;y:0px;" data-mask_out="x:inherit;y:inherit;"
data-start="1000" data-splitin="none" data-splitout="none" data-responsive_offset="on">
Software Oriented
<br>
Customer Focused
</div>
<!-- LAYER NR. 4 -->
<div id="promoSliderLayer4" class="tp-caption NotGeneric-SubTitle tp-resizeme rs-parallaxlevel-0" style="z-index: 8; white-space: nowrap; text-align: center; text-transform: uppercase;" data-x="['center','center','center','center']" data-hoffset="['0','0','0','0']"
data-y="['middle','middle','middle','middle']" data-voffset="['52','52','28','13']" data-visibility="['on','off']" data-width="none" data-height="none" data-whitespace="nowrap" data-transform_idle="o:1;" data-transform_in="y:[100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;opacity:0;s:1500;e:Power4.easeInOut;"
data-transform_out="y:[100%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;" data-mask_in="x:0px;y:[100%];s:inherit;e:inherit;" data-mask_out="x:inherit;y:inherit;s:inherit;e:inherit;" data-start="1000" data-splitin="none" data-splitout="none"
data-responsive_offset="on">
</div>
<!-- LAYER NR. 5 -->
<div id="promoSliderLayer7" class="tp-caption NotGeneric-CallToAction rev-btn rs-parallaxlevel-0" style="z-index: 9; font-weight: bold; white-space: nowrap; outline: none; box-shadow: none; box-sizing: border-box; text-transform: uppercase; border-width: 2px;"
data-x="['center','center','center','center']" data-y="['middle','middle','middle','middle']" data-hoffset="['0','0','0','0']" data-voffset="['134','134','80','65']" data-width="none" data-height="none" data-whitespace="nowrap" data-transform_idle="o:1;"
data-transform_hover="o:1;rX:0;rY:0;rZ:0;z:0;s:300;e:Power1.easeInOut;" data-style_hover="c:rgba(255, 255, 255, 1.00);bc:rgba(255, 255, 255, 1.00);cursor:pointer;" data-transform_in="y:50px;opacity:0;s:1500;e:Power4.easeInOut;" data-transform_out="y:[175%];s:1000;e:Power2.easeInOut;s:1000;e:Power2.easeInOut;"
data-mask_out="x:inherit;y:inherit;s:inherit;e:inherit;" data-start="1250" data-splitin="none" data-splitout="none" data-actions='[{"event":"click","action":"scrollbelow","offset":"-90px"}]' data-responsive_offset="on" data-responsive="off">Learn More
</div>
</li>
</ul>
<div class="tp-static-layers"></div>
<div class="tp-bannertimer tp-bottom" style="visibility: hidden !important;"></div>
</div>
</section>
<!-- END REVOLUTION SLIDER -->
<!-- End Section Content -->
<section id="about">
<div class="container-fluid px-0">
<!-- Info Blocks -->
<div class="row d-flex align-items-stretch no-gutters">
<div class="col-md-4 g-parent g-bg-white">
<!-- Article -->
<article class="d-flex flex-wrap text-center g-color-gray-dark-v3" style="min-height: 100%">
<div class="order-2 w-100"> <img class="w-100 img-fluid" style="min-height: 100%" src="./assets/custom/img/online/sepia_desk.jpg" alt="Sepia Desk"> </div>
<div id="work-that-matters" class="order-1 w-100 g-z-index-1 g-py-50 g-py-100--md g-px-15 g-px-50--md" style="min-height: 100%">
<h3 class="text-uppercase g-line-height-1_1 g-font-weight-800 g-font-size-25 g-font-size-30--md g-mb-20"><strong>Work that Matters</strong></h3>
<p class="mb-0">
Case Consulting is a software services company that supports
the mission critical requirements of the federal government
and private industry by providing highly talented and
exceptionally skilled software developers, architects, software
testers, and program managers.
</p>
</div>
</article>
<!-- End Article -->
</div>
<div class="col-md-4 g-parent g-theme-bg-gray-dark-v1">
<!-- Article -->
<article class="d-flex flex-wrap text-center g-color-white" style="min-height: 100%">
<div class="order-1 w-100"> <img class="w-100 h-100" style="min-height: 100%" src="./assets/custom/img/online/meeting-min.jpg" alt="Meeting"> </div>
<div class="order-md-2 w-100 g-z-index-1 g-py-50 g-py-100--md g-px-15 g-px-50--md g-theme-bg-color-1" style="min-height: 100%">
<h3 class="text-uppercase g-line-height-1_1 g-font-weight-800 g-font-size-25 g-font-size-30--md g-color-white g-mb-20">Clients that care</h3>
<div class="u-heading-v2-2--top g-brd-primary"></div>
<p class="g-color-gray-light-v4 mb-0">
We provide top-notch IT staff to Commercial and Federal
Government customers with experience in delivering superior
system engineering expertise, project management support, and
application development and design via Agile methodologies.
</p>
</div>
</article>
<!-- End Article -->
</div>
<div class="col-md-4 g-parent g-bg-white">
<!-- Article -->
<article class="d-flex flex-wrap text-center g-color-gray-dark-v3" style="min-height: 100%">
<div class="order-2 w-100"> <img class="w-100 img-fluid" style="min-height: 100%" src="./assets/custom/img/online/suit.jpg" alt="Image description"> </div>
<div id="leaders-that-captivate" class="order-1 w-100 g-z-index-1 g-py-50 g-py-100--md g-px-15 g-px-50--md" style="min-height: 100%">
<h3 class="text-uppercase g-line-height-1_1 g-font-weight-800 g-font-size-25 g-font-size-30--md g-mb-20"><strong>Leaders that captivate</strong></h3>
<p class="mb-0">
Case Consulting has a well-earned reputation for quality,
responsiveness and absolute excellence. We take pride in our
ability to fully understand and embrace our customers and
their needs, and provide innovative, polished, and inspiring
applications of systems and technology.
</p>
</div>
</article>
<!-- End Article -->
</div>
</div>
<!-- End Info Blocks -->
</div>
</section>
<!-- Benefits Section Content -->
<section id="benefits" class="g-py-100">
<div class="container text-center g-max-width-750 g-mb-70">
<div class="u-heading-v2-2--bottom g-brd-primary g-mb-20">
<h2 class="text-uppercase u-heading-v2__title g-font-weight-800 g-font-size-30 g-font-size-40--md">Benefits</h2>
</div>
<p class="mb-0">
Case Consulting recognizes that employees are its number one asset and
therefore offers a salary and <a href="https://drive.google.com/file/d/1cBQzuO4g8YEcYskbQqj_MS3sNxIEMUh2/view?usp=sharing" target="_blank" rel="noopener"><strong>benefits package</strong></a>
that reflect this.
</p>
</div>
<div class="container">
<!-- Icon Blocks -->
<div class="row">
<div class="col-md-5 g-mb-40">
<!-- Icon Blocks -->
<div class="media">
<div class="d-flex g-mt-25 g-mr-40">
<span class="d-block g-color-primary g-font-size-48 g-line-height-1">
<i class="fas fa-chart-line fa-fw"></i>
</span>
</div>
<div class="media-body align-self-center">
<h3 class="h5 text-uppercase g-font-weight-800">Retirement</h3>
<ul class="list-unstyled g-font-size-12 g-mb-30 g-mb-0--md">
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem"> Monthly contribution of 3% of your salary in your <a href="https://www.sharebuilder401k.com/">401k</a>, without the requirement of an employee contribution </p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem"> Annual lump-sum profit sharing of 10%, deposited at the end of each year </p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem"> Employees are immediately fully vested in the plan </p>
</li>
</ul>
</div>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-md-5 offset-md-2 g-mb-40">
<!-- Icon Blocks -->
<div class="media">
<div class="d-flex g-mt-25 g-mr-40">
<span class="d-block g-color-primary g-font-size-48 g-line-height-1">
<i class="fas fa-medkit fa-fw pull-left g-theme-text-color-1"></i>
</span>
</div>
<div class="media-body align-self-center">
<h3 class="h5 text-uppercase g-font-weight-800">Health Care</h3>
<ul class="list-unstyled g-font-size-12 g-mb-30 g-mb-0--md">
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem"> Full Medical, Dental, and Vision insurance coverage (company paid premiums)</p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem"> Health Savings Account (HSA) and Flexible Spending Account (FSA) options</p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem"> Short Term Disability, Long Term Disability, and Life Insurance</p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem"> Dependent Care Account providing tax-deferred savings for child care </p>
</li>
</ul>
</div>
</div>
<!-- End Icon Blocks -->
</div>
</div>
<!-- End Icon Blocks -->
<!-- Icon Blocks -->
<div class="row">
<div class="col-md-5 g-mb-40">
<!-- Icon Blocks -->
<div class="media">
<div class="d-flex g-mt-25 g-mr-40">
<span class="d-block g-color-primary g-font-size-48 g-line-height-1">
<i class="fas fa-laptop pull-left fa-fw"></i>
</span>
</div>
<div class="media-body align-self-center">
<h3 class="h5 text-uppercase g-font-weight-800">Technology Package</h3>
<ul class="list-unstyled g-font-size-12 g-mb-30 g-mb-0--md">
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem">$1,800 per calendar year towards purchase of employee computer/tablet or other technology related device</p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem">Verizon 4G Mobile Wi-Fi Hotspot</p>
</li>
</ul>
</div>
</div>
<!-- End Icon Blocks -->
</div>
<div class="col-md-5 offset-md-2 g-mb-40">
<!-- Icon Blocks -->
<div class="media">
<div class="d-flex g-mt-25 g-mr-40">
<span class="d-block g-color-primary g-font-size-48 g-line-height-1">
<i class="fas fa-graduation-cap"></i>
</span>
</div>
<div class="media-body align-self-center">
<h3 class="h5 text-uppercase g-font-weight-800">Professional Development</h3>
<ul class="list-unstyled g-font-size-12 g-mb-30 g-mb-0--md">
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem">$3,500 per year towards professional development </p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem">Includes certifications, screencasts, CBTs, conferences, books, etc. </p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem">
3 days per year of PTO for professional development and certification
</p>
</li>
</ul>
</div>
</div>
<!-- End Icon Blocks -->
</div>
</div>
<!-- Icon Blocks -->
<div class="row">
<div class="col-md-5 g-mb-40 g-mb-0--md">
<!-- Icon Blocks -->
<div class="media">
<div class="d-flex g-mt-25 g-mr-40">
<span class="d-block g-color-primary g-font-size-48 g-line-height-1">
<i class="fas fa-money-bill"></i>
</span>
</div>
<div class="media-body align-self-center">
<h3 class="h5 text-uppercase g-font-weight-800">Bonuses</h3>
<ul class="list-unstyled g-font-size-12 g-mb-30 g-mb-0--md">
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem">
$5,000 referral bonus for fully-cleared candidates
</p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem">
$2,500 referral bonus for uncleared candidates
</p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem">
Spot bonuses for employee accomplishments
</p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15">
<i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem">
High 5 bonuses for colleague recognition
</p>
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-5 offset-md-2">
<!-- Icon Blocks -->
<div class="media">
<div class="d-flex g-mt-25 g-mr-40">
<span class="d-block g-color-primary g-font-size-48 g-line-height-1">
<i class="fas fa-calendar fa-fw"></i>
</span>
</div>
<div class="media-body align-self-center">
<h3 class="h5 text-uppercase g-font-weight-800">Time Off</h3>
<ul class="list-unstyled g-font-size-12 g-mb-30 g-mb-0--md">
<li class="g-pos-rel g-pl-10 g-mb-15"> <i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem"> 34 days of leave each year (20 PTO, 10 holidays, 3 training days, and 1 volunteer day)</p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15"> <i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-primary"></i>
<p class="list_elem"> 1 week leave of absence every 5th anniversary</p>
</li>
</ul>
</div>
</div>
<!-- End Icon Blocks -->
</div>
</div>
<!-- End Icon Blocks -->
</div>
</section>
<!-- End Section Content -->
<!-- Careers Section Content -->
<section id="careers" class="g-theme-bg-color-1 g-text-color-2 no-column-space">
<div class="container-fluid">
<div class="container text-center g-max-width-750 g-mb-20 g-pt-70">
<div class="u-heading-v2-2--bottom g-brd-primary g-mb-20">
<h2 class="text-uppercase u-heading-v2__title g-font-weight-800 g-font-size-30 g-font-size-40--md g-color-white">Careers</h2> </div>
</div>
<div class="container g-pb-30">
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item"><a class="nav-link active" id="developer-tab" data-toggle="tab" href="#developer" role="tab" aria-controls="developer-tab" aria-selected="false">Developer</a></li>
<li class="nav-item"><a class="nav-link" id="project-manager-tab" data-toggle="tab" href="#project-manager" role="tab" aria-controls="pm-tab" aria-selected="true">Project Manager</a></li>
<li class="nav-item"><a class="nav-link" id="system-engineer-tab" data-toggle="tab" href="#system-engineer" role="tab" aria-controls="syseng-tab" aria-selected="false">System Engineer</a></li>
<li class="nav-item"><a class="nav-link" id="system-integrator-tab" data-toggle="tab" href="#system-integrator" role="tab" aria-controls="integrator-tab" aria-selected="false">System Integrator</a></li>
<li class="nav-item"><a class="nav-link" id="system-administrator-tab" data-toggle="tab" href="#system-administrator" role="tab" aria-controls="admin-tab" aria-selected="false">System Administrator</a></li>
</ul>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="developer" role="tabpanel" aria-labelledby="developer-tab">
<row>
<div class="col-md-8 offset-md-2">
<h3 class="text-uppercase g-color-white">
<strong id="developer-tab">Developer</strong>
</h3>
</div>
</row>
<row>
<div class="col-md-8 offset-md-2">
<p class="g-color-white">
Develops, implements, and tests software to meet specific
project requirements. Personnel are recognized experts who
are assigned to specific high risk or complex projects but
are also used to mentor junior personnel and provide ad-hoc
support to other projects when needed. Lead development
activities of teams, are assigned to large complex
projects, and support the preparation of cost and schedule
estimates. Lead development activities for smaller less
complex projects and support the preparation of cost and
schedule estimates for those types of projects. Support
development activities and may be the developer for small
projects. Responsible for development efforts of simple
applications to small less complex tasks.
</p>
</div>
</row>
</div>
<div class="tab-pane fade" id="project-manager" role="tabpanel" aria-labelledby="pm-tab">
<row>
<div class="col-md-8 offset-md-2">
<h3 class="text-uppercase g-color-white">
<strong id="pm-tab">Project Manager</strong>
</h3>
</div>
</row>
<row>
<div class="col-md-8 offset-md-2">
<p class="g-color-white">
The Project Manager shall work with their Manager and other representatives to achieve the objectives of the project they are assigned to. The Project Manager is responsible for the overall management of the specific project (s) and
insuring that the technical solutions and schedules are implemented in a timely manner. The PM is responsible for all aspects of the project including cost schedules, documentation preparation and customer interaction; Ensures that
all control gates are met on schedule; Performs organizational wide integration planning and interfaces to other functional systems; ensures that the project team members are fully utilized or are made available to support other projects
to meet the requirements.
</p>
</div>
</row>
</div>
<div class="tab-pane fade" id="system-engineer" role="tabpanel" aria-labelledby="syseng-tab">
<row>
<div class="col-md-8 offset-md-2">
<h3 class="text-uppercase g-color-white"><strong id="syseng-tab">System Engineer</strong></h3>
</div>
</row>
<row>
<div class="col-md-8 offset-md-2">
<p class="g-color-white"> System Engineers provide strategic and tactical planning and engineeringsupport for projects. Personnel are assigned to more complex development tasks based on their Level of expertise. Level 1+ personnel are recognized experts who are
assigned to specific high risk or complex projects but are also used to mentor junior personnel and provide ad-hoc support to other projects when needed. Personnel lead engineering activities of teams, are assigned to large complex
projects, and support the preparation of cost and schedule estimates. Lead engineering activities for smaller less complex projects and support the preparation of cost and schedule estimates for those types of projects. Support engineering
activities and may be responsible for all engineering support for small projects. Responsible for supporting larger projects under the guidance of more experienced System Engineers and may be the engineering resource for simple projects
or less complex tasks. This category includes but is not limited to the following roles: Data Architect, Help Desk, Knowledge Management Specialist, Network Engineer, Quality Assurance Manager, Systems Analyst, Systems Architect, Systems
Engineer and Technical Consultant.
</p>
</div>
</row>
</div>
<div class="tab-pane fade" id="system-integrator" role="tabpanel" aria-labelledby="integrator-tab">
<row>
<div class="col-md-8 offset-md-2">
<h3 class="text-uppercase g-color-white">
<strong id="integrator-tab">System Integrator</strong>
</h3>
</div>
</row>
<row>
<div class="col-md-8 offset-md-2">
<p class="g-color-white"> Provides a total systems perspective including a technical understanding of relationships, dependencies and requirements of hardware and software components for a project. Must be knowledgeable in computer systems and gathering/identifying
requirements. Must be knowledgeable in life-cycle support, including maintenance, administration, and management. Creates, drafts and/or reviews program documentation, generates formal review documentation, and participates in system
and program reviews. Reviews program plans, identifies inconsistencies. Coordinates, supports and participates in program meetings and reviews. Assists in the evaluation of software and associated documentation. Participates in formal
and informal reviews to determine quality. Must be able to track project studies, plans, actions items, take minutes, etc. Provides frequent contact with customers, trace ability within program documents, and the overall computing
environment and architecture. Manages/updates the master schedule. Ensures coordination and information flow occur between all programs and organizational managers.
</p>
</div>
</row>
</div>
<div class="tab-pane fade" id="system-administrator" role="tabpanel" aria-labelledby="admin-tab">
<row>
<div class="col-md-8 offset-md-2">
<h3 class="text-uppercase g-color-white">
<strong id="admin-tab">System Administrator</strong>
</h3>
</div>
</row>
<row>
<div class="col-md-8 offset-md-2">
<p class="g-color-white"> Coordinates and/or performs the O&M activities for Unix or Windows servers. Develops and documents the full range of SOPs and schedules for O&M activities. Identifies recurring O&M problems and recommends steps to reduce
the severity and frequency of the problems. Assists application developers in testing and debugging new programs to ensure compatibility with existing server technologies. Troubleshoots and resolves installation problems; documents
procedures for problem resolution. Consults with support teams, help desks, customers, and other technical staff in the resolution of server related problems. Provides first tier support to storage area network and enterprise storage
systems. Performs server and storage capacity planning for the most complex and critical systems. Recommends and implements process and tool improvements to improve the efficiency and effectiveness of the organization's change management
and configuration management processes and systems. Plans for transition of the development and/or production environment to new technology. Recommends and plans server recapitalization. Performs server performance tuning. Baselines
and forecasts server performance data and tunes server hardware and software configurations. Utilizes system software to monitor the performance of system files; manages system data to maintain performance efficiencies. Studies system
requirements to determine proper server installation methods and procedures. May provide 24x7 operational support.
</p>
</div>
</row>
</div><br/><br />
</div>
</div>
</div>
</section>
<!-- End Section Content -->
<!-- Internship Section Content -->
<section id="intern" class="g-text-color-2 no-column-space intern-background">
<div class="container-fluid">
<div class="container text-center g-max-width-750 g-mb-20 g-pt-70">
<div class="u-heading-v2-2--bottom g-brd-primary g-mb-20">
<h2 class="text-uppercase u-heading-v2__title g-font-weight-800 g-font-size-30 g-font-size-40--md g-color-white">Summer Internship</h2>
</div>
<p class="g-color-white">
Summer Internships take place from May to August in the
Make Offices in Reston, Virginia, within the metropolitan
area of Washington, D.C. The interns will design and
implement software applications as part of a collaborative
team of interns and professional software developers. The
intern will gain experience in full stack development
using modern web technologies, including Amazon Web
Services (AWS). Interns will also learn best practices in
version control systems using GitHub, and will incorporate
Agile methodologies for self-organization and regular
delivery of code for production. The intern will develop
communication skills with customers to produce useful
software for the client.
</p>
</div>
<div class="container g-pb-30">
<row>
<div class="text-center">
<a href="./intern.html" type="button" class="btn" role="button"> Learn More </a>
</div>
</row>
</div>
</div>
</section>
<!-- End Section Content -->
<!-- Numbers Section Content -->
<section id="numbers">
<div class="container-fluid">
<div class="g-pt-100 g-pb-30">
<div class="container text-center g-pt-10">
<div class="u-heading-v2-2--bottom g-brd-primary">
<h2 class="text-uppercase u-heading-v2__title g-font-weight-800 g-font-size-30 g-font-size-40--md">Case by the Numbers</h2>
</div>
</div>
<div class="row">
<div class="col-xl-4">
<div class="pie-container">
<h4 class="text-center">Roles</h4>
<div><canvas id="roles"></canvas></div>
</div>
</div>
<div class="col-xl-4">
<div class="bar-container">
<h4 class="text-center">Education</h4>
<div><canvas id="bar"></canvas> </div>
</div>
</div>
<div class="col-xl-4">
<div class="pie-container">
<h4 class="text-center">Current Projects</h4>
<div><canvas id="technology"></canvas></div>
</div>
</div>
</div>
</div>
</div><br/><br/><br/><br/><br/>
</section>
<!-- End Section Content -->
<!-- Awards Section Content -->
<section id="awards" class="g-theme-bg-color-1 g-text-color-2 g-pt-10 g-pb-10">
<div><br/><br/>
<div class="u-heading-v2-2--bottom text-center g-brd-primary g-mb-20">
<h2 class="text-uppercase text-center u-heading-v2__title g-font-weight-800 g-font-size-30 g-font-size-40--md g-color-white">Awards</h2>
</div> <br/>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="container-fluid award-container">
<div class="row award-row">
<div class="col-md-6">
<a href="https://www.bizjournals.com/washington/news/2017/05/05/these-are-the-best-places-to-work-in-greater.html" target="_blank" rel="noopener" border="0">
<img src="./assets/custom/img/awards/2017_BPTW_button_HONOREE.PNG" alt="" class="rounded-circle img-fluid mobile-image award-shadow"/>
</a>
</div>
<div class="col-md-6 award-overlapped">
<a href="https://www.bizjournals.com/washington/news/2018/04/13/see-the-best-places-to-work-in-greater-washington.html" target="_blank" rel="noopener" border="0">
<img src="./assets/custom/img/awards/2018_BPTW_button_HONOREE.PNG" alt="" class="rounded-circle img-fluid mobile-image award-shadow"/>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<p class="g-color-white">
The Washington Business Journal's Best Places to Work program honors Greater Washington area companies that score highest in annual employee engagement. For the 2nd year in a row, Case Consulting Inc. has been recognized as one of the best places to work
among small companies:
<ul class="list-unstyled g-font-size-12 g-mb-30 g-mb-0--md">
<li class="g-pos-rel g-pl-10 g-mb-15"> <i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-white"></i>
<p class="list_elem g-color-white">#3 Small Company in 2018 </p>
</li>
<li class="g-pos-rel g-pl-10 g-mb-15"> <i class="fas fa-angle-right bullet_top g-left-0 g-font-size-16 g-color-white"></i>
<p class="list_elem g-color-white">#6 Small Company in 2017</p>
</li>
</ul>
</p>
</div>
</div>
</div><br/><br/>
</div>
</section>
<!-- End Awards Section -->
<!-- Events Section Content -->
<section id="events" class="g-theme-bg-gray-light-v1 g-py-50">
<div class="container text-center g-max-width-750 g-mb-20 g-pt-10 g-pb-10">
<div class="u-heading-v2-2--bottom g-brd-primary g-mb-20">
<h2 class="text-uppercase u-heading-v2__title g-font-weight-800 g-font-size-30 g-font-size-40--md">Events</h2> </div>
</div>
<div class="row">
<div class="col-sm-10 offset-sm-1">
<div class="card-deck g-mx-20 g-my-20">
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/c_crop,g_center,h_811,w_1082/v1535029085/website/2018_leesburg_race.jpg" alt="2018 Leesburg 5k/20k Race">
<div class="card-body">
<h4 class="card-title"><a href="https://photos.app.goo.gl/Xz9Pd53AhmMiF6Fw5" target="_blank" rel="noopener">2018 Leesburg 5k/20k</a></h4>
<p class="card-text">Many employees ran in the 2018 Leesburg 5k/20k race. We also had a really fun design for the race shirt thanks to the daughter of a Case Employee!</p>
</div>
</div>
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029084/website/IMG_5303.jpg" alt="2018 Summer Internship">
<div class="card-body">
<h4 class="card-title"><a href="https://photos.app.goo.gl/K1HsUTjAbVQ8sBUY8" target="_blank" rel="noopener">2018 Summer Internship</a></h4>
<p class="card-text">We had an awesome summer with our interns which included several presentations to the company, seeing Solo: A Star Wars Story, taking in a D.C. United game in a downpour, and some Top Golf!</p>
</div>
</div>
<div class="card">
<img class=" event-images" src="http://res.cloudinary.com/consultwithcase/image/upload/c_crop,g_custom:faces,h_738,w_1045/v1535029083/website/IMG_4328.jpg" alt="Solo: A Star Wars Story">
<div class="card-body">
<h4 class="card-title"><a href="https://photos.app.goo.gl/WUShWChoVdi4DCep9" target="_blank" rel="noopener">Solo: A Star Wars Story</a></h4>
<p class="card-text">We got the internship kicked off with a company movie event to see Solo: A Star Wars Story.</p>
</div>
</div>
</div>
</div>
</div>
<div class="collapse" id="collapseEvents">
<div class="row">
<div class="col-sm-10 offset-sm-1">
<div class="card-deck g-mx-20 g-my-20">
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029079/website/DSC_8859.jpg" alt="2017 Holiday Party">
<div class="card-body">
<h4 class="card-title"><a href="https://photos.app.goo.gl/2U6zL2tz3Lou17ca2" target="_blank" rel="noopener">2017 Holiday Party</a></h4>
<p class="card-text">Employees and loved ones enjoyed a night of bocce, bowling, food, and drinks at Pinstripes in Georgetown.</p>
</div>
</div>
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029086/website/IMG_6485.jpg" alt="2017 AWS re:Invent">
<div class="card-body">
<h4 class="card-title"><a href="https://photos.app.goo.gl/wg2bTokQI4RkM3WA3" target="_blank" rel="noopener">2017 AWS re:Invent</a></h4>
<p class="card-text">This year we had a record number of employees go to AWS re:Invent in Las Vegas!</p>
</div>
</div>
<div class="card"> <img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029078/website/DSC_5279.jpg" alt="2017 Family Picnic">
<div class="card-body">
<h4 class="card-title"><a href="https://photos.app.goo.gl/8RefFAJ1i7EY6yqT2" target="_blank" rel="noopener">2017 Family Picnic</a></h4>
<p class="card-text">We always have a good time getting together with each other and our families. This year we had ponies, a bounce house, face painting, and a whole lot of fun! Thanks to everyone for coming out!</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-sm-1">
<div class="card-deck g-mx-20 g-my-20">
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029075/website/AB880EA9-3749-4AB6-92E8-7F05B63A6A24.jpg" alt="Recruiting @ VT CSRC Career Fair">
<div class="card-body">
<h4 class="card-title"><a href="https://photos.app.goo.gl/mckEE6nkiRxVkaGh1" target="_blank" rel="noopener">Recruiting @ VT CSRC Career Fair</a></h4>
<p class="card-text">Several employees attended the Virginia Tech Computer Science Resources Consortium Career Fair in search of another group of interns for the Summer of 2018!</p>
</div>
</div>
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029082/website/IMG_1002.jpg" alt="2017 Summer Internship">
<div class="card-body">
<h4 class="card-title"><a href="https://goo.gl/photos/G1P76LwSpCGRwUqb6" target="_blank" rel="noopener">2017 Summer Internship</a></h4>
<p class="card-text">Big changes for Case Consulting in 2017 as we moved to new offices and embarked on our inaugural Summer Internship program!</p>
</div>
</div>
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029081/website/IMG_0611.jpg" alt="2017 Best Places to Work">
<div class="card-body">
<h4 class="card-title"><a href="https://goo.gl/photos/6YXNHMP7mbY6MJid9" target="_blank" rel="noopener">2017 Best Places to Work</a></h4>
<p class="card-text">Several of our employees attended the Washington Business Journal's 2017 Best Places to Work ceremony in Washington D.C. </p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-sm-1">
<div class="card-deck g-mx-20 g-my-20">
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029074/website/52237478987__477B81CD-3FD9-489A-9462-DFC6F13C3CE9.jpg" alt="2017 Game Night">
<div class="card-body">
<h4 class="card-title"><a href="https://photos.app.goo.gl/xsfrqKKkmplU1D133" target="_blank" rel="noopener">Game Nights</a></h4>
<p class="card-text">Employees always have a good time at our monthly game nights in our wonderful office space.
</p>
</div>
</div>
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029080/website/IMG_0110.jpg" alt="2017 Serverless Conference">
<div class="card-body">
<h4 class="card-title"><a href="https://goo.gl/photos/4T3HKxNofJPSDrqt8" target="_blank" rel="noopener">2017 Serverless Conf</a></h4>
<p class="card-text">Two of our employees learned a lot while taking in some of the sights at Serverless Conf in Austin, Texas!</p>
</div>
</div>
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029077/website/case-consulting-holiday-party-2016_30884154854_o.jpg" alt="2016 Holiday Party">
<div class="card-body">
<h4 class="card-title"> <a href="https://goo.gl/photos/BvT9SvVD4zVXMSw5A" target="_blank" rel="noopener">2016 Holiday Party</a></h4>
<p class="card-text">Employees and their loved ones had a great time at our annual holiday party. This year the party was held at Stone Tower Winery in Leesburg and featured an evening of giving, food, poker, and fun.</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-sm-1">
<div class="card-deck g-mx-20 g-my-20">
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029073/website/2016-case-consulting-family-picnic_29175329344_o.jpg" alt="2016 Family Picnic">
<div class="card-body">
<h4 class="card-title"><a href="https://goo.gl/photos/XvmL1Vp7FEAdjzYL6" target="_blank" rel="noopener">2016 Family Picnic</a></h4>
<p class="card-text">Our annual Summer picnic is always a blast for employees and their families and this year was no different. The kids (and some adults) enjoyed the inflatable obstacle course and face painting.</p>
</div>
</div>
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029089/website/IMG_20161130_114803187.jpg" alt="re:Invent 2016">
<div class="card-body">
<h4 class="card-title"><a href="https://goo.gl/photos/vfdM1cf6bihNDoNcA" target="_blank" rel="noopener">re:Invent 2016</a></h4>
<p class="card-text">Case Consulting was well represented at AWS re:Invent this year. Employees enjoyed all of the talks and after-hours events and can't wait to go back next year.</p>
</div>
</div>
<div class="card">
<img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029090/website/IMG_20161216_164441944.jpg" alt="Rogue One: A Star Wars Movie">
<div class="card-body">
<h4 class="card-title"><a href="https://goo.gl/photos/qNT8KHuR7HTLq3tK6" target="_blank" rel="noopener">Rogue One: A Star Wars Movie</a></h4>
<p class="card-text">The force is strong with us as we watched Rogue One at the Alamo Drafthouse.</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-10 offset-sm-1">
<div class="card-deck justify-content-center g-mx-20 g-my-20">
<div class="card mw-30"> <img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029076/website/case-consulting-holiday-party-2015_23844271536_o.jpg" alt="2015 Holiday Party">
<div class="card-body">
<h4 class="card-title"><a href="https://goo.gl/photos/AE3Jadpp3fcPvF4o9" target="_blank" rel="noopener">2015 Holiday Party</a></h4>
<p class="card-text">Employees and their loved ones enjoyed a night out at Salamander Resort and Spa to celebrate the holiday season.</p>
</div>
</div>
<div class="card mw-30"> <img class=" event-images" src="https://res.cloudinary.com/consultwithcase/image/upload/v1535029088/website/IMG_20151218_161108726.jpg" alt="Star Wars: The Force Awakens">
<div class="card-body">
<h4 class="card-title"><a href="https://goo.gl/photos/fkL6C2WmdvT9mFpg9" target="_blank" rel="noopener">Star Wars: The Force Awakens</a></h4>
<p class="card-text">Several employees viewed the latest Star Wars movie at the Udvar Hazy IMAX theater.</p>
</div>
</div>
<div class="card card-offset"></div>
</div>
</div>
</div>
</div>
<div class="text-center">
<a href="#collapseEvents" class="btn btn-primary btn-lg collapseButton" data-toggle="collapse" aria-expanded="false" aria-controls="collapseEvents">
<span class="collapsed"><i class="fas fa-chevron-down"></i></span>
<span class="expanded"><i class="fas fa-chevron-up"></i></span>
</a>
</div>
<!-- Row End -->
</section>
<!-- End Section Content -->
<!-- Section Content -->
<section id="contact" class="container-fluid g-color-white">
<div class="row">
<div class="col-lg-6 d-flex align-items-center g-theme-bg-color-1 g-py-50 g-pa-15 g-pa-30--md">
<div class="w-100">
<div class="row">
<div class="col-md-6 col-lg-12 g-mb-60 g-mb-0--md g-mb-60--lg">
<div class="u-heading-v2-2--bottom g-brd-primary g-mb-30">
<h2 class="text-uppercase u-heading-v2__title g-font-weight-800 g-font-size-30 g-font-size-40--md g-color-white mb-0">Get in touch</h2> </div>
<p class="g-color-gray-light-v4 mb-0">Case Consulting has an established reputation and level of trust with the client, so contact us to discuss how we can continue to build a productive relationship and deliver impeccable results for our clients.</p>
</div>
<div class="col-md-6 col-lg-12 d-md-flex d-lg-block align-self-center">
<address class="text-uppercase g-font-size-12 mb-0">
<div class="g-pos-rel g-pl-35 g-mb-25">
<i class="fa fa-map-marker g-absolute-centered--y g-left-0 g-font-size-20 g-color-primary fa-fw"></i>
<strong>18425 RUSTLING WOODS COURT LEESBURG, VA 20175</strong>
</div>
<div class="g-pos-rel g-pl-35 g-mb-25">
<i class="fa fa-phone g-absolute-centered--y g-left-0 g-font-size-20 g-color-primary fa-fw"></i>
<strong>703-728-0294 </strong>
</div>
<div class="g-pos-rel g-pl-35 g-mb-25">
<i class="fa fa-envelope g-absolute-centered--y g-left-0 g-font-size-20 g-color-primary fa-fw"></i>
<a class="g-color-white" href="mailto:info@consultwithcase.com"><strong>info@consultwithcase.com</strong></a>
</div>
<div class="g-pos-rel g-pl-35 g-mb-25">
<i class="fab fa-github g-absolute-centered--y g-left-0 g-font-size-20 g-color-primary fa-fw"></i>
<a class="g-color-white" href="https://github.com/caseconsulting"><strong>case consulting</strong></a>
</div>
<div class="g-pos-rel g-pl-35 g-mb-25">
<i class="fab fa-facebook-f red-icon g-absolute-centered--y g-left-0 g-font-size-20 g-color-primary fa-fw"></i>
<a class="g-color-white" href="https://www.facebook.com/ConsultwithCase/" target="_blank" rel="noopener"><strong>Consult with Case</strong></a>
</div>
<div class="g-pos-rel g-pl-35 g-mb-25">
<i class="fab fa-twitter g-absolute-centered--y g-left-0 g-font-size-20 g-color-primary fa-fw"></i>
<a class="g-color-white" href="https://twitter.com/consultwithcase" target="_blank" rel="noopener"><strong>@ConsultWithCase</strong></a>
</div>
<div class="g-pos-rel g-pl-35">
<i class="fab fa-linkedin-in g-absolute-centered--y g-left-0 g-font-size-20 g-color-primary fa-fw"></i>
<a class="g-color-white" href="https://www.linkedin.com/company/2558032/" target="_blank" rel="noopener"><strong>Case Consulting, Inc.</strong></a>
</div>
</address>
</div>
</div>
</div>
</div>
<div class="col-lg-6 px-0 contact-section-map" id="map"> </div>
</div>
</section>
<!-- End Section Content -->
<a class="js-go-to rounded-0 u-go-to-v1" href="#! " data-type="fixed " data-position='{ "bottom ": 15, "right ": 15 }' data-offset-top="400 " data-compensation="#js-header" data-show-effect="zoomIn ">
<i class="hs-icon hs-icon-arrow-top "></i>
</a>
</main>
<!-- JS Global Compulsory -->
<script src="./assets/vendor/jquery/jquery.min.js "></script>
<script src="./assets/vendor/jquery-migrate/jquery-migrate.min.js "></script>
<script src="./assets/vendor/popper.js/popper.min.js "></script>
<script src="./assets/vendor/bootstrap/bootstrap.min.js "></script>
<!-- JS Implementing Plugins -->
<script src="./assets/vendor/appear/appear.js "></script>
<script src="./assets/vendor/slick-carousel/slick/slick.js "></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAf66JJmp2VOldGTrVNOmMumlB5U6sVBSI&callback=initMap " async defer></script>
<script src="./assets/custom/js/plugins/gmaps-ini.js "></script>
<!-- JS Revolution Slider -->
<script src="./assets/vendor/revolution-slider/revolution/js/jquery.themepunch.tools.min.js "></script>
<script src="./assets/vendor/revolution-slider/revolution/js/jquery.themepunch.revolution.min.js "></script>
<script src='./assets/vendor/revolution-slider/revolution-addons/slicey/js/revolution.addon.slicey.min.js'></script>
<script src="./assets/vendor/revolution-slider/revolution/js/extensions/revolution.extension.actions.min.js "></script>
<!--<script src="./assets/vendor/revolution-slider/revolution/js/extensions/revolution.extension.carousel.min.js "></script>-->
<script src="./assets/vendor/revolution-slider/revolution/js/extensions/revolution.extension.kenburn.min.js "></script>
<script src="./assets/vendor/revolution-slider/revolution/js/extensions/revolution.extension.layeranimation.min.js "></script>
<script src="./assets/vendor/revolution-slider/revolution/js/extensions/revolution.extension.migration.min.js "></script>
<script src="./assets/vendor/revolution-slider/revolution/js/extensions/revolution.extension.parallax.min.js "></script>
<script src="./assets/vendor/revolution-slider/revolution/js/extensions/revolution.extension.slideanims.min.js "></script>
<!-- Charts.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.bundle.min.js "></script>
<script src="./assets/custom/js/plugins/charts.js "></script>
<!-- JS Unify -->
<script src="./assets/vendor/unity/js/hs.core.js "></script>
<script src="./assets/vendor/unity/js/components/hs.header.js "></script>
<script src="./assets/vendor/unity/js/helpers/hs.hamburgers.js "></script>
<script src="./assets/vendor/unity/js/components/hs.scroll-nav.js "></script>
<script src="./assets/vendor/unity/js/components/hs.carousel.js "></script>
<script src="./assets/vendor/unity/js/components/hs.go-to.js "></script>
<!-- JS Customization
<script src="./assets/js/custom.js "></script>
-->
<!-- JS Plugins Init. -->
<script>
// initialization of revolution slider
var tpj = jQuery,
promoSlider;
tpj(document).on('ready', function() {
if (tpj('#promoSlider').revolution == undefined) {
revslider_showDoubleJqueryError('#promoSlider');
} else {
promoSlider = tpj('#promoSlider').show().revolution({
sliderType: 'hero',
jsFileLocation: '../../revolution/js/',
sliderLayout: 'fullwidth',
dottedOverlay: 'none',
delay: 9000,
navigation: {},
responsiveLevels: [1240, 1024,
778, 480
],
gridwidth: [1240, 1024, 778,
480
],
gridheight: [600, 500, 400,
300
],
lazyType: 'none',
parallax: {
type: 'mouse',
origo: 'slidercenter',
speed: 2000,
levels: [2, 3, 4, 5, 6,
7, 12, 16, 10,
50
]
},
shadow: 0,
spinner: 'off',
autoHeight: 'off',
disableProgressBar: 'on',
hideThumbsOnMobile: 'off',
hideSliderAtLimit: 0,
hideCaptionAtLimit: 0,
hideAllCaptionAtLilmit: 0,
debugMode: false,
fallbacks: {
simplifyAll: 'off',
disableFocusListener: false
}
});