-
Notifications
You must be signed in to change notification settings - Fork 4
/
indexAr.html
1374 lines (1023 loc) · 56.1 KB
/
indexAr.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="ar">
<head>
<!-- important meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Title -->
<title>RBK ReBootKamp</title>
<!-- Basic SEO -->
<meta name="description" content="BECOME A SOFTWARE ENGINEER IN 16 WEEKS">
<meta name="keywords" content="HTML5, CSS3, JQuery, Bootstrap, Web Design, Web Development, Responsive Website,
Creative Website, RBK, ReBootKamp, Code Bootcamp, Codeing Bootcamp, Software Engineer, Learn to Code, Become a Software Engineer,
JavaScript, Github, Data Structures, Complexity Analysis, Algorithms, Function Binding, Inheritance Patterns,
HTML/CSS, D3, Ajax, Backbone, ES6, ES6/ES7, APIs, React, AngularJS, Servers, NodeJS, Server-side techniques, DBs, MongoDB, Structured Data,
SQL, noSQL, ORMs, Authentication, Deployment, Full Stack, Front End, Back End, Full Stack Development, MERN, MEAN, Angular, Amman, Jordan, Coding,
Code, Bootcamp, School, Training">
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon/fav.png">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<!-- Fontawesome -->
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css">
<!-- Owl Carousel CSS -->
<link rel="stylesheet" href="css/owl-carousel/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl-carousel/owl.theme.default.min.css">
<!-- Responsive Tabs CSS -->
<link rel="stylesheet" href="css/responsive-tabs/responsive-tabs.min.css">
<!-- Magnific Popup -->
<link rel="stylesheet" href="css/magnific-popup/magnific-popup.min.css">
<!-- Animate CSS -->
<link rel="stylesheet" href="css/animate/animate.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/styleAr.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsiveAR.css">
</head>
<body data-spy="scroll" data-target="#navbar" data-offset="65">
<!-- Preloader -->
<div id="preloader">
<div id="status"> </div>
</div>
<!-- Header -->
<header>
<nav id="navbar" class="navbar navbar-fixed-top">
<div class="container-fluid">
<div class="site-nav-wrapper">
<div id="navbar-header" class="navbar-header">
<!-- Mobile Menu Open Button -->
<span id="mobile-nav-open-btn">☰</span>
<!-- Logo -->
<a id="logo" class="navbar-brand smooth-scroll" href="#home">
<img src="img/logo/logo.png" alt="logo">
</a>
</div>
<!-- Main Menu -->
<div class="container">
<div class="collapse navbar-collapse">
<ul id="navbar-nav" class="nav navbar-nav pull-right">
<li><a class="smooth-scroll" href="#home">Home</a></li>
<li><a class="smooth-scroll" href="#about">About</a></li>
<li><a class="smooth-scroll" href="#team">Team</a></li>
<li><a class="smooth-scroll" href="#services">Services</a></li>
<li><a class="smooth-scroll" href="#portfolio">Information</a></li>
<li><a class="smooth-scroll" href="#contact">Contact</a></li>
<li class="btn--border btn--primary"><a href="#">Apply Now</a></li>
</ul>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-nav">
<!-- Mobile Menu Close Button -->
<span id="mobile-nav-close-btn">×</span>
<div id="mobile-nav-content">
<ul class="nav">
<li><a class="smooth-scroll" href="#home">Home</a></li>
<li><a class="smooth-scroll" href="#about">About</a></li>
<li><a class="smooth-scroll" href="#team">Team</a></li>
<li><a class="smooth-scroll" href="#services">Services</a></li>
<li><a class="smooth-scroll" href="#portfolio">Information</a></li>
<li><a class="smooth-scroll" href="#contact">Contact</a></li>
<li class="btn--border btn--primary"><a href="#">Apply Now</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
<nav class="vertical-nav">
<a class="vertical-trigger" href="#">
<span aria-hidden="true"></span>
</a>
<ul>
<li><a id="ver-nav-1" href="#home"><span>Home</span></a></li>
<li><a id="ver-nav-2" href="#about"><span>About</span></a></li>
<li><a id="ver-nav-3" href="#team"><span>Team</span></a></li>
<li><a id="ver-nav-4" href="#services"><span>Services</span></a></li>
<li><a id="ver-nav-5" href="#clients"><span>Partners</span></a></li>
<li><a id="ver-nav-6" href="#contact"><span>Contact</span></a></li>
</ul>
<span aria-hidden="true" class="vertical-nav-bg"></span>
</nav>
</header>
<!-- Header Ends -->
<!-- Home -->
<section id="home">
<!-- Background Video -->
<video id="home-bg-video" poster="video/rbk.png" autoplay loop muted>
<source src="video/rbk.mp4" type="video/mp4">
<!--
<source src="video/rbk.ogv" type="video/ogg">
<source src="video/rbk.webm" type="video/webm">
-->
</video>
<!-- Overlay -->
<div id="home-overlay"></div>
<!-- Home Content -->
<div id="home-content">
<div id="home-content-inner" class="text-center">
<div id="home-heading">
<h1 id="home-heading-1">RBK</h1><br>
<h1 id="home-heading-2">Hacking A Better <span>Future</span></h1>
</div>
<div id="home-text">
<p>Become A Software Engineer In <span>16</span> Weeks.</p>
</div>
<div id="founding-partner">
<p>Founding Partner</p>
<a href="https://www.hackreactor.com/" target="_blank">
<img id="hackreactor" class="img-responsive" src="img/logo/hack-reactor-logo-white.png" alt="hackreactor"></a>
</div>
<div id="home-btn">
<a class="btn btn-general btn-home smooth-scroll" href="#about" title="Start Now" role="button">Start
Now</a>
</div>
</div>
</div>
<!-- Arrow Down -->
<a href="#about" id="arrow-down" class="smooth-scroll">
<i class="fa fa-angle-down"></i>
</a>
</section>
<!-- Home Ends -->
<!-- About -->
<section id="about">
<!-- About 01 -->
<div id="about-01">
<div class="content-box-lg">
<div class="container">
<div class="row">
<!-- About Left Side -->
<div class="col-md-6 col-sm-6 wow slideInLeft" data-wow-duration="1s">
<div id="about-right">
<br />
<br />
<p>Reboot Kamp is the coding bootcamp of the Middle East. Based on the Hack Reactor
curriculum, we accomplish in 4 months what most universities in the world fail to
deliver in 4 years : market ready software engineers experienced in the world’s
favourite internet programming language.</p>
</div>
</div>
<!-- About Right Side -->
<div class="col-md-6 col-sm-6 wow slideInRight" data-wow-duration="1s">
<div id="about-left">
<div class="vertical-heading">
<h5>Who We Are</h5>
<h2>A <strong>Story</strong><br>About Us</h2>
</div>
</div>
</div>
</div>
<!-- About Bottom -->
<div class="row">
<div class="col-md-12 wow fadeInUp" data-wow-duration="2s">
<div id="about-bottom">
<img src="img/about/about.png" alt="About Us" class="img-responsive">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About 01 Ends -->
<!-- Stats -->
<section id="stats">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-12 wow slideInLeft">
<div class="vertical-heading">
<h5>Fun Facts</h5>
<h2>We Deliver<br><strong>Excellent</strong> Services</h2>
</div>
</div>
</div>
<div class="row wow fadeInUp" data-wow-duration="2s">
<div class="col-md-3 col-sm-3 col-xs-6">
<!-- Stats Item 01 -->
<div class="stats-item text-center">
<i class="fa fa-bar-chart"></i>
<h3 class="counter">115</h3>
<p>Graduates</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<!-- Stats Item 02 -->
<div class="stats-item text-center">
<i class="fa fa-codepen"></i>
<h4><span class="counter">800</span>JD</h4>
<p>Average Salary</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<!-- Stats Item 03 -->
<div class="stats-item text-center">
<i class="fa fa-trophy"></i>
<h3 class="counter">4,000</h3>
<p>Hours Coding</p>
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-6">
<!-- Stats Item 04 -->
<div class="stats-item text-center">
<i class="fa fa-users"></i>
<div>
<h4> <span class="counter">98</span>%</h4>
<p>Hiring Rate</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Ends -->
<!-- About 02 -->
<div id="about-02">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-4 wow fadeInLeft">
<!-- About item 01 -->
<div class="about-item text-center">
<i class="fa fa-rocket"></i>
<h3>Program</h3>
<hr>
<p>RBK’s Xtreme Learning Program will make you a confident, autonomous and fully
capable software engineer. Our curriculum is always under revision to make sure
that you are armed with the latest techniques and technologies.
</p>
</div>
</div>
<div class="col-md-4 col-sm-4 wow fadeInUp" data-wow-duration="2s">
<!-- About item 02 -->
<div class="about-item text-center">
<i class="fa fa-pencil"></i>
<h3>Prep</h3>
<hr>
<p>During this phase, you will learn the basic fundamentals of programming and higher
order concepts using JavaScript
Functions, iteration, recursion, arrays, objects, higher order functions, data
modeling, HTML, CSS, JQuery to name just a few
</p>
</div>
</div>
<div class="col-md-4 col-sm-4 wow fadeInRight">
<!-- About item 03 -->
<div class="about-item text-center">
<i class="fa fa-laptop"></i>
<h3>Immersive</h3>
<hr>
<p>You’ll take part in two-day sprints where each sprint covers a new different concept
from a different section of web development, such as
data structures,
front end web development (Ajax Request, API’s, Front end frameworks, React,
Angular), and
back end web development (servers, NodeJS, databases, authentication).
You will also be working on 4 different projects, one solo and three other group
projects with around 4 team members.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About 02 Ends -->
</section>
<!-- About Ends -->
<!-- Clients -->
<section id="clients">
<div class="content-box-sm">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="horizontal-heading">
<!-- <h5>Work With</h5> -->
<h2>Job <strong>Placement</strong></h2>
</div>
</div>
</div>
<div class="row wow bounceInLeft" data-wow-duration="1s" data-wow-delay=".5s">
<div class="col-md-12">
<div id="clients-list" class="owl-carousel owl-theme">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Clients Ends -->
<!-- Testimonials -->
<section id="testimonials">
<div class="container">
<div class="row">
<div class="col-md-8 col-sm-8 wow fadeIn" data-wow-duration="2s">
<div id="testimonial-slider" class="owl-carousel owl-theme">
</div>
</div>
<div class="col-md-4 col-sm-4 wow slideInLeft">
<div class="vertical-heading">
<h5>Who We Are</h5>
<h2>What Our <br><strong>Customers</strong> Say</h2>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Ends -->
<!-- Services -->
<section id="services">
<!-- Services 02 -->
<div id="services-02">
<div class="content-box-md">
<div id="services-tabs">
<ul class="text-center">
<li><a href="#service-tab-3">Immersive - Senior</a></li>
<li><a href="#service-tab-2">Immersive - Junior</a></li>
<li><a href="#service-tab-1">Prep</a></li>
<li><a href="#service-tab-0">Curriculum</a></li>
</ul>
<!-- Service Tab 0 -->
<div id="service-tab-0" class="service-tab">
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="img/services/service-tab-img-01.jpg" alt="curriculum">
</div>
<div class="col-md-6">
<div class="tab-bg">
<h3>Curriculum</h3>
<p>
The main course of the Program is structured around the world famous Hack
Reactor curriculum. However, at RBK, we will also work on your
communication, teamwork, leadership, critical thinking and creativity
skills. Just as importantly, we will enhance your stress levels by pushing
you to your maximum limit.
</p>
<p>
A Sample of the Principles You’ll Learn
<br />
Data structures, Algorithms, jQuery, HTML/CSS, Ajax, Backbone, APIs, React,
NodeJS, Databases, Deployment, MEAN stack development, Angular and more.
Much more.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Service Tab 01 -->
<div id="service-tab-1" class="service-tab">
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="img/services/service-tab-img-01.jpg" alt="prep">
</div>
<div class="col-md-6">
<div class="tab-bg">
<h3>Prep</h3>
<p>During this phase, you will learn the basic fundamentals of programming and
higher order concepts using JavaScript
</p>
<p>Functions, iteration, recursion, arrays, objects, higher order
functions,
data modeling, HTML, CSS, JQuery to name just a few
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Service Tab 02 -->
<div id="service-tab-2" class="service-tab">
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="img/services/service-tab-img-02.jpg" alt="Immersive - Junior">
</div>
<div class="col-md-6">
<div class="tab-bg">
<h3>Immersive - Junior</h3>
<p>You’ll take part in two-day sprints where each sprint covers a new different
concept from a different section of web development
</p>
<p>
Data structures
<br />
Front end:HTML, CSS, JQuery, Ajax Request, API’s.
<br />
Front end frameworks:React, Angular, BackBone.
<br />
Back end:Servers and Node, Databases, Authentication, Deployment.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Service Tab 03 -->
<div id="service-tab-3" class="service-tab">
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="img/services/service-tab-img-03.jpg" alt="Immersive - Senior">
</div>
<div class="col-md-6">
<div class="tab-bg">
<h3>Immersive - Senior</h3>
<p>You will produce something compelling using the skills you’ve honed over the
previous phase. You will be working on 4 different projects, one solo and
three other group projects with around 4 team members.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Services 02 Ends -->
</section>
<!-- Services Ends -->
<!-- About 02 -->
<div id="about-02">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 wow fadeInLeft">
<!-- About item 01 -->
<div class="about-item2 text-center">
<i class="fa fa-sun-o"></i>
<h3>Daily Schedule</h3>
<h4>Morning</h4>
<hr>
<div>
<ul>
<li>
<strong class=daily-schedule-headline>
Breakfast
</strong>
- Arrive at 8:30 and enjoy breakfast before class begins at 9 AM.
</li>
<li>
<strong class=daily-schedule-headline>
Morning Kick-Off
</strong>
– Code challenges to hone your problem solving skills followed by introduction
to a new sprint or hacking.
</li>
<li>
<strong class=daily-schedule-headline>
Hacking in Pairs
</strong>
– You’ll work with a partner on real-world projects. Leverage off each other to
do something neither of you could do alone.
</li>
<li>
<strong class=daily-schedule-headline>
Lunch
</strong>
– The big meal of the day – mansef, magluba, salads, desserts…enjoy with your
peers.
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 col-sm-6 wow fadeInUp" data-wow-duration="2s">
<!-- About item 02 -->
<div class="about-item2 text-center">
<i class="fa fa-moon-o"></i>
<h3>Daily Schedule</h3>
<h4>Evening</h4>
<hr>
<div>
<ul>
<li>
<strong class=daily-schedule-headline>
Exercise
</strong>
– 1 hour of no screens! Go kick a ball, do guided meditation or yoga, play
ping-pong, walk, climb stairs and otherwise get your body moving!
</li>
<li>
<strong class=daily-schedule-headline>
Learn
</strong>
– Daily lecture on new concepts and code challenge solutions.
</li>
<li>
<strong class=daily-schedule-headline>
Deep Coding
</strong>
– At points during the course, students take on longer projects and learn high
level meta-engineering skills around project management, team communication and
code documentation.
</li>
<li>
<strong class=daily-schedule-headline>
Dinner
</strong>
– A light meal and opportunity give the brain a rest, socialize and recharge.
</li>
<li>
<strong class=daily-schedule-headline>
Events/More Hacking
</strong>
– Guest speakers, social nights, meet our hiring partners and special events.
Class officially ends at 9 PM but many students will continue to hack into the
night. Too late to go home? Crash in one of our beanbag chairs.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- About 02 Ends -->
<!-- Admissions and Tuition -->
<section id="stats">
<div class="content-box-md">
<div class="container">
<div class="row wow fadeInUp" data-wow-duration="2s">
<div class="col-md-6 col-sm-6 col-xs-12">
<!-- Stats Item 01 -->
<div class="stats-item text-center">
<h3>Admissions</h3>
<br />
<p>In order for you to succeed, we’d like to know a bit more about you. Our Admissions gate
is designed for you to test yourself and see if you have what it
takes. Ranging from mindset to technical ability, the Admissions tests will require
your full attention and time.
<br />
</p>
</div>
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
<!-- Stats Item 02 -->
<div class="stats-item text-center">
<h3>Tuition</h3>
<br />
<p>The cost of the program is 5,700 JoD and is payable upon final approval for admission to
the program. Although we offer scholarships as they become
available, we also have understandings with financial institutions that are willing to
grant you a loan which you can pay back comfortably when you
start your first job. If we recommend you, your loan is guaranteed. </p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Ends -->
<!-- Portfolio -->
<section id="portfolio">
<div class="content-box-md">
<div class="container">
<div class="row">
<div class="col-md-12 wow slideInLeft">
<div class="vertical-heading">
<h5>Find Out More</h5>
<h2>General <br><strong>Information</strong></h2>
</div>
</div>
<div class="col-md-12">
<!-- Portfolio Items Filters -->
<div id="isotope-filters">
<button class="btn active" data-filter=".professionalism"><span>Professionalism</span></button>
<button class="btn" data-filter=".mind"><span>Body & Mind</span></button>
<button class="btn" data-filter=".services"><span>Services</span></button>
</div>
</div>
</div>
</div>
<!-- Portfolio Items Wrapper -->
<section class="wow fadeInUp" data-wow-duration="1s" data-wow-delay=".5s">
<div class="container-fluid">
<div class="row no-gutters">
<div id="isotope-container">
<div class="col-md-3 col-sm-6 col-xs-12 professionalism">
<!-- Portfolio Item 01 -->
<div class="portfolio-item">
<a id="portfolio-wrapper1" href="img/portfolio/001.jpg" title="Add Description">
<img src="img/portfolio/001.jpg" class="img-responsive edit" alt="portfolio 01">
<div class="portfolio-item-overlay1">
<div class="portfolio-item-details text-center">
<!-- Item Header -->
<h3>Interview Coaching/ID Development</h3>
<!-- Item Strips -->
<span></span>
<!-- Item Description -->
<!-- <p>Desktop, Design</p> -->
</div>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 professionalism">
<!-- Portfolio Item 01 -->
<div class="portfolio-item">
<a id="portfolio-wrapper2" href="img/portfolio/001.jpg" title="Add Description">
<img src="img/portfolio/001.jpg" class="img-responsive" alt="portfolio 01">
<div class="portfolio-item-overlay2">
<div class="portfolio-item-details text-center">
<!-- Item Header -->
<h3>Workshops/<br />Tech/<br />Mentorship by Companies</h3>
<!-- Item Strips -->
<span></span>
<!-- Item Description -->
<!-- <p>Desktop, Design</p> -->
</div>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 professionalism">
<!-- Portfolio Item 01 -->
<div class="portfolio-item">
<a id="portfolio-wrapper3" href="img/portfolio/001.jpg" title="Add Description">
<img src="img/portfolio/001.jpg" class="img-responsive" alt="portfolio 01">
<div class="portfolio-item-overlay3">
<div class="portfolio-item-details text-center">
<!-- Item Header -->
<h3>Soft Skills</h3>
<!-- Item Strips -->
<span></span>
<!-- Item Description -->
<!-- <p>Desktop, Design</p> -->
</div>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 professionalism">
<!-- Portfolio Item 01 -->
<div class="portfolio-item">
<a id="portfolio-wrapper4" href="img/portfolio/001.jpg" title="Add Description">
<img src="img/portfolio/001.jpg" class="img-responsive" alt="portfolio 01">
<div class="portfolio-item-overlay4">
<div class="portfolio-item-details text-center">
<!-- Item Header -->
<h3>Visiting Tech Mentors</h3>
<!-- Item Strips -->
<span></span>
<!-- Item Description -->
<!-- <p>Desktop, Design</p> -->
</div>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 mind">
<!-- Portfolio Item 02 -->
<div class="portfolio-item">
<a id="portfolio-wrapper5" href="img/portfolio/002.jpg" title="Add Description">
<img src="img/portfolio/002.jpg" class="img-responsive" alt="portfolio 02">
<div class="portfolio-item-overlay5">
<div class="portfolio-item-details text-center">
<!-- Item Header -->
<h3>Health/<br />Meditation</h3>
<!-- Item Strips -->
<span></span>
<!-- Item Description -->
<!-- <p>Web Design, Illustration</p> -->
</div>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 mind">
<!-- Portfolio Item 03 -->
<div class="portfolio-item">
<a id="portfolio-wrapper6" href="img/portfolio/003.jpg" title="Add Description">
<img src="img/portfolio/003.jpg" class="img-responsive" alt="portfolio 03">
<div class="portfolio-item-overlay6">
<div class="portfolio-item-details text-center">
<!-- Item Header -->
<h3>
Social Nights
</h3>
<!-- Item Strips -->
<span></span>
<!-- Item Description -->
<!-- <p>
Video, web
</p> -->
</div>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 mind">
<!-- Portfolio Item 04 -->
<div class="portfolio-item">
<a id="portfolio-wrapper7" href="img/portfolio/004.jpg" title="Add Description">
<img src="img/portfolio/004.jpg" class="img-responsive" alt="portfolio 04">
<div class="portfolio-item-overlay7">
<div class="portfolio-item-details text-center">
<!-- Item Header -->
<h3>
Counselor
</h3>
<!-- Item Strips -->
<span></span>
<!-- Item Description -->
<!-- <p>
desktop, Design
</p> -->
</div>
</div>
</a>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 services">
<!-- Portfolio Item 05 -->
<div class="portfolio-item">
<a id="portfolio-wrapper8" href="img/portfolio/005.jpg" title="Add Description">
<img src="img/portfolio/005.jpg" class="img-responsive" alt="portfolio 05">
<div class="portfolio-item-overlay8">
<div class="portfolio-item-details text-center">
<!-- Item Header -->
<h3>