-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstructure.php
538 lines (483 loc) · 17.1 KB
/
structure.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Startup Conclave</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Oswald:wght@700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
/* font-family: "Poppins", sans-serif; */
font-family: 'Montserrat', sans-serif;
}
html{
scroll-behavior: smooth;
}
.page-top-2{
background-color: #000;
background-image: url(./images/colorful-abstract-nebula-space.jpg);
background-repeat: no-repeat;
background-attachment:fixed;
background-size: cover;
/* background-color: #bf1807; */
/* background: #bf1807; */
}
::selection{
color: #fff;
background: #bf1807;
}
.wrapper{
max-width: 1080px;
margin: 74px auto;
padding: 0 20px;
position: relative;
}
.wrapper .center-line{
position: absolute;
height: 100%;
width: 4px;
background: #fff;
left: 50%;
top: -2px;
transform: translateX(-50%);
}
.wrapper .row{
display: flex;
}
.wrapper .row-1{
justify-content: flex-start;
}
.wrapper .row-2{
justify-content: flex-end;
}
.wrapper .row section{
margin-top: 2rem;
background: #fff;
border-radius: 5px;
width: calc(50% - 40px);
padding: 20px;
position: relative;
}
.wrapper .row section::before{
position: absolute;
content: "";
height: 15px;
width: 15px;
background: #fff;
top: 28px;
z-index: -1;
transform: rotate(45deg);
}
.row-1 section::before{
right: -7px;
}
.row-2 section::before{
left: -7px;
}
.row section .icon,
.center-line .scroll-icon{
position: absolute;
background: #f2f2f2;
height: 40px;
width: 40px;
text-align: center;
line-height: 40px;
border-radius: 50%;
color: #bf1807;
font-size: 17px;
box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
}
.center-line .scroll-icon{
bottom: 0px;
left: 50%;
font-size: 25px;
transform: translateX(-50%);
}
.row-1 section .icon{
top: 15px;
right: -60px;
}
.row-2 section .icon{
top: 15px;
left: -60px;
}
.row section .details,
.row section .bottom{
display: flex;
align-items: center;
justify-content: space-between;
}
.row section .details .title{
color: #bf1807;
font-size: 25px;
font-weight: 800;
}
.row section p{
margin: 10px 0 17px 0;
}
.row section .bottom a{
text-decoration: none;
background: #bf1807;
color: #fff;
padding: 7px 15px;
border-radius: 5px;
/* font-size: 17px; */
font-weight: 400;
transition: all 0.3s ease;
}
.row section .bottom a:hover{
transform: scale(0.97);
}
@media(max-width: 790px){
.wrapper .center-line{
left: 40px;
}
.wrapper .row{
margin: 30px 0 3px 60px;
}
.wrapper .row section{
width: 100%;
margin-top: 90px;
}
.row-1 section::before{
left: -7px;
}
.row-1 section .icon{
left: -60px;
}
}
@media(max-width: 440px){
.wrapper .center-line,
.row section::before,
.row section .icon{
display: none;
}
.wrapper .row{
margin: 10px 0;
}
}
@media (max-width: 405px){
.structure-text{
font-size:2rem;
}
}
.structure-title{
height: 55px;
text-align: center;
top: 0;
padding-top: 7rem;
}
.structure-text{
background: #f6f4f4;
margin-left: 15px;
margin-right: 15px;
border-radius: 7px 7px 0px 0px;
padding: 10px;
color: rgb(243, 0, 0);
/* font-size: 25px; */
font-family: 'Oswald', sans-serif;
/* mmmm */
/* padding: 5px; */
font-size: 35px;
font-weight: 800;
/* font-family: 'Oswald', sans-serif; */
letter-spacing: 0.1rem;
/* color: white; */
text-align: center;
}
/* FAQ's CSS Starts Here */
.box{
width: 100%;
margin-top: 5rem;
/* padding: 2rem 20rem 2rem 20rem; */
padding-left: 5%;
padding-right: 5%;
}
.box .headings{
margin-left: 0px;
background: #f6f4f4;
border-radius: 7px 7px 0px 0px;
padding: 10px;
color: rgb(243, 0, 0);
text-align: center;
font-size: 25px;
font-family: 'Oswald', sans-serif;
}
.faqs{
padding: 0px 20px 20px;
display: block;
}
::-webkit-details-marker{
float: right;
margin-top: 3px;
}
.details{
flex-direction: column;
/* background: #000000; */
padding: 10px 20px;
border-radius: 7px;
/* margin-top: 20px; */
font-family: 'Montserrat', sans-serif;
/* font-size: 25px; */
letter-spacing: 1px;
}
.summary{
outline: none;
font-weight: bolder;
}
/* rules and regulation */
.rar{
font-family: 'Montserrat', sans-serif;
height: 40px;
text-align: center;
font-size: 1.4rem;
padding: 2 rem;
margin: 25px;
color: #f2f2f2;
/* border: 3px solid white; */
/* border-radius: 10px; */
}
/* FONTS */
p{
font-family: 'Montserrat', sans-serif;
margin-left: 25px;
margin-top: 5px;
font-size: 15px;
font-weight: 400;
}
.date{
color: #bf1807;
font-size: 17px;
font-weight: 500;
}
.details_faq{
flex-direction: column;
background: #ffffff;
padding: 10px 20px;
border-radius: 7px;
margin-top: 20px;
font-family: sans-serif;
/* font-size: 25px; */
letter-spacing: 1px;
/* color: white; */
}
.download_rar{
padding: 10px;
background-color: #bf1807;
font-family: 'Montserrat', sans-serif;
color: white;
}
/* transition */
#fis, #sec, #thi {
transition: transform 1s ease-in-out;
}
/* .hidden1, .hidden2, .hidden3 {
transform: translateX(100%);
}
.visible1, .visible2, .visible3 {
transform: translateX(0);
} */
</style>
<body class="page-top-2">
<header class="header">
<div>
<a class="logo" href="https://www.ecellvnit.org/"><img class="logo" src="images/Layer 1.png" alt=""></a>
</div>
<div>
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="./index.php" class="link link-theme link-arrow">HOME</a></li>
<!-- <li><a href="./structure.php" class="link link-theme link-arrow">INFO</a></li> -->
<li><a href="./speakers.php" class="link link-theme link-arrow">SPEAKERS</a></li>
<li><a href="./index.php#contact" class="link link-theme link-arrow">CONTACT US</a></li>
<!-- <li><a href="./registration.php" class="link link-theme link-arrow">REGISTER</a></li> -->
<li><a href="./login.php" class="link link-theme link-arrow">LOGIN</a></li>
</ul>
</div>
</header>
<header class="structure-title">
<p class="structure-text">STRUCTURE & TIMELINE</p>
</header>
<div class="wrapper">
<div class="center-line hidden1" id="fis">
<a href="#" class="scroll-icon"><i class="fas fa-caret-up"></i></a>
</div>
<div class="row row-1">
<section>
<i class="icon fas fa-star"></i>
<div class="details">
<span class="title">1. Executive Summary Round</span>
<span class="date">till 16 Feb 2023</span>
</div>
<p>Participants have to provide a thorough description of thier startup idea as part of the registration process followed by answering some basic questions regarding it.<p>
</section>
</div>
<div class="row row-2 hidden2" id="sec">
<section>
<i class="icon fas fa-star"></i>
<div class="details">
<span class="title">2. Mentorship Round</span>
<span class="date">20 Feb 2023 - 10 Mar 2023</span>
</div>
<p>Shortlisted Teams will be receiving mentoring sessions from renowned and experienced entrepreneurs. Each team has to submit its pitch deck and Elevator pitch. Mentors will guide the teams in thier further endeavors.</p>
<!-- <div class="bottom">
<a href="#">Read more</a>
<i>- Someone famous</i>
</div> -->
</section>
</div>
<div class="row row-1 hidden3" id="thi">
<section>
<i class="icon fas fa-star"></i>
<div class="details">
<span class="title">3. Shark Tank Round</span>
<span class="date">1 Apr 2023 - 2 Apr 2023</span>
</div>
<p>Leading teams will present their Startup at Consortium(Annual E-summit) at VNIT.The essential traits of an entrepreneur will be put to the test in front of the investors to negotiate.This round will test the presentation, speaking,evaluation and negotiationn skills of the startups.</p>
<!-- <div class="bottom">
<a href="#">Read more</a>
<i>- Someone famous</i>
</div> -->
</section>
</div>
</div>
<!-- RAR starts -->
<!-- <div class="rar">
For Rules & regulations Click Here <a href="" download="Rules" ><button class="download_rar" download="Rules">Download</button></a>
</div> -->
<!-- RAR ends -->
<div class="box">
<p class="headings">FREQUENTLY ASKED QUESTION'S</p>
<div class="faqs">
<details class="details_faq">
<summary class="summary">Who can participate in Startup Conclave 2022-23?</summary>
<p class="text">The event is open for all. You just need a startup idea or an active startup to register.</p>
</details>
<details class="details_faq">
<summary class="summary">How can I participate in the Startup Conclave 2022-23?</summary>
<p class="text">You can follow the following Steps- <br>
Step 1: Team Leader have to register for the Startup Conclave through the portal. <br>
Step 2: After registering, You will find a questionnaire that contains some questions. You have to answer these questions. Some are compulsory and some are optional.</p>
</details>
<details class="details_faq">
<summary class="summary">Is the registration free?</summary>
<p class="text">Yes its totally free !</p>
</details>
<details class="details_faq">
<summary class="summary">What is the last date to register?</summary>
<p class="text">The last date of registration is the 16th of Feb </p>
</details>
<details class="details_faq">
<summary class="summary">How many members can I have on my team? </summary>
<p class="text"> You can have a maximum of 5 members in a team (1 Leader + 4 members).</p>
</details>
<details class="details_faq">
<summary class="summary">I registered more than once for the same entry. What should I do?</summary>
<p class="text">For this, you just have to fill out the questionnaire form just by your desired login credentials, if it is already been filled out twice then you can contact us about the issue. </p>
</details>
<details class="details_faq">
<summary class="summary"> Can I participate in Startup Conclave, if I have already participated in previous years? </summary>
<p class="text">Yes! You can participate provided you were not one of the winners in previous years.</p>
</details>
<!-- <details class="details_faq">
<summary class="summary">How will the business model be judged? </summary>
<p class="text">Your business model will be judged on aspects like your: <br>
(1) Value Proposition. <br>
(2) Customer you are targeting. <br>
(3) How will you generate revenue from your idea. <br>
(4) Unique Selling Proposition (USP) <br>
(5) Customer Validation/Feedback <br>
(6) Further criterias for each round will be updated soon on the website.</p> <br>
</details> -->
<details class="details_faq">
<summary class="summary">What is the mentorship round? How can I participate in this round? </summary>
<p class="text">After filling out the questionnaire, Some startups will be sorted for the mentorship round. In this round, each startup will be assigned a mentor, who will guide them to make progress in their startup. </p>
</details>
<details class="details_faq">
<summary class="summary">What is the Shark Tank Conso Round? How can I participate in this round? </summary>
<p class="text">The Shark Tank Conso is the Final round of the Startup Conclave. This round will be held on the sidelines of Consortium 23 which is the annual E-Summit cum Management fest of E-cell VNIT, where the startups will get an opportunity to pitch their ideas to judges and receive real-time funding in VNIT Nagpur (offline). </p>
</details>
<details class="details_faq">
<summary class="summary">Is the event offline or online? </summary>
<p class="text">Only the Final Shark Tank Conso Round is offline other rounds are online</p>
</details>
</div>
</div>
<!-- footer section start -->
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-md-3">
<a href="index.html"><img src="images/Layer 1.png" alt="" class="img-fluid logo-footer"></a>
</div>
<!-- <div class="col-md-3">
<div class="useful-link">
<h2>Useful Links</h2>
<img src="./assets/images/about/home_line.png" alt="" class="img-fluid">
<div class="use-links">
<li><a href="index.html"><i class="fa-solid fa-angles-right"></i> Home</a></li>
<li><a href="about.html"><i class="fa-solid fa-angles-right"></i> About Us</a></li>
<li><a href="gallery.html"><i class="fa-solid fa-angles-right"></i> Gallery</a></li>
<li><a href="contact.html"><i class="fa-solid fa-angles-right"></i> Contact</a></li>
</div>
</div>
</div> -->
<div class="col-md-5">
<div class="address">
<h2>Address</h2>
<img src="./assets/images/about/home_line.png" alt="" class="img-fluid">
<div class="address-links">
<li class="address1"><i class="fa-solid fa-location-dot"></i>E-Cell office, 1st Floor VNIT Canteen, Visvesvaraya National Institute Of Technology, South Ambazari Road, Abhyankar Nagar, Nagpur-440010</li>
</div>
</div>
</div>
<div class="col-md-3">
<div class="address">
<h2 style="margin-bottom: 5px;">Contact</h2>
<div class="address-links">
<li><a href="mailto:[email protected]"><i class="fa-solid fa-envelope"></i>[email protected]</a></li>
<li><a href="mailto:[email protected]"><i class="fa-solid fa-envelope"></i>[email protected]</a></li>
</div>
</div>
</div>
<div class="col-md-12 ">
<div class="social-links">
<h2>Follow Us</h2>
<img src="./assets/images/about/home_line.png" alt="">
<div class="social-icons">
<li><a href="https://www.facebook.com/vnitecell/"><i class="fa-brands fa-facebook-f"></i> Facebook</a></li>
<li><a href="https://www.instagram.com/ecellvnit/?hl=en"><i class="fa-brands fa-instagram"></i> Instagram</a></li>
<li><a href="https://www.linkedin.com/company/theentrepreneurshipcellvnit/mycompany/"><i class="fa-brands fa-linkedin-in"></i> Linkedin</a></li>
<li><a href="https://www.youtube.com/@ECellVNIT"><i class="fa-brands fa-youtube"></i> YouTube</a></li>
<li><a href="https://twitter.com/ecell_vnit"><i class="fa-brands fa-twitter"></i> Twitter</a></li>
</div>
</div>
</div>
</div>
</div>
</footer> -->
<!-- footer section end -->
<!-- footer copy right section start -->
<section id="copy-right">
<div class="copy-right-sec"><i class="fa-solid fa-copyright"></i>
<a href="https://www.ecellvnit.org/" style="text-decoration: none; color: #fff; "> E-cell VNIT </a>
</div>
</section>
<!-- footer copy right section end -->
<script type="text/javascript" src="jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="savy.min.js"></script>
<script src="script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>