-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1506 lines (1411 loc) · 79.7 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>
<!--==============================================counter script start==============================================-->
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script>
<script>
setInterval(function() {
myTimer();
}, 1000);
function myTimer() {
var ending = jQuery("#timer").attr("data-endtime"),
endTime = new Date(ending);
endTime = Date.parse(endTime) / 1000;
var now = new Date();
var tempnow = String(now);
tempnow = tempnow.substring(4);
var month = tempnow[0] + tempnow[1] + tempnow[2];
console.log(month + ' ' + month.length);
if (ending > tempnow && month == "Sep") {
now = Date.parse(now) / 1000;
var timeLeft = endTime - now;
var days = Math.floor(timeLeft / 86400);
var hours = Math.floor((timeLeft - days * 86400) / 3600);
var minutes = Math.floor((timeLeft - days * 86400 - hours * 3600) / 60);
var seconds = Math.floor(
timeLeft - days * 86400 - hours * 3600 - minutes * 60
);
// if (days < "10") {
// days = "0" + days;
// }
if (days < "1") {
days = "0";
}
// if (hours < "10") {
// hours = "0" + hours;
// }
if (hours < "1") {
hours = "0";
}
// if (minutes < "10") {
// minutes = "0" + minutes;
// }
if (minutes < "1") {
minutes = "0";
}
// if (seconds < "10") {
// seconds = "0" + seconds;
// }
if (seconds < "1") {
seconds = "0";
}
$("#timer").html(
"<div class='row'><div class='col-xs-12 col-lg-3 py-5' id='days'>" +
days + "<span>Days</span></div>" + "<div class='col-xs-12 col-lg-3 py-5' id='hours'>" + hours + "<span>Hrs</span></div>" +
"<div class='col-xs-12 col-lg-3 py-5' id='minutes'>" +
minutes + "<span>Mins</span></div>" + "<div class='col-xs-12 col-lg-3 py-5' id='seconds'>" +
seconds + "<span>Secs</span></div></div>"
);
} else {
$("#timer").html(
"<div class='row' style='width:auto; height: auto'> <div class='col-xs-12 col-lg-3 py-5' style='width: 100%; height: auto; text-align: center; margin:auto; float:right;'>Now Live!</div></div>"
);
}
}
var prevScrollpos = window.pageYOffset;
window.onscroll = function() {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById("navbar").style.top = "0";
} else {
document.getElementById("navbar").style.top = "-100px";
}
prevScrollpos = currentScrollPos;
}
$(function() {
var navMain = $(".navbar-collapse");
navMain.on("click", "a", null, function() {
navMain.collapse('hide');
});
});
$(document).ready(function() {
$(window).scroll(function() {
if ($(this).scrollTop() > 50) {
$('#back-to-top').fadeIn();
} else {
$('#back-to-top').fadeOut();
}
});
// scroll body to 0px on click
$('#back-to-top').click(function() {
$('body,html').animate({
scrollTop: 0
}, 400);
return false;
});
});
var memphisFun = function() {
var theta = ($(window).scrollTop() / 180) % Math.PI;
$(".kz-ros-left").css({
transform: "rotate(" + theta + "rad)"
});
$(".kz-ros-right").css({
transform: "rotate(-" + theta + "rad)"
});
};
$(window).ready(function() {
var scroll = new SmoothScroll('a[href*="#"]');
memphisFun();
});
$(window).scroll(function() {
memphisFun();
});
// Arima faq
var currentFAQ1 = -1;
function toggleFAQ1(index) {
let elem = $(`.arimatab .faq:nth-child(${index})`);
if (currentFAQ1 > 0) {
let e = $(`.arimatab .faq:nth-child(${currentFAQ1})`);
e.find("p:first-child span").removeClass("active");
e.removeClass("active");
e.find("p:nth-child(2)").css("max-height", 0);
if (currentFAQ1 === index) {
return (currentFAQ1 = -1);
}
currentFAQ1 = -1;
}
currentFAQ1 = index;
elem.find("p:first-child span").addClass("active");
let e = elem.find("p:nth-child(2)");
e.css("max-height", e.get(0).scrollHeight);
elem.addClass("active");
}
// coderally faq
var currentFAQ2 = -1;
function toggleFAQ2(index) {
let elem = $(`.coderallytab .faq:nth-child(${index})`);
if (currentFAQ2 > 0) {
let e = $(`.coderallytab .faq:nth-child(${currentFAQ2})`);
e.find("p:first-child span").removeClass("active");
e.removeClass("active");
e.find("p:nth-child(2)").css("max-height", 0);
if (currentFAQ2 === index) {
return (currentFAQ2 = -1);
}
currentFAQ2 = -1;
}
currentFAQ2 = index;
elem.find("p:first-child span").addClass("active");
let e = elem.find("p:nth-child(2)");
e.css("max-height", e.get(0).scrollHeight);
elem.addClass("active");
}
// Agape faq
var currentFAQ3 = -1;
function toggleFAQ3(index) {
let elem = $(`.agapetab .faq:nth-child(${index})`);
if (currentFAQ3 > 0) {
let e = $(`.agapetab .faq:nth-child(${currentFAQ3})`);
e.find("p:first-child span").removeClass("active");
e.removeClass("active");
e.find("p:nth-child(2)").css("max-height", 0);
if (currentFAQ3 === index) {
return (currentFAQ3 = -1);
}
currentFAQ3 = -1;
}
currentFAQ3 = index;
elem.find("p:first-child span").addClass("active");
let e = elem.find("p:nth-child(2)");
e.css("max-height", e.get(0).scrollHeight);
elem.addClass("active");
}
// memeit faq
var currentFAQ4 = -1;
function toggleFAQ4(index) {
let elem = $(`.memeittab .faq:nth-child(${index})`);
if (currentFAQ4 > 0) {
let e = $(`.memeittab .faq:nth-child(${currentFAQ4})`);
e.find("p:first-child span").removeClass("active");
e.removeClass("active");
e.find("p:nth-child(2)").css("max-height", 0);
if (currentFAQ4 === index) {
return (currentFAQ4 = -1);
}
currentFAQ4 = -1;
}
currentFAQ4 = index;
elem.find("p:first-child span").addClass("active");
let e = elem.find("p:nth-child(2)");
e.css("max-height", e.get(0).scrollHeight);
elem.addClass("active");
}
var initialPane = "arimaPane";
function togglePane(paneVal) {
if (initialPane == paneVal) {
return null;
}
if (initialPane == 'arimaPane') {
if (currentFAQ1 > 0) {
toggleFAQ1(currentFAQ1);
}
} else if (initialPane == 'coderallyPane') {
if (currentFAQ2 > 0) {
toggleFAQ2(currentFAQ2);
}
} else if (initialPane == 'agapePane') {
if (currentFAQ3 > 0) {
toggleFAQ3(currentFAQ3);
}
} else if (initialPane == 'memeitPane') {
if (currentFAQ4 > 0) {
toggleFAQ4(currentFAQ4);
}
}
initialPane = paneVal;
return null;
}
</script>
<!--==============================================counter script end==============================================-->
<!--==============================================counter css end==============================================-->
<style>
#navbar {
position: fixed;
/* Make it stick/fixed */
width: 100%;
transition: top 0.3s;
/* Transition effect when sliding down (and up) */
}
#timer {
text-align: center;
opacity: 0.9;
background-color: black;
background-position: top;
background-size: cover;
font-size: 55px;
color: dodgerblue;
}
#days {
height: 3cm;
font-size: 55px;
}
#hours {
height: 3cm;
font-size: 55px;
}
#minutes {
height: 3cm;
font-size: 55px;
}
#seconds {
height: 3cm;
font-size: 55px;
}
@-webkit-keyframes hue {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(-360deg);
}
}
@keyframes hue {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(-360deg);
}
}
* {
scroll-behavior: smooth;
}
.card {
background-color: #ffffff !important;
z-index: 20 !important;
border: 2px solid #fd5479 !important;
border-radius: 30px !important;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}
.back-to-top {
position: fixed;
bottom: 25px;
right: 25px;
display: none;
border-radius: 100px !important;
background-color: #f50136 !important;
transition: all 300ms ease-in-out;
color: white;
}
</style>
<!--==============================================counter css end==============================================-->
<!-- ========== Meta Tags ========== -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- ========== Title ========== -->
<title> XTROFEST2.0</title>
<!-- ========== Favicon Ico ========== -->
<!-- ========== STYLESHEETS ========== -->
<!-- Bootstrap CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Fonts Icon CSS -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/et-line.css" rel="stylesheet">
<link href="assets/css/ionicons.min.css" rel="stylesheet">
<!-- Carousel CSS -->
<link href="assets/css/owl.carousel.min.css" rel="stylesheet">
<link href="assets/css/owl.theme.default.min.css" rel="stylesheet">
<!-- Animate CSS -->
<link rel="stylesheet" href="assets/css/animate.min.css">
<!-- Custom styles for this template -->
<link href="assets/css/main.css" rel="stylesheet">
<link href="assets/css/social_icons.css" rel="stylesheet">
<link rel="icon" href="assets/img/xtrofest2.0_icon_min.png">
</head>
<body>
<div class="loader">
<div class="loader-outter"></div>
<div class="loader-inner"></div>
</div>
<!--header start here -->
<header class="header navbar fixed-top navbar-expand-md" id="navbar">
<div class="container-fluid mr-3 px-3">
<a class="navbar-brand logo d-none d-lg-block" href="index.html">
<img src="assets/img/xtrofest2.0_icon_min.png" alt="Xtro" />
</a>
<a class="navbar-brand logo d-block d-lg-none" href="index.html">
<img src="assets/img/xtrofest2.0_icon_min.png" alt="Xtro" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#headernav" aria-expanded="false" aria-label="Toggle navigation">
<span class="lnr lnr-text-align-right"></span>
</button>
<div class="collapse navbar-collapse flex-sm-row-reverse" id="headernav">
<ul class="nav navbar-nav menu">
<li class="nav-item">
<a class="nav-link active" href="#home">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#event">EVENTS</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#kz-section-schedule">SCHEDULE</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#abt">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#sponsor">SPONSORS</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#faq">FAQs</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#contact">CONTACT US</a>
</li>
</ul>
</div>
</div>
</header>
<!--header end here-->
<!--cover section slider -->
<section id="home" class="home-cover">
<div class="cover_slider owl-carousel owl-theme">
<div class="cover_item" style="background: url('assets/img/bg/slider2.jpg');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-center">
<h5 class="cover-title">Department of Information Technology Proudly Presents...
</h5>
<strong class="cover-xl-text">XTROFEST 2.0</strong>
<p class="cover-date">
28<sup><span style="text-transform:lowercase;">th</sup></span> & 29<sup><span style="text-transform:lowercase;">th</span></sup> September 2020
</p><br>
<p class="cover-date">
Win exciting <span style="color:#f50136;"> cash prizes!</span>!
</p><br>
<h2 class="cover-title">
<span style="font-weight: 400;">Dream <span style="color:#f50136; font-weight: 600;"> IT</span>! Believe <span style="color:#f50136; font-weight: 600;"> IT</span>! Achieve <span style="color:#f50136; font-weight: 600;"> IT</span>!</span>
</h2>
</div>
</div>
</div>
</div>
</div>
<div class="cover_item" style="background: url('assets/img/bg/slider.jpg');">
<div class="slider_content arima_slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-center">
<strong> <p class="cover-xl-text" style="text-transform: uppercase;" >A.R.I.M.A</p></strong>
<br>
<h3 class="cover-title">
<span style="color:#f50136; font-weight: 600;">A</span>ccessible <span style="color:#f50136; font-weight: 600;">R</span>ich <span style="color:#f50136; font-weight: 600;">I</span>nternet <span style="color:#f50136; font-weight: 600;">M</span>odern
<span style="color:#f50136; font-weight: 600;">A</span>pplication</h3>
<br>
<p class="cover-date">
28<sup><span style="text-transform:lowercase;">th</sup></span> & 29<sup><span style="text-transform:lowercase;">th</span></sup> September 2020
</p>
<a target=”_blank” href="https://forms.gle/wt3bMaGF6x5YmMgv9" class="btn btn-primary btn-rounded">
Register Now
</a>
</div>
</div>
</div>
</div>
</div>
<div class="cover_item" style="background: url('assets/img/bg/slider1.jpg');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-center">
<strong class="cover-xl-text">CODERALLY</strong>
<h3 class="cover-title">
<span style="font-weight: 300;">Where intellectuals clash</span>
</h3>
<p class="cover-date">
28<sup><span style="text-transform:lowercase;">th</sup></span> & 29<sup><span style="text-transform:lowercase;">th</span></sup> September 2020
</p>
<a target=”_blank” href="https://forms.gle/wt3bMaGF6x5YmMgv9" class=" btn btn-primary btn-rounded">
Register Now
</a>
</div>
</div>
</div>
</div>
</div>
<div class="cover_item" style="background: url('assets/img/bg/slider3.jpg');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-center">
<strong class="cover-xl-text">AGAPE</strong>
<h3 class="cover-title">
<span style="font-weight: 300;">May the odds be ever in your favor</span>
</h3>
<p class="cover-date">
28<sup><span style="text-transform:lowercase;">th</sup></span> & 29<sup><span style="text-transform:lowercase;">th</span></sup> September 2020
</p>
<a target=”_blank” href="https://forms.gle/wt3bMaGF6x5YmMgv9" class=" btn btn-primary btn-rounded">
Register Now
</a>
</div>
</div>
</div>
</div>
</div>
<div class="cover_item" style="background: url('assets/img/bg/slider4.jpg');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-center">
<strong class="cover-xl-text">MEME-IT</strong>
<h3 class="cover-title">
<span style="font-weight: 300;">War of memes</span>
</h3>
<p class="cover-date">
28<sup><span style="text-transform:lowercase;">th</sup></span> & 29<sup><span style="text-transform:lowercase;">th</span></sup> September 2020
</p>
<a target=”_blank” href="#" class=" btn btn-primary btn-rounded">
Register Now
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cover_nav">
<ul class="cover_dots">
<li class="active" data="0"><span>1</span></li>
<li data="1"><span>2</span></li>
<li data="2"><span>3</span></li>
<li data="3"><span>4</span></li>
<li data="3"><span>5</span></li>
</ul>
</div>
</section>
<!--cover section slider end -->
<!--EVENTS-->
<section class="pb100" id="event">
<div class="container">
<div class="section_title mb2 0">
<h3 class="title pt-5">
Events
</h3>
</div>
</div>
<!-- <div class="container mx-auto event_box">
<div class="jumbotron">
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-4">
<img class="img-responsive" style="align-content: center" src="assets/img/logo.png" alt="event" style="max-height: 30%; max-width: 30%">
</div>
<div class="event_info col-sm-12 col-md-6 col-lg-8">
<h6 class="event_title">General Instructions:</h6><br>
<h6 class="title">STEP 1: Create an account in HackerEarth</h6>
<h6 class="title">STEP 2: Register for the desired Event at HackerEarth</h6>
</div>
</div>
</div>
</div> -->
<!--end -->
<!-- <div class="container mx-auto event_box">
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-4">
<img class="img-responsive" style="align-content: center" src="assets/img/events/event1.jpeg" alt="event" style="max-height: 80%; max-width: 80%">
</div>
<div class="event_info col-sm-12 col-md-6 col-lg-8">
<h5 id="int" class="event_title" style="text-transform: uppercase; font-size:35px;">Int elligence;</h5>
<div class="event_word">
<h4 style="font-weight: 500;">TEAM SIZE: 1-4 members</h4>
<br>
<h5>Your eccentric thoughts meets the world here!!!</h5>
<p>Hackathon is the technofest for engineering aspirants to bring out their cool ideas, contemplate, create and expose their upshot to the intellectual audience. int Elligence is one such prestigious national level 24 hour hackathon
that encourages students to identify problems and provide ideal solution to it which will be examined, scrutinized and evaluated by the extraordinary panel of judges from various industries and institutions. Every futuristic
solution will be acknowledged and honoured with worthy awards, rewards, internship offers and what not!!!!</p>
</div>
<div class="col-8 mx-auto">
<a target=”_blank” href="https://intelligence.hackerearth.com/" class=" btn btn-info btn-rounded" style="color:red;">
Registrations Closed
</a>
</div>
</div>
</div>
</div>
<div class="container mx-auto event_box">
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-4">
<img class="img-responsive" style="align-content: center" src="assets/img/events/event2.jpg" alt="event" style="max-height: 80%; max-width: 80%">
</div>
<div class="event_info col-sm-12 col-md-6 col-lg-8">
<h5 id="con" class="event_title" style="font-size: 35px;">Contrivance</h5>
<div class="event_word">
<h4 style="font-weight: 500;">TEAM SIZE: 1-3 members</h4>
<br>
<h5>Contrive the Cognizance</h5>
<p>Products rule the world of sophistication. Every new day yet another product becomes an inevitable part of our life with the help of growing technologies. Contrivance welcomes engineers from various departments like Computer Science,
Electricals, Electronics and Instrumentation to display and demonstrate their innovation which could be the next megahit product of the year. Students with revolutionary and new-fangled products will be awarded with exotic
gifts and prizes and will be honoured for being the best innovation of the eve.</p>
</div>
<div class=" col-8 mx-auto">
<a target=”_blank” href="https://contrivance.hackerearth.com/" class=" btn btn-info btn-rounded" style="color:red;">
Registrations closed
</a>
</div>
</div>
</div>
</div>
<div class="container mx-auto event_box">
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-4">
<img class="img-responsive" style="align-content: center" src="assets/img/events/event3.jpeg" alt="event" style="max-height: 80%; max-width: 80%">
</div>
<div class="event_info col-sm-12 col-md-6 col-lg-8">
<h5 id="pit" class="event_title" style="margin-top: inherit;">pitch Fest</h5>
<div class="event_word">
<h4 style="font-weight: 400;">Godsend Event for the participants of int elligence; and Contrivance</h4>
<br>
<h5>Unleash the speaker in you</h5>
<p>Have a mic and preach the lessons that you have grasped and mastered.</p>
</div>
</div>
</div>
</div>
<div class="container mx-auto event_box">
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-4">
<img class="img-responsive" style="align-content: center" src="assets/img/events/event4.jpeg" alt="event" style="max-height: 80%; max-width: 80%">
</div>
<div class="event_info col-sm-12 col-md-6 col-lg-8">
<h5 id="cod" class="event_title" style="margin-top: inherit;">Code day</h5>
<div class="event_word">
<h4 style="font-weight: 400;">Exclusively for the students of Sri Sairam Engineering College</h4>
<br>
<h5>Code Compile Run!!!!</h5>
<p>Hey Sairamites!!!! The first set of students to be fortunate enough to participate in intra-college coding event where you will be allowed to crack coding challenges for continuous 2 hours and the one who has cracked maximum challenges
efficiently and significantly will be chosen as the best programmer of the day.</p>
</div>
</div>
</div>
</div> -->
<!-- Events cards start -->
<img class="kz-ros-right memphis memphis1" src="assets/img/bgdesign/dark/butters.png" alt="butters" style="transform: rotate(0rad);">
<div class="container mx-auto event_box">
<div class="row grid">
<div class="col-md-8 col-lg-6 text-center mb25">
<div class="card card-body">
<img class="image img-fluid" src="assets/img/events/arima.png" alt="">
<p class="card_content">Brace yourself to experience a stupendous 24 hour virtual hackathon where participants unveil the developer within themselves and come up with viable solutions to solve real-time problems which will be scrutinized by the extraordinary
panel of judges from various industries and institutions.Showcase your skills to win awards, rewards and much more!
</p>
<div class="card_buttons">
<!-- <a target=”_blank” href="#" class="btn btn-primary btn-rounded mr10">
Register Now!
<i class="fa fa-ticket fa1"></i>
</a> -->
<a target=”_blank” href="#" data-toggle="modal" data-target="#arimaModal" class="btn btn-primary btn-rounded mr10">
Read more!
<i class="fa fa-angle-right fa1"></i>
</a>
</div>
</div>
</div>
<div class="col-md-8 col-lg-6 text-center mb25">
<div class="card card-body card_color">
<img class="image img-fluid" src="assets/img/events/coderally.png" alt="">
<p class="card_content">Coderally is an online programming tournament which provides a platform to test your programming and logical skills. In this event you will be pitched against various problem statements which are to be completed within the stipulated
time. This event will consist of a preliminary and semi-final coding round from which participants will be shortlisted for the challenging final showdown.
</p>
<div class="card_buttons">
<!-- <a target=”_blank” href="#" class="btn btn-primary btn-rounded mr10">
Register Now!
<i class="fa fa-ticket fa1"></i>
</a> -->
<a target=”_blank” href="#" data-toggle="modal" data-target="#coderallyModal" class="btn btn-primary btn-rounded mr10">
Read more!
<i class="fa fa-angle-right fa1"></i>
</a>
</div>
</div>
</div>
<div class="col-md-8 col-lg-6 text-center">
<div class="card card-body card_color">
<img class="image img-fluid" src="assets/img/events/agape.png" alt="">
<p class="mb40 card_content">Agape is a non-tech fiesta with surprise events, where the participants experience the ultimate amusement. Brightest blazes of happiness are commonly kindled by unexpected sparks. Join us to be bombarded with a fireball of these
sparks.
</p>
<div class="card_buttons">
<!-- <a target=”_blank” href="#" class="btn btn-primary btn-rounded mr10">
Register Now!
<i class="fa fa-ticket fa1"></i>
</a> -->
<a target=”_blank” href="#" data-toggle="modal" data-target="#agapeModal" class="btn btn-primary btn-rounded mr10">
Read more!
<i class="fa fa-angle-right fa1"></i>
</a>
</div>
</div>
</div>
<div class="col-md-8 col-lg-6 text-center">
<div class="card card-body card_color">
<img class="image img-fluid" src="assets/img/events/memeit.png" alt="">
<p class="card_content">Art your thought ..express your ideas from your heart of imagination. Meme gives you instant happiness and when they are created by you, it takes you to the peak of excitement. If these are you thoughts when you come across a trending
meme -then my friend, you have arrived at the right platform to unleash the meme-Lord within you.
</p>
<div class="card_buttons">
<!-- <a target=”_blank” href="#" class="btn btn-primary btn-rounded mr10">
Register Now!
<i class="fa fa-ticket fa1"></i>
</a> -->
<a target=”_blank” href="#" data-toggle="modal" data-target="#memeitModal" class="btn btn-primary btn-rounded mr10">
Read more!
<i class="fa fa-angle-right fa1"></i>
</a>
</div>
</div>
</div>
</div>
<img class="kz-ros-left memphis memphis2" src="assets/img/bgdesign/dark/noah.png" alt="butters" style="transform: rotate(0rad);">
</div>
<!-- Events cards end -->
</section>
<!--Events end-->
<!--event countdown -->
<section class="pb100" id="countdown">
<div class="container">
<h4 class="title">And it all starts in...</h4>
</div>
<div class="container-fluid mx-0 px-0" id="timer" data-endtime="Sep 28 2020 09:00:00 GMT+0530 (India Standard Time)">
</div>
</section>
<!--event count down end-->
<!-- Schedule section start -->
<section id="kz-section-schedule" class="kz-section-schedule kz-section-padding pb100" style="background-color: #f5f3f3;">
<img class="kz-ros-left memphis memphis3" src="assets/img/bgdesign/dark/sparky.png" alt="butters" style="transform: rotate(0rad);">
<div class="container">
<div class="section_title mb2 0">
<h3 class="title">
Schedule
</h3>
</div>
</div>
<div class="kz-day-title">
<h4 class="title pt-5">Day 1</h4>
</div>
<div class="kz-schedule-container schedule_day1">
<div class="kz-day-container">
<div class="kz-day-item accent">
<h4>Inaugral<span>9:00 am</span></h4>
<p>The grand opening to make you fall in love with us</p>
</div>
<div class="kz-day-item accent">
<h4>Getting started...<span>11:00 am</span></h4>
<p>Allocating participants in respective arenas.</p>
</div>
<div class="kz-day-item accent">
<h4>A.R.I.M.A<span>11:30 am</span></h4>
<p>Instructions and problem statement discussion.</p>
</div>
<div class="kz-day-item accent">
<h4>Coderally;<span>11:30 am</span></h4>
<p>Prelims- Start code-clashing</p>
</div>
<div class="kz-day-item accent">
<h4>Agape<span>11:30 am</span></h4>
<p>Mystery begins</p>
</div>
<div class="kz-day-item accent">
<h4>A.R.I.M.A<span>12:00 pm</span></h4>
<p>Start hacking</p>
</div>
<div class="kz-day-item accent">
<h4>Agape<span>02:00 pm</span></h4>
<p>Mystery continues</p>
</div>
<div class="kz-day-item accent">
<h4>Coderally;<span>03:00 pm</span></h4>
<p>Round 1: Fight</p>
</div>
<div class="kz-day-item accent">
<h4>A.R.I.M.A<span>03:00 pm</span></h4>
<p>Evaluation: Round 1</p>
</div>
</div>
</div>
<img class="kz-ros-left memphis memphis5" src="assets/img/bgdesign/dark/wheezy.png" alt="butters" style="transform: rotate(0rad);">
<div class="kz-day-title">
<h4 class="title pt-5">Day 2</h4>
</div>
<div class="kz-schedule-container">
<div class="kz-day-container">
<div class="kz-day-item accent">
<h4>A.R.I.M.A<span>12:00 am</span></h4>
<p>Evaluation: Round 2</p>
</div>
<div class="kz-day-item accent">
<h4>Coderally;<span>10:00 am</span></h4>
<p>Finale- Crack IT! Win IT!</p>
</div>
<div class="kz-day-item accent">
<h4>Agape<span>10:00 am</span></h4>
<p>Mystery finale</p>
</div>
<div class="kz-day-item accent">
<h4>A.R.I.M.A<span>10:00 am</span></h4>
<p>Final Evaluation</p>
</div>
<div class="kz-day-item accent">
<h4>Valedictory<span>02:00 pm</span></h4>
<p>We made IT!</p>
</div>
</div>
</div>
</section>
<!-- Schedule section end -->
<!-- About us start -->
<section class="pb100" id="abt">
<img class="kz-ros-left memphis memphis4" src="assets/img/bgdesign/dark/tangy.png" alt="butters" style="transform: rotate(0rad);">
<div class="container">
<div class="section_title">
<h3 class="title">
About Us
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-6">
<h4>Our Institution</h4>
<p class="card_content">
A well defined vision, highly committed mission and dedicated leadership facilitates Sri Sairam Engineering College to be in the best of educational institutions in the country. Since its inception, our Institution has tried its hands in diverse fields
to prove its excellence in all spheres.
</p>
</div>
<div class="col-12 col-md-6">
<h4>Our Department</h4>
<p class="card_content">
Teaching alone does not make any institution one among the best. Our department finds pleasure in organising many events throughout the year, some of which are Symposiums, Conferences and events in association with the IEEE Society. The department makes
the students industry-ready with the best training in the RedHat Linux Certification, Oracle Academy Centre and CISCO Academy Centre.
</p>
</div>
</div>
<div class="section_title">
<h3 class="title">
Xtrofest memories...
</h3>
</div>
<div class="container">
<div class="memories_carousel owl-carousel tech_stack" id="owl3">
<div class="slide_item text-center mx-auto mr40">
<a title="Xtrofest"><img src="assets/img/memories/xtrofest1.JPG" alt="Xtrofest"></a>
</div>
<div class="slide_item text-center mx-auto mr40">
<a title="Xtrofest"><img src="assets/img/memories/xtrofest2.JPG" alt="Xtrofest"></a>
</div>
<div class="slide_item text-center mx-auto mr40">
<a title="Xtrofest"><img src="assets/img/memories/xtrofest3.JPG" alt="Xtrofest"></a>
</div>
<div class="slide_item text-center mx-auto mr40">
<a title="Xtrofest"><img src="assets/img/memories/xtrofest4.JPG" alt="Xtrofest"></a>
</div>
<div class="slide_item text-center mx-auto mr40">
<a title="Xtrofest"><img src="assets/img/memories/xtrofest5.JPG" alt="Xtrofest"></a>
</div>
<div class="slide_item text-center mx-auto mr40">
<a title="Xtrofest"><img src="assets/img/memories/xtrofest6.JPG" alt="Xtrofest"></a>
</div>
<div class="slide_item text-center mx-auto mr40">
<a title="Xtrofest"><img src="assets/img/memories/xtrofest7.JPG" alt="Xtrofest"></a>
</div>
<div class="slide_item text-center mx-auto mr40">
<a title="Xtrofest"><img src="assets/img/memories/xtrofest8.JPG" alt="Xtrofest"></a>
</div>
<div class="slide_item text-center mx-auto mr40">
<a title="Xtrofest"><img src="assets/img/memories/xtrofest9.JPG" alt="Xtrofest"></a>
</div>
</div>
</div>
<!--event features-->
<!-- <div class="row justify-content-center mt30">
<div class="col-12 col-md-6 col-lg-3">
<div class="icon_box_one">
<i class="lnr lnr-rocke"></i>
<div class="content">
<h4>A.R.I.M.A</h4>
<p>
A.R.I.M.A is a 24-hour hackathon where innovations & inventions grapple together.
<br><br>
<strong>Members : </strong>1-4
<br>
<strong>Timings : </strong><br>11:00 A.M(21 Aug 2019) to <br> 11:00 A.M(22 Aug 2019)
</p>
<a href="#event">Read more</a>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="icon_box_one">
<i class="lnr lnr-rocke"></i>
<div class="content">
<h4>contrivance</h4>
<p>Contrivance is a product demonstration event to promote one's idea.
<br><br>
<strong>Members : </strong>1-3
<br>
<strong>Timings : </strong><br>11:00 A.M to 04:00 P.M<br>(21 Aug 2019).
</p>
<br>
<a href="#event">read more</a>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="icon_box_one">
<i class="lnr lnr-bullhor"></i>
<div class="content">
<h4>Pitch fest</h4>
<p>"Knowledge is gained by sharing,not by hoarding it !"<br><br>Its an arena to exhort your eminent ideas.
<br>
<br>
<strong>Date :</strong> 22nd Aug 2019.
<br>
<br>
</p>
<br>
<a href="#event">read more</a>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="icon_box_one">
<i class="lnr lnr-rocke"></i>
<div class="content">
<h4>Code day</h4>
<p>
The Code day is a special event where one's coding knowledge will be evaluated.
<br>
<br>
<strong>Note :</strong> Code day is an special event conducted only for the students of Sri Sairam Engineering College.
</p>
<br>
<a href="#event">read more</a>
</div>
</div>
</div>
</div> -->
<!--event features end-->
</div>
</section>
<!--about us end -->
<!--sponsors section -->
<section class="bg-gray pb100 mb100" id="sponsor">
<div class="container">
<div class="section_title mb50">
<h3 class="title">
our eminent Sponsors
</h3>
</div>
<h3 class="cover-title" style="text-align: center;">
<span style="font-weight: 400;">Coming soon!</span>
</h3>
<!-- <div class="brand_carousel owl-carousel" id="owl2">
<div class="brand_item text-center mx-auto">
<a href="https://atos.net/en/" target="_blank"><img src="assets/img/brands/atos.png" alt="brand"></a>
</div>
<div class="brand_item text-center mx-auto">
<a href="http://www.activegalaxy.in" target="_blank"><img src="assets/img/brands/Active%20galaxy.png" alt="brand"></a>
</div>
<div class="brand_item text-center mx-auto">
<a href="https://balsamiq.com" target="_blank"><img src="assets/img/brands/balsamiq.png" alt="brand"></a>
</div>
<div class="brand_item text-center mx-auto">
<a href="https://www.facebook.com/Camproad/" target="_blank"><img src="assets/img/brands/BOYKA.png" alt="brand"></a>
</div>
<div class="brand_item text-center mx-auto">
<a href="https://www.bugsee.com" target="_blank"><img src="assets/img/brands/bugsee.png" alt="brand"></a>
</div>
<div class="brand_item text-center mx-auto">
<a href="https://www.indiamart.com/herdsmannindustries/" target="_blank"><img src="assets/img/brands/hiland_2.png" alt="brand"></a>
</div>
<div class="brand_item text-center mx-auto">
<img src="assets/img/brands/mc.png" alt="brand">