This repository has been archived by the owner on May 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
866 lines (847 loc) · 59.1 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content />
<meta name="author" content />
<title>Kairos' Portfolio</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/Icons/KT.ico" />
<!-- Custom Google font-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet" />
<!-- Bootstrap icons-->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body class="d-flex flex-column h-100 bg-gray">
<!-- Page Preloader -->
<div id="preloader">
<div class="loader"></div>
</div>
<main class="flex-shrink-0">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark bg-gray py-3">
<div class="container px-5">
<a class="navbar-brand" href="index.html"><span
class="fw-bolder text-green" id="scramble">Kairos'
Portfolio</span></a>
<button class="navbar-toggler" type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation"><span
class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse"
id="navbarSupportedContent">
<ul
class="navbar-nav ms-auto mb-2 mb-lg-0 small fw-bolder">
<li class="nav-item"><a class="nav-link"
href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link"
href="resume.html">Resume</a></li>
<li class="nav-item"><a class="nav-link"
href="events.html">Events</a></li>
<li class="nav-item"><a class="nav-link"
href="projects.html">Projects</a></li>
<li class="nav-item"><a class="nav-link"
href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Page Content-->
<div class="container px-7 my-5 ">
<div class="text-center mb-5">
<h1 class="display-5 fw-bolder mb-0 "><span
class="text-green d-inline fade-in">root@kairos:~ #
./resume
</span></h1>
</div>
<div class="row gx-5 justify-content-center">
<div class="col-lg-11 col-xl-9 col-xxl-8">
<!-- Experience Section-->
<section>
<div
class="d-flex align-items-center justify-content-between mb-4">
<h2 class="text-white fw-bolder mb-0 fade-in">Experience</h2>
<!-- Download resume button-->
<a class="btn btn-primary px-4 py-3 fade-in"
href="assets/Resume/Kairos_Resume.pdf"
target="_blank">
<div
class="d-inline-block bi bi-download me-2 fade-in"></div>
Download Resume
</a>
</div>
<!-- Experience Card 1-->
<div
class="card bg-gray shadow border-0 rounded-4 mb-5 fade-in">
<div class="card-body p-5">
<div class="row align-items-center gx-5">
<div
class="col text-center text-lg-start mb-4 mb-lg-0">
<div class="bg-dark p-4 rounded-4">
<div
class="text-green fw-bolder mb-2">2022</div>
<div
class="small fw-bolder text-white">Student
Researcher</div>
<div class="small text-muted">Commonwealth
Secondary School</div>
<div class="small text-muted">STEM
Elective Programme Capstone
Project</div>
</div>
</div>
<div class="col-lg-8 text-white">
<div>
<ul>
<li>Individual research
Project on the
Correlation Between
Degradability of Plastic
and its Tensile Strength</li>
<li>Utilised Microsoft Excel
to streamline data
collection, organisation
and analysis for more
accurate and
comprehensive findings</li>
<li>Presented research
findings through oral
and poster presentations
to school leaders, the
student body and the
wider public at the CWSS
open house event</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Experience Card 2-->
<div
class="card shadow bg-gray border-0 rounded-4 mb-5 fade-in">
<div class="card-body p-5">
<div class="row align-items-center gx-5">
<div
class="col text-center text-lg-start mb-4 mb-lg-0">
<div class="bg-dark p-4 rounded-4">
<div
class="text-green fw-bolder mb-2">2021
- 2022</div>
<div
class="small fw-bolder text-white">Research
Intern</div>
<div class="small text-muted">Science
Centre Singapore</div>
<div class="small text-muted">Science
Mentorship Programme</div>
</div>
</div>
<div class="col-lg-8 text-white">
<div>
<ul>
<li>Researched on the
"Ultrasonic measurements of gas syringe positions for the kinetic study of reactions between acids and aluminium"</li>
<li>Utilised software tools
like LibreCAD, Arduino
and Excel to aid in the
set-up and data
collection of the
experiments</li>
<li>Presented research
findings during the
Youth Science Conference</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="pb-5"></div>
<!-- Education Section-->
<section>
<h2 class="text-white fw-bolder mb-4 fade-in">Education</h2>
<!-- NP-->
<div
class="card shadow bg-gray border-0 rounded-4 mb-5 fade-in">
<div class="card-body p-5">
<div class="row align-items-center gx-5">
<div
class="col text-center text-lg-start mb-4 mb-lg-0">
<div class="bg-dark p-4 rounded-4">
<div
class="text-green fw-bolder mb-2">2023
- Present</div>
<div class="mb-2">
<div
class="small text-white fw-bolder">Ngee
Ann Polytechnic</div>
<div
class="small text-muted">Diploma</div>
</div>
<div class="fst-italic">
<div
class="small text-muted"></div>
<div
class="small text-muted">Cybersecurity
and Digital Forensics</div>
</div>
</div>
</div>
<div class="col-lg-8 text-white">
<div>
cGPA: 4.00
<br><br>
Special
Interest Groups:
<ul>
<li>Nullsec (Cybersecurity)</li>
<li>Overflow (Programming &
Tech)
</li>
<li>ICT Society (Leadership)</li>
<li>AI SIG - Event
Planner Team</li>
</ul>
<br>
Participated in:
<ul>
<li>CTFs:</li>
<ul>
<li>Magnet Forensics
CTF, Cyber:100 CTF,
GreyCTF, SEETF,
CDDC, DuCTF, TISC
and more
</li>
</ul>
<li>Hackathons:</li>
<ul>
<li>Berri AI Hackathon'23
(Climate Education
ChatBot),
BuildingBloCS AI
Hackathon'23 (CNN
Clothes Sorter)
</li>
</ul>
<li>Programmes:</li>
<ul>
<li>AYCEP'23, The
Sentinel Programme'23
(MINDEF)
</li>
</ul>
<li>Conferences:</li>
<ul>
<li>FOSSASIA 2023, Black
Hat Asia 2023, Cyber
Youth Summit
2023, GovWare SiCW
2023
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- CWSS-->
<div
class="card shadow bg-gray border-0 rounded-4 mb-5 fade-in">
<div class="card-body p-5">
<div class="row align-items-center gx-5">
<div
class="col text-center text-lg-start mb-4 mb-lg-0">
<div
class="bg-dark p-4 rounded-4">
<div
class="text-green fw-bolder mb-2">2019
- 2022</div>
<div class="mb-2">
<div
class="small fw-bolder text-white">Commonwealth
Secondary School</div>
<div
class="small text-muted">GCE
O Levels</div>
</div>
<div class="fst-italic">
<div
class="small text-muted">6
Distinctions</div>
<div
class="small text-muted">'A'
for STEM Elective
Programme</div>
</div>
</div>
</div>
<div class="col-lg-8 text-white"><div><ul>
<li>STEM Elective
Programme
2021-2022</li>
<ul>
<li>RI Climate
Resilience
Webinar</li>
<li>NTU Young
Innovators
Challenge
Masterclasses</li>
<li>Dialogue
Sessions
with
professionals
from WWF, SFA
and
NTU</li>
</ul>
<li>Scientist-in-Schools
Programme 2021-2022</li>
<li>Math Talent
Development
Programme 2022</li>
</ul>
<a
class="btn btn-primary px-4 py-3"
href="assets/Resume/1. 2021-2022 STEM List of Learning Experiences.pdf">
<div
class="d-inline-block bi-box-arrow-down-right"></div>
View Transcript
</a>
<p class="small text-muted">*STEM
Elective Transcript; As
of
May 2022</p>
</div></div>
</div>
</div>
</div>
</section>
<!-- Divider-->
<div class="pb-5"></div>
<!-- TESTIMONIALS -->
<h2 class="text-white fw-bolder mb-4 fade-in ">Testimonials</h2>
<div id="testimonialCarousel"
class="carousel slide "
data-bs-ride="carousel ">
<div class="carousel-inner ">
<!-- SCS -->
<div
class="carousel-item p-3 px-0 active">
<div
class="card border-0 bg-gray rounded-4 mb-5 fade-in shadow">
<div class="card-body p-5">
<div
class="row align-items-center gx-5">
<div
class="col text-center text-lg-start mb-4 mb-lg-0">
<div
class="bg-dark p-4 rounded-4">
<div
class="text-green fw-bolder mb-2">Dr
Kee Jun Wei</div>
<div
class="mb-2">
<div
class="small text-white fw-bolder">Science
Centre
Singapore</div>
</div>
<div
class="fst-italic">
<div
class="small text-muted">Recommendation
Letter</div>
<div
class="small text-muted">Mentor
for
Science
Mentorship
Programme</div>
</div>
</div>
</div>
<div
class="col-lg-8 text-white ">
<div>
Throughout the
project, Hestia
demonstrated her
thirst for
knowledge as she
diligently
conducted the
literature
review to learn
about the
susceptibility
of metals to
corrosion by
acid and learnt
new skills such
as Arduino to
program the
ultrasonic
sensor and
LibreCAD to draw
layouts for
laser cutting
the template for
holding the gas
syringe and
ultrasonic
sensor.
</div>
</div>
</div>
</div>
</div>
</div>
<!-- CWSS1 -->
<div
class="carousel-item p-3 px-0 border-0 rounded-4">
<div
class="card shadow bg-gray border-0 rounded-4 mb-5 fade-in "
style="height: 100%;">
<div class="card-body p-5">
<div
class="row align-items-center gx-5">
<div
class="col text-center text-lg-start mb-4 mb-lg-0">
<div
class="bg-dark p-4 rounded-4">
<div
class="text-green fw-bolder mb-2">Ms
Ye Dan</div>
<div
class="mb-2">
<div
class="small text-white fw-bolder">Commonwealth
Secondary
School</div>
</div>
<div
class="fst-italic">
<div
class="small text-white">Testimonial</div>
<div
class="small text-muted">HOD
Innovation
&
Design,
STEM
Teacher</div>
</div>
</div>
</div>
<div
class="col-lg-8 text-white">
<div>
Hestia was a
keen learner
beyond the
curriculum and
embarked on
digital making.
She was
intrinsically
motivated to
learn Python,
HTML, and AI by
herself. She
initiated a few
projects in
coding and
created digital
products such as
a retro snake
game, a password
generator, and a
sorting machine.
Driven by her
passion, she
persevered
through rounds
of prototyping
and bug-fixing,
which led up to
the final
functional
product.
</div>
</div>
</div>
</div>
</div>
</div>
<!-- CWSS2 -->
<div
class="carousel-item p-3 px-0 border-0 rounded-4">
<div
class="card shadow bg-gray border-0 rounded-4 mb-5 fade-in"
style="height: 100%;">
<div class="card-body p-5">
<div
class="row align-items-center gx-5">
<div
class="col text-center text-lg-start mb-4 mb-lg-0">
<div
class="bg-dark p-4 rounded-4">
<div
class="text-green fw-bolder mb-2">Mdm
Quek Lay
Hong</div>
<div
class="mb-2">
<div
class="small text-white fw-bolder">Commonwealth
Secondary
School</div>
</div>
<div
class="fst-italic">
<div
class="small text-muted">Commendation</div>
<div
class="small text-muted">Science
Department
Teacher</div>
</div>
</div>
</div>
<div
class="col-lg-8 text-white">
<div>
Hestia is very
keen to learn.
Seizing
opportunities to
upgrade herself,
she signed up
for GSK
Industrial
e-Visit and ApLM
in Polytechnics
notwithstanding
the fact that
these courses
take place
during school
holidays with
ApLM being a
three-days
course. Her
positive
attitude is
indeed
commendable.
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Navigation Controls -->
<a class="carousel-control-prev"
href="#testimonialCarousel"
role="button" data-bs-slide="prev">
<span
class="carousel-control-prev-icon"
aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</a>
<a class="carousel-control-next"
href="#testimonialCarousel"
role="button" data-bs-slide="next">
<span
class="carousel-control-next-icon"
aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</a>
</div>
</div>
</section>
<!-- Divider-->
<div class="pb-5"></div>
<h2 class="text-white fw-bolder mb-4 fade-in">Certifications</h2>
<!--Certifications-->
<section>
<div
class="card shadow bg-gray border-0 rounded-4 mb-5 fade-in">
<div class="card-body p-5">
<div class="mb-5">
<div
class="d-flex align-items-center mb-4">
<div
class="feature bg-green bg-black-primary-to-secondary text-white rounded-3 me-3"><i
class="bi bi-envelope-paper"></i></div>
<h3 class="fw-bolder mb-0"><span
class="text-white d-inline">Certifications</span></h3>
</div>
<div
class="row row-cols-1 row-cols-md-3 mb-4">
<div class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Linux
Essentials - Cisco</div></div>
<div class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Networking
Essentials - Cisco</div></div>
<div class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Cybersecurity
Essentials - Cisco</div></div>
</div>
<div
class="row row-cols-1 row-cols-md-3 mb-4">
<div class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Python
Essentials 1 - Cisco</div></div>
<div class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Literacy
in AI - AI Singapore</s></div>
<!--<div class="col mb-4 mb-md-0"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100"></div></div>
<div class="col"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100"></div></div>-->
</div>
</div>
<!--Other Certifications-->
<div class="mb-5">
<div
class="d-flex align-items-center mb-4 fade-in">
<div
class="feature bg-green bg-black-primary-to-secondary text-white rounded-3 me-3"><i
class="bi bi-envelope-paper"></i></div>
<h3 class="fw-bolder mb-0"><span
class="text-white d-inline">
Academic Awards</span></h3>
</div>
<div
class="row row-cols-1 row-cols-md-3 mb-4">
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">DSTA
Polytechnic Digital
Scholarship</div></div>
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">EAGLES
Award - 2022</div></div>
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Science
Mentorship Programme
-
2022</div></div>
</div>
<div
class="row row-cols-1 row-cols-md-3">
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Edusave
Scholarship - 2021</div></div>
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Education
Merit Award - 2020</div></div>
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Edusave
Certificate of
Academic
Achievement
-
2020</div></div>
<!--<div class="col"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100"></div></div>-->
</div>
</div>
</section>
<!-- Divider-->
<div class="pb-5"></div>
<!-- Skills Section-->
<section>
<h2
class="text-white fw-bolder mb-4 fade-in">Skills</h2>
<!-- Skillset Card-->
<div
class="card shadow bg-gray border-0 rounded-4 mb-5 fade-in">
<div class="card-body p-5">
<!-- Languages list-->
<div class="mb-0">
<div
class="d-flex align-items-center mb-4">
<div
class="feature bg-green bg-black-primary-to-secondary text-white rounded-3 me-3"><i
class="bi bi-code-slash"></i></div>
<h3
class="fw-bolder mb-0"><span
class="text-white d-inline">Languages</span></h3>
</div>
<div
class="row row-cols-1 row-cols-md-3 mb-4">
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Python</div></div>
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">HTML</div></div>
<div class="col"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">CSS</div></div>
</div>
<div
class="row row-cols-1 row-cols-md-3">
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Javascript
(+ReactJS)</div></div>
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">C#</div></div>
<div class="col"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Ruby</div></div>
</div>
<br>
<!-- Tools list-->
<div class="mb-0">
<div
class="d-flex align-items-center mb-4">
<div
class="feature bg-green bg-black-primary-to-secondary text-white rounded-3 me-3"><i
class="bi bi-git"></i></div>
<h3
class="fw-bolder mb-0"><span
class="text-muted d-inline">Tools</span></h3>
</div>
<div
class="row row-cols-1 row-cols-md-3 mb-4">
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Kali
Linux</div></div>
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Parrot
Security</div></div>
<div class="col"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Git/GitHub</div></div>
</div>
<div
class="row row-cols-1 row-cols-md-3">
<div
class="col mb-4 mb-md-0">
<div
class="d-flex align-items-centerbg-dark bg-dark text-white rounded-4 p-3 h-100">Forensics:
A/iLEAPP/Autopsy
</div>
</div>
<!--<div class="col mb-4 mb-md-0"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100"></div></div>
<div class="col"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100"></div></div>-->
</div>
<br>
<br>
<!-- Scientific skills list-->
<div class="mb-0">
<div
class="d-flex align-items-center mb-4">
<div
class="feature bg-green bg-black-primary-to-secondary text-white rounded-3 me-3"><i
class="bi bi-pen"></i></div>
<h3
class="fw-bolder mb-0">
<span
class="text-white d-inline">Scientific
Skills
</span>
</h3>
</div>
<div
class="row row-cols-1 row-cols-md-3 mb-4">
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Scientific
Research</div></div>
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Scientific
Communications</div></div>
<!--<div class="col"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100">Web Development</div></div>
</div>
<div class="row row-cols-1 row-cols-md-3">
<div class="col mb-4 mb-md-0"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100"></div></div>
<div class="col mb-4 mb-md-0"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100"></div></div>
<div class="col"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100"></div></div>-->
</div>
</div>
<br>
<!-- Soft Skills list-->
<div class="mb-0">
<div
class="d-flex align-items-center mb-4">
<div
class="feature bg-green bg-black-primary-to-secondary text-white rounded-3 me-3"><i
class="bi bi-people-fill"></i></div>
<h3
class="fw-bolder mb-0"><span
class="text-muted d-inline">Soft
Skills</span></h3>
</div>
<div
class="row row-cols-1 row-cols-md-3 mb-4">
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Adaptability</div></div>
<div
class="col mb-4 mb-md-0"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Proactiveness</div></div>
<div
class="col"><div
class="d-flex align-items-center bg-dark text-white rounded-4 p-3 h-100">Teamwork</div></div>
</div>
<!--<div class="row row-cols-1 row-cols-md-3">
<div class="col mb-4 mb-md-0"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100"></div></div>
<div class="col mb-4 mb-md-0"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100"></div></div>
<div class="col"><div class="d-flex align-items-center bg-light rounded-4 p-3 h-100"></div></div>-->
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</main>
<!-- Footer-->
<footer class="bg-gray py-4 mt-auto">
<div class="container px-5">
<div
class="row align-items-center justify-content-between flex-column flex-sm-row">
<div class="col-auto">
<div class="small m-0 text-green">$ Copyright
© Kairos' Portfolio 2023
</div>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JS-->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>