-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
1271 lines (1230 loc) · 114 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>PYTHAKON</title>
<link rel="shortcut icon" href="assets/img/Untitled-2.png" type="image/png">
<meta property="og:image" content="assets/img/Untitled-2.png" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/animate.min.css" />
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<script src="https://kit.fontawesome.com/deb24230a4.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="assets/css/slick.css">
<link rel="stylesheet" href="assets/css/default.css">
<link rel="stylesheet" href="assets/css/style.css">
<style>
.a {
/* color: #333; */
color: #fff;
margin: 0 auto;
text-align: center;
background-color: #000;
border-radius: 20px;
}
.b {
font-weight: normal;
letter-spacing: .125rem;
text-transform: uppercase;
}
.c {
display: inline-block;
font-size: 1.5em;
list-style-type: none;
padding: 1em;
text-transform: uppercase;
}
.d {
display: block;
font-size: 4.5rem;
}
@media all and (max-width: 768px) {
.a {
border-radius: 0px;
}
.b {
font-size: calc(1.5rem * var(--smaller));
}
.c {
font-size: calc(1.125rem * var(--smaller));
}
.c .d {
font-size: calc(3.375rem * var(--smaller));
}
}
.stroke {
border-left: 1px solid #000;
border-right: 1px solid #000;
}
</style>
</head>
<body>
<div class="preloader">
<div class="lds-ellipsis">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div class="off_canvars_overlay">
</div>
<div class="offcanvas_menu">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="offcanvas_menu_wrapper">
<div class="canvas_close">
<a href="javascript:void(0)"><i class="fa fa-times"></i></a>
</div>
<div class="offcanvas-social">
<ul class="text-center">
<li><a href="https://discord.gg/kuBpUCjE4k" target="_blank"><i style="color: #000;"
class="fa-brands fa-discord"></i></a></li>
<li><a href="https://www.facebook.com/clubgamma/" target="_blank"><i
class="fab fa-facebook-f" style="color: #000;"></i></a></li>
<li><a href="https://www.linkedin.com/company/clubgamma/mycompany/" target="_blank"><i
class="fab fa-linkedin" style="color: #000;"></a></i></li>
<li><a href="https://www.instagram.com/club_gamma/" target="_blank"><i
class="fab fa-instagram" style="color: #000;"></i></a></li>
</ul>
</div>
<div id="menu" class="text-left ">
<ul class="offcanvas_main_menu">
<li class="menu-item-has-children active">
<a href="#one">Home</a>
<li class="menu-item-has-children active">
<a href="#two">About</a>
</li>
<li class="menu-item-has-children active">
<a href="#three">Hack Domains</a>
</li>
<li class="menu-item-has-children active">
<a href="#four">Prizes</a>
</li>
<li class="menu-item-has-children active">
<a href="#six">Sponsors</a>
</li>
<li class="menu-item-has-children active">
<a href="#seven">FAQs</a>
</li>
<li class="menu-item-has-children active">
<a href="team.html">Team</a>
</li>
<li class="menu-item-has-children active">
<a href="#eight">Contact</a>
</li>
<li class="menu-item-has-children active">
<a href="certi.html">Certificate</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Navbar -->
<section class="infetech-header-area header-sticky" id="nav">
<div class="header-wrapper">
<div class="templates-logo">
<a href="index.html"><img src="assets/img/pylogo.png" alt="logo"></a>
</div>
<div class="header-box">
<div class="header-topbar">
<div class="row g-0 align-items-center ">
<div class="col-lg-6">
<div class="header-topbar-text">
<p><a href="https://g.page/charusatuniversity?share" target="_blank">Charusat
University, Anand
Gujarat</a></p>
</div>
</div>
<div class="col-lg-6">
<div class="header-topbar-info-wrapper">
<div class="header-topbar-social">
<ul>
<li><a href="https://discord.gg/kuBpUCjE4k" target="_blank"><i
style="color: #000;" class="fa-brands fa-discord"></i></a></li>
<li><a href="https://www.facebook.com/clubgamma/" target="_blank"><i
class="fab fa-facebook-f" style="color: #000;"></i></a></li>
<li><a href="https://www.linkedin.com/company/clubgamma/mycompany/"
target="_blank"><i class="fab fa-linkedin" style="color: #000;"></a></i>
</li>
<li><a href="https://www.instagram.com/club_gamma/" target="_blank"><i
class="fab fa-instagram" style="color: #000;"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="header-main-nav">
<div class="header-main-nav-box">
<ul>
<li>
<a href="#one">Home</a>
</li>
<li><a href="#two">About</a></li>
<li>
<a href="#three">Hack Domains</a>
</li>
<li>
<a href="#four">Prizes</a>
</li>
<li>
<a href="#four">Schedule</a>
</li>
<li>
<a href="#five">Sponsors</a>
</li>
<li>
<a href="#seven">FAQs</a>
</li>
<li><a href="team.html">Team</a></li>
<li><a href="#eight">Contact</a></li>
<li>
<a href="certi.html">Certificate</a>
</li>
</ul>
</div>
<div class="header-main-info">
<div class="header-mini-btn">
<ul>
<li><a class="toggle-bar canvas_open" href="#"><i class="fal fa-bars"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Banner -->
<section class="infetech-banner-area infetech-banner-slide" id="one">
<div class="infetech-banner-slide-active item-1">
<div class="item-1"></div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="infetech-banner-content">
<!-- <h4 class="title" data-animation="fadeInDown" data-delay=".1s"
style="color: #ffffff;opacity: 1;font-size: 18px;font-weight: bold;">Only for <span
style="color:#ff0000">
Gujarat </span> Region</h4> -->
<h1 class="" data-animation="fadeInLeft" data-delay=".3s">Unleash your Potential <br> with
Pythakon</h1>
<a class="main-btn" data-animation="fadeInUp" data-delay=".6s"
href="https://docs.google.com/forms/d/e/1FAIpQLSdKmo6FKT0kki1jDO0U4o6YdSuYT5OgaqEsLQGRAydgv7Jl7g/formResponse"
target="_blank">Register Now</a>
<img class="banner-arrow" data-animation="fadeInRight" data-delay=".9s"
src="assets/images/banner-arrow.png" alt="">
</div>
</div>
</div>
</div>
</div>
<div class="infetech-banner-slide-active item-2">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="infetech-banner-content">
<!-- <h4 class="title" data-animation="fadeInDown" data-delay=".1s"
style="color: #ffffff;opacity: 1;font-weight: bold;font-size: 18px;">Only for <span
style="color:#ff0000">
Gujarat </span> Region</h4> -->
<h1 class="" data-animation="fadeInLeft" data-delay=".3s">Unleash your Potential <br> with
Pythakon</h1>
<a class="main-btn" data-animation="fadeInUp" data-delay=".6s"
href="https://docs.google.com/forms/d/e/1FAIpQLSdKmo6FKT0kki1jDO0U4o6YdSuYT5OgaqEsLQGRAydgv7Jl7g/formResponse"
target="_blank">Register Now</a>
<img class="banner-arrow" data-animation="fadeInRight" data-delay=".9s"
src="assets/images/banner-arrow.png" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="infetech-information-area">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center mb-55">
<h3 class="title">Teams Selected</h3>
<!-- <span>Cash prizes and all deliverables will be announced shortly. All participants will receive
Certificate of Participation</span> -->
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<table class="table table-bordered table-hover" id="mtab1">
<thead>
<tr>
<th scope="col">Team Code</th>
<th scope="col">Team Name</th>
</tr>
</thead>
<tbody >
</tbody>
</table>
</div>
<div class="col-lg-4">
<table class="table table-bordered table-hover" id="mtab2">
<thead>
<tr>
<th scope="col">Team Code</th>
<th scope="col">Team Name</th>
</tr>
</thead>
<tbody >
</tbody>
</table>
</div>
<div class="col-lg-4">
<table class="table table-bordered table-hover" id="mtab3">
<thead>
<tr>
<th scope="col">Team Code</th>
<th scope="col">Team Name</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</section>
<section class="infetech-service-3-area" style="margin-top: 50px;">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center mb-55">
<h3 class="title">Important Guidelines for the PYTHAKON</h3>
<!-- <span>Cash prizes and all deliverables will be announced shortly. All participants will receive
Certificate of Participation</span> -->
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<div class="single-service-3-item animated wow fadeIn" data-wow-duration="1500ms"
data-wow-delay="0ms">
<div class="bg"></div>
<h4 class="title">Guidelines for participants</h4>
<!-- <p>
1st Place: INR 30,000 <br>
2nd Place: INR 20,000 <br>
3rd Place: INR 10,000</p> -->
<a class="main-btn" data-animation="fadeInUp" data-delay=".6s"
href="./assets/pdf/Guidelines for Participants.pdf" target="_blank">DOWNLOAD</a>
</div>
</div>
<div class="col-lg-4">
<div class="single-service-3-item item-2 animated wow fadeIn" data-wow-duration="1500ms"
data-wow-delay="300ms" style="height: 212px;">
<div class="bg"></div>
<h4 class="title">Event Detailed Schedule</h4>
<!-- <p>Certificate of Participation will be given to <br> all the participants.</p> -->
<a class="main-btn" data-animation="fadeInUp" data-delay=".6s"
href="./assets/pdf/Pythakon'22 Event Schedule.pdf" target="_blank">DOWNLOAD</a>
</div>
</div>
<div class="col-lg-4">
<div class="single-service-3-item item-3 animated wow fadeIn" data-wow-duration="1500ms"
data-wow-delay="300ms" style="height: 212px;">
<div class="bg"></div>
<h4 class="title">Undertaking from Team</h4>
<!-- <p>Certificate of Participation will be given to <br> all the participants.</p> -->
<a class="main-btn" data-animation="fadeInUp" data-delay=".6s"
href="./assets/pdf/Undertaking from Team.pdf" target="_blank">DOWNLOAD</a>
</div>
</div>
</div>
</div>
</section>
<section class="infetech-information-area" id="two">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="information-thumb animated wow fadeInLeft" data-wow-duration="1500ms"
data-wow-delay="0ms">
<div class="thumb">
<!-- <img src="assets/images/information-thumb-2.jpg" alt=""> -->
<img src="assets/img/py.png" alt="">
<img class="information-logo" src="assets/img/Untitled-2.png" alt="">
</div>
<div class="thumb thumb-2">
<img class="information-logo" src="assets/img/Untitled-2.png" alt="">
<img src="assets/img/py2.png">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="section-title pl-70">
<span>Get to Know Us</span>
<h3 class="title">About The Hackathon</h3>
</div>
<div class="information-content pl-70">
<p style="text-align: justify;margin-top: 20px;">Pythakon'22 is an 36-hour Python Hack-a-Thon
designed to allow
participants to flex their
Python skills and creativity.
This hackathon aims to foster a technical temper among the student community and encourage
healthy competition. It is an
exclusive opportunity for participants to develop and showcase their expertise as well as to
create innovative and
exciting solutions to real-world problems.</p>
<div class="quote-text">
<p><b> Date:</b> 5th & 6th August 2022 <br>
<b> Venue:</b> Charusat Campus <br>
<b>Team Size:</b> 2 to 4 members <br>
<b> Eligibility:</b> Open to all familiar with Python
</p>
</div>
<div class="information-btns">
<a class="main-btn"
href="https://docs.google.com/forms/d/e/1FAIpQLSdKmo6FKT0kki1jDO0U4o6YdSuYT5OgaqEsLQGRAydgv7Jl7g/formResponse"
target="_blank">Lets Hack it</a>
<div class="play-btn">
<div class="icon">
<a class="video-popup" href="./assets/img/draft.mp4"><i class="fas fa-play"></i></a>
</div>
<span>Watch our <br> few minutes video</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="infetech-service-area">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="single-infetech-serice-item animated wow fadeInUp" data-wow-duration="1000ms"
data-wow-delay="0ms">
<div class="content">
<h3 class="title" style="color: #fff;margin-bottom: 20px;">Mode of Conduct</h3>
<h4 class="title" style="color: #b882fc;">Offline - Charusat Campus</h4>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-infetech-serice-item animated wow fadeInUp" data-wow-duration="1000ms"
data-wow-delay="0ms">
<div class="content">
<h3 class="title" style="color: #fff;margin-bottom: 20px;">Date</h3>
<h3 class="title" style="color: #b882fc;">5th & 6th <br> August 2022</h3>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-infetech-serice-item animated wow fadeInUp" data-wow-duration="1000ms"
data-wow-delay="300ms">
<div class="content">
<h3 class="title" style="color: #fff;margin-bottom: 20px;">Team Size</h3>
<h3 class="title" style="color: #b882fc;">2 to 4 <br> members</h3>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="single-infetech-serice-item animated wow fadeInUp" data-wow-duration="1000ms"
data-wow-delay="600ms">
<div class="content">
<h3 class="title" style="color: #fff;margin-bottom: 20px;">Domains </h3>
<h3 class="title" style="color: #b882fc;">PYTHON</h3>
</div>
<div id="three"></div>
</div>
</div>
</div>
</div>
</section>
<section class="infetech-clients-area">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center mb-55">
<h3 class="title">Hack Domains</h3>
<span>Problem statements will be based on following tech domains.</span>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="clients-tabs-item">
<ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link mt-90" id="pills-one-tab" data-bs-toggle="pill"
data-bs-target="#pills-one" type="button" role="tab" aria-controls="pills-one"
aria-selected="true">
<svg fill="#5f2dee" xmlns="http://www.w3.org/2000/svg" height="60px" version="1.1"
viewBox="0 0 512 512" width="60px">
<g id="surface1">
<path
d="M 488.90625 84 L 384 84 C 379.855469 84 376.5 87.355469 376.5 91.5 C 376.5 95.644531 379.855469 99 384 99 L 488.90625 99 C 493.371094 99 497 102.628906 497 107.09375 L 497 395.90625 C 497 400.371094 493.371094 404 488.90625 404 L 23.09375 404 C 18.628906 404 15 400.371094 15 395.90625 L 15 107.09375 C 15 102.628906 18.628906 99 23.09375 99 L 187.875 99 L 187.875 114 L 37.5 114 C 33.355469 114 30 117.355469 30 121.5 L 30 319.667969 C 30 323.808594 33.355469 327.167969 37.5 327.167969 C 41.644531 327.167969 45 323.808594 45 319.667969 L 45 129 L 187.875 129 L 187.875 169.234375 L 155.765625 184.574219 C 153.203125 185.800781 151.5 188.449219 151.5 191.34375 L 151.5 313.65625 C 151.5 316.546875 153.160156 319.179688 155.765625 320.425781 L 252.765625 366.769531 C 254.867188 367.757812 257.238281 367.707031 259.234375 366.769531 L 313.765625 340.714844 C 317.503906 338.929688 319.085938 334.449219 317.300781 330.714844 C 315.515625 326.976562 311.03125 325.394531 307.296875 327.179688 L 263.5 348.105469 L 263.5 242.414062 L 345.5 203.238281 L 345.5 308.929688 L 334.359375 314.25 C 330.621094 316.035156 329.039062 320.515625 330.824219 324.25 C 332.609375 327.988281 337.089844 329.570312 340.824219 327.785156 L 356.234375 320.425781 C 358.839844 319.179688 360.5 316.546875 360.5 313.65625 L 360.5 191.34375 C 360.5 188.484375 358.835938 185.820312 356.234375 184.574219 L 324.125 169.234375 L 324.125 129 L 467 129 L 467 374 L 45 374 L 45 351.667969 C 45 347.523438 41.644531 344.167969 37.5 344.167969 C 33.355469 344.167969 30 347.523438 30 351.667969 L 30 381.5 C 30 385.644531 33.355469 389 37.5 389 L 474.5 389 C 478.644531 389 482 385.644531 482 381.5 L 482 121.5 C 482 117.355469 478.644531 114 474.5 114 L 324.125 114 L 324.125 99 L 352 99 C 356.144531 99 359.5 95.644531 359.5 91.5 C 359.5 87.355469 356.144531 84 352 84 L 324.125 84 L 324.125 69 L 391.375 69 C 395.519531 69 398.875 65.644531 398.875 61.5 L 398.875 43.710938 C 407.605469 40.613281 413.875 32.277344 413.875 22.5 C 413.875 10.09375 403.78125 0 391.375 0 C 378.96875 0 368.875 10.09375 368.875 22.5 C 368.875 32.277344 375.144531 40.613281 383.875 43.710938 L 383.875 54 L 316.625 54 C 312.480469 54 309.125 57.355469 309.125 61.5 L 309.125 84 L 263.5 84 L 263.5 43.710938 C 272.230469 40.613281 278.5 32.277344 278.5 22.5 C 278.5 10.09375 268.40625 0 256 0 C 243.59375 0 233.5 10.09375 233.5 22.5 C 233.5 32.277344 239.769531 40.613281 248.5 43.710938 L 248.5 84 L 202.875 84 L 202.875 61.5 C 202.875 57.355469 199.519531 54 195.375 54 L 128.125 54 L 128.125 43.710938 C 136.855469 40.613281 143.125 32.277344 143.125 22.5 C 143.125 10.09375 133.03125 0 120.625 0 C 108.21875 0 98.125 10.09375 98.125 22.5 C 98.125 32.277344 104.394531 40.613281 113.125 43.710938 L 113.125 61.5 C 113.125 65.644531 116.480469 69 120.625 69 L 187.875 69 L 187.875 84 L 23.09375 84 C 10.359375 84 0 94.359375 0 107.09375 L 0 395.90625 C 0 408.640625 10.359375 419 23.09375 419 L 185.695312 419 C 182.792969 446.511719 164.601562 462.578125 158.867188 467 L 127 467 C 114.59375 467 104.5 477.09375 104.5 489.5 C 104.5 501.90625 114.59375 512 127 512 L 385 512 C 397.40625 512 407.5 501.90625 407.5 489.5 C 407.5 477.09375 397.40625 467 385 467 L 353.152344 467 C 347.492188 462.59375 329.238281 446.382812 326.3125 419 L 488.90625 419 C 501.640625 419 512 408.640625 512 395.90625 L 512 107.09375 C 512 94.359375 501.640625 84 488.90625 84 Z M 391.375 15 C 395.511719 15 398.875 18.363281 398.875 22.5 C 398.875 26.636719 395.511719 30 391.375 30 C 387.238281 30 383.875 26.636719 383.875 22.5 C 383.875 18.363281 387.238281 15 391.375 15 Z M 256 15 C 260.136719 15 263.5 18.363281 263.5 22.5 C 263.5 26.636719 260.136719 30 256 30 C 251.863281 30 248.5 26.636719 248.5 22.5 C 248.5 18.363281 251.863281 15 256 15 Z M 120.625 15 C 124.761719 15 128.125 18.363281 128.125 22.5 C 128.125 26.636719 124.761719 30 120.625 30 C 116.488281 30 113.125 26.636719 113.125 22.5 C 113.125 18.363281 116.488281 15 120.625 15 Z M 202.875 129 L 248.5 129 L 248.5 140.269531 L 202.875 162.070312 Z M 335.601562 191.34375 L 256 229.371094 L 176.398438 191.34375 L 256 153.3125 Z M 166.5 203.238281 L 248.5 242.414062 L 248.5 348.105469 L 166.5 308.929688 Z M 309.125 162.070312 L 263.5 140.269531 L 263.5 129 L 309.125 129 Z M 309.125 99 L 309.125 114 L 263.5 114 L 263.5 99 Z M 248.5 99 L 248.5 114 L 202.875 114 L 202.875 99 Z M 392.5 489.5 C 392.5 493.636719 389.136719 497 385 497 L 127 497 C 122.863281 497 119.5 493.636719 119.5 489.5 C 119.5 485.363281 122.863281 482 127 482 L 385 482 C 389.136719 482 392.5 485.363281 392.5 489.5 Z M 331.640625 467 L 180.359375 467 C 189.152344 456.730469 198.90625 440.726562 200.777344 419 L 311.222656 419 C 313.09375 440.726562 322.847656 456.730469 331.640625 467 Z M 331.640625 467 " />
</g>
</svg>
<span>Artificial <br> Intelligence</span>
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link mt-40" id="pills-tow-tab" data-bs-toggle="pill"
data-bs-target="#pills-tow" type="button" role="tab" aria-controls="pills-tow"
aria-selected="false">
<svg fill="#5f2dee" id="Layer_1_1_" enable-background="new 0 0 64 64" height="60px"
viewBox="0 0 64 64" width="60px" xmlns="http://www.w3.org/2000/svg">
<path
d="m16 32c0 8.822 7.178 16 16 16s16-7.178 16-16-7.178-16-16-16-16 7.178-16 16zm8.485-11.793 1.62 3.24c.097.193.254.351.447.447l3.034 1.517-2.152 3.589h-3.434c-.431 0-.812.275-.949.684l-.772 2.316h-4.279c0-4.953 2.593-9.304 6.485-11.793zm7.515 22.793v3c-4.906 0-9.223-2.541-11.723-6.371l4.543-1.514 3.58 2.685c.365.273.869.266 1.225-.019l4.301-3.441 2.074 2.074v1.805l-3.243.811c-.445.111-.757.511-.757.97zm14-11c0 2.206-.527 4.287-1.44 6.146l-2.273-2.273 1.545-2.318c.156-.234.207-.524.138-.797l-1-4c-.067-.27-.245-.5-.489-.634-.245-.135-.534-.16-.798-.072l-2.316.772-2.282-3.042.696-2.782h4.928c2.05 2.436 3.291 5.574 3.291 9zm-9-11c-.459 0-.859.312-.97.757l-1 4c-.073.292-.01.602.17.843l3 4c.258.344.708.485 1.116.349l1.976-.659.63 2.523-1.754 2.632c-.265.396-.212.925.125 1.262l3.228 3.228c-2.168 3.137-5.582 5.338-9.521 5.905v-2.06l3.243-.811c.445-.11.757-.51.757-.969v-3c0-.265-.105-.52-.293-.707l-3-3c-.36-.361-.934-.393-1.332-.074l-4.395 3.516-3.38-2.535c-.262-.198-.604-.252-.917-.149l-5.387 1.796c-.555-1.201-.941-2.492-1.137-3.847h4.841c.431 0 .812-.275.949-.684l.772-2.316h3.279c.351 0 .677-.184.857-.485l3-5c.144-.239.181-.527.103-.794s-.264-.49-.513-.615l-3.702-1.851-1.501-3.003c1.758-.797 3.703-1.252 5.756-1.252 3.257 0 6.251 1.128 8.632 3z" />
<path
d="m59 29c-1.302 0-2.402.839-2.816 2h-6.184v2h6.184c.414 1.161 1.514 2 2.816 2 1.654 0 3-1.346 3-3s-1.346-3-3-3zm0 4c-.551 0-1-.449-1-1s.449-1 1-1 1 .449 1 1-.449 1-1 1z" />
<path
d="m59 49c0-1.654-1.346-3-3-3-1.302 0-2.402.839-2.816 2h-1.507l-1.749-4.372c-.152-.379-.519-.628-.928-.628h-3v2h2.323l1.749 4.372c.152.379.519.628.928.628h2.184c.414 1.161 1.514 2 2.816 2 1.654 0 3-1.346 3-3zm-4 0c0-.551.449-1 1-1s1 .449 1 1-.449 1-1 1-1-.449-1-1z" />
<path
d="m48 61c1.654 0 3-1.346 3-3s-1.346-3-3-3c-1.302 0-2.402.839-2.816 2h-2.43l-1.793-6.275c-.122-.429-.515-.725-.961-.725h-5v2h4.246l1.793 6.275c.122.429.515.725.961.725h3.184c.414 1.161 1.514 2 2.816 2zm0-4c.551 0 1 .449 1 1s-.449 1-1 1-1-.449-1-1 .449-1 1-1z" />
<path
d="m39.895 13.447 2.723-5.447h2.554c.421 1.19 1.557 2 2.827 2 .149 0 .3-.011.452-.034.792-.121 1.49-.542 1.965-1.188s.67-1.438.55-2.229c-.249-1.635-1.779-2.759-3.417-2.516-.792.121-1.49.542-1.965 1.188-.177.241-.301.506-.399.779h-3.185c-.379 0-.725.214-.895.553l-2.723 5.447h-3.382v2h4c.379 0 .725-.214.895-.553zm7.299-7.04c.159-.215.391-.356.655-.396.051-.008.101-.011.151-.011.486 0 .914.355.989.85.04.264-.025.528-.183.743-.159.215-.391.356-.655.396-.538.085-1.056-.293-1.139-.839-.041-.264.024-.528.182-.743z" />
<path
d="m54.184 17c.414 1.161 1.514 2 2.816 2 1.654 0 3-1.346 3-3s-1.346-3-3-3c-1.302 0-2.402.839-2.816 2h-4.184c-.334 0-.646.167-.832.445l-1.703 2.555h-2.465v2h3c.334 0 .646-.167.832-.445l1.703-2.555zm2.816-2c.551 0 1 .449 1 1s-.449 1-1 1-1-.449-1-1 .449-1 1-1z" />
<path
d="m3 27c-.552 0-1 .448-1 1v8c0 .552.448 1 1 1h2.464c.25 1.328.604 2.646 1.058 3.937l-2.137 1.233c-.479.276-.642.888-.366 1.366l4 6.928c.276.478.885.642 1.366.366l2.141-1.236c.886 1.029 1.85 1.994 2.879 2.879l-1.236 2.141c-.276.479-.112 1.09.366 1.366l6.928 4c.477.275 1.089.111 1.366-.366l1.233-2.137c1.29.454 2.608.808 3.937 1.058v2.465c0 .552.448 1 1 1h4c.552 0 1-.448 1-1v-10c0-.552-.448-1-1-1-9.925 0-18-8.075-18-18s8.075-18 18-18c.552 0 1-.448 1-1v-10c0-.552-.448-1-1-1h-4c-.552 0-1 .448-1 1v2.464c-1.328.25-2.646.604-3.937 1.058l-1.232-2.137c-.277-.479-.889-.643-1.366-.366l-6.928 4c-.479.276-.642.888-.366 1.366l1.236 2.141c-1.029.886-1.994 1.85-2.879 2.879l-2.142-1.235c-.481-.276-1.09-.112-1.366.366l-4 6.928c-.276.478-.112 1.09.366 1.366l2.137 1.233c-.454 1.291-.808 2.609-1.058 3.937zm4.295 1.153c.271-1.75.738-3.491 1.39-5.172.178-.46-.005-.981-.433-1.228l-2-1.155 3-5.196 2.004 1.157c.427.246.969.144 1.278-.238 1.122-1.391 2.396-2.665 3.787-3.787.383-.309.484-.852.238-1.278l-1.157-2.004 5.196-3 1.155 2c.247.427.767.609 1.227.433 1.682-.652 3.422-1.119 5.172-1.39.488-.075.848-.495.848-.988v-2.307h2v8.025c-10.565.522-19 9.282-19 19.975s8.435 19.453 19 19.975v8.025h-2v-2.307c0-.493-.36-.913-.847-.988-1.75-.271-3.491-.738-5.172-1.39-.46-.177-.98.005-1.228.433l-1.155 2-5.196-3 1.157-2.004c.246-.427.145-.969-.238-1.278-1.391-1.122-2.665-2.396-3.787-3.787-.31-.384-.852-.485-1.278-.238l-2.004 1.157-3-5.196 2-1.155c.427-.247.611-.768.433-1.227-.652-1.682-1.119-3.422-1.39-5.172-.075-.488-.495-.848-.988-.848h-2.307v-6h2.307c.493 0 .913-.36.988-.847z" />
</svg>
<span>Web <br>
<h1></h1> Development
</span>
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link active" id="pills-three-tab" data-bs-toggle="pill"
data-bs-target="#pills-three" type="button" role="tab" aria-controls="pills-three"
aria-selected="false">
<svg fill="#5f2dee" id="_x33_0" enable-background="new 0 0 64 64" height="60px"
viewBox="0 0 64 64" width="60px" xmlns="http://www.w3.org/2000/svg">
<g>
<path
d="m32 17c-8.271 0-15 6.729-15 15s6.729 15 15 15 15-6.729 15-15-6.729-15-15-15zm0 28c-7.168 0-13-5.832-13-13s5.832-13 13-13 13 5.832 13 13-5.832 13-13 13z" />
<path
d="m37 27v-1c0-2.757-2.243-5-5-5s-5 2.243-5 5v1c-1.103 0-2 .897-2 2v10c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2v-10c0-1.103-.897-2-2-2zm-8-1c0-1.654 1.346-3 3-3s3 1.346 3 3v1h-6zm-2 13v-10h10l.001 10z" />
<path
d="m32 30c-1.654 0-3 1.346-3 3 0 1.302.839 2.402 2 2.816v2.184h2v-2.184c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3zm0 4c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1z" />
<path d="m49 11h8v-6h-8zm2-4h4v2h-4z" />
<path d="m5 55h8v-10h-8zm2-8h4v6h-4z" />
<path d="m7 57h4v2h-4z" />
<path
d="m60 41h-5v-8h-4.051c.018-.333.051-.662.051-1s-.033-.667-.051-1h4.051v-11h5.5c1.379 0 2.5-1.122 2.5-2.5 0-.537-.177-1.069-.5-1.5l-1.5-2v-10c0-1.654-1.346-3-3-3h-10c-1.654 0-3 1.346-3 3v10l-1.501 2.001c-.148.198-.262.419-.345.651-1.276-.93-2.666-1.706-4.154-2.299v-1.537c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v.874c-1.285-.352-2.622-.567-4-.639v-6.235c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v6.235c-2.109.111-4.127.557-6 1.302v-3.537c1.161-.414 2-1.514 2-2.816 0-1.654-1.346-3-3-3s-3 1.346-3 3c0 1.302.839 2.402 2 2.816v4.457c-5.106 2.758-8.791 7.791-9.739 13.727h-2.261v-8h2.719c.62 0 1.194-.28 1.576-.769s.515-1.114.364-1.717l-.379-1.514h.72c1.654 0 3-1.346 3-3v-10c0-1.654-1.346-3-3-3h-12c-1.654 0-3 1.346-3 3v10c0 1.654 1.346 3 3 3h.719l-.379 1.516c-.149.602-.017 1.228.365 1.716s.956.768 1.576.768h2.719v10h4.051c-.018.333-.051.662-.051 1s.033.667.051 1h-4.051v8h-5c-1.654 0-3 1.346-3 3v16c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-16c0-.151-.023-.296-.045-.441 1.63 2.116 3.68 3.89 6.045 5.168v4.457c-1.161.414-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.402-2-2.816v-3.537c1.873.746 3.891 1.192 6 1.302v6.235c-1.161.414-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.402-2-2.816v-6.235c1.378-.072 2.715-.288 4-.639v.874c-1.161.414-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.402-2-2.816v-1.537c3.203-1.275 5.972-3.396 8.045-6.088-.022.145-.045.29-.045.441v16c0 1.654 1.346 3 3 3h10c1.654 0 3-1.346 3-3v-16c0-1.654-1.346-3-3-3zm-22-32c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-14-2c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-20-4h12c.552 0 1 .449 1 1v7h-14v-7c0-.551.448-1 1-1zm-1 11v-1h14v1c0 .551-.448 1-1 1h-12c-.552 0-1-.449-1-1zm3.28 5 .5-2h6.439l.499 2zm17.72 38c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zm14-2c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zm23-11v1h-12v-1c0-.551.448-1 1-1h10c.552 0 1 .449 1 1zm-12 3h12v10h-12zm4-18h-2.261c-.539-3.376-1.951-6.462-4.025-9h6.286zm-6-25c0-.551.448-1 1-1h10c.552 0 1 .449 1 1v9h-12zm-1.9 13.2 1.65-2.2h12.5l1.649 2.199c.066.088.101.192.101.301 0 .276-.225.5-.5.5h-7.5-7.5c-.275 0-.5-.224-.5-.5 0-.109.035-.213.1-.3zm-13.1-14.2c.552 0 1 .449 1 1s-.448 1-1 1-1-.449-1-1 .448-1 1-1zm-17 57c0 .551-.448 1-1 1h-10c-.552 0-1-.449-1-1v-16c0-.551.448-1 1-1h10c.552 0 1 .449 1 1zm-1-19h-3v-6h2.261c.369 2.309 1.146 4.48 2.27 6.434-.45-.269-.97-.434-1.531-.434zm18 20c-.552 0-1-.449-1-1s.448-1 1-1 1 .449 1 1-.448 1-1 1zm0-12c-9.374 0-17-7.626-17-17s7.626-17 17-17 17 7.626 17 17-7.626 17-17 17zm18.739-14h2.261v6h-3c-.561 0-1.081.165-1.531.434 1.124-1.954 1.902-4.125 2.27-6.434zm9.261 26h-10c-.552 0-1-.449-1-1v-1h12v1c0 .551-.448 1-1 1z" />
</g>
</svg>
<span>PYTHON</span>
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link mt-40" id="pills-four-tab" data-bs-toggle="pill"
data-bs-target="#pills-four" type="button" role="tab" aria-controls="pills-four"
aria-selected="false">
<svg id="Capa_1" fill="#5f2dee" enable-background="new 0 0 512 512" height="60px"
viewBox="0 0 512 512" width="60px" xmlns="http://www.w3.org/2000/svg">
<g>
<g>
<path
d="m238 371.49c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h36c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5z" />
<path
d="m90 255.034h49.576c3.028 7.881 10.657 13.5 19.591 13.5s16.563-5.619 19.591-13.5h9.909c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-9.909c-3.028-7.881-10.657-13.5-19.591-13.5s-16.563 5.619-19.591 13.5h-49.576c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5zm69.167-13.5c3.309 0 6 2.691 6 6s-2.691 6-6 6-6-2.691-6-6 2.691-6 6-6z" />
<path
d="m90 212.034h9.576c3.028 7.881 10.657 13.5 19.591 13.5s16.563-5.619 19.591-13.5h49.909c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-49.909c-3.028-7.881-10.657-13.5-19.591-13.5s-16.563 5.619-19.591 13.5h-9.576c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5zm29.167-13.5c3.309 0 6 2.691 6 6s-2.691 6-6 6-6-2.691-6-6 2.691-6 6-6z" />
<circle cx="190.167" cy="135.534" r="7.5" />
<circle cx="169.5" cy="135.534" r="7.5" />
<circle cx="148.833" cy="135.534" r="7.5" />
<path
d="m489.5 50.483h-2.809l2.095-2.095c6.275-6.275 6.275-16.486 0-22.761l-16.418-16.418c-6.275-6.274-16.485-6.274-22.761 0l-41.271 41.273h-385.836c-12.406 0-22.5 10.093-22.5 22.5v311.464c0 15.164 12.336 27.5 27.5 27.5h177.645v53.055h-36.145c-9.649 0-17.5 7.851-17.5 17.5v7.494c0 9.649 7.851 17.5 17.5 17.5h174c9.649 0 17.5-7.851 17.5-17.5v-7.494c0-9.649-7.851-17.5-17.5-17.5h-36.145v-53.055h80.145c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-359.5c-6.893 0-12.5-5.607-12.5-12.5v-22.2h482v22.2c0 6.893-5.607 12.5-12.5 12.5h-62.5c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h62.5c15.164 0 27.5-12.336 27.5-27.5v-311.463c0-12.406-10.094-22.5-22.5-22.5zm-146.5 429.519c1.379 0 2.5 1.122 2.5 2.5v7.494c0 1.378-1.121 2.5-2.5 2.5h-174c-1.379 0-2.5-1.122-2.5-2.5v-7.494c0-1.378 1.121-2.5 2.5-2.5zm-122.855-68.054h71.711v53.055h-71.711zm240.069-392.131c.428-.427 1.122-.426 1.548 0l16.417 16.417c.427.427.427 1.122 0 1.548l-15.665 15.665-17.965-17.965zm-26.272 26.272 17.964 17.965-5.231 5.231-17.964-17.965zm-15.838 15.838 17.965 17.965-88.751 88.751-17.965-17.965zm-11.104 68.569c10.201 0 18.5 8.299 18.5 18.5s-8.299 18.5-18.5 18.5-18.5-8.299-18.5-18.5c0-.119.016-.234.018-.353l18.132-18.129c.117-.002.232-.018.35-.018zm-72.706 46.337-22.197 9.066 9.066-22.197zm162.706 170.415h-482v-274.265c0-4.135 3.364-7.5 7.5-7.5h370.837l-11.436 11.436h-254.901c-4.143 0-7.5 3.358-7.5 7.5s3.357 7.5 7.5 7.5h239.902l-52.901 52.904c-1.495 1.508-2.664 3.268-3.469 5.238l-16.753 41.016c-1.537 3.767-.671 8.06 2.206 10.936 1.931 1.931 4.499 2.955 7.118 2.955 1.284 0 2.579-.246 3.818-.751l41.015-16.752c1.914-.782 3.626-1.914 5.106-3.349l22.816-22.813c4.915 12.399 17.015 21.194 31.143 21.194 18.472 0 33.5-15.028 33.5-33.5 0-14.126-8.793-26.225-21.19-31.141l25.939-25.936h25.314v228.893h-3.975l-27.18-47.077c-2.07-3.588-6.66-4.817-10.245-2.745-3.587 2.071-4.816 6.658-2.745 10.245l22.85 39.577h-104.77l-11.237-19.463 52.385-90.733 23.271 40.308c2.072 3.587 6.659 4.817 10.245 2.745 3.587-2.071 4.816-6.658 2.745-10.245l-24.827-43.001c-2.387-4.134-6.661-6.602-11.435-6.602s-9.049 2.468-11.436 6.602l-49.61 85.927-63.654-110.251c-2.387-4.134-6.661-6.602-11.436-6.602-4.773 0-9.048 2.468-11.435 6.602l-16.911 29.291v-80.393c0-9.649-7.851-17.5-17.5-17.5h-128.664c-9.649 0-17.5 7.851-17.5 17.5v164c0 6.893 5.607 12.5 12.5 12.5h95.679l-11.152 19.316h-113.09v-228.895h50.563c4.143 0 7.5-3.358 7.5-7.5s-3.357-7.5-7.5-7.5h-53.063c-6.893 0-12.5 5.607-12.5 12.5v233.893c0 6.893 5.607 12.5 12.5 12.5h434.127c6.893 0 12.5-5.607 12.5-12.5v-233.893c0-6.893-5.607-12.5-12.5-12.5h-12.812l11.438-11.436h17.81c4.136 0 7.5 3.365 7.5 7.5zm-290.833-180.714v119.962h-133.667v-119.962zm-133.667-15v-26.538c0-1.378 1.121-2.5 2.5-2.5h128.667c1.379 0 2.5 1.122 2.5 2.5v26.538zm110.5 149.962h25.667c6.893 0 12.5-5.607 12.5-12.5v-15.887c1.876.9 3.965 1.387 6.153 1.387 5.12 0 9.704-2.648 12.263-7.081l12.764-22.107c.386-.668.976-.809 1.401-.809.427 0 1.017.141 1.402.809l7.869 13.629c2.56 4.435 7.145 7.082 12.266 7.082 5.12 0 9.705-2.647 12.264-7.081l1.954-3.384 37.676 65.257h-155.331zm38.167-53.493v-12.614l28.347-49.097 31.328 54.262-5.558 9.626-7.144-12.373c-3.004-5.203-8.384-8.309-14.393-8.309-6.008 0-11.388 3.106-14.392 8.309l-12.038 20.85z" />
</g>
</g>
</svg>
<span>Desktop<br> GUI</span>
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link mt-90" id="pills-five-tab" data-bs-toggle="pill"
data-bs-target="#pills-five" type="button" role="tab" aria-controls="pills-five"
aria-selected="false">
<svg fill="#5f2dee" id="Layer_5" enable-background="new 0 0 62 62" height="60px"
viewBox="0 0 62 62" width="60px" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="m4 4h2v4h-2z" />
<path d="m8 4h2v4h-2z" />
<path d="m4 24h2v4h-2z" />
<path d="m8 24h2v4h-2z" />
<path d="m14 14h2v4h-2z" />
<path d="m18 14h2v4h-2z" />
<path d="m10 48h6v2h-6z" />
<path d="m10 52h6v2h-6z" />
<path d="m10 56h6v2h-6z" />
<path d="m28 48h6v2h-6z" />
<path d="m28 52h6v2h-6z" />
<path d="m28 56h6v2h-6z" />
<path d="m46 52h6v2h-6z" />
<path d="m46 56h6v2h-6z" />
<path
d="m52.364 9.537-.18-.612-.631-.095c-2.525-.378-6.232-.83-9.553-.83s-7.028.452-9.553.831l-.631.095-.18.612c-.752 2.557-2.589 4.639-5.038 5.712l-.598.261v.925c0 11.263 5.326 22.091 14.247 28.967.5.385 1.123.597 1.753.597s1.252-.212 1.753-.597c8.921-6.876 14.247-17.704 14.247-28.966v-.925l-.599-.262c-2.448-1.074-4.285-3.156-5.037-5.713zm-9.831 34.281c-.302.231-.764.233-1.066 0-8.337-6.426-13.353-16.505-13.465-27.022 2.497-1.277 4.405-3.443 5.352-6.078 2.42-.346 5.704-.718 8.646-.718s6.226.372 8.646.719c.946 2.634 2.854 4.801 5.352 6.078-.112 10.516-5.128 20.596-13.465 27.021z" />
<path
d="m62 12h-1c-2.757 0-5-2.243-5-5 0-.177.01-.352.028-.524l.095-.91-.898-.175c-.291-.057-7.198-1.391-13.225-1.391s-12.934 1.334-13.225 1.391l-.898.175.095.91c.018.172.028.347.028.524 0 1.852-1.025 3.454-2.525 4.318-.077-.114-.158-.223-.25-.324.476-.531.775-1.226.775-1.994v-6c0-1.654-1.346-3-3-3h-20c-1.654 0-3 1.346-3 3v6c0 .771.301 1.468.78 2-.479.532-.78 1.229-.78 2v6c0 .771.301 1.468.78 2-.479.532-.78 1.229-.78 2v6c0 1.654 1.346 3 3 3h9v12h-6v18h14v-8h4v8h14v-8h4v8h14v-18h-4.823c6.862-7.441 10.823-17.339 10.823-27.563zm-60 7v-6c0-.551.449-1 1-1h19v4.437c0 1.194.071 2.381.177 3.563h-19.177c-.551 0-1-.449-1-1zm0-16c0-.551.449-1 1-1h20c.551 0 1 .449 1 1v6c0 .551-.449 1-1 1h-20c-.551 0-1-.449-1-1zm0 26v-6c0-.551.449-1 1-1h19.407c.33 2.345.865 4.649 1.593 6.889v.111c0 .551-.449 1-1 1h-20c-.551 0-1-.449-1-1zm16 31h-10v-14h10zm2-8v-8h-6v-12h9c.713 0 1.361-.261 1.876-.678 1.846 4.659 4.532 8.975 7.947 12.678h-8.823v8zm6 8v-14h8.814c.391.369.78.74 1.186 1.093v12.907zm12-8v-3.303c1.162.834 2.569 1.303 4 1.303v2zm16 8h-10v-10.315c.715-.218 1.39-.551 2-.989v1.304h6v-2h-5.108c.792-.639 1.557-1.306 2.294-2h4.814zm6-43.563c0 11.878-5.617 23.299-15.026 30.551-1.695 1.307-4.252 1.307-5.947 0-9.41-7.253-15.027-18.673-15.027-30.551v-2.508c3.323-.478 5.9-3.298 5.997-6.728 2.028-.354 7.367-1.201 12.003-1.201s9.975.847 12.003 1.201c.097 3.43 2.674 6.25 5.997 6.728z" />
<path
d="m37 31.586-2.293-2.293-1.414 1.414 3.707 3.707 15.707-15.707-1.414-1.414z" />
</g>
</svg>
<span>Data Analytics &<br> Visualization</span>
</button>
</li>
</ul>
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade" id="pills-one" role="tabpanel" aria-labelledby="pills-one-tab">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="clients-content-box text-center animated wow fadeInUp"
data-wow-duration="2000ms" data-wow-delay="0ms">
<h4 class="title">Artificial Intelligence</h4>
<p>Artificial intelligence is the simulation of human intelligence processes
by machines, especially computer systems.
Specific applications of AI include expert systems, natural language
processing, speech recognition and machine vision.</p>
<a class="main-btn" href="#">Machine Learning</a>
<a class="main-btn" href="#">Deep Learning</a>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-tow" role="tabpanel" aria-labelledby="pills-tow-tab">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="clients-content-box text-center animated wow fadeInUp"
data-wow-duration="2000ms" data-wow-delay="0ms">
<h4 class="title">Web Development</h4>
<p>Python's role in web development can include sending data to and from
servers, processing data and communicating with
databases, URL routing, and ensuring security. Python offers several
frameworks for web development. Commonly used ones
include Django and Flask.</p>
<a class="main-btn" href="#">Django</a>
<a class="main-btn" href="#">Flask</a>
</div>
</div>
</div>
</div>
<div class="tab-pane fade show active" id="pills-three" role="tabpanel"
aria-labelledby="pills-three-tab">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="clients-content-box text-center animated wow fadeInUp"
data-wow-duration="2000ms" data-wow-delay="0ms">
<h4 class="title">PYTHON</h4>
<p>Python is a computer programming language often used to build websites
and software, automate tasks, and conduct data analysis. Python is a
general-purpose language, meaning it can be used to create a variety of
different programs and isn't specialized for any specific problems.</p>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-four" role="tabpanel" aria-labelledby="pills-four-tab">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="clients-content-box text-center animated wow fadeInUp"
data-wow-duration="2000ms" data-wow-delay="0ms">
<h4 class="title">Desktop GUI</h4>
<p>As a part of Python standard library - Tkinter gives you a possibility to
create small, simple GUI applications. Most
popular Third party related packages: PyQt, PySide, WxPython, Kivy. PyQt
- most useful for desktop creation python
bindings for the Qt (C++ based) application development framework.</p>
<a class="main-btn" href="#">Tkinter</a>
<a class="main-btn" href="#">OpenGL</a>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="pills-five" role="tabpanel" aria-labelledby="pills-five-tab">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="clients-content-box text-center animated wow fadeInUp"
data-wow-duration="2000ms" data-wow-delay="0ms">
<h4 class="title">Data Analytics & Visualization</h4>
<p>Python provides numerous libraries for data analysis and visualization
mainly numpy, pandas, matplotlib, seaborn etc. In
this section, we are going to discuss pandas library for data analysis
and visualization which is an open source library
built on top of numpy.</p>
<a class="main-btn" href="#">Pandas</a>
<a class="main-btn" href="#">Matplotlib</a>
</div>
</div>
</div>
</div>
<div id="four"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="infetech-service-3-area">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center mb-55">
<h3 class="title">Prizes and Awards</h3>
<span>Cash prizes and all deliverables will be announced shortly. All participants will receive
Certificate of Participation</span>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="single-service-3-item animated wow fadeIn" data-wow-duration="1500ms"
data-wow-delay="0ms">
<div class="bg"></div>
<h4 class="title">CASH PRIZES</h4>
<p>
1st Place: INR 30,000 <br>
2nd Place: INR 20,000 <br>
3rd Place: INR 10,000</p>
</div>
</div>
<div class="col-lg-6">
<div class="single-service-3-item item-2 animated wow fadeIn" data-wow-duration="1500ms"
data-wow-delay="300ms" style="height: 212px;">
<div class="bg"></div>
<h4 class="title">CERTIFICATE</h4>
<p>Certificate of Participation will be given to <br> all the participants.</p>
</div>
</div>
</div>
</div>
</section>
<section class="infetech-service-3-area" id="four">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center mb-55">
<h3 class="title">Important Dates</h3>
<span>Set your reminder for the upcoming dates.</span>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="single-service-3-item animated wow fadeIn" data-wow-duration="1500ms"
data-wow-delay="0ms">
<div class="bg"></div>
<h4 class="title">REGISTRATIONS</h4>
<p>
<b>2nd June to 28th July <br>
REGISTRATION PROCESS <br>
Pythakon</b>
</p>
</div>
</div>
<div class="col-lg-6">
<div class="single-service-3-item item-2 animated wow fadeIn" data-wow-duration="1500ms"
data-wow-delay="300ms">
<div class="bg"></div>
<h4 class="title">HACKATHON</h4>
<p>
<b>5th August & 6th August <br>
HACKATHON TIME <br>
Pythakon</b>
</p>
</div>
</div>
<div id="five"></div>
</div>
</section>
<div class="infetech-sponser-area">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="section-title text-center mb-55">
<h3 class="title">Our Sponsors
</h3>
</div>
</div>
</div>
<div class="row infetech-sponser-slide">
<div class="col-lg-3">
<div class="infetech-sponser-item">
<img src="assets/img/sponsors/depstar.png" width="150" height="150" alt="">
</div>
</div>
<div class="col-lg-3">
<div class="infetech-sponser-item">
<img src="assets/img/sponsors/Collabera_logo.png" width="250" height="150" alt="">
</div>
</div>
</div>
</div>
</div>
<section class="infetech-clients-3-area" id="seven">
<div class="container">
<div class="row justify-content-center mb-35">
<div class="col-lg-8">
<div class="section-title text-center">
<h3 class="title">FAQs</h3>
<span>Answers to the most frequently asked questions!</span>
</div>
</div>
</div>
<div class="row g-0">
<div class="col-lg-4 col-md-6">
<div class="single-service-3-item clients-3-item" style="height: 323px !important;">
<div class="bg"></div>
<h4 class="title">Who can participate?</h4>
<p>The hackathon is open for Students from all over India. It is the right place for anyone
who's interested in learning
and innovating with their ideas.</p>
<div class="icon">
<svg fill="#5f2dee" height="60px" viewBox="0 0 60 60" width="60px"
xmlns="http://www.w3.org/2000/svg">
<g id="013---Data-Security">
<path id="Shape"
d="m7 11c1.65685425 0 3-1.34314575 3-3s-1.34314575-3-3-3-3 1.34314575-3 3 1.34314575 3 3 3zm0-4c.55228475 0 1 .44771525 1 1s-.44771525 1-1 1-1-.44771525-1-1 .44771525-1 1-1z" />
<path id="Shape"
d="m15 11c1.6568542 0 3-1.34314575 3-3s-1.3431458-3-3-3-3 1.34314575-3 3 1.3431458 3 3 3zm0-4c.5522847 0 1 .44771525 1 1s-.4477153 1-1 1-1-.44771525-1-1 .4477153-1 1-1z" />
<path id="Shape"
d="m25 11h12c1.6568542 0 3-1.34314575 3-3s-1.3431458-3-3-3h-12c-1.6568542 0-3 1.34314575-3 3s1.3431458 3 3 3zm0-4h12c.5522847 0 1 .44771525 1 1s-.4477153 1-1 1h-12c-.5522847 0-1-.44771525-1-1s.4477153-1 1-1z" />
<path id="Shape"
d="m7 29c1.65685425 0 3-1.3431458 3-3s-1.34314575-3-3-3-3 1.3431458-3 3 1.34314575 3 3 3zm0-4c.55228475 0 1 .4477153 1 1s-.44771525 1-1 1-1-.4477153-1-1 .44771525-1 1-1z" />
<path id="Shape"
d="m15 29c1.6568542 0 3-1.3431458 3-3s-1.3431458-3-3-3-3 1.3431458-3 3 1.3431458 3 3 3zm0-4c.5522847 0 1 .4477153 1 1s-.4477153 1-1 1-1-.4477153-1-1 .4477153-1 1-1z" />
<path id="Shape"
d="m25 29h12c1.6568542 0 3-1.3431458 3-3s-1.3431458-3-3-3h-12c-1.6568542 0-3 1.3431458-3 3s1.3431458 3 3 3zm0-4h12c.5522847 0 1 .4477153 1 1s-.4477153 1-1 1h-12c-.5522847 0-1-.4477153-1-1s.4477153-1 1-1z" />
<path id="Shape"
d="m7 41c-1.65685425 0-3 1.3431458-3 3s1.34314575 3 3 3 3-1.3431458 3-3-1.34314575-3-3-3zm0 4c-.55228475 0-1-.4477153-1-1s.44771525-1 1-1 1 .4477153 1 1-.44771525 1-1 1z" />
<path id="Shape"
d="m15 41c-1.6568542 0-3 1.3431458-3 3s1.3431458 3 3 3 3-1.3431458 3-3-1.3431458-3-3-3zm0 4c-.5522847 0-1-.4477153-1-1s.4477153-1 1-1 1 .4477153 1 1-.4477153 1-1 1z" />
<path id="Shape"
d="m58.559 31.086c-3.4103103-.3806893-6.726213-1.362527-9.794-2.9-.4799261-.2505849-1.0520739-.2505849-1.532 0-1.0415946.5436608-2.1222533 1.0089491-3.233 1.392v-9.578c0-1.1045695-.8954305-2-2-2h-1v-2h1c1.1045695 0 2-.8954305 2-2v-12c0-1.1045695-.8954305-2-2-2h-40c-1.1045695 0-2 .8954305-2 2v12c0 1.1045695.8954305 2 2 2h1v2h-1c-1.1045695 0-2 .8954305-2 2v12c0 1.1045695.8954305 2 2 2h1v2h-1c-1.1045695 0-2 .8954305-2 2v13c0 .021.011.039.012.061.00591715.090371.02408324.1795194.054.265.00967236.0319095.02102146.0632864.034.094.04678634.1036082.11067894.198602.189.281l.006.007 3.705 3.706v1.586c0 1.6568542 1.34314575 3 3 3h30c1.6568542 0 3-1.3431458 3-3v-1.586l.9-.9 6.036 5.1c.6149398.5206198 1.5160602.5206198 2.131 0l7.193-6.073c2.3715265-1.9937305 3.7405137-4.9337587 3.74-8.032v-12.8c-.0033491-.8265859-.620623-1.5218222-1.441-1.623zm-56.559-29.086h40v12h-40zm3 14h34v2h-34zm-3 4h40v10.2c-1.4968992.3994998-3.0199671.6935542-4.558.88-.5531208.0697479-1.0325801.4165266-1.272.92h-34.17zm23 25c-.5522847 0-1-.4477153-1-1-.000531-.2698664.1105861-.5279331.307-.713.1824558-.1857836.4326157-.2893852.693-.287h11v2zm-20-11h31v2h-31zm-3 4h34v3h-11c-1.6534434.0082058-2.9917942 1.3465566-3 3 0 1.6568542 1.3431458 3 3 3h11.12c.1471208 1.0396369.4505484 2.0510624.9 3h-35.02zm36.263 14c.3423065.4281848.7170814.8293711 1.121 1.2l-.8.8h-33.17l-2-2zm-.263 5c0 .5522847-.4477153 1-1 1h-30c-.55228475 0-1-.4477153-1-1v-1h32zm20-11.491c-.0022912 2.5078587-1.1119337 4.8867096-3.032 6.5l-6.968 5.885-6.428-5.428c-.007-.007-.009-.016-.015-.023s-.039-.021-.056-.037l-.47-.4c-1.9188915-1.6128053-3.0280725-3.9903535-3.031-6.497v-12.478c1.8196337-.2388606 3.6173285-.622409 5.376-1.147h.017c1.5891457-.4694622 3.1313983-1.0850911 4.607-1.839 3.1405361 1.5535565 6.5218179 2.5632072 10 2.986z" />
<path id="Shape"
d="m40 42c0 4.418278 3.581722 8 8 8s8-3.581722 8-8-3.581722-8-8-8c-4.4155378.0066084-7.9933916 3.5844622-8 8zm14 0c0 3.3137085-2.6862915 6-6 6s-6-2.6862915-6-6 2.6862915-6 6-6c3.3116533.0049563 5.9950437 2.6883467 6 6z" />
<path id="Path"
d="m45.781 42.5c-.223291-.2790244-.5784781-.4177293-.9317659-.3638658-.3532877.0538634-.6510032.2921121-.781.625-.1299967.3328878-.0725251.7098414.1507659.9888658l1.5 1.875c.1834365.2293646.4584277.3664945.752.375h.029c.2833785-.0000744.5534198-.1203754.743-.331l4.5-5c.3563368-.411825.3176238-1.0330688-.0870838-1.397469s-1.0265947-.3379633-1.3989162.059469l-3.712 4.124z" />
</g>
</svg>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single-service-3-item clients-3-item" style="height: 323px !important;">
<div class="bg"></div>
<h4 class="title">How much will it cost?</h4>
<p>Registration and Participation costs are completely Free!</p>
<div class="icon">
<svg enable-background="new 0 0 512 512" height="60px" viewBox="0 0 512 512" width="60px"
fill="#5f2dee" xmlns="http://www.w3.org/2000/svg">
<g id="_x35_48_x2C__Bulb_x2C__Light_x2C__Idea_x2C__Glowing">
<g>
<path
d="m406 211.954c0-81.859-66.183-149.999-149.979-149.999-81.924 0-149.22 66.623-150.014 148.514-.323 33.262 10.023 64.865 29.917 91.392 24.015 32.02 42.274 57.207 48.1 74.139h-18.024c-5.523 0-10 4.478-10 10v40c0 5.522 4.477 10 10 10h30v20h-10c-5.523 0-10 4.478-10 10s4.477 10 10 10h10v20c0 5.522 4.477 10 10 10h100c5.522 0 10-4.478 10-10v-20h10c5.522 0 10-4.478 10-10s-4.478-10-10-10h-10v-20h30c5.522 0 10-4.478 10-10v-40c0-5.522-4.478-10-10-10h-18.143c5.456-16.476 22.7-40.201 48.105-73.99 19.651-26.133 30.038-57.274 30.038-90.056zm-110 274.046h-80v-50h80zm40-70c-19.697 0-142.048 0-160 0v-20h160zm-93.602-40-54.974-119.109 24.435-36.651c1.286-1.928 3.146-2.215 4.141-2.215s2.855.288 4.141 2.215l15.077 22.616c9.867 14.8 31.668 14.843 41.563 0l15.077-22.615c1.286-1.929 3.146-2.217 4.142-2.217.995 0 2.855.288 4.142 2.216l24.434 36.651-54.974 119.109zm64.742 0h-15.51l53.45-115.81c1.457-3.157 1.169-6.844-.76-9.737l-27.538-41.308c-9.868-14.8-31.668-14.844-41.564 0l-15.077 22.616c-1.286 1.928-3.146 2.216-4.141 2.216s-2.855-.288-4.142-2.216l-15.077-22.615c-9.866-14.8-31.668-14.843-41.563 0l-27.539 41.308c-1.929 2.893-2.216 6.58-.759 9.737l53.451 115.809h-15.531c-4.432-19.777-21.633-44.431-52.915-86.139-17.236-22.981-26.198-50.368-25.918-79.198.691-71.216 59.55-129.541 131.647-128.698 70.77.88 128.346 59.193 128.346 129.989 0 28.412-8.998 55.396-26.022 78.036-29.636 39.414-48.209 64.945-52.838 86.01z" />
<path
d="m246 476h20c5.522 0 10-4.478 10-10s-4.478-10-10-10h-20c-5.523 0-10 4.478-10 10s4.477 10 10 10z" />
<path
d="m256 46c5.522 0 10-4.477 10-10v-20c0-5.523-4.478-10-10-10-5.523 0-10 4.477-10 10v20c0 5.523 4.477 10 10 10z" />
<path
d="m397.421 70.437-14.142 14.143c-3.905 3.905-3.905 10.237 0 14.142 3.905 3.904 10.237 3.906 14.143-.001l14.142-14.143c3.905-3.905 3.905-10.237 0-14.142-3.907-3.905-10.239-3.904-14.143.001z" />
<path
d="m466 216h-20c-5.523 0-10 4.477-10 10s4.477 10 10 10h20c5.522 0 10-4.477 10-10s-4.478-10-10-10z" />
<path
d="m397.422 353.28c-3.906-3.904-10.238-3.904-14.143 0-3.905 3.906-3.905 10.237 0 14.143l14.142 14.141c3.906 3.904 10.237 3.905 14.143 0 3.905-3.906 3.905-10.237 0-14.143z" />
<path
d="m114.58 353.28-14.143 14.141c-3.905 3.904-3.906 10.236-.001 14.142 3.905 3.905 10.236 3.907 14.143.001l14.143-14.141c3.905-3.904 3.906-10.236.001-14.142-3.906-3.905-10.237-3.905-14.143-.001z" />
<path
d="m76 226c0-5.523-4.477-10-10-10h-20c-5.523 0-10 4.477-10 10s4.477 10 10 10h20c5.523 0 10-4.477 10-10z" />
<path
d="m114.579 98.722c3.904 3.904 10.237 3.905 14.143 0 3.905-3.905 3.905-10.237 0-14.143l-14.143-14.143c-3.905-3.905-10.237-3.905-14.143 0-3.905 3.905-3.905 10.237 0 14.143z" />
<path
d="m331.028 61.446c3.876 0 7.565-2.267 9.192-6.054l7.897-18.374c2.181-5.074-.165-10.955-5.238-13.136-5.08-2.183-10.956.165-13.137 5.239l-7.897 18.374c-2.845 6.621 2.052 13.951 9.183 13.951z" />
<path
d="m436.189 164.915 18.578-7.407c5.131-2.045 7.631-7.862 5.586-12.993-2.046-5.13-7.865-7.629-12.992-5.585l-18.578 7.407c-5.131 2.045-7.631 7.862-5.586 12.993 2.05 5.139 7.871 7.626 12.992 5.585z" />
<path
d="m452.88 299.744-18.374-7.898c-5.075-2.177-10.955.164-13.137 5.238-2.181 5.074.164 10.955 5.238 13.137l18.374 7.898c5.125 2.199 10.976-.211 13.137-5.238 2.181-5.074-.164-10.955-5.238-13.137z" />
<path
d="m75.811 287.086-18.578 7.406c-5.13 2.045-7.631 7.862-5.586 12.992s7.861 7.632 12.992 5.586l18.578-7.406c5.13-2.045 7.631-7.862 5.586-12.992-2.046-5.131-7.862-7.631-12.992-5.586z" />
<path
d="m85.393 141.781-18.375-7.899c-5.078-2.183-10.956.164-13.136 5.238-2.181 5.074.164 10.956 5.238 13.136l18.375 7.898c5.074 2.182 10.956-.165 13.136-5.238 2.181-5.073-.165-10.955-5.238-13.135z" />
<path
d="m176.337 53.217c1.561 3.916 5.319 6.299 9.292 6.299 7.021 0 11.915-7.114 9.286-13.706l-7.407-18.577c-2.046-5.13-7.863-7.629-12.993-5.585-5.13 2.046-7.631 7.863-5.585 12.993z" />
</g>
</g>
</svg>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single-service-3-item clients-3-item" style="height: 323px !important;">
<div class="bg"></div>
<h4 class="title">How can I apply?</h4>
<p>The registration would be simply done by just clicking the register button here.</p>
<div class="icon">
<svg fill="#5f2dee" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="60px"
height="60px">
<g id="Layer_22" data-name="Layer 22">
<path d="M59,32a9.01,9.01,0,0,0-9-9v2a7.008,7.008,0,0,1,7,7Z" />
<path
d="M58,47a3,3,0,0,0-2.816,2H53V44.637A12.993,12.993,0,0,0,50,19a12.686,12.686,0,0,0-2.12.183,15.982,15.982,0,0,0-31.76,0A12.686,12.686,0,0,0,14,19a12.993,12.993,0,0,0-3,25.637V49H8.816a3,3,0,1,0,0,2H12a1,1,0,0,0,1-1V44.949c.331.026.662.051,1,.051h1v8.184a3,3,0,1,0,2,0V45h4V43H14a11,11,0,1,1,2.778-21.631,1,1,0,0,0,1.251-.928,13.981,13.981,0,0,1,27.942,0,1,1,0,0,0,1.251.928A10.995,10.995,0,1,1,50,43H45v2h2v8.184a3,3,0,1,0,2,0V45h1c.338,0,.669-.025,1-.051V50a1,1,0,0,0,1,1h3.184A2.995,2.995,0,1,0,58,47ZM6,51a1,1,0,1,1,1-1A1,1,0,0,1,6,51Zm10,6a1,1,0,1,1,1-1A1,1,0,0,1,16,57Zm32,0a1,1,0,1,1,1-1A1,1,0,0,1,48,57Zm10-6a1,1,0,1,1,1-1A1,1,0,0,1,58,51Z" />
<path
d="M26.768,33.359a1.035,1.035,0,0,0-1.536,0l-5,6A1,1,0,0,0,21,41h2v9a1,1,0,0,0,1,1h4a1,1,0,0,0,1-1V41h2a1,1,0,0,0,.768-1.641ZM28,39a1,1,0,0,0-1,1v9H25V40a1,1,0,0,0-1-1h-.865L26,35.562,28.865,39Z" />
<path
d="M43,43H41V34a1,1,0,0,0-1-1H36a1,1,0,0,0-1,1v9H33a1,1,0,0,0-.768,1.641l5,6a1,1,0,0,0,1.536,0l5-6A1,1,0,0,0,43,43Zm-5,5.438L35.135,45H36a1,1,0,0,0,1-1V35h2v9a1,1,0,0,0,1,1h.865Z" />
</g>
</svg>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single-service-3-item clients-3-item" style="height: 323px !important;">
<div class="bg"></div>
<h4 class="title">What if I don't have enough coding experience?</h4>
<p>No worries, Interest in learning and working with technology is much more important than your
current experience level.</p>
<div class="icon">
<svg fill="#5f2dee" id="outline" height="60px" viewBox="0 0 512 512" width="60px"
xmlns="http://www.w3.org/2000/svg">
<path d="m120 264h24v16h-24z" />
<path d="m176 304h24v16h-24z" />
<path d="m120 304h40v16h-40z" />
<path d="m56 304h48v16h-48z" />
<path d="m104 344h96v16h-96z" />
<path d="m56 344h32v16h-32z" />
<path d="m152 384h48v16h-48z" />
<path d="m56 384h80v16h-80z" />
<path d="m104 424h48v16h-48z" />
<path d="m56 424h32v16h-32z" />
<path
d="m480 240a8.00008 8.00008 0 0 0 -8-8h-48a8.00008 8.00008 0 0 0 -8 8v40h-40a8.00008 8.00008 0 0 0 -8 8v40h-40a8.00008 8.00008 0 0 0 -8 8v40h-40a8.00008 8.00008 0 0 0 -8 8v48h-57.37622a24 24 0 1 0 0 16h9.37622v24a8.00917 8.00917 0 0 1 -8 8h-176a8.00917 8.00917 0 0 1 -8-8v-184h40a24.0275 24.0275 0 0 0 24-24v-40h120a8.00917 8.00917 0 0 1 8 8v8h16v-8a24.0275 24.0275 0 0 0 -24-24h-121.37305a23.84385 23.84385 0 0 0 -16.9707 7.02979l-54.62695 54.627a23.84254 23.84254 0 0 0 -7.0293 16.97065v185.37256a24.0275 24.0275 0 0 0 24 24h176a24.0275 24.0275 0 0 0 24-24v-24h256v-16h-16zm-400-4.686v28.686a8.00917 8.00917 0 0 1 -8 8h-28.686zm112 212.686a8 8 0 1 1 8-8 8.00917 8.00917 0 0 1 -8 8zm96-56h32v40h-32zm48-48h32v88h-32zm48-48h32v136h-32zm48 136v-184h32v184z" />
<path
d="m40 216a23.99448 23.99448 0 0 0 21.65479-34.3407l24.00439-24.00464a23.9887 23.9887 0 0 0 32.9646-13.65466h34.75244a23.99529 23.99529 0 0 0 46.29028-4.03479l45.179-38.72473a24.00054 24.00054 0 1 0 -10.88281-11.745l-38.27324 32.80552a23.98335 23.98335 0 0 0 -42.31323 5.699h-34.75244a23.99718 23.99718 0 1 0 -44.27857 18.3407l-24.00439 24.00464a23.99872 23.99872 0 1 0 -10.34082 45.65466zm216-144a8 8 0 1 1 -8 8 8.00917 8.00917 0 0 1 8-8zm-80 56a8 8 0 1 1 -8 8 8.00917 8.00917 0 0 1 8-8zm-80 0a8 8 0 1 1 -8 8 8.00917 8.00917 0 0 1 8-8zm-56 56a8 8 0 1 1 -8 8 8.00917 8.00917 0 0 1 8-8z" />
<path
d="m329.56543 203.12067-52.87891 52.87933h-70.06274a24 24 0 1 0 0 16h17.37622v144h16v-144h40a8.00076 8.00076 0 0 0 5.65723-2.34326l57.73777-57.73774a104.28417 104.28417 0 1 0 -13.82959-8.79828zm-145.56543 68.87933a8 8 0 1 1 8-8 8.00917 8.00917 0 0 1 -8 8zm272.17041-91.85022-46.35547-52.14978h69.81738a87.7058 87.7058 0 0 1 -23.46191 52.14978zm23.46191-68.14978h-79.63232v-79.63251a88.14413 88.14413 0 0 1 79.63232 79.63251zm-95.63232-79.63251v87.63251a7.95881 7.95881 0 0 0 2.02734 5.30908l-.00683.00586 58.19726 65.47211a87.98307 87.98307 0 1 1 -60.21777-158.41956z" />
</svg>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single-service-3-item clients-3-item" style="height: 323px !important;">
<div class="bg"></div>
<h4 class="title">Why should i participate?</h4>
<p>Hackathons are a great way to expand your network, brainstorm and unleash your potential to
bring out the best in you!
Also the winners would be getting some amazing prizes and hampers 🤑</p>
<div class="icon">
<svg fill="#5f2dee" id="Capa_1" enable-background="new 0 0 512 512" height="60px"
viewBox="0 0 512 512" width="60px" xmlns="http://www.w3.org/2000/svg">
<g>
<path
d="m170.48 179.365c1.201-1.201 2.792-1.862 4.482-1.862s3.281.661 4.482 1.862c1.465 1.465 3.384 2.197 5.304 2.197 1.919 0 3.838-.732 5.303-2.196 2.929-2.929 2.93-7.677.001-10.607-4.034-4.035-9.393-6.257-15.091-6.257-5.697 0-11.056 2.222-15.09 6.257-2.928 2.93-2.928 7.678.001 10.607 2.93 2.928 7.678 2.929 10.608-.001z" />
<path
d="m253.312 179.365c1.201-1.201 2.798-1.862 4.497-1.862s3.296.661 4.497 1.862c1.464 1.465 3.384 2.197 5.304 2.197 1.919 0 3.838-.732 5.303-2.196 2.929-2.929 2.93-7.677.001-10.607-4.034-4.035-9.398-6.257-15.104-6.257s-11.07 2.222-15.104 6.257c-2.929 2.929-2.928 7.678.001 10.607 2.927 2.929 7.676 2.929 10.605-.001z" />
<path
d="m177.528 225.975c0 10.845 4.489 20.374 12.64 26.83 7.005 5.548 16.313 8.604 26.209 8.604 19.306 0 38.85-12.171 38.85-35.434 0-7.6-6.182-13.783-13.781-13.783h-50.109c-7.614 0-13.809 6.183-13.809 13.783zm62.67 1.218c-.735 15.131-15.189 19.216-23.82 19.216s-23.085-4.085-23.82-19.216z" />
<path
d="m475.115 381.197h-3.56c-.86-2.42-1.84-4.8-2.92-7.13l2.5-2.5c6.56-6.57 6.57-17.28-.01-23.911l-17.66-17.63c-3.18-3.18-7.41-4.93-11.93-4.93s-8.76 1.75-11.94 4.93l-2.49 2.5c-2.33-1.09-4.71-2.06-7.14-2.93v-3.55c0-9.32-7.57-16.9-16.89-16.9h-24.951c-1.62 0-3.19.23-4.68.66-15.843-11.841-34.894-20.62-53.908-24.716-2.95-2.212-8.384-6.433-14.547-11.221-5.032-3.91-10.51-8.165-15.684-12.143 16.414-15.984 29.123-35.875 34.952-56.124 6.678-1.381 13.433-5.063 18.9-10.46 6.778-6.692 10.665-15.1 10.665-23.07v-10.377c0-9.919-8.082-17.989-18.016-17.989h-8.147v-.101-15.117-34.189c0-20.024-7.776-39.071-22.486-55.082-12.804-13.935-30.88-25.363-50.897-32.18-18.776-6.394-38.643-8.528-55.94-6.003-18.189 2.653-33.033 10.195-43.152 21.884-20.545 2.949-51.133 18.547-50.074 85.434.01.667.02 1.213.02 1.624v16.996 16.732h-8.175c-9.918 0-17.987 8.07-17.987 17.989v10.377c0 7.986 3.886 16.401 10.661 23.09 5.457 5.388 12.203 9.062 18.877 10.441 5.918 20.556 18.924 40.749 35.705 56.857-4.763 3.669-9.742 7.535-14.321 11.095-6.35 4.94-11.95 9.29-14.96 11.54-19.43 4.2-38.931 13.26-55.091 25.621-3.29 2.52-3.91 7.23-1.4 10.52 1.48 1.93 3.71 2.94 5.97 2.94 1.59 0 3.19-.5 4.55-1.54 13.75-10.52 30.851-18.621 47.401-22.501l43.761 32.521c.16.12.33.23.5.34 1.63 1.02 2.7 1.85 3.55 2.52 2.68 2.1 4.98 2.92 7.02 2.92 3.4 0 6.07-2.3 8.55-4.82 1.26-1.28 3.07-3.12 5.8-5.57l4.16 16.26-25.371 84.512c-.9 2.47-.72 4.88.53 7.17l13.82 26.211h-77.902v-48.201c0-4.14-3.36-7.5-7.5-7.5s-7.5 3.36-7.5 7.5v48.201h-46.423c-.82 0-1.61.01-2.36.02-.61.01-1.33.03-1.98.02-.01-.29-.02-.62-.02-1.01v-78.872c0-13.25 4.33-26.111 12.87-38.221 2.39-3.38 1.58-8.06-1.8-10.45-3.39-2.39-8.07-1.58-10.45 1.8-10.37 14.69-15.62 30.461-15.62 46.871v78.872c0 3.57.43 8.73 4.11 12.35 3.87 3.8 8.81 3.72 13.16 3.64.66-.01 1.36-.02 2.09-.02h151.744.02 50.521.02 72.142l13.92 13.92c3.18 3.18 7.42 4.94 11.94 4.94s8.75-1.76 11.93-4.94l3.83-3.82c1.89.88 3.83 1.69 5.8 2.43v5.37c0 9.32 7.58 16.9 16.9 16.9h24.951c9.32 0 16.89-7.58 16.89-16.9v-4.88c2.1-.76 4.18-1.59 6.22-2.51l3.41 3.41c3.18 3.18 7.42 4.94 11.94 4.94s8.75-1.76 11.93-4.94l17.67-17.66c6.58-6.59 6.58-17.29 0-23.881l-2.93-2.92c1.05-2.2 2.01-4.43 2.86-6.71h4.05c9.31 0 16.89-7.58 16.89-16.89v-24.961c.003-9.318-7.577-16.898-16.888-16.898zm-147.457-198.076v-24.416h8.147c1.634 0 3.015 1.369 3.015 2.989v10.377c0 3.927-2.319 8.561-6.204 12.396-1.598 1.577-3.359 2.925-5.173 3.993.138-1.805.215-3.589.215-5.339zm-31.873 102.592c2.987 2.321 5.728 4.45 8.112 6.294l-38.254 28.431c-.634.4-1.207.781-1.725 1.14-1.658-1.655-3.924-3.834-7.16-6.631l-8.233-7.572c-.058-.056-.118-.11-.178-.163l-14.359-13.206c3.517-.884 7.161-2.025 11.005-3.451 11.511-4.291 22.636-10.766 32.805-18.75 5.803 4.443 12.192 9.407 17.987 13.908zm-60.808 29.581-5.507 21.671h-26.171l-5.21-20.38 19.157-17.599zm-75.258-277.805c2.089-.184 4.005-1.233 5.285-2.894 10.788-14.003 28.845-19.596 47.916-19.596 12.313 0 25.049 2.333 36.519 6.238 29.163 9.931 63.218 35.024 63.218 73.062v34.188 7.616h-11.596c-16.225 0-26.597-9.728-38.608-20.993-14.389-13.494-30.697-28.789-59.591-28.789h-32.808c-24.368 0-28.303 19.175-31.177 33.177-3.073 14.974-5.41 23.207-18.751 24.12v-16.646-16.996c0-.471-.009-1.097-.021-1.861-.484-30.59 5.996-67.673 39.614-70.626zm-65.754 134.582v-10.377c0-1.648 1.34-2.989 2.987-2.989h8.175v24.416c0 1.764.075 3.551.209 5.353-1.815-1.066-3.576-2.412-5.172-3.988-3.882-3.832-6.199-8.473-6.199-12.415zm27.798 24.98c-1.085-4.772-1.636-9.459-1.636-13.931v-24.48c26.297-1.294 30.58-22.167 33.445-36.127 3.221-15.698 5.342-21.191 16.482-21.191h32.808c22.96 0 35.769 12.013 49.329 24.73 13.133 12.316 26.712 25.051 48.87 25.051h11.596v32.017c0 4.389-.56 9.076-1.663 13.927-7.509 32.952-38.137 67.108-71.231 79.446-8.836 3.278-16.267 4.804-23.386 4.804-7.118 0-14.549-1.526-23.374-4.8-33.104-12.341-63.732-46.497-71.24-79.446zm62.975 111.434c-.07.07-.15.14-.22.21l-6.81 6.25c-3.23 2.8-5.5 4.98-7.16 6.63-.52-.36-1.09-.74-1.72-1.14l-38.251-28.431c2.53-1.96 5.44-4.21 8.51-6.6 5.366-4.169 11.275-8.763 16.721-12.943 9.941 7.682 20.772 13.923 31.968 18.097 4.343 1.611 8.428 2.849 12.366 3.77zm125.303 141.093c-3.44 3.47-5.08 8.08-4.89 12.62h-51.061l13.89-26.311c1.79-3.43.78-6.17.45-7.08l-7.97-26.531c-1.19-3.97-5.37-6.22-9.34-5.03-3.96 1.19-6.21 5.37-5.02 9.34l7.39 24.621-16.37 30.991h-41.481l-16.36-31.021 23.781-79.212h26.561l5.98 21.391c.93 3.31 3.94 5.48 7.22 5.48.67 0 1.35-.09 2.02-.28 3.99-1.11 6.32-5.25 5.2-9.24l-6.97-24.941 4.463-17.568c3.534 3.089 5.729 5.317 7.199 6.813 2.473 2.517 5.143 4.814 8.546 4.814 2.038 0 4.338-.824 7.016-2.916.859-.671 1.928-1.506 3.557-2.523.172-.107.34-.222.503-.343l43.756-32.519c15.453 3.578 30.933 10.53 44.193 19.993-.7 1.84-1.08 3.84-1.08 5.92v4.05c-2.27.85-4.51 1.8-6.7 2.85l-2.93-2.92c-3.18-3.18-7.41-4.93-11.93-4.93s-8.75 1.75-11.93 4.92l-17.69 17.67c-6.55 6.6-6.55 17.31.02 23.881l3.42 3.42c-.92 2.04-1.76 4.11-2.52 6.21h-4.88c-9.31 0-16.89 7.58-16.89 16.9v24.961c0 9.31 7.58 16.89 16.89 16.89h5.37c.74 1.97 1.55 3.91 2.43 5.8zm166.964-26.52c0 1.01-.88 1.89-1.89 1.89h-9.42c-3.31 0-6.23 2.17-7.19 5.34-1.47 4.89-3.49 9.63-6.02 14.09-1.66 2.93-1.16 6.61 1.23 9l6.81 6.81c.72.72.72 1.94 0 2.66l-17.66 17.67c-.47.47-1.04.54-1.33.54-.3 0-.86-.07-1.33-.54l-7.21-7.21c-2.33-2.33-5.91-2.87-8.82-1.32-4.39 2.34-9.02 4.2-13.76 5.55-3.22.92-5.45 3.86-5.45 7.22v10.34c0 1.01-.88 1.9-1.89 1.9h-24.951c-1.01 0-1.9-.89-1.9-1.9v-10.74c0-3.29-2.15-6.19-5.28-7.16-.01 0-.02-.01-.03-.01-4.69-1.43-9.19-3.31-13.36-5.6-1.13-.62-2.37-.92-3.6-.92-1.95 0-3.87.75-5.31 2.19l-4.33 4.34-3.32 3.32c-.47.47-1.04.54-1.33.54-.3 0-.86-.07-1.33-.54l-3.32-3.32-14.34-14.35c-.19-.19-.33-.41-.42-.65-.26-.68-.12-1.5.41-2.03l7.65-7.63c2.36-2.35 2.89-5.99 1.28-8.91-2.28-4.18-4.17-8.67-5.6-13.36-.96-3.16-3.87-5.32-7.17-5.32h-10.74c-1.01 0-1.89-.88-1.89-1.89v-24.961c0-1.03.86-1.9 1.89-1.9h10.35c3.35 0 6.29-2.22 7.21-5.45 1.35-4.74 3.21-9.37 5.55-13.76 1.55-2.91 1.01-6.49-1.32-8.82l-7.2-7.21c-.73-.72-.72-1.96-.01-2.68l17.67-17.64v-.01c.47-.46 1.03-.53 1.33-.53.29 0 .86.07 1.33.53l6.81 6.82c2.38 2.38 6.06 2.88 9 1.22 4.46-2.52 9.2-4.55 14.08-6.02 3.17-.95 5.34-3.87 5.34-7.18v-3.62-5.8c0-1.03.87-1.9 1.9-1.9h11.45 13.5c1.03 0 1.89.87 1.89 1.9v9.03c0 3.36 2.24 6.3 5.47 7.22 5.06 1.42 9.94 3.42 14.51 5.94 2.93 1.61 6.56 1.09 8.92-1.27l6.34-6.34c.47-.46 1.03-.53 1.33-.53.29 0 .86.07 1.33.54l17.64 17.61c.74.75.75 1.99.02 2.71l-6.34 6.34c-2.35 2.36-2.87 5.99-1.26 8.92 2.51 4.57 4.51 9.46 5.94 14.52.91 3.23 3.86 5.46 7.22 5.46h9.03c1.02 0 1.89.87 1.89 1.9v24.961z" />
<path
d="m390.597 379.375c-17.201 0-31.195 13.996-31.195 31.199s13.994 31.199 31.195 31.199 31.195-13.996 31.195-31.199c-.001-17.203-13.995-31.199-31.195-31.199zm0 47.397c-8.929 0-16.194-7.267-16.194-16.199s7.265-16.199 16.194-16.199 16.194 7.267 16.194 16.199c0 8.933-7.265 16.199-16.194 16.199z" />
</g>
</svg>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="single-service-3-item clients-3-item" style="height: 323px !important;">
<div class="bg"></div>
<h4 class="title">Can we apply as a team?</h4>
<p>Yes! We believe that you’re stronger as a team than apart. You can form teams of 2-4 people.
Most teams aim to have a
mix of people with both design and development skills.</p>
<div class="icon">
<svg fill="#5f2dee" id="Layer_5" enable-background="new 0 0 64 64" height="60px"
viewBox="0 0 64 64" width="60px" xmlns="http://www.w3.org/2000/svg">
<g>
<path
d="m46 7c-6.065 0-11 4.935-11 11s4.935 11 11 11 11-4.935 11-11-4.935-11-11-11zm0 20c-4.962 0-9-4.038-9-9s4.038-9 9-9 9 4.038 9 9-4.038 9-9 9z" />
<path
d="m60.266 13.394c-.248-.772-.556-1.519-.919-2.229l1.312-2.549-5.274-5.274-2.549 1.312c-.71-.363-1.457-.671-2.229-.919l-.878-2.735h-7.459l-.876 2.734c-.772.248-1.519.556-2.229.919l-2.549-1.312-5.274 5.274 1.226 2.385h-28.568c-1.654 0-3 1.346-3 3v42c0 1.654 1.346 3 3 3h35.685c1.126 2.361 3.53 4 6.315 4 3.86 0 7-3.14 7-7 0-3.519-2.613-6.432-6-6.92v-12.08h-2v12.08c-3.387.488-6 3.401-6 6.92 0 .34.033.672.08 1h-35.08c-.551 0-1-.449-1-1v-31h29.569l-1.227 2.384 5.274 5.274 2.549-1.312c.71.363 1.457.671 2.229.919l.877 2.735h7.459l.876-2.734c.772-.248 1.519-.556 2.229-.919l2.549 1.312 5.274-5.274-1.312-2.548c.363-.709.67-1.456.919-2.229l2.735-.879v-7.459zm-14.266 37.606c2.757 0 5 2.243 5 5s-2.243 5-5 5-5-2.243-5-5 2.243-5 5-5zm-43-37c0-.551.449-1 1-1h27.879c-.047.132-.101.26-.144.394l-2.735.877v7.459l2.734.876c.043.134.098.262.144.394h-28.878zm58 6.271-2.356.755-.146.517c-.279.988-.667 1.928-1.153 2.795l-.263.469 1.13 2.195-3.211 3.211-2.195-1.129-.468.262c-.869.486-1.81.875-2.796 1.153l-.517.146-.754 2.355h-4.541l-.755-2.356-.517-.146c-.986-.279-1.927-.667-2.796-1.153l-.468-.262-2.195 1.129-3.211-3.211 1.13-2.195-.263-.469c-.486-.867-.874-1.808-1.153-2.795l-.146-.517-2.356-.754v-4.541l2.356-.755.146-.517c.279-.986.667-1.927 1.153-2.796l.262-.468-1.129-2.195 3.211-3.211 2.195 1.129.468-.262c.869-.486 1.81-.875 2.796-1.153l.517-.146.754-2.356h4.541l.755 2.356.517.146c.986.279 1.927.667 2.796 1.153l.468.262 2.195-1.129 3.211 3.211-1.129 2.195.262.468c.486.869.875 1.81 1.153 2.796l.146.517 2.356.754z" />
<path d="m48.2 14.6 2.55 3.4-2.55 3.4 1.6 1.2 3.45-4.6-3.45-4.6z" />
<path d="m42.2 13.4-3.45 4.6 3.45 4.6 1.6-1.2-2.55-3.4 2.55-3.4z" />
<path d="m38.929 17h14.142v2h-14.142z"
transform="matrix(.142 -.99 .99 .142 21.667 60.987)" />
<path
d="m17 15h-10c-1.103 0-2 .897-2 2v2c0 1.103.897 2 2 2h10c1.103 0 2-.897 2-2v-2c0-1.103-.897-2-2-2zm-4 2v2h-2v-2zm-6 0h2v2h-2zm8 2v-2h2l.001 2z" />
<path
d="m46 59c1.654 0 3-1.346 3-3s-1.346-3-3-3-3 1.346-3 3 1.346 3 3 3zm0-4c.551 0 1 .449 1 1s-.449 1-1 1-1-.449-1-1 .449-1 1-1z" />
<path
d="m59 49.184v-3.598l-4-4v-7.586h-2v8.414l4 4v2.77c-1.161.414-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.402-2-2.816zm-1 3.816c-.551 0-1-.449-1-1s.449-1 1-1 1 .449 1 1-.449 1-1 1z" />
<path
d="m39 42.414v-8.414h-2v7.586l-4 4v3.598c-1.161.414-2 1.514-2 2.816 0 1.654 1.346 3 3 3s3-1.346 3-3c0-1.302-.839-2.402-2-2.816v-2.77zm-5 10.586c-.551 0-1-.449-1-1s.449-1 1-1 1 .449 1 1-.449 1-1 1z" />