forked from SEDS-Aurora/Seds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
1316 lines (1309 loc) · 66.7 KB
/
gallery.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<meta name=”robots” content=”noindex,nofollow”>
<title>SEDS-VITAP Gallery</title>
<meta name="description" content="lorem ipsum dolor sit">
<script src="jquery-1.11.3.min.js"></script>
<link rel="icon" href="images/logo (2).png">
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="style_gallery.css">
</head>
<script>
$(window).load(function(){$(".se-pre-con").fadeOut("slow");;});
</script>
<body>
<video src="images/backvideo.mp4" autoplay loop playsinline muted preload></video>
<header>
<div class="container-fluid" id="home">
<nav class="navbar navbar-expand-lg fixed-top navbar-dark bg-dark" style="padding-top: 0;padding-bottom: 0;">
<div class="d-flex w-50 order-0">
<a class="navbar-brand" href="index.html">
<img loading="lazy" src="images/logo (1).png" height="70px" alt="" style="border-radius: 25px;">
</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-center order-2" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item"> <a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item" id="scabt"> <a class="nav-link" href="index.html#home">About Us</a>
</li>
<li class="nav-item"> <a class="nav-link" href="events.html">Events</a>
</li>
<li class="nav-item "> <a class="nav-link" href="team.html">Team</a>
</li>
<li class="nav-item active"> <a class="nav-link" href="#">Gallery</a>
</li>
</ul>
</div> <span class="navbar-text small mt-1 w-50 text-right order-1 order-md-last d-none d-sm-none d-md-none d-lg-block"> <a target="_blank" href="https://twitter.com/seds_vitap?s=09" class="responsivecard fa fa-twitter" style="color: white;"></a> <a target="_blank" href="mailto:space.club@vitap.ac.in" class="responsivecard fa fa-google" style="color: white;"></a><a target="_blank" href="https://www.linkedin.com/company/seds-vit-ap" class="responsivecard fa fa-linkedin" style="color: white;"></a> <a target="_blank" href="https://instagram.com/seds_vitap?igshid=1h9vn3uz4wxla" class="responsivecard fa fa-instagram" style="color: white;"></a> </span>
</nav>
</div>
</header>
<main>
<div id="demo" class="carousel slide" data-ride="carousel" style="margin-top: 80px;background-color: rgba(0, 0, 0, 0.658);">
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<div class="carousel-inner" style="text-align: center;">
<div class="carousel-item active">
<img loading="lazy" src="imgs/Screenshot 2020-11-28 at 7.45.10 PM.png" alt="Los Angeles">
</div>
<div class="carousel-item">
<img loading="lazy" src="imgs/Screenshot 2020-11-28 at 7.56.22 PM.png" alt="Chicago">
</div>
<div class="carousel-item">
<img loading="lazy" src="imgs/Screenshot 2020-11-28 at 8.03.59 PM.png" alt="New York">
</div>
</div>
<a class="carousel-control-prev" href="#demo" data-slide="prev"> <span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next"> <span class="carousel-control-next-icon"></span>
</a>
</div>
</main>
<style>
.card{border:none}
</style>
<section class="mainrow_1" style="width: 100%;padding-left: 25px;">
<div class="row justify-content-center">
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-4 example-2 card">
<div class="wrapper">
<div class="header">
<div class="date"> <span class="day">7</span> <span class="month">DEC</span> <span class="year">2019</span>
</div>
</div>
<div class="data">
<div class="content"> <span class="author">SEDS VIT-AP</span>
<h1 class="title"><a href="#">Inauguration of SEDS VIT-AP chapter</a></h1>
<p class="text">Here's to new beginnings!! Read on to know more about the fun we had while creating this dynamic community of space enthusiasts.</p> <a href="#" class="button" data-toggle="modal" data-target=".Card_1_modal">View more</a>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-4 example-2 card">
<div class="wrapper wrapper2">
<div class="header">
<div class="date dateeven"> <span class="day">25</span> <span class="month">Jan</span> <span class="year">2020</span>
</div>
</div>
<div class="data">
<div class="content"> <span class="author">SEDS VIT-AP</span>
<h1 class="title"><a href="#">Black Holes</a></h1>
<p class="text">The event was about the origin, types and various different things regarding black holes</p> <a href="#" class="button buttoneven" data-toggle="modal" data-target=".Card_2_modal">View more</a>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-4 example-2 card">
<div class="wrapper wrapper3">
<div class="header">
<div class="date"> <span class="day">21</span> <span class="month">Nov</span> <span class="year">2020</span>
</div>
</div>
<div class="data">
<div class="content"> <span class="author">SEDS VIT-AP</span>
<h1 class="title"><a href="#">A Guest Lecture on Computational Solar Physics</a></h1>
<p class="text">Scientific thinking should be a way of life for everyone, whether they are doing science or theatre or art or whatever. The scientific method is the best method if we have to understand nature.</p> <a href="#" class="button" data-toggle="modal" data-target=".Card_3_modal">View more</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="mainrow_1">
<div class="row justify-content-center">
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-4 example-2 card">
<div class="wrapper wrapper4">
<div class="header">
<div class="date dateeven"> <span class="day">26</span> <span class="month">Nov</span> <span class="year">2020</span>
</div>
</div>
<div class="data">
<div class="content"> <span class="author">SEDS VIT-AP</span>
<h1 class="title"><a href="#">Orientation to the core team</a></h1>
<p class="text">3.2.1. Ignition. Lift off!</p>
<a href="#" class="button buttoneven" data-toggle="modal" data-target=".Card_4_modal">View more</a>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-4 example-2 card">
<div class="wrapper wrapper5">
<div class="header">
<div class="date"> <span class="day">15</span> <span class="month">Feb</span> <span class="year">2021</span>
</div>
</div>
<div class="data">
<div class="content"> <span class="author">SEDS VIT-AP</span>
<h1 class="title"><a href="#">YUGEN</a></h1>
<p class="text">A Journey of transformation from earthbound mortals to extragalactic wayfarers of the star-spangled cosmos!</p>
<a href="#" class="button" data-toggle="modal" data-target=".Card_5_modal">View more</a>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-4 example-2 card">
<div class="wrapper wrapper6">
<div class="header">
<div class="date"> <span class="day">6</span> <span class="month">Nov</span> <span class="year">2021</span>
</div>
</div>
<div class="data">
<div class="content"> <span class="author">SEDS VIT-AP</span>
<h1 class="title"><a href="#">AstroWonders</a></h1>
<p class="text">This is the first event of the club for the academic year
and we came up with an amazing idea which include
both space and fun activity which many of them like that
is “Photography” and we both combined them and we
had created wonders.</p>
<a href="#" class="button buttoneven" data-toggle="modal" data-target=".Card_6_modal">View more</a>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-4 example-2 card">
<div class="wrapper wrapper7">
<div class="header">
<div class="date"> <span class="day">11/12</span> <span class="month">Dec</span> <span class="year">2021</span>
</div>
</div>
<div class="data">
<div class="content"> <span class="author">SEDS VIT-AP</span>
<h1 class="title"><a href="#">Python with Space Application</a></h1>
<p class="text">Second event a lot more interesting than the
first one along with the collaboration with Spaceonova
we had created a workshop with the help of python
which nowadays is playing a huge role in the software
industry and using that many of the new space
technologies are being invented so in this Hands on
workshop we are going to see how the python is being
used in the space technology.</p>
<a href="#" class="button" data-toggle="modal" data-target=".Card_7_modal">View more</a>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-4 example-2 card">
<div class="wrapper wrapper8">
<div class="header">
<div class="date"> <span class="day">11</span> <span class="month">Apr</span> <span class="year">2022</span>
</div>
</div>
<div class="data">
<div class="content"> <span class="author">SEDS VIT-AP</span>
<h1 class="title"><a href="#">Vanguard</a></h1>
<p class="text">This event got people acquainted with Voyager-1 and 2,
the satellites that have exceeded human
expectations and travelled to the most outer reaches of
our solar system, like the Voyager-1 has crossed
our full solar system!</p>
<a href="#" class="button buttoneven" data-toggle="modal" data-target=".Card_8_modal">View more</a>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-4 example-2 card">
<div class="wrapper wrapper9">
<div class="header">
<div class="date"> <span class="day">26/27</span> <span class="month">Nov</span> <span class="year">2022</span>
</div>
</div>
<div class="data">
<div class="content"> <span class="author">SEDS VIT-AP</span>
<h1 class="title"><a href="#">Minerva</a></h1>
<p class="text">A 2-day workshop about all the basics of 3D applications using Blender.</p>
<a href="#" class="button" data-toggle="modal" data-target=".Card_9_modal">View more</a>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-4 example-2 card">
<div class="wrapper wrapper10">
<div class="header">
<div class="date"> <span class="day">11</span> <span class="month">Dec</span> <span class="year">2022</span>
</div>
</div>
<div class="data">
<div class="content"> <span class="author">SEDS VIT-AP</span>
<h1 class="title"><a href="#">Guest Lecture on Star Clusters and AI in Space</a></h1>
<p class="text">"The lecture was about the applications of AI, how AI is utilized in space technologies."</p> <a href="#" class="button buttoneven" data-toggle="modal" data-target=".Card_10_modal">View more</a>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-4 example-2 card">
<div class="wrapper wrapper11">
<div class="header">
<div class="date"> <span class="day">11</span> <span class="month">Dec</span> <span class="year">2022</span>
</div>
</div>
<div class="data">
<div class="content"> <span class="author">SEDS VIT-AP</span>
<h1 class="title"><a href="#">Star Gazing</a></h1>
<p class="text">A fun filled telescope session where the planet mars was shown through the telescope.</p>
<a href="#" class="button" data-toggle="modal" data-target=".Card_11_modal">View more</a>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 col-xl-4 example-2 card">
<div class="wrapper wrapper12">
<div class="header">
<div class="date"> <span class="day">4</span> <span class="month">Feb</span> <span class="year">2023</span>
</div>
</div>
<div class="data">
<div class="content"> <span class="author">SEDS VIT-AP</span>
<h1 class="title"><a href="#">Luna</a></h1>
<p class="text">We are back with another event with the telescope. Yes! That's right. The black and bright sky is beautiful. But, there is something which makes it entrancing...</p>
<a href="#" class="button buttoneven" data-toggle="modal" data-target=".Card_12_modal">View more</a>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="Card_1_modal modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg ">
<div class="modal-content">
<div class="container">
<div id="corner_cross" class="Cross_Container ">
<div class="circCont">
<button class="circle close" data-animation="xMarks" data-remove="3000" data-dismiss="modal" aria-label="Close"></button>
</div>
</div>
<div class="mySlides mySlides1">
<div class="numbertext">1 / 7</div>
<img loading="lazy" src="imgs/cards/card1_inaugarationfolder/card1_pic1.JPG" style="width:100%">
</div>
<div class="mySlides mySlides1">
<div class="numbertext">2 / 7</div>
<img loading="lazy" src="imgs/cards/card1_inaugarationfolder/card1_pic2.JPG" style="width:100%">
</div>
<div class="mySlides mySlides1">
<div class="numbertext">3 / 7</div>
<img loading="lazy" src="imgs/cards/card1_inaugarationfolder/card1_pic3.JPG" style="width:100%">
</div>
<div class="mySlides mySlides1">
<div class="numbertext">4 / 7</div>
<img loading="lazy" src="imgs/cards/card1_inaugarationfolder/card1_pic4.JPG" style="width:100%">
</div>
<div class="mySlides mySlides1">
<div class="numbertext">5 / 7</div>
<img loading="lazy" src="imgs/cards/card1_inaugarationfolder/card1_pic5.JPG" style="width:100%">
</div>
<div class="mySlides mySlides1">
<div class="numbertext">6 / 7</div>
<img loading="lazy" src="imgs/cards/card1_inaugarationfolder/card1_pic6.JPG" style="width:100%">
</div>
<div class="mySlides mySlides1">
<div class="numbertext">7 / 7</div>
<img loading="lazy" src="imgs/cards/card1_inaugarationfolder/card1_pic7.JPG" style="width:100%">
</div><a class="prev" onclick="plusSlides(-1)">❮</a> <a class="next" onclick="plusSlides(1)">❯</a>
<div class="caption-container">
<p id="caption"></p>
</div>
<div class="row row_cor">
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card1_inaugarationfolder/card1_pic1.JPG" style="width:100%" onclick="currentSlide(1)" >
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card1_inaugarationfolder/card1_pic2.JPG" style="width:100%" onclick="currentSlide(2)">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card1_inaugarationfolder/card1_pic3.JPG" style="width:100%" onclick="currentSlide(3)" >
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card1_inaugarationfolder/card1_pic4.JPG" style="width:100%" onclick="currentSlide(4)">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card1_inaugarationfolder/card1_pic5.JPG" style="width:100%" onclick="currentSlide(5)">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card1_inaugarationfolder/card1_pic6.JPG" style="width:100%" onclick="currentSlide(6)" >
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card1_inaugarationfolder/card1_pic7.JPG" style="width:100%" onclick="currentSlide(7)">
</div>
</div>
</div>
<div id="Modal_description">
<table class="modal_table">
<tbody>
<tr>
<td> 1</td>
<td> Event Title</td>
<td> Inauguration of SEDS-VIT chapter</td>
</tr>
<tr>
<td> 2</td>
<td> About</td>
<td> Everything has a beginning, and our inception was on the 7th of December 2019, where we established ourselves as the SEDS-
<NAME>chapter here at VIT-AP. SEDS-
<NAME>is affiliated with SEDS India, headquartered at VIT-VELLORE. The faculty coordinator, President, Vice-President, and Projects Head of SEDS-INDIA served as Chief Guests. The Cheif Guest, along with our dignitaries inaugurated the club. The chief guests along with our faculty coordinator Dr. Sudhagar Jothi explained the club's vision to the students, the roles of the core, project, and outreach teams respectively, and encouraged everyone to join this massive expedition.</td>
</tr>
<tr>
<td> 3</td>
<td> Speaker</td>
<td> Cheif Guests and our faculty co-ordinator</td>
</tr>
<tr>
<td> 4</td>
<td> Organized by</td>
<td> SEDS VIT-AP</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="Card_2_modal modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg ">
<div class="modal-content">
<div class="container">
<div id="corner_cross" class="Cross_Container ">
<div class="circCont">
<button class="circle close" data-animation="xMarks" data-remove="3000" data-dismiss="modal" aria-label="Close"></button>
</div>
</div>
<div class="mySlides mySlides2">
<div class="numbertext">1 / 7</div>
<img loading="lazy" src="imgs/cards/card2_blackholes/card2_pic2.jpg" style="width:100%">
</div>
<div class="mySlides mySlides2">
<div class="numbertext">2 / 7</div>
<img loading="lazy" src="imgs/cards/card2_blackholes/card2_pic3.jpg" style="width:100%">
</div>
<div class="mySlides mySlides2">
<div class="numbertext">3 / 7</div>
<img loading="lazy" src="imgs/cards/card2_blackholes/card2_pic4.jpg" style="width:100%">
</div>
<div class="mySlides mySlides2">
<div class="numbertext">4 / 7</div>
<img loading="lazy" src="imgs/cards/card2_blackholes/card2_pic5.jpg" style="width:100%">
</div>
<div class="mySlides mySlides2">
<div class="numbertext">5 / 7</div>
<img loading="lazy" src="imgs/cards/card2_blackholes/card2_pic6.jpg" style="width:100%">
</div>
<div class="mySlides mySlides2">
<div class="numbertext">6 / 7</div>
<img loading="lazy" src="imgs/cards/card2_blackholes/card2_pic7.jpg" style="width:100%">
</div><a class="prev" onclick="plusSlides2(-1)">❮</a> <a class="next" onclick="plusSlides2(1)">❯</a>
<div class="caption-container">
<p id="caption"></p>
</div>
<div class="row row_cor">
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card2_blackholes/card2_pic2.jpg" style="width:100%" onclick="currentSlide2(1)">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card2_blackholes/card2_pic3.jpg" style="width:100%" onclick="currentSlide2(2)">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card2_blackholes/card2_pic4.jpg" style="width:100%" onclick="currentSlide2(3)" >
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card2_blackholes/card2_pic5.jpg" style="width:100%" onclick="currentSlide2(4)" >
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card2_blackholes/card2_pic6.jpg" style="width:100%" onclick="currentSlide2(5)" >
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card2_blackholes/card2_pic7.jpg" style="width:100%" onclick="currentSlide2(6)" >
</div>
</div>
</div>
<div id="Modal_description">
<table class="modal_table">
<tbody>
<tr>
<td> 1</td>
<td> Event Title</td>
<td> Black Holes</td>
</tr>
<tr>
<td> 2</td>
<td> About</td>
<td> The message of this lecture is that black holes ain’t as black as they are painted. They are not the eternal prisons they were once though…things can get out of a black hole both on the outside and possibly to another universe. So if you feel you are in a black hole, don’t give up – there’s a way out.” ― Stephen Hawking What happens when you fall into a black hole? Is it possible to pull something out of a Blackhole? and many more such questions were answered in the event, which we hosted on our campus on 25-01-2020. The crux of the event was the reality of black holes, formation, event horizon, singularity, and the types of black holes.</td>
</tr>
<tr>
<td> 3</td>
<td> Speaker</td>
<td> Dheeraj Reddy and Avhijit Nair</td>
</tr>
<tr>
<td> 4</td>
<td> Organized by</td>
<td> SEDS VIT-AP</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="Card_3_modal modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg ">
<div class="modal-content">
<div class="container">
<div id="corner_cross" class="Cross_Container ">
<div class="circCont">
<button class="circle close" data-animation="xMarks" data-remove="3000" data-dismiss="modal" aria-label="Close"></button>
</div>
</div>
<div class="mySlides mySlides3">
<div class="numbertext">1 / 7</div>
<img loading="lazy" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic1.jpg" style="width:100%">
</div>
<div class="mySlides mySlides3">
<div class="numbertext">2 / 7</div>
<img loading="lazy" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic2.png" style="width:100%">
</div>
<div class="mySlides mySlides3">
<div class="numbertext">3 / 7</div>
<img loading="lazy" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic3.png" style="width:100%">
</div>
<div class="mySlides mySlides3">
<div class="numbertext">4 / 7</div>
<img loading="lazy" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic4.png" style="width:100%">
</div>
<div class="mySlides mySlides3">
<div class="numbertext">5 / 7</div>
<img loading="lazy" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic5.png" style="width:100%">
</div>
<div class="mySlides mySlides3">
<div class="numbertext">6 / 7</div>
<img loading="lazy" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic6.png" style="width:100%">
</div>
<div class="mySlides mySlides3">
<div class="numbertext">7 / 7</div>
<img loading="lazy" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic7.png" style="width:100%">
</div><a class="prev" onclick="plusSlides3(-1)">❮</a> <a class="next" onclick="plusSlides3(1)">❯</a>
<div class="caption-container">
<p id="caption"></p>
</div>
<div class="row row_cor">
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic1.jpg" style="width:100%" onclick="currentSlide3(1)" alt="The Woods">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic2.png" style="width:100%" onclick="currentSlide3(2)" alt="Cinque Terre">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic3.png" style="width:100%" onclick="currentSlide3(3)" alt="Mountains and fjords">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic4.png" style="width:100%" onclick="currentSlide3(4)" alt="Northern Lights">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic5.png" style="width:100%" onclick="currentSlide3(5)" alt="Nature and sunrise">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic6.png" style="width:100%" onclick="currentSlide3(6)" alt="Snowy Mountains">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/Card3_Computational_Solar_Physics/card3_pic7.png" style="width:100%" onclick="currentSlide3(7)" alt="Snowy Mountains">
</div>
</div>
</div>
<div id="Modal_description">
<table class="modal_table">
<tbody>
<tr>
<td> 1</td>
<td> Event Title</td>
<td> A Guest Lecture on Computational Solar Physics</td>
</tr>
<tr>
<td> 2</td>
<td> About</td>
<td> Everyone is part of a connected cosmic system. Part earth and sea, wind and fire, with some salt and dust swimming in them. We have a universe within ourselves that mimics the universe outside."" The lecture by Dr. Piyali Chatterjee provided new insights and augmented our evolving understanding of solar eruptive events. Aurora graphs, Solar base, Research work in IIA, Indian missions going on and future, Coronal holes, Solar flares and all the other solar phenomenal events were discussed about. The event was conducted in collaboration with OSC-VITAP on the 21st of November, 2020.</td>
</tr>
<tr>
<td> 3</td>
<td> Speaker</td>
<td> Dr. Piyali Chatterjee, Research Scientist IIA</td>
</tr>
<tr>
<td> 4</td>
<td> Organized by</td>
<td> SEDS VIT-AP and Open Source Community</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="Card_4_modal modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg ">
<div class="modal-content">
<div class="container">
<div id="corner_cross" class="Cross_Container ">
<div class="circCont">
<button class="circle close" data-animation="xMarks" data-remove="3000" data-dismiss="modal" aria-label="Close"></button>
</div>
</div>
<div class="mySlides mySlides4">
<div class="numbertext">1 / 7</div>
<img loading="lazy" src="imgs/cards/card4_orientation/card4_pic1.png" style="width:100%">
</div>
<div class="mySlides mySlides4">
<div class="numbertext">2 / 7</div>
<img loading="lazy" src="imgs/cards/card4_orientation/card4_pic2.png" style="width:100%">
</div>
<div class="mySlides mySlides4">
<div class="numbertext">3 / 7</div>
<img loading="lazy" src="imgs/cards/card4_orientation/card4_pic3.png" style="width:100%">
</div>
<div class="mySlides mySlides4">
<div class="numbertext">4 / 7</div>
<img loading="lazy" src="imgs/cards/card4_orientation/card4_pic4.jpg" style="width:100%">
</div>
<div class="mySlides mySlides4">
<div class="numbertext">5 / 7</div>
<img loading="lazy" src="imgs/cards/card4_orientation/card4_pic5.jpg" style="width:100%">
</div>
<div class="mySlides mySlides4">
<div class="numbertext">6 / 7</div>
<img loading="lazy" src="imgs/cards/card4_orientation/card4_pic6.jpg" style="width:100%">
</div>
<div class="mySlides mySlides4">
<div class="numbertext">7 / 7</div>
<img loading="lazy" src="imgs/cards/card4_orientation/card4_pic7.jpg" style="width:100%">
</div><a class="prev" onclick="plusSlides4(-1)">❮</a> <a class="next" onclick="plusSlides4(1)">❯</a>
<div class="caption-container">
<p id="caption"></p>
</div>
<div class="row row_cor">
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card4_orientation/card4_pic1.png" style="width:100%" onclick="currentSlide4(1)" alt="The Woods">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card4_orientation/card4_pic2.png" style="width:100%" onclick="currentSlide4(2)" alt="Cinque Terre">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card4_orientation/card4_pic3.png" style="width:100%" onclick="currentSlide4(3)" alt="Mountains and fjords">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card4_orientation/card4_pic4.jpg" style="width:100%" onclick="currentSlide4(4)" alt="Northern Lights">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card4_orientation/card4_pic5.jpg" style="width:100%" onclick="currentSlide4(5)" alt="Nature and sunrise">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card4_orientation/card4_pic6.jpg" style="width:100%" onclick="currentSlide4(6)" alt="Snowy Mountains">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card4_orientation/card4_pic7.jpg" style="width:100%" onclick="currentSlide4(7)" alt="Snowy Mountains">
</div>
</div>
</div>
<div id="Modal_description">
<table class="modal_table">
<tbody>
<tr>
<td> 1</td>
<td> Event Title</td>
<td> Orientation to the core team</td>
</tr>
<tr>
<td> 2</td>
<td> About</td>
<td> The orientation program for the newly recruited core team was organized on November 28, 2020. The orientation began with a brief inaugural ceremony which included the executive team reiterating the club vision and mission. The club members were made to introduce themselves. It was followed up by an interactive ice-breaker session which consisted of various games. The Vice President briefly addressed the team about their respective roles and responsibilities.</td>
</tr>
<tr>
<td> 3</td>
<td> Speaker</td>
<td> SEDS - Executive Team</td>
</tr>
<tr>
<td> 4</td>
<td> Organized by</td>
<td> SEDS VIT-AP</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="Card_5_modal modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg ">
<div class="modal-content">
<div class="container">
<div id="corner_cross" class="Cross_Container ">
<div class="circCont">
<button class="circle close" data-animation="xMarks" data-remove="3000" data-dismiss="modal" aria-label="Close"></button>
</div>
</div>
<div class="mySlides mySlides5">
<div class="numbertext">1 / 7</div>
<img loading="lazy" src="carousal/jeremy-thomas-E0AHdsENmDg-unsplash.jpg" style="width:100%">
</div>
<div class="mySlides mySlides5">
<div class="numbertext">2 / 7</div>
<img loading="lazy" src="imgs/cards/card5_yugen/card5_pic2.png" style="width:100%">
</div>
<div class="mySlides mySlides5">
<div class="numbertext">3 / 7</div>
<img loading="lazy" src="imgs/cards/card5_yugen/card5_pic3.png" style="width:100%">
</div>
<div class="mySlides mySlides5">
<div class="numbertext">4 / 7</div>
<img loading="lazy" src="imgs/cards/card5_yugen/card5_pic4.png" style="width:100%">
</div>
<div class="mySlides mySlides5">
<div class="numbertext">5 / 7</div>
<img loading="lazy" src="imgs/cards/card5_yugen/card5_pic5.png" style="width:100%">
</div>
<div class="mySlides mySlides5">
<div class="numbertext">6 / 7</div>
<img loading="lazy" src="imgs/cards/card5_yugen/card5_pic6.png" style="width:100%">
</div>
<div class="mySlides mySlides5">
<div class="numbertext">7 / 7</div>
<img loading="lazy" src="imgs/cards/card5_yugen/card5_pic7.png" style="width:100%">
</div><a class="prev" onclick="plusSlides5(-1)">❮</a> <a class="next" onclick="plusSlides5(1)">❯</a>
<div class="caption-container">
<p id="caption"></p>
</div>
<div class="row row_cor">
<div class="column">
<img loading="lazy" class="demo cursor" src="carousal/jeremy-thomas-E0AHdsENmDg-unsplash.jpg" style="width:100%" onclick="currentSlide5(1)" alt="The Woods">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card5_yugen/card5_pic2.png" style="width:100%" onclick="currentSlide5(2)" alt="Cinque Terre">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card5_yugen/card5_pic3.png" style="width:100%" onclick="currentSlide5(3)" alt="Mountains and fjords">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card5_yugen/card5_pic4.png" style="width:100%" onclick="currentSlide5(4)" alt="Northern Lights">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card5_yugen/card5_pic5.png" style="width:100%" onclick="currentSlide5(5)" alt="Nature and sunrise">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card5_yugen/card5_pic6.png" style="width:100%" onclick="currentSlide5(6)" alt="Snowy Mountains">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card5_yugen/card5_pic7.png" style="width:100%" onclick="currentSlide5(7)" alt="Snowy Mountains">
</div>
</div>
</div>
<div id="Modal_description">
<table class="modal_table">
<tbody>
<tr>
<td> 1</td>
<td> Event Title</td>
<td> YUGEN</td>
</tr>
<tr>
<td> 2</td>
<td> About</td>
<td> How likely are we to settle on mars and moon in the near future? The factors that currently favour human settlement on the Moon and Mars were discussed and the topic was further dissected to arrive at a reasonable conclusion wrt the future of human space colonization . Furthermore, a few interesting facts were presented- An analysis was conducted on the recent 'Monolith Mystery' .</td>
</tr>
<tr>
<td> 3</td>
<td> Speaker</td>
<td> Avhijit Nair and Taha Junaid</td>
</tr>
<tr>
<td> 4</td>
<td> Organized by</td>
<td> SEDS VIT-AP</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="Card_6_modal modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg ">
<div class="modal-content">
<div class="container">
<div id="corner_cross" class="Cross_Container ">
<div class="circCont">
<button class="circle close" data-animation="xMarks" data-remove="3000" data-dismiss="modal" aria-label="Close"></button>
</div>
</div>
</div><a class="prev" onclick="plusSlides4(-1)">❮</a> <a class="next" onclick="plusSlides4(1)">❯</a>
<div class="caption-container">
<p id="caption"></p>
</div>
<div id="Modal_description">
<table class="modal_table">
<tbody>
<tr>
<td> 1</td>
<td> Event Title</td>
<td> AstroWonders</td>
</tr>
<tr>
<td> 2</td>
<td> About</td>
<td> This is the first event of the club for the academic year
and we came up with an amazing idea which include
both space and fun activity which many of them like that
is “Photography” and we both combined them and we
had created wonders where everyone can enjoy and we
had taken them in an amazing ride where they had seen
the beauty of sky and stars and constellations and they
all had enjoyed it a lot and had given active participation
and with the hands-on experience we had created
wonders like never before and at final we can say that
the event had become successful
</td>
</tr>
<tr>
<td> 3</td>
<td> Speaker</td>
<td> SEDS Club Members</td>
</tr>
<tr>
<td> 4</td>
<td> Organized by</td>
<td> SEDS VIT-AP</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="Card_7_modal modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg ">
<div class="modal-content">
<div class="container">
<div id="corner_cross" class="Cross_Container ">
<div class="circCont">
<button class="circle close" data-animation="xMarks" data-remove="3000" data-dismiss="modal" aria-label="Close"></button>
</div>
</div>
<div class="mySlides mySlides7">
<div class="numbertext">1 / 6</div>
<img loading="lazy" src="imgs/cards/card7_pythonspace/20211211_61707PMByGPSMapCamera.jpg" style="width:100%">
</div>
<div class="mySlides mySlides7">
<div class="numbertext">2 / 6</div>
<img loading="lazy" src="imgs/cards/card7_pythonspace/20211212_171058.jpg" style="width:100%">
</div>
<div class="mySlides mySlides7">
<div class="numbertext">3 / 6</div>
<img loading="lazy" src="imgs/cards/card7_pythonspace/IMG_20211211_182013.jpg" style="width:100%">
</div>
<div class="mySlides mySlides7">
<div class="numbertext">4 / 6</div>
<img loading="lazy" src="imgs/cards/card7_pythonspace/IMG_20211212_175539.jpg" style="width:100%">
</div>
<div class="mySlides mySlides7">
<div class="numbertext">5 / 6</div>
<img loading="lazy" src="imgs/cards/card7_pythonspace/Screenshot (22).png" style="width:100%">
</div>
<div class="mySlides mySlides7">
<div class="numbertext">6 / 6</div>
<img loading="lazy" src="imgs/cards/card7_pythonspace/Screenshot (24).png" style="width:100%">
</div><a class="prev" onclick="plusSlides7(-1)">❮</a> <a class="next" onclick="plusSlides7(1)">❯</a>
<div class="caption-container">
<p id="caption"></p>
</div>
<div class="row row_cor">
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card7_pythonspace/20211211_61707PMByGPSMapCamera.jpg" style="width:80%" onclick="currentSlide5(1)" alt="The Woods">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card7_pythonspace/20211212_171058.jpg" style="width:100%" onclick="currentSlide5(2)" alt="Cinque Terre">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card7_pythonspace/IMG_20211211_182013.jpg" style="width:100%" onclick="currentSlide5(3)" alt="Mountains and fjords">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card7_pythonspace/IMG_20211212_175539.jpg" style="width:100%" onclick="currentSlide5(4)" alt="Northern Lights">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card7_pythonspace/Screenshot (22).png" style="width:100%" onclick="currentSlide5(5)" alt="Nature and sunrise">
</div>
<div class="column">
<img loading="lazy" class="demo cursor" src="imgs/cards/card7_pythonspace/Screenshot (24).png" style="width:100%" onclick="currentSlide5(6)" alt="Snowy Mountains">
</div>
</div>
</div>
<div id="Modal_description">
<table class="modal_table">
<tbody>
<tr>
<td> 1</td>
<td> Event Title</td>
<td> Python with Space Application</td>
</tr>
<tr>
<td> 2</td>
<td> About</td>
<td> After Completion of first event successfully we had
planned the second event a lot more interesting than the
first one along with the collaboration with Spaceonova
we had created a workshop with the help of python
which nowadays is playing a huge role in the software
industry and using that many of the new space
technologies are being invented so in this Hands on
workshop we are going to see how the python is being
used in the space technology and what are the wonders
we can create using python in space technology where
the possibilities are limitless and the space is yours in
the two days workshop we had so much fun and we had
learnt a lot about the usage of python in Space
Technology
</tr>
<tr>
<td> 3</td>
<td> Speaker</td>
<td> SEDS And Soutik Nandy form Spaceonova. </td>
</tr>
<tr>
<td> 4</td>
<td> Organized by</td>
<td> SEDS VIT-AP & Spaceonova </td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="Card_8_modal modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg ">
<div class="modal-content">
<div class="container">
<div id="corner_cross" class="Cross_Container ">
<div class="circCont">
<button class="circle close" data-animation="xMarks" data-remove="3000" data-dismiss="modal" aria-label="Close"></button>
</div>
</div>
</div><a class="prev" onclick="plusSlides4(-1)">❮</a> <a class="next" onclick="plusSlides4(1)">❯</a>
<div class="caption-container">
<p id="caption"></p>
</div>
<div id="Modal_description">
<table class="modal_table">
<tbody>
<tr>
<td> 1</td>
<td> Event Title</td>
<td> Vanguard</td>
</tr>
<tr>
<td> 2</td>
<td> About</td>
<td> This event got people acquainted with Voyager-1 and 2,
the satellites that have exceeded human
expectations and travelled to the most outer reaches of
our solar system, like the Voyager-1 has crossed
our full solar system!
Next, get caught up with an innovative company called
Starlink that is doing amazing things in areas of
providing high speed internet to even the most remote
regions of the world.
Then, we talked about our one of the most favorite space
instruments, i.e.- a telescope, and not just
any normal telescope, but space telescopes namely
Hubble and James Webb.
Next, the very interesting and mysterious exoplanets
were introduced.
And, at last we tell all about Solar Flares, a space
phenomenon that is beautiful and harmful.
</tr>
<tr>
<td> 3</td>
<td> Speaker</td>
<td> Abhigyan Nayak and Sumit</td>
</tr>
<tr>
<td> 4</td>
<td> Organized by</td>
<td> SEDS VIT-AP</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="Card_9_modal modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg ">
<div class="modal-content">
<div class="container">
<div id="corner_cross" class="Cross_Container ">
<div class="circCont">
<button class="circle close" data-animation="xMarks" data-remove="3000" data-dismiss="modal" aria-label="Close"></button>
</div>
</div>
</div><a class="prev" onclick="plusSlides4(-1)">❮</a> <a class="next" onclick="plusSlides4(1)">❯</a>
<div class="caption-container">
<p id="caption"></p>
</div>
<div id="Modal_description">
<table class="modal_table">
<tbody>
<tr>
<td> 1</td>
<td> Event Title</td>
<td> MINERVA</td>
</tr>
<tr>
<td> 2</td>
<td> About</td>
<td> A 2-day workshop about all the basics of 3D applications using Blender. The workshop taught all the basics of Blender right from the scratch using planet renders.
</tr>
<tr>
<td> 3</td>
<td> Speaker</td>
<td> SEDS and OASIS club members</td>
</tr>
<tr>
<td> 4</td>
<td> Organized by</td>
<td> SEDS club and OASIS club</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="Card_10_modal modal fade bd-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg ">
<div class="modal-content">
<div class="container">
<div id="corner_cross" class="Cross_Container ">
<div class="circCont">
<button class="circle close" data-animation="xMarks" data-remove="3000" data-dismiss="modal" aria-label="Close"></button>
</div>
</div>