-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
542 lines (483 loc) · 31.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
<!DOCTYPE html>
<html lang="en">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-172959103-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-172959103-1');
</script>
<title>Project Kratos: The Mars Rover</title>
<link rel="icon" href="./images/formal_imgs/img/kratoslogosmall.png">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width">
<meta name="keywords" content="Mars Rover">
<meta name="description" content="The Official Website for Project Kratos: The Student team for BITS Pilani K. K. Birla Goa Campus for University and Indian Rover Challenge.">
<meta property="og:type" content="website">
<meta property="og:image:url" content="https://kratosbitsgoa.com/images/formal_imgs/img/completelogo.jpg">
<meta property="og:image:type" content="image/jpg">
<meta property="og:image:width" content="1148">
<meta property="og:image:height" content="688">
<meta property="og:image:alt" content="Project Kratos Logo">
<meta property="og:description"
content="The Official Website for Project Kratos: The Student team for BITS Pilani K. K. Birla Goa Campus for University and Indian Rover Challenge.">
<meta property="og:title" content="Project Kratos BITS Goa">
<meta property="og:url" content="https://kratosbitsgoa.com/">
<!-- STYLESHEET CSS FILES -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/nivo-lightbox.css">
<link rel="stylesheet" href="css/nivo_themes/default/default.css">
<link rel="stylesheet" href="css/templatemo-style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
</head>
<body data-spy="scroll" data-target=".navbar-collapse" data-offset="50">
<!-- preloader section -->
<div class="preloader">
<div class="sk-spinner sk-spinner-rotating-plane"></div>
</div>
<!-- home section -->
<section id="home">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<img id="logo" src="images/formal_imgs/img/kratoslogo.png" alt="Kratos" width="75%">
<h2 class="wow bounceInDown rotate">We Aim. We Work. We Succeed.</h2>
<h3 class="wow bounce">Planetary exploration through new age rover systems and science</h3>
<a href="#intro" class="btn btn-default smoothScroll">LET'S EXPLORE</a>
</div>
</div>
</div>
</section>
<!-- navigation section -->
<div class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span
class="icon icon-bar"></span> <span class="icon icon-bar"></span> <span class="icon icon-bar"></span>
</button>
<a href="#" class="navbar-brand"><img id="logo" src="images/formal_imgs/img/logo.png" alt="Kratos"></a></div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#home" class="smoothScroll">HOME</a></li>
<li><a href="#intro" class="smoothScroll">ABOUT US</a></li>
<li><a href="#team" class="smoothScroll">TEAM</a></li>
<li><a href="#portfolio" class="smoothScroll">GALLERY</a></li>
<li><a href="#contact" class="smoothScroll">CONTACT</a></li>
</ul>
</div>
</div>
</div>
<!-- intro section -->
<section id="intro" class="intro1">
<div class="container">
<div class="row">
<div class="col-md-offset-1 col-md-10 col-sm-offset-1 col-sm-10 title">
<h2>Team Kratos</h2>
<hr>
<p>Team Kratos is a multidisciplinary team from BITS Pilani, K. K. Birla Goa Campus, started in 2018, aspiring
to develop rovers equipped with advanced subsystems suitable for interplanetary deep space missions, seeking
to study the application of engineering research into rover robotics, autonomous traversal, and detection of
extraterrestrial life. We’re a team of 30 students from diverse backgrounds with a vision, to create
groundbreaking innovations in the field of space exploration. </p>
</div>
</div>
</div>
</section>
<!-- -----------about competition-------------------- -->
<section id="intro" class="intro2">
<div class="container">
<div class="row">
<div class="col-md-offset-1 col-md-10 col-sm-offset-1 col-sm-10 title">
<h2>The Indian Rover Challenge</h2>
<hr>
<p>The Indian Rover Challenge is an annual competition held by the Mars Society South Asia. It features a challenge to engage students worldwide in robotics and space exploration. It aims to ignite and encourage the spirit of innovation amongst budding engineers as they set on a quest to build a space exploration rover, using their skills and ideas. The third edition of the Indian Rover Challenge was held during January 17-20, 2020, at the Vellore Institute of Technology (VIT) Chennai, Tamil Nadu, India.
In our maiden year itself, we are proud to announce that we stood 10th out of 35 participating teams, and were first amongst all newly participating rovers.
We are now working hard to improve our rover based on our experiences in IRC 2020, and are enthusiastically looking forward to be a part of IRC 2021.</p>
</div>
</div>
</div>
</section>
<section id="intro" class="intro3">
<div class="container">
<div class="row">
<div class="col-md-offset-1 col-md-10 col-sm-offset-1 col-sm-10 title">
<h2>University Rover Challenge</h2>
<hr>
<p> University Rover Challenge is an annual competition held by the Mars Society, in the desert of southern
Utah in the United States. URC challenges student teams to design and build the next generation of Mars
rovers that will one day work alongside astronauts exploring the Red Planet. URC was launched in 2006, with
competitions being held every summer since 2007. The competition has 4 tasks, namely Science task, Extreme
Retrieval, and Delivery task, Equipment Servicing task and Autonomous Traversal task</p>
</div>
</div>
</div>
</section>
<!-- team section -->
<section id="team">
<div style="width: 90%;margin:auto;">
<div class="row">
<div class="team-head">
<div class="team-sub-head col-md-offset-3 col-md-6 col-xs-12 ">
<h2>The Team</h2>
</div>
</div>
</div>
<div class="row">
<div class="tab">
<button class="col-md-offset-3 col-md-3 col-xs-6 tablinks" onclick="openTab(event, 'Current Team')" id="defaultOpen">Current Team</button>
<button class="col-md-3 col-xs-6 tablinks" onclick="openTab(event, 'Founders')">The Founders</button>
</div>
</div>
<div class="row">
<div id="Current Team" class="tabcontent">
<div>
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-12 wow" data-wow-delay="0.9s"><img loading="lazy"
src="images/formal_imgs/Vidit%20Parab%2c%20Team%20Lead.jpg" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Vidit<br>Parab</h4>
<h3>Team Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/vidit-parab-499667167" class="fa fa-linkedin"> </a target="_blank">
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12 wow" data-wow-delay="0.9s"><img loading="lazy"
src="images/formal_imgs/Ritvik%20Puranik%20%2c%20Technical%20Vice%20Lead.jpg" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Ritvik<br>Puranik</h4>
<h3>Technical Vice Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/ritvik-puranik" class="fa fa-linkedin"> </a
target="_blank">
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12 wow" data-wow-delay="0.9s"><img loading="lazy"
src="images/formal_imgs/Shivangipic.jpg" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Shivangi<br>Gupta</h4>
<h3>Non-Technical Vice Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/shivangi-gupta-3429aa8b" class="fa fa-linkedin"> </a
target="_blank">
</div>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-12 wow " data-wow-delay="0.9s">
<img src="images/formal_imgs/prabhutva.jpg" loading="lazy" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Prabhutva<br>Agrawal</h4>
<h3>Head of Creative Design</h3>
<a target="_blank" href="https://www.linkedin.com/in/prabhutva/" class="fa fa-linkedin"> </a
target="_blank">
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12 wow" data-wow-delay="0.9s"><img loading="lazy"
src="images/formal_imgs/Tanishq%20Nandan%20Autonomous%20Lead.jpg" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Tanishq<br>Nandan</h4>
<h3>Autonomous Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/tanishq-nandan-ab9bb5194" class="fa fa-linkedin"> </a
target="_blank">
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12 wow" data-wow-delay="0.9s"><img loading="lazy"
src="images/formal_imgs/Aniruddh%20Nayak%2c%20Mech%20Lead..jpg" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Aniruddha<br>Nayak</h4>
<h3>Mechanical Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/aniruddha-nayak-363707161" class="fa fa-linkedin"> </a
target="_blank">
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12 wow" data-wow-delay="0.9s"><img loading="lazy"
src="images/formal_imgs/Ithihas%20M.%2c%20Life%20detection%20Lead.jpg" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Ithihas<br>Madala</h4>
<h3>Life Detection Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/ithihasmadala" class="fa fa-linkedin">
</a>
</div>
</div>
</div>
<div class="row centered">
<div class="col-md-3 col-sm-3 col-xs-12 wow" data-wow-delay="0.9s"><img loading="lazy"
src="images/formal_imgs/Aditya%20Bidwai%20%2c%20Controls%20Lead.jpg" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Aditya<br>Bidwai</h4>
<h3>Controls Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/aditya-bidwai-27980016b" class="fa fa-linkedin"> </a
target="_blank">
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12 wow" data-wow-delay="0.9s">
<img src="images/formal_imgs/Devansh%20Gupta%2c%20Power%20Lead.jpg" loading="lazy" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Devansh<br>Gupta</h4>
<h3>Power Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/devansh-gupta-428173167" class="fa fa-linkedin"> </a
target="_blank">
</div>
</div>
<div class="col-md-3 col-sm-3 col-xs-12 wow" data-wow-delay="0.9s">
<img src="images/formal_imgs/Advait%20Kulkarni%20%2c%20Communication%20Lead.jpg" loading="lazy" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Advait<br>Kulkarni</h4>
<h3>Communication Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/advait-kulkarni-5574b21aa" class="fa fa-linkedin"> </a target="_blank">
</div>
</div>
</div>
</div>
</div>
<div id="Founders" class="tabcontent">
<div>
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-12" data-wow-delay="0.9s">
<img src="images/formal_imgs/Akash Chaudhary.jpg" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Akash <br> Chaudhary</h4>
<h3>Team Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/akash1306" class="fa fa-linkedin"> </a target="_blank">
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12" data-wow-delay="0.9s"><img
src="images/formal_imgs/Devanshu Wakhale.jpg" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Devanshu <br> Wakhale</h4>
<h3>Mechanical/Vice Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/devanshu-wakhale-6607b2190" class="fa fa-linkedin"> </a
target="_blank">
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12" data-wow-delay="0.9s"><img
src="images/formal_imgs/Krishnam_Bajaj.JPG" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Krishnam <br> Bajaj</h4>
<h3>Communication Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/krishnam-bajaj-74a006137" class="fa fa-linkedin"> </a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-12" data-wow-delay="1.3s"><img
src="images/formal_imgs/Venugopalan Iyengar.jpg" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Venugopalan <br> Iyengar</h4>
<h3>Autonomous Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/venugopalan-iyengar-598a75192" class="fa fa-linkedin">
</a>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12" data-wow-delay="1.6s"><img
src="images/formal_imgs/MihirDharmadhikari.jpeg" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Mihir <br> Dharmadhikari</h4>
<h3>Controls Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/mihir-dharmadhikari" class="fa fa-linkedin"> </a
target="_blank">
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12" data-wow-delay="0.9s"><img
src="images/formal_imgs/Ankit.jpg" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Kumar <br> Ankit</h4>
<h3>Science Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/kumar-ankit-5bba3a12a/" class="fa fa-linkedin"> </a
target="_blank">
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 wow col-offset-4 col-md-offset-4 col-sm-offset-4 " data-wow-delay="0.9s">
<img src="images/formal_imgs/Shreyas.jpg" loading="lazy" class="img-responsive" alt="team img">
<div class="team-des">
<h4>Shreyas<br>Vastrad</h4>
<h3>Power Lead</h3>
<a target="_blank" href="https://www.linkedin.com/in/shreyasvastrad/" class="fa fa-linkedin"> </a
target="_blank">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- portfolio section -->
<section id="portfolio">
<div class="container">
<div class="row">
<div class="col-md-offset-3 col-md-6 col-sm-offset-2 col-sm-8 title">
<h2>Gallery</h2>
<hr>
</div>
</div>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/45rUC36aaZo" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<!-- <div style="position:relative;padding-bottom:56.25%;">
<iframe style="width:100%;height:100%;position:absolute;left:0px;top:0px;"
frameborder="0" width="100%" height="100%" loading="lazy"
src="https://www.youtube.com/embed/7ka3s3takjY" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
<iframe style="position:absolute;left:0px;top:0px;"
frameborder="0" loading="lazy" width="300" height="150" src="https://www.youtube.com/embed/7ka3s3takjY" frameborder="0" allowfullscreen></iframe>
</div> -->
<div class="row">
<div class="col-md-offset-3 col-md-6 col-sm-offset-2 col-sm-8 title">
<p>Project Kratos - System Acceptance Review - URC 2021</p>
<br>
<p><b>Have a look at some of our moments while working in BITS.</b></p>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12"></div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/NEW%20(4).jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/NEW%20(4).jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/NEW%20(5).jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/NEW%20(5).jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/NEW%20(2).jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/NEW%20(2).jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/NEW%20(3).jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/NEW%20(3).jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/NEW%20(6).jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/NEW%20(6).jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/NEW%20(7).jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/NEW%20(7).jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/NEW%20(1).jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/NEW%20(1).jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/10.jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/10.jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/11.jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/11.jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/20190220_233402(0).jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/20190220_233402(0).jpg"
alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/20191222_181318.jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/20191222_181318.jpg"
alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/30.jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/30.jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a
href="images/gallery/71867010_2427492940674958_7784866139418394624_o.jpg"
data-lightbox-gallery="portfolio-gallery"><img
loading="lazy" src="images/gallery/71867010_2427492940674958_7784866139418394624_o.jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a
href="images/gallery/75282310_2539509372806647_1829986827822432256_n.jpg"
data-lightbox-gallery="portfolio-gallery"><img
loading="lazy" src="images/gallery/75282310_2539509372806647_1829986827822432256_n.jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/9.jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/9.jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/IMG_20190219_145933.jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/IMG_20190219_145933.jpg"
alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/IMG_20190221_150431.jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/IMG_20190221_150431.jpg"
alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/IMG_20191016_225047.jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/IMG_20191016_225047.jpg"
alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a href="images/gallery/IMG_20191223_193523.jpg"
data-lightbox-gallery="portfolio-gallery"><img loading="lazy" src="images/gallery/IMG_20191223_193523.jpg"
alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a
href="images/gallery/SAVE_20191126_175024.jpg" data-lightbox-gallery="portfolio-gallery"><img
loading="lazy" src="images/gallery/SAVE_20191126_175024.jpg" alt="portfolio img"></a>
</div>
<div class="col-md-3 col-sm-3 wow fadeIn" data-wow-delay="0.6s"><a
href="images/gallery/WhatsApp%20Image%202019-04-29%20at%2006.40.06.jpg"
data-lightbox-gallery="portfolio-gallery"><img
loading="lazy" src="images/gallery/WhatsApp%20Image%202019-04-29%20at%2006.40.06.jpg" alt="portfolio img"></a>
</div>
</div>
</div>
</section>
<!-- contact section -->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-md-offset-3 col-md-6 col-sm-offset-2 col-sm-8 title">
<h2>Contact Us</h2>
<hr>
<p>Want to know more about us? Feel free to contact us.<br><a href="tel:+918879705469" class="fa fa-phone wow bounceIn" data-wow-delay="0.9s"><b>+91 88797 05469</b></a></p>
</div>
<div class="col-md-offset-3 col-md-6 col-sm-offset-2 col-sm-8 contact-form wow fadeInUp" data-wow-delay="0.9s">
<form method="post" id="contact-form">
<input type="text" class="form-control" id="name-field" placeholder="Name" required>
<input type="email" class="form-control" id="email-field" placeholder="Email" required>
<textarea class="form-control" placeholder="Message" id="text-field" rows="6" required></textarea>
<input type="submit" class="form-control" value="SEND EMAIL">
</form>
<h2 id="after-submit"></h2>
</div>
</div>
</div>
</section>
<!-- footer section -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<h2 class="wow fadeIn" data-wow-delay="0.9s">Follow Us</h2>
<ul class="social-icon">
<li><a href="https://www.facebook.com/KratosBITSGoa/" class="fa fa-facebook wow bounceIn"
data-wow-delay="0.3s"></a></li>
<li><a href="https://www.instagram.com/kratosbitsgoa/" class="fa fa-instagram wow bounceIn"
data-wow-delay="0.6s"></a></li>
<li><a href="https://www.linkedin.com/company/kratosbitsgoa/" class="fa fa-linkedin wow bounceIn"
data-wow-delay="0.9s"></a></li>
<li><a href="mailto:[email protected]" class="fa fa-envelope wow bounceIn" data-wow-delay="0.9s"></a>
</li>
<li><a href="tel:+918879705469" class="fa fa-phone wow bounceIn" data-wow-delay="0.9s"></a></li>
</ul>
</div>
<div class="col-md-12 col-sm-12 copyright">
<p>Copyright © 2021 Kratos</p>
<h5>Made With ♥ By <a href="http://devsoc.club/" target="_blank"> DevSoc</a> </h5>
</div>
</div>
</div>
</footer>
<!-- -------sticky icons--------------------- -->
<!-- <div class="icon-bar-2">
<a href="https://www.facebook.com/KratosBITSGoa/" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/kratosbitsgoa" class="twitter"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/kratosbitsgoa/" class="linkedin"><i class="fa fa-linkedin"></i></a>
<a href="mailto:[email protected]" class="youtube"><i class="fa fa-envelope"></i></a>
</div> -->
<!-- JAVASCRIPT JS FILES -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/nivo-lightbox.min.js"></script>
<script src="js/smoothscroll.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/jquery.parallax.js"></script>
<script src="js/wow.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.0/axios.js"></script>
<script src="js/custom.js"></script>
</body>
</html>