-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1111 lines (1018 loc) · 59.6 KB
/
Copy pathindex.html
File metadata and controls
1111 lines (1018 loc) · 59.6 KB
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 class="no-js" lang="en">
<head>
<title>Techweek '15 | IEEE DTU</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta content="width=device-width,initial-scale=1" name="viewport">
<meta content="website" property="og:type">
<meta content="Techweek 2015" property="og:title">
<meta content="http://ieee.dcetech.com/techweek/css/imgs/techweek.png" property="og:image">
<meta content="http://ieee.dcetech.com/techweek" property="og:url">
<meta content="TechWeek, by IEEE DTU, is the annual workshop galore, which offers budding engineers an insight into the various new and upcoming technologies." property="og:description">
<!-- build:css css/TechWeekStyles.css-->
<link rel="stylesheet" href="css/main.css" />
<!-- /build-->
<link href="http://fonts.googleapis.com/css?family=IM+Fell+DW+Pica+SC|Lilita+One|New+Rocker|Niconne|Passero+One|Raleway|Germania+One|Nunito" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="css/imgs/techweek.png">
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- include: "type": "js", "files": "js/ga.js" -->
</head>
<body class="yir_base years not-mobile not-phone not-forces-video-controls not-tablet not-ipad not-iphone not-ios not-android not-touchable not-native-app-request not-apple-pay-capable responsive" id="years_twentyfourteen">
<div class="center jGrowl" id="growl_section"></div>
<button aria-label="Forward" class="js-trigger trigger-forward"></button>
<button aria-label="Back" class="js-trigger trigger-backward"></button>
<div class="moments-index yir-hide">
<h2 class="moments-index-title">Schedule of<span class="break">TechWeek '15</span></h2>
<ul class="moments-index-list">
<li class="moments" data-moment="event_00">
<div class="box2" style="transform: rotate(4deg)">
<img src="css\imgs\schedule_dates\20.svg">
<h1>Graphic Designing</h1>
</div>
</li>
<li class="moments" data-moment="event_01">
<div class="box2" style="transform: rotate(-4deg)">
<img src="css\imgs\schedule_dates\20.svg">
<h1>MATLAB</h1>
</div>
</li>
<li class="moments" data-moment="event_02">
<div class="box2" style="transform: rotate(1deg)">
<img src="css\imgs\schedule_dates\21.svg">
<h1>Animation</h1>
</div>
</li>
<li class="moments" data-moment="event_03">
<div class="box2" style="transform: rotate(-1deg)">
<img src="css\imgs\schedule_dates\21.svg">
<h1>Current-X</h1>
</div>
</li>
<li class="moments" data-moment="event_04">
<div class="box2" style=" margin-top:20px; transform: rotate(3deg);">
<img src="css\imgs\schedule_dates\22.svg">
<h1>Robotics</h1>
</div>
</li>
<li class="moments" data-moment="event_05">
<div class="box2" style="transform: rotate(-2deg);">
<img src="css\imgs\schedule_dates\22.svg">
<h1>Programming</h1>
</div>
</li>
<li class="moments" data-moment="event_06">
<div class="box2" style="transform: rotate(3deg);">
<img src="css\imgs\schedule_dates\24.svg">
<h1>Software Development</h1>
</div>
</li>
<li class="moments" data-moment="event_07">
<div class="box2" style="transform: rotate(2deg);">
<img src="css\imgs\schedule_dates\24.svg">
<h1>SolidWorks</h1>
</div>
</li>
<li class="moments" data-moment="event_08">
<div class="box2" style="transform: rotate(1deg);">
<img src="css\imgs\schedule_dates\25.svg">
<h1>Web Development</h1>
</div>
</li>
<li class="moments" data-moment="event_09">
<div class="box2" style="transform: rotate(2deg);">
<img src="css\imgs\schedule_dates\25.svg">
<h1>VLSI</h1>
</div>
</li>
<li class="moments" data-moment="event_10">
<div class="box2" style="transform: rotate(2deg);">
<img src="css\imgs\schedule_dates\26.svg">
<h1>Wattack</h1>
</div>
</li>
</ul>
</div>
<a class="logo twlogo" href="index.html"></a>
<button class="view-all germaniaFont">
<p> Schedule </p>
</button>
<div class="moments-index get">
<h2 class="moments-index-title">Coordinators of<span class="break">TechWeek '15</span></h2>
<ul class="moments-index-list">
<li class="moments">Saksham Saxena<br>+91 9873771606</li>
<li class="moments">Shreya Mondol<br>+91 9650995451</li>
<li class="moments">Saurav Chandel<br>+91 9582628945</li>
<li class="moments">Surbhi Batra<br>+91 9871166338</li>
<li class="moments"><a href="mailto:techweek15@gmail.com">techweek15@gmail.com</a></li>
</ul>
<span class="cross"></span>
</div>
<section class="moment full-spread enter-left intro_00">
<section class="full-viewport-hero bg-blue-dark white transition-all-bezier">
<div class="full-viewport-hero__background">
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="166.227" cy="86.085" fill="#00A0FF" r="6.803"></circle>
<circle cx="584.227" cy="351.085" fill="#00A0FF" r="6.803"></circle>
<path d="M318.948,165.284c-20.435,0-37-16.565-37-37s16.565-37,37-37" fill="#00A0FF"></path>
<g>
<rect fill="#00A0FF" height="30.537" transform="matrix(0.9544 -0.2985 0.2985 0.9544 20.152 170.2101)" width="30.537" x="552.056" y="3.861"></rect>
<rect fill="#00A0FF" height="30.537" transform="matrix(0.9544 -0.2985 0.2985 0.9544 15.8908 182.6205)" width="30.537" x="590.555" y="24.017"></rect>
<rect fill="#00A0FF" height="30.537" transform="matrix(0.9544 -0.2985 0.2985 0.9544 11.6297 195.0309)" width="30.537" x="629.055" y="44.173"></rect>
</g>
<rect class="fade-30-to-100-opacity-5s" fill="#00A0FF" height="52.326" opacity="0.3" transform="matrix(-0.6348 -0.7727 0.7727 -0.6348 -181.8805 540.6008)" width="52.326" x="10.661" y="287.122"></rect>
<rect class="fade-30-to-100-opacity-3s" fill="#00A0FF" height="28" opacity="0.3" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -349.4882 220.8319)" width="112" x="35.824" y="518.285"></rect>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<rect fill="#00A0FF" height="50" id="blue-rectangle" width="50" x="50" y="50"></rect>
<animatetransform attributename="transform" attributetype="XML" begin="0s" dur="10s" fill="freeze" from="0 75 75" repeatcount="indefinite" to="360 75 75" type="rotate" xlink:href="#blue-rectangle"></animatetransform>
<circle cx="137.814" cy="46.085" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="653.814" cy="476.085" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<polygon fill="#00A0FF" id="blue-triangle" points="353.979,117.285 335.479,86.179 316.979,55.073 353.979,55.073 390.979,55.073 372.479,86.179"></polygon>
<rect class="fade-30-to-100-opacity-6s" fill="#00A0FF" height="28" id="blue-rectangle-4" opacity="0.3" transform="matrix(0.7071 0.7071 -0.7071 0.7071 289.2161 -367.6584)" width="110" x="530" y="150"></rect>
<animatetransform attributename="transform" attributetype="XML" begin="0s" dur="20s" fill="freeze" from="0 585 164" repeatcount="indefinite" to="-360 585 164" type="rotate" xlink:href="#blue-rectangle-4"></animatetransform>
<circle class="fade-30-to-100-opacity-5s" cx="820" cy="250" fill="#00A0FF" opacity="0.3" r="37"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="174.227" cy="52.031" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="728.227" cy="549.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="44.227" cy="443.031" fill="#00A0FF" r="6.803"></circle>
<rect fill="#00A0FF" height="50" id="blue-rectangle-3" transform="matrix(-0.6348 -0.7727 0.7727 -0.6348 -304.6313 986.4708)" width="50" x="50" y="540"></rect>
<animatetransform attributename="transform" attributetype="XML" begin="0s" dur="10s" fill="freeze" from="0 75 565" repeatcount="indefinite" to="360 75 565" type="rotate" xlink:href="#blue-rectangle-3"></animatetransform>
<g class="fade-30-to-100-opacity-5s" id="blue-x" opacity="0.3">
<line stroke-miterlimit="10" stroke-width="18" stroke="#00A0FF" x1="238" x2="296" y1="362" y2="422"></line>
<line stroke-miterlimit="10" stroke-width="18" stroke="#00A0FF" x1="238" x2="296" y1="422" y2="362"></line>
</g>
<animatetransform attributename="transform" attributetype="XML" begin="0s" dur="15s" fill="freeze" from="0 235 470" repeatcount="indefinite" to="360 235 470" type="rotate" xlink:href="#blue-x"></animatetransform>
<circle cx="579.448" cy="465.229" fill="#00A0FF" r="37"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle class="fade-30-to-100-opacity-3s" cx="312.814" cy="392.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<g class="fade-30-to-100-opacity-6s" opacity="0.3">
<rect fill="#00A0FF" height="31.001" transform="matrix(0.9515 -0.3077 0.3077 0.9515 -16.4863 242.3753)" width="30.999" x="744.833" y="157.966"></rect>
<rect fill="#00A0FF" height="30.001" transform="matrix(0.9515 -0.3077 0.3077 0.9515 -20.6652 255.1456)" width="29.999" x="783.739" y="178.102"></rect>
<rect fill="#00A0FF" height="31.001" transform="matrix(0.9515 -0.3077 0.3077 0.9515 -24.844 267.9159)" width="30.999" x="821.644" y="197.238"></rect>
</g>
<rect fill="#00A0FF" height="50" id="blue-rectangle-2" width="50" x="210" y="445"></rect>
<animatetransform attributename="transform" attributetype="XML" begin="0s" dur="15s" fill="freeze" from="0 235 470" repeatcount="indefinite" to="360 235 470" type="rotate" xlink:href="#blue-rectangle-2"></animatetransform>
<g>
<line fill="#FFFB78" stroke-miterlimit="10" stroke-width="18.9662" stroke="#00A0FF" x1="487.02" x2="546.02" y1="469.728" y2="528.728"></line>
<line fill="#FFFB78" stroke-miterlimit="10" stroke-width="18.9662" stroke="#00A0FF" x1="487.02" x2="546.02" y1="528.728" y2="469.728"></line>
</g>
</svg>
</div>
</div>
<div class="full-viewport-hero__content">
<div class="yir-intro-slide">
<h3 class="subtitle"><span class="subIEEE">IEEE DTU</span><br>in association with</h3>
<h3 class="subtitle"><a href="http://www.3sttechnologies.com" target="_blank"><img src="css/imgs/3ST_logo.png" height="50"></a></h3>
<h3 class="subtitle">presents</h3>
<h1 class="title">Techweek '15</h1>
<a class="btn btn--large btn--green js-trigger-forward explore-button germaniaFont" href="">Explore!</a>
<!--<h3 class="subtitle"><span class="subIEEE">sponsored by</span><br><a href="http://www.3sttechnologies.com" target="_blank"><img src="css/imgs/3ST_logo.png" height="50"></a></h3>-->
</div>
</div>
</section>
</section>
<section class="moment full-spread enter-left intro_01">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="wrap">
<p>
The world of engineers is fast paced and scary at first sight.</p>
</div>
</div>
<div class="asset asset-1">
<div class="full-viewport-hero__background">
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="166.227" cy="86.085" fill="#00A0FF" r="6.803"></circle>
<circle cx="584.227" cy="351.085" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="137.814" cy="46.085" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s move-top-to-bottom-10s" cx="653.814" cy="476.085" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="174.227" cy="52.031" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="728.227" cy="549.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="44.227" cy="443.031" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle class="fade-30-to-100-opacity-3s" cx="312.814" cy="392.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
</svg>
</div>
</div>
</div>
</section>
<section class="moment full-spread enter-left intro_02">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="wrap">
<p>August of 2015 will make it seem welcoming as a team of some 50 Engineers introduce you to this new world.</p>
</div>
</div>
<div class="asset asset-1">
<div class="full-viewport-hero__background">
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="166.227" cy="86.085" fill="#00A0FF" r="6.803"></circle>
<circle cx="584.227" cy="351.085" fill="#00A0FF" r="6.803"></circle>
<circle cx="300" cy="225" fill="#00A0FF" r="6.803"></circle>
<circle cx="475" cy="500" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="137.814" cy="46.085" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s move-top-to-bottom-10s" cx="653.814" cy="476.085" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="285" cy="100" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="500" cy="350" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="174.227" cy="52.031" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="728.227" cy="549.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="44.227" cy="443.031" fill="#00A0FF" r="6.803"></circle>
<circle cx="400" cy="250" fill="#00A0FF" r="6.803"></circle>
<circle cx="225" cy="450" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle class="fade-30-to-100-opacity-3s" cx="312.814" cy="392.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="850" cy="300" fill="#00A0FF" r="6.803"></circle>
<circle cx="600" cy="125" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
</div>
</div>
</section>
<section class="moment full-spread enter-left intro_03">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="wrap">
<p>Technology will have a new meaning. More than knowing only the new features of a mobile phone, you'll now know how one is made.</p>
</div>
</div>
<div class="asset asset-1">
<div class="full-viewport-hero__background">
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="166.227" cy="86.085" fill="#00A0FF" r="6.803"></circle>
<circle cx="584.227" cy="351.085" fill="#00A0FF" r="6.803"></circle>
<circle cx="300" cy="225" fill="#00A0FF" r="6.803"></circle>
<circle cx="475" cy="500" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="137.814" cy="46.085" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s move-top-to-bottom-10s" cx="653.814" cy="476.085" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="285" cy="100" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="500" cy="350" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="174.227" cy="52.031" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="728.227" cy="549.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="44.227" cy="443.031" fill="#00A0FF" r="6.803"></circle>
<circle cx="400" cy="250" fill="#00A0FF" r="6.803"></circle>
<circle cx="225" cy="450" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle class="fade-30-to-100-opacity-3s" cx="312.814" cy="392.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="850" cy="300" fill="#00A0FF" r="6.803"></circle>
<circle cx="600" cy="125" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-half">
<svg enable-background="new 0 489.9 2000 490.9" height="100%" preserveaspectratio="xMaxYMin" space="preserve" version="1.1" viewbox="0 489.9 2000 490.9" width="100%" x="0px" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<rect class="fade-30-to-100-opacity-6s" enable-background="new" fill="#00A0FF" height="23.1" opacity="0.3" transform="matrix(-0.4305 0.9026 -0.9026 -0.4305 1616.7164 189.1174)" width="105" x="696.2" y="593.1"></rect>
<rect fill="#00A0FF" height="23.3" transform="matrix(0.8311 -0.5561 0.5561 0.8311 -238.2551 302.4162)" width="105" x="326.3" y="531.8"></rect>
<rect class="fade-30-to-100-opacity-5s" enable-background="new" fill="#00A0FF" height="23.3" opacity="0.3" transform="matrix(-0.5067 0.8621 -0.8621 -0.5067 2797.4192 -478.9154)" width="105" x="1483.2" y="549.2"></rect>
</svg>
</div>
<div class="background-tile-half">
<svg enable-background="new 0 980.8 2000 490.9" height="100%" preserveaspectratio="xMaxYMax" version="1.1" viewbox="0 980.8 2000 490.9" width="100%" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<rect enable-background="new" fill="#00A0FF" height="23.3" opacity="0.6" transform="matrix(0.2573 -0.9663 0.9663 0.2573 -447.3684 2226.3071)" width="105" x="1172.2" y="1392.5"></rect>
<rect fill="#00A0FF" height="23.3" transform="matrix(-0.9477 0.3193 -0.3193 -0.9477 2692.262 2127.2356)" width="105" x="1119.3" y="1272.6"></rect>
<rect fill="#00A0FF" height="23.3" transform="matrix(-0.6839 -0.7296 0.7296 -0.6839 -554.2595 2475.832)" width="105" x="206.7" y="1346.3"></rect>
</svg>
</div>
</div>
</div>
</section>
<section class="moment full-spread enter-left intro_04">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="wrap">
<p>Welcome to the logic within every creation.</p>
</div>
</div>
<div class="asset asset-1">
<div class="full-viewport-hero__background">
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="166.227" cy="86.085" fill="#00A0FF" r="6.803"></circle>
<circle cx="584.227" cy="351.085" fill="#00A0FF" r="6.803"></circle>
<circle cx="300" cy="225" fill="#00A0FF" r="6.803"></circle>
<circle cx="475" cy="500" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="137.814" cy="46.085" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s move-top-to-bottom-10s" cx="653.814" cy="476.085" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="285" cy="100" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="500" cy="350" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="174.227" cy="52.031" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="728.227" cy="549.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="44.227" cy="443.031" fill="#00A0FF" r="6.803"></circle>
<circle cx="400" cy="250" fill="#00A0FF" r="6.803"></circle>
<circle cx="225" cy="450" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle class="fade-30-to-100-opacity-3s" cx="312.814" cy="392.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="850" cy="300" fill="#00A0FF" r="6.803"></circle>
<circle cx="600" cy="125" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-half">
<svg enable-background="new 0 489.9 2000 490.9" height="100%" preserveaspectratio="xMaxYMin" space="preserve" version="1.1" viewbox="0 489.9 2000 490.9" width="100%" x="0px" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<rect class="fade-30-to-100-opacity-6s" enable-background="new" fill="#00A0FF" height="23.1" opacity="0.3" transform="matrix(-0.4305 0.9026 -0.9026 -0.4305 1616.7164 189.1174)" width="105" x="696.2" y="593.1"></rect>
<rect fill="#00A0FF" height="23.3" transform="matrix(-0.5561 -0.8311 0.8311 -0.5561 444.5275 1706.9661)" width="105" x="625.6" y="723.1"></rect>
<rect fill="#00A0FF" height="23.3" transform="matrix(-0.9477 0.3193 -0.3193 -0.9477 2397.4226 976.4962)" width="105" x="1066.2" y="673.1"></rect>
<rect fill="#00A0FF" height="23.3" transform="matrix(0.8311 -0.5561 0.5561 0.8311 -238.2551 302.4162)" width="105" x="326.3" y="531.8"></rect>
<rect fill="#00A0FF" height="23.3" transform="matrix(0.8311 -0.5561 0.5561 0.8311 2.5975 1129.9248)" width="105" x="1809.1" y="549"></rect>
<rect class="fade-30-to-100-opacity-5s" enable-background="new" fill="#00A0FF" height="23.3" opacity="0.3" transform="matrix(-0.5067 0.8621 -0.8621 -0.5067 2797.4192 -478.9154)" width="105" x="1483.2" y="549.2"></rect>
</svg>
</div>
<div class="background-tile-half">
<svg enable-background="new 0 980.8 2000 490.9" height="100%" preserveaspectratio="xMaxYMax" version="1.1" viewbox="0 980.8 2000 490.9" width="100%" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<rect enable-background="new" fill="#00A0FF" height="23.3" opacity="0.6" transform="matrix(0.2573 -0.9663 0.9663 0.2573 -447.3684 2226.3071)" width="105" x="1172.2" y="1392.5"></rect>
<rect fill="#00A0FF" height="23.3" transform="matrix(-0.9477 0.3193 -0.3193 -0.9477 2692.262 2127.2356)" width="105" x="1119.3" y="1272.6"></rect>
<rect fill="#00A0FF" height="23.3" transform="matrix(-0.6839 -0.7296 0.7296 -0.6839 -554.2595 2475.832)" width="105" x="206.7" y="1346.3"></rect>
<rect enable-background="new" fill="#00A0FF" height="23.3" opacity="0.6" transform="matrix(0.8311 -0.5561 0.5561 0.8311 -418.9772 1037.797)" width="105" x="1446.6" y="1197"></rect>
<rect class="fade-30-to-100-opacity-5s" enable-background="new" fill="#00A0FF" height="23.3" opacity="0.3" transform="matrix(0.6529 -0.7574 0.7574 0.6529 -716.0825 950.3046)" width="105" x="626.4" y="1244.9"></rect>
</svg>
</div>
</div>
</div>
</section>
<section class="moment full-spread enter-left event_00">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="event title">
<p> Graphic Designing </p>
</div>
<div class="wrap">
<p class="eventDesc">
We have all blurred a Facebook DP every now and then. Photoshop means the blur tool and a few more tools to the lay man. But there’s more to Photoshop when it comes to designing. Posters, banners, fliers and all give an event a physical image whilst without a pictorial representation; the event is just an idea, a picture in a mind until a proper design makes it more real. Even a website cannot be developed straightaway without designing a user interface. The designing workshop explores every nook and cranny of Photoshop and by the end of this workshop, you’ll be able to design masterpieces starting from simple grayscales.</p>
</div>
<div class="contact">
<div>
<p><span class="cName">Jasminder</span><span class="cNum">9953994422</span>
</p>
<p><span class="cName">Megha</span><span class="cNum">8860937882</span>
</p>
</div>
</div>
<div class="datevenue">
<div>
<p class="place">20 August, 5:00 PM</p>
<p class="place">Smart Classroom L1</p>
</div>
</div>
</div>
<div class="asset asset-1"></div>
</section>
<section class="moment full-spread enter-left event_01">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="event title">
<p> MATLAB </p>
</div>
<div class="wrap">
<p class="eventDesc">
MATLAB (Matrix LABoratory) is a widely used numerical computing environment, a fourth generation programming language, whose applications transcend the borders of engineering. It makes programming easier, especially to solve numerical problems. From being a tool for basic graph plotting and data crunching to complex tasks like Digital Signal Processing and Embedded Simulations, MATLAB is one of the most powerful software around. In 2012, the IEEE gave Cleve Moler, creator of MATLAB, its annual Computer Pioneer Award “For improving the quality of mathematical software, making it more accessible and creating MATLAB.” With this workshop in the IEEE DTU TechWeek, we will start from scratch to advanced functionality of MATLAB.</p>
</div>
<div class="contact">
<div>
<p><span class="cName">Shourya</span><span class="cNum">9718188799</span>
</p>
<p><span class="cName">Snigdhaa</span><span class="cNum">7840050152</span>
</p>
</div>
</div>
<div class="datevenue">
<div>
<p class="place">20 August, 5:00 PM</p>
<p class="place">Smart Classroom L2</p>
</div>
</div>
</div>
<div class="asset asset-1"></div>
</section>
<section class="moment full-spread enter-left event_02">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="event title">
<p> Animation </p>
</div>
<div class="wrap">
<p class="eventDesc">
It is one thing to read about something in a book, and it’s entirely different when you watch a tutorial on the same topic. That’s the difference between animate and inanimate objects. In simple language, animation just makes life a lot more interesting. With this workshop in IEEE TechWeek, we will teach you how to make models in animation starting from scratch and then how that same model is to be animated; the sound effects to be added and how they are added. Not only do you learn how to make clippings in 3-D animation, you also get to learn how to make simple videos using post production. Remember that last movie trailer that you thought was amazing? Well after this workshop you will get to try your hand at making something similar.</p>
</div>
<div class="contact">
<div>
<p><span class="cName">Saurav</span><span class="cNum">9582628945</span>
</p>
<p><span class="cName">Shreya</span><span class="cNum">9650995451</span>
</p>
</div>
</div>
<div class="datevenue">
<div>
<p class="place">21 August, 5:00 PM</p>
<p class="place">Smart Classroom L2</p>
</div>
</div>
</div>
<div class="asset asset-1"></div>
</section>
<section class="moment full-spread enter-left event_03">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="event title">
<p> Current-X </p>
</div>
<div class="wrap">
<p class="eventDesc">So you think you're up to date with the latest who's who and what's what? Do movies like the Wolf of Wall Street and Moneyball excite you to the core? The Current X workshop is an opportunity to explore and hone the managerial and leadership skills in you. The event promises to be an interactive amalgam of group discussions, guesstimates and insights into the world of business. Walk in the doors as a meek student. Walk out on a path to being a roaring corporate.</p>
</div>
<div class="contact">
<div>
<p><span class="cName">Arpit</span><span class="cNum">9953525381</span>
</p>
<p><span class="cName">Garima</span><span class="cNum">7042824880</span>
</p>
</div>
</div>
<div class="datevenue">
<div>
<p class="place">21 August, 5:00 PM</p>
<p class="place">Smart Classroom L1</p>
</div>
</div>
</div>
<div class="asset asset-1"></div>
</section>
<section class="moment full-spread enter-left event_04">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="event title">
<p> Robotics </p>
</div>
<div class="wrap">
<p class="eventDesc">
Fresh out of school and just stepping into the unchartered territory of technology and robotics? You need to have an idea of what robotics is first of all. Electronics, robotics and all these other big words? IEEE DTU will try and make these seem simple for you in the TechWeek this year. From simple mechanical bots to line following robots, this workshop will open a whole new area of interest. Starting from scratch to introducing you to the brilliance of Arduino, join us as we reinvent robotics.</p>
</div>
<div class="contact">
<div>
<p><span class="cName">Pragya</span><span class="cNum">9582628945</span>
</p>
<p><span class="cName">Sajal</span><span class="cNum">9716686404</span>
</p>
</div>
</div>
<div class="datevenue">
<div>
<p class="place">22 August, 10:00 AM</p>
<p class="place">Smart Classroom L2</p>
</div>
</div>
</div>
<div class="asset asset-1"></div>
</section>
<section class="moment full-spread enter-left event_05">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="event title">
<p> Programming </p>
</div>
<div class="wrap">
<p class="eventDesc">
Code is Logic. Code is Poetry. And programming is an ability that’s fast becoming a necessity rather than a novelty, irrespective of branch and even outside the engineering domain. The workshop aims to give an insight into thinking in terms of algorithms, the mark of a good programmer, while giving the basics of C/C++ in a fun, yet challenging manner. Only prerequisite- A logical and a receptive mind.</p>
</div>
<div class="contact">
<div>
<p><span class="cName">Ritesh</span><span class="cNum">9899643882</span>
</p>
<p><span class="cName">Surbhi</span><span class="cNum">9871166338</span>
</p>
</div>
</div>
<div class="datevenue">
<div>
<p class="place">22 August, 2:00 PM</p>
<p class="place">Smart Classroom L2</p>
</div>
</div>
</div>
<div class="asset asset-1"></div>
</section>
<section class="moment full-spread enter-left event_06">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="event title">
<p>Software Development</p>
</div>
<div class="wrap">
<p class="eventDesc">
These days, we can’t do without our phones being ‘smart’. Big enterprises are looking for intelligent machines to improve manufacturing as well as to maximise profits. A successful application can ensure a million dollar start-up, bring the world together, compliment research and scientific breakthroughs , help manage tones of data efficiently and what not. New software applications constantly aim at reducing human efforts, and digitalize even the smallest of daily tasks. So come join us, to learn and get a peek into the world of software development encompassing mobile application development, PC software development and open source software development.</p>
</div>
<div class="contact">
<div>
<p><span class="cName">Raghav</span><span class="cNum">9999997674</span>
</p>
<p><span class="cName">Shubham</span><span class="cNum">8860702606</span>
</p>
</div>
</div>
<div class="datevenue">
<div>
<p class="place">24 August, 5:00 PM</p>
<p class="place">Smart Classroom L2</p>
</div>
</div>
</div>
<div class="asset asset-1"></div>
</section>
<section class="moment full-spread enter-left event_07">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="event title">
<p> SolidWorks </p>
</div>
<div class="wrap">
<p class="eventDesc">
Do you have EG-itis (an ailment caused by making an endless number of Engineering Graphics sheets late into the night)? Common Symptoms: Mind-numbing headaches, fatigue, apart from developing an irrational hatred for what should be a fairly interesting subject. Are those 2-d- to 3-D conversions killing your head and ruining you college experience? Well, look no further, for help has arrived! Solid Works is the workshop for you if you want the computer to sketch in 2-D for you and model and simulate the same sketch in 3-D. No need to leave anything to imagination if you are well acquainted with this software. Whether it is product designing or manufacturing tools design, SolidWorks makes your job easy. And we make it even easier by teaching you the A-Z of this 3-D CAD Design software.</p>
</div>
<div class="contact">
<div>
<p><span class="cName">Mudit</span><span class="cNum">9811865577</span>
</p>
<p><span class="cName">Rachit</span><span class="cNum">9560834611</span>
</p>
</div>
</div>
<div class="datevenue">
<div>
<p class="place">24 August, 5:00 PM</p>
<p class="place">Smart Classroom L1</p>
</div>
</div>
</div>
<div class="asset asset-1"></div>
</section>
<section class="moment full-spread enter-left event_08">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="event title">
<p> Web Development </p>
</div>
<div class="wrap">
<p class="eventDesc">
We interact with websites everyday whether it’s for social networking, entertainment, research purposes or online trading of goods and services. Websites have evolved as an integral part of our lives and act as an interface to the charms of the internet. Web-developers are constantly seeking to make the web more interactive, attractive, fast and user-friendly. Web-development skills are in great demand and worth learning. This workshop would provide an insight on how to create interactive websites and introduce you to the basics of HTML, CSS, JavaScript, PHP and MySQL and how to use them together effectively to create amazing websites.</p>
</div>
<div class="contact">
<div>
<p><span class="cName">Jatin</span><span class="cNum">8802795780</span>
</p>
<p><span class="cName">Vaibhav</span><span class="cNum">8800292277</span>
</p>
</div>
</div>
<div class="datevenue">
<div>
<p class="place">25 August, 5:00 PM</p>
<p class="place">Smart Classroom L1</p>
</div>
</div>
</div>
<div class="asset asset-1"></div>
</section>
<section class="moment full-spread enter-left event_09">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="event title">
<p> VLSI </p>
</div>
<div class="wrap">
<p class="eventDesc">
Very-large-scale integration (VLSI) is the process of creating integrated circuits by combining thousands of transistors into a single chip. VLSI began in the 1970s when complex semiconductor and communication technologies were being developed. The microprocessor is a VLSI device. In this course we will cover all the important topics of VLSI Technology such as VLSI design flow, ICs, MOS transistors, Fabrication technology etc. as well as HDL programming language i.e. VHDL and Verilog. We shall cover the basic programming concepts of VHDL for designing the sequential circuits as well as combination circuits.</p>
</div>
<div class="contact">
<div>
<p><span class="cName">Saurav</span><span class="cNum">9582628945</span>
</p>
<p><span class="cName">Shreya</span><span class="cNum">9650995451</span>
</p>
</div>
</div>
<div class="datevenue">
<div>
<p class="place">25 August, 5:00 PM</p>
<p class="place">Smart Classroom L2</p>
</div>
</div>
</div>
<div class="asset asset-1"></div>
</section>
<section class="moment full-spread enter-left event_10">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="event title">
<p> Wattack </p>
</div>
<div class="wrap">
<p class="eventDesc">
Amongst all the teaching and exposure to new concepts, WATTACK, the annual quizzing event by IEEE Power and Energy Society, offers a change for some livewire competition (pun intended). The event not only promises to be a test of aptitude in the field of Electrical Circuits, but a refreshing and energetic start to the journey of the student enthusiast and IEEE PES in knowledge enrichment and sharing.</p>
</div>
<div class="contact">
<div>
<p><span class="cName">Ayushi</span><span class="cNum">9999076880</span>
</p>
<p><span class="cName">Sachin</span><span class="cNum">8826618145</span>
</p>
</div>
</div>
<div class="datevenue">
<div>
<p class="place">26 August, 5:00 PM</p>
<p class="place">Smart Classroom L1</p>
</div>
</div>
</div>
<div class="asset asset-1"></div>
</section>
<section class="moment full-spread enter-left outro_00">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="wrap">
<p>Each year students pool into the halls of DTU. It's the beginning of the making of fine engineers.</p>
</div>
</div>
<div class="asset asset-1">
<div class="full-viewport-hero__background">
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="166.227" cy="86.085" fill="#00A0FF" r="6.803"></circle>
<circle cx="584.227" cy="351.085" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="137.814" cy="46.085" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s move-top-to-bottom-10s" cx="653.814" cy="476.085" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="174.227" cy="52.031" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="728.227" cy="549.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="44.227" cy="443.031" fill="#00A0FF" r="6.803"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle class="fade-30-to-100-opacity-3s" cx="312.814" cy="392.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
</svg>
</div>
</div>
</div>
</section>
<section class="moment full-spread enter-left outro_01">
<ul class="social social-right">
<li class="project">
<a href="#" target="_blank">
>>
</a>
</li>
</ul>
<div class="copy copy-1">
<div class="wrap">
<p>Hundreds of students come together to discuss the exceptions in logic.</p>
</div>
</div>
<div class="asset asset-1">
<div class="full-viewport-hero__background">
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="166.227" cy="86.085" fill="#00A0FF" r="6.803"></circle>
<circle cx="584.227" cy="351.085" fill="#00A0FF" r="6.803"></circle>
<rect class="fade-30-to-100-opacity-5s" fill="#00A0FF" height="52.326" opacity="0.3" transform="matrix(-0.6348 -0.7727 0.7727 -0.6348 -181.8805 540.6008)" width="52.326" x="10.661" y="287.122"></rect>
<rect class="fade-30-to-100-opacity-3s" fill="#00A0FF" height="28" opacity="0.3" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -349.4882 220.8319)" width="112" x="35.824" y="518.285"></rect>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<rect fill="#00A0FF" height="50" id="blue-rectangle-outro-1" width="50" x="50" y="50"></rect>
<animatetransform attributename="transform" attributetype="XML" begin="0s" dur="10s" fill="freeze" from="0 75 75" repeatcount="indefinite" to="360 75 75" type="rotate" xlink:href="#blue-rectangle-outro-1"></animatetransform>
<circle cx="137.814" cy="46.085" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="653.814" cy="476.085" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<rect class="fade-30-to-100-opacity-6s" fill="#00A0FF" height="28" opacity="0.3" transform="matrix(0.7071 0.7071 -0.7071 0.7071 289.2161 -367.6584)" width="112" x="532.411" y="151.286"></rect>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="174.227" cy="52.031" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="728.227" cy="549.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="44.227" cy="443.031" fill="#00A0FF" r="6.803"></circle>
<rect fill="#00A0FF" height="52.326" transform="matrix(-0.6348 -0.7727 0.7727 -0.6348 -304.6313 986.4708)" width="52.326" x="54.661" y="539.068"></rect>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle class="fade-30-to-100-opacity-3s" cx="312.814" cy="392.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<rect fill="#00A0FF" height="50" id="blue-rectangle-outro-1-2" width="50" x="210" y="445"></rect>
<animatetransform attributename="transform" attributetype="XML" begin="0s" dur="15s" fill="freeze" from="0 235 470" repeatcount="indefinite" to="360 235 470" type="rotate" xlink:href="#blue-rectangle-outro-1-2"></animatetransform>
</svg>
</div>
</div>
</div>
</section>
<section class="moment full-spread enter-left outro_02">
<ul class="social social-right">
</ul>
<div class="copy copy-1">
<div class="wrap">
<p>Moulding the knowledge to achieve something new. Taking the first step and waiting to see what comes next.</p>
</div>
</div>
<div class="asset asset-1">
<div class="full-viewport-hero__background">
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="166.227" cy="86.085" fill="#00A0FF" r="6.803"></circle>
<circle cx="584.227" cy="351.085" fill="#00A0FF" r="6.803"></circle>
<path d="M318.948,165.284c-20.435,0-37-16.565-37-37s16.565-37,37-37" fill="#00A0FF"></path>
<rect class="fade-30-to-100-opacity-5s" fill="#00A0FF" height="52.326" opacity="0.3" transform="matrix(-0.6348 -0.7727 0.7727 -0.6348 -181.8805 540.6008)" width="52.326" x="10.661" y="287.122"></rect>
<rect class="fade-30-to-100-opacity-3s" fill="#00A0FF" height="28" opacity="0.3" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -349.4882 220.8319)" width="112" x="35.824" y="518.285"></rect>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<rect fill="#00A0FF" height="50" id="blue-rectangle" width="50" x="50" y="50"></rect>
<animatetransform attributename="transform" attributetype="XML" begin="0s" dur="10s" fill="freeze" from="0 75 75" repeatcount="indefinite" to="360 75 75" type="rotate" xlink:href="#blue-rectangle"></animatetransform>
<circle class="move-top-to-bottom-10s" cx="137.814" cy="46.085" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s move-top-to-bottom-10s" cx="653.814" cy="476.085" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<polygon fill="#00A0FF" id="blue-triangle" points="353.979,117.285 335.479,86.179 316.979,55.073 353.979,55.073 390.979,55.073 372.479,86.179"></polygon>
<rect class="fade-30-to-100-opacity-6s" fill="#00A0FF" height="28" opacity="0.3" transform="matrix(0.7071 0.7071 -0.7071 0.7071 289.2161 -367.6584)" width="112" x="532.411" y="151.286"></rect>
<circle class="fade-30-to-100-opacity-5s" cx="820" cy="250" fill="#00A0FF" opacity="0.3" r="37"></circle>
</svg>
</div>
<div class="background-tile-quarter">
<svg enable-background="new 0 0 858.413 602.055" version="1.1" viewbox="0 0 858.413 602.055" x="0px" xml:space="preserve" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" y="0px">
<circle cx="174.227" cy="52.031" fill="#00A0FF" r="6.803"></circle>
<circle class="fade-30-to-100-opacity-5s" cx="728.227" cy="549.031" fill="#00A0FF" opacity="0.3" r="6.803"></circle>
<circle cx="44.227" cy="443.031" fill="#00A0FF" r="6.803"></circle>
<rect fill="#00A0FF" height="52.326" transform="matrix(-0.6348 -0.7727 0.7727 -0.6348 -304.6313 986.4708)" width="52.326" x="54.661" y="539.068"></rect>
<circle cx="579.448" cy="465.229" fill="#00A0FF" r="37"></circle>
<g class="fade-30-to-100-opacity-5s" id="blue-x" opacity="0.3">
<line stroke-miterlimit="10" stroke-width="18" stroke="#00A0FF" x1="238" x2="296" y1="362" y2="422"></line>
<line stroke-miterlimit="10" stroke-width="18" stroke="#00A0FF" x1="238" x2="296" y1="422" y2="362"></line>
</g>
<animatetransform attributename="transform" attributetype="XML" begin="0s" dur="15s" fill="freeze" from="0 235 470" repeatcount="indefinite" to="360 235 470" type="rotate" xlink:href="#blue-x"></animatetransform>
</svg>
</div>
<div class="background-tile-quarter">