-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
2620 lines (1233 loc) · 87.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- ========== Meta Tags ========== -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" /> -->
<meta property="og:image" content="assets/img/preview.png" />
<meta property="og:title" content="BITSMUN HYDERABAD'18"/>
<!-- ========== Title ========== -->
<title>BITSMUN-2018</title>
<script src="assets/js/float-panel/float-panel.js"></script>
<link href="https://fonts.googleapis.com/css?family=Merriweather" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Berkshire+Swash" rel="stylesheet">
<link rel="shortcut icon" href="/favicon.ico">
<!-- ========== STYLESHEETS ========== -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script> -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="//www.townscript.com/popup-widget/townscript-widget.nocache.js" type="text/javascript"></script>
<!-- Bootstrap CSS -->
<!-- <link href="assets/css/bootstrap.min.css" rel="stylesheet">
<script src="assets/js/bootstrap.min.js"></script> -->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<!-- Fonts Icon CSS -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-pink.min.css">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/et-line.css" rel="stylesheet">
<link href="assets/css/ionicons.min.css" rel="stylesheet">
<!-- Carousel CSS -->
<link href="assets/css/owl.carousel.min.css" rel="stylesheet">
<link href="assets/css/owl.theme.default.min.css" rel="stylesheet">
<!-- Animate CSS -->
<link rel="stylesheet" href="assets/css/animate.min.css">
<!-- Custom styles for this template -->
<link href="assets/css/main.css" rel="stylesheet">
<style>
.mySlides {
display: none;
padding: 2px;
}
.w3-left,
.w3-right,
.w3-badge {
cursor: pointer
}
.w3-badge {
height: 13px;
width: 13px;
padding: 0
}
.bottom-right{
position: absolute;
bottom: 8px;
right: 16px;
size: 16px;
}
</style>
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="50">
<div class="loader">
<div class="loader bg-gray">
<div class="loader-outter">
<div class="text-center" style="font-size: 50px; margin-top: 150px; color: black;">
BITSMUN'18
</div>
</div>
<div class="loader-inner"></div>
</div>
<div class="loader-outter"></div>
<div class="loader-inner"></div>
</div>
<!--header start here -->
<header class="header navbar fixed-top navbar-expand-md">
<div class="container">
<a class="navbar-brand logo" href="#header">
<span class="navbar-heading" style="font-family: 'Merriweather', serif;">
<big>BITSMUN HYDERABAD</big>
</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#headernav" aria-expanded="false" aria-label="Toggle navigation"
style="border: none;">
<i class="material-icons navbar-toggler" data-toggle="collapse" data-target="#headernav" aria-expanded="false" aria-label="Toggle navigation"
style="border: none; margin-right: 20%;"></i>
</button>
<div class="collapse navbar-collapse ml100" id="headernav">
<ul class=" nav navbar-nav menu ml-auto">
<li class="nav-item">
<a class="nav-link" href="#letter" id="letter-click" data-toggle="collapse" data-target="#headernav">LETTER</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#committees" data-toggle="collapse" data-target="#headernav" id="committee-nav">COMMITTEES</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="ministries.html" id="dropdown04" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">APPLICATIONS</a>
<div class="dropdown-menu" aria-labelledby="dropdown04">
<a class="dropdown-item" href="https://docs.google.com/forms/u/2/d/e/1FAIpQLScJrP0AGED5x2y7NO03G4OZu5kKH39elrKjDJkcKx5Cubce3A/formResponse">Executive Board</a>
<a class="dropdown-item" href="https://docs.google.com/forms/u/2/d/e/1FAIpQLSd29cuyDY9fXEi1UO6RuGafKKHNGInH4eGfGxAaJREcjjILbg/formResponse">International Press Head</a>
<a class="dropdown-item" href="https://goo.gl/forms/a71k5zZ9aiD5Oo3T2">International Press Member</a>
<a class="dropdown-item" href="https://goo.gl/forms/0V3H9JfbjUE2q1Eg2">Delegate Application</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link " href="team.html">TEAM</a>
</li>
<li class="nav-item">
<a class="nav-link tsbutton" href="https://www.townscript.com/e/bitsmun-18">TICKETS</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#contact" data-toggle="collapse" data-target="#headernav"> CONTACT
</a>
</li>
</ul>
</div>
</div>
</header>
<!--header end here-->
<!--cover section slider -->
<section id="home" class="home-cover">
<div class="cover_slider owl-carousel owl-theme">
<div class="cover_item" style="background: url('assets/img/bg/slider.jpg');">
<div class="bottom-right color-light"><strong>Pic Credits: Jayesh Sanwal</strong></div>
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-left">
<h2 class="cover-title">
Prepare yourself for the
</h2>
<strong class="cover-xl-text">BITSMUN</strong>
<p class="cover-date">
26-28th October, BITS Pilani, Hyderabad Campus
</p>
</div>
</div>
</div>
</div>
</div>
<div class="cover_item" style="background: url('assets/img/bg/slider1.png');">
<div class="slider_content">
<div class="slider-content-inner">
<div class="container">
<div class="slider-content-right">
<h2 class="cover-title">
Prepare yourself for the
</h2>
<strong class="cover-xl-text">BITSMUN</strong>
<p class="cover-date">
26-28th October, BITS Pilani, Hyderabad Campus
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cover_nav website-only-visible">
<ul class="cover_dots">
<li class="active" data="0">
<span>1</span>
</li>
<li data="1">
<span>2</span>
</li>
</ul>
</div>
</section>
<!--cover section slider end -->
<br>
<br>
<!--event countdown -->
<section class="bg-img pt70 pb70" style="background-image: url('assets/img/bg/counter-bg.jpg');">
<div class="overlay_dark"></div>
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-10">
<h2 class="mb30 text-center color-light" style="font-family: 'Berkshire Swash', cursive;">See you in... </h4>
<div id="timer" class="text-center">
<div class="counter" id="days"></div>
<div class="counter" id="hours"></div>
<div class="counter" id="minutes"></div>
<div class="counter" id="seconds"></div>
</div>
</div>
</div>
</div>
</section>
<!--event count down end-->
<!--about the event -->
<section class="pt100 pb100" id="letter">
<div class="container">
<div class="section_title">
<h3 class="letter-title slideanim">
LETTER FROM THE SECRETARY GENERAL
</h3>
</div>
<div class="row justify-content-center">
<div class="col-12 col-md-12">
<br>
<br>
<p class="letter-para-heading">Honourable future delegates , esteemed colleagues and dear friends!</p>
<p class="letter-para-text">It is with great pleasure that I invite you to join us for the eighth edition of BITSMUN, organised by
BITS Pilani Hyderabad Campus. This year's conference will take place from 26th October-28th October.
</p>
<p class="letter-para-text">Since its inception, BITSMUN has sought to empower young minds from across the country. The conference
brings together determined delegates to discuss problems of international importance and more importantly,
brainstorm solutions for the future. Over the past eight years at BITSMUN Hyderabad, our focus has
always been in delivering quality debate, interesting committees and an experience worth remembering.
It is this legacy that we hope to carry forward in this edition as well.</p>
<p class="letter-para-text"> With a diverse set of committees, we expect delegates to foster key skills such as research, public speaking,
debate and negotiation.BITSMUN strives to inspire delegates to think critically about the world around
them and take action beyond the committee room.</p>
<p class="letter-para-text"> We also aspire that at the end of the conference, the delegates go out with enhanced knowledge, better
communication skills and learn the art of negotiation. All this along with having a great time at
our conference. </p>
<p class="letter-para-text">The Organising Committee of BITSMUN Hyderabad '18 and I once again cordially welcome you to three days
of intense debate, shrewd diplomacy and an experience to cherish for times to come!</p>
<br>
<div class="text-center" style="color: #1F1F1F; font-size:20px;">
<img src="assets/img/PHOTOS FOR WEBSITE/sec-gen_sign.jpg" alt="" style="width:300px;">
<p style="margin-bottom: 3px; color: #1F1F1F; font-size:20px;">
Pratyush Agarwal
</p>
<p style="margin-bottom: 3px; color: #1F1F1F; font-size:20px;">
Secretary General
</p>
<p style="margin-bottom: 3px; color: #1F1F1F; font-size:20px;">
BITSMUN HYDERABAD'18
</p>
</div>
</div>
</div>
</div>
</section>
<!--about the event end -->
<!-- committees start -->
<!-- Website only Visible greater than 1300px :D -->
<div class="pt20 pb20 website-only-visible" style="background-color: #1F1F1F; overflow:auto;display: block;" id="committees">
<div class="w3-content w3-display-container" style="max-width: none; margin: 20px;display: block;">
<div class="mySlides" style="width:100%;">
<div class="row pt50">
<div class="section_title center-block" id="committees">
<h3 class="letter-title ml250 slideanim text-white mt0">
Committees
</h3>
</div>
</div>
<div class="row">
<div class="col-md-7 col-xs-12 col-sm-12 text-uppercase" style="display: block;">
<div class="row">
<div class="col-md-7 center-block text-center mb150">
<img src="assets/img/committees/b13.png" alt="" style="height:250px;">
<br>
<h5 class="color-light text-uppercase">
<br>   United Nations General Assembly</h5>
<hr>
<a class="exec-board" data-toggle="modal" data-target="#ungaModal">Our Executive board</a>
<div class="modal slideanim" id="ungaModal" style="border:none">
<div class="modal-dialog border-0 mt70">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">United Nations General Assembly</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="row">
<div class="col-md-12">
<h5 style="color: rgb(59, 89, 152) !important">Agenda: Addressing the people's right to self determination</h5>
</div>
</div>
<br>
<div class="row">
<div class="col-md-6">
<img src="assets/img/Team Photos/Varad.jpg" class="rounded-circle" alt="" style="height: 150px !important;">
<br>
<h4 style="color: rgb(59, 89, 152) !important">Varad Choudhary</h3>
<h7 class="color-black">Chair-person</h7>
</div>
<div class="col-md-6">
<img src="assets/img/Team Photos/rakshak.jpg" class="rounded-circle" alt="" style="height: 150px !important;">
<br>
<h4 style="color: rgb(59, 89, 152) !important">Rakshak Bharath</h3>
<h7 class="color-black">Vice Chair-person</h7>
</div>
</div>
<div class="row">
<div class="col-md-6">
<img src="assets/img/PHOTOS FOR WEBSITE/EB PHOTOS/Varad.jpg" alt="Varad Choudhary" class="rounded-circle" style="height: 150px !important;">
<br>
<h4 style="color: rgb(59, 89, 152) !important"> Varad Choudhary</h3>
<h7 class="color-black">Chairperson</h7>
</div>
<div class="col-md-6">
<img src="assets/img/PHOTOS FOR WEBSITE/EB PHOTOS/rakshak.jpg" alt="Rakshak Bharath" class="rounded-circle" style="height: 150px !important;">
<br>
<h4 style="color: rgb(59, 89, 152) !important">Rakshak Bharath</h3>
<h7 class="color-black">Vice-Chairperson</h7>
</div>
</div>
<div class="row">
<div class="col-md-6">
<img src="assets/img/PHOTOS FOR WEBSITE/Kshitij Jain Director UNGA (1).jpg" class="rounded-circle" alt="" style="height: 150px !important;">
<br>
<h4 style="color: rgb(59, 89, 152) !important">Kshitiz Jain</h3>
<h7 class="color-black">Director</h7>
</div>
<div class="col-md-6">
<img src="assets/img/PHOTOS FOR WEBSITE/Tejas Vaid Director GA.jpg" class="rounded-circle" alt="" style="height: 150px !important;">
<br>
<h4 style="color: rgb(59, 89, 152) !important">Tejas Vaid</h3>
<h7 class="color-black">Director</h7>
</div>
</div>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5 col-xs-12 col-sm-12 committee-para-text text-uppercase text-white d-sm-inline pl0 pr80 pt0">
The United Nations General Assembly (UNGA) is the largest congregation of nations that
<strong> recommends legal, political, economic, social and humanitarian efforts that help save lives of millions
across the world</strong>, where each country has an equal voice and vote regardless of the agenda.
Witness and be a part of the passionate speeches, the delirious negotiations, the blood boiling breaks
and nail-biting voting sessions. Test your prowess and speak your heart out as you try to find a
middle ground with your rivals using your negotiation and persuasion skills.
<strong>Watch it all unfurl at UNGA of BITSMUN ’18.</strong>
<br>
<br>
<br>
<br>
</div>
</div>
</div>
<div class="mySlides" style="width:100%;">
<div class="row pt50">
<div class="section_title center-block" id="committees">
<h3 class="letter-title ml250 slideanim text-white mt0">
Committees
</h3>
</div>
</div>
<div class="row">
<div class="col-md-7 col-xs-12 col-sm-12 text-uppercase" style="display: block;">
<div class="row">
<div class="col-md-7 center-block text-center mb150">
<img src="assets/img/committees/b12.png" alt="" style="height:250px;">
<br>
<h5 class="color-light text-uppercase">
<br>   SAARC</h5>
<hr>
<a class="exec-board" data-toggle="modal" data-target="#saarcModal">Our Executive board</a>
<div class="modal slideanim" id="saarcModal" style="border:none">
<div class="modal-dialog border-0 mt70">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">SAARC</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="row">
<div class="col-md-6">
<img src="assets/img/PHOTOS FOR WEBSITE/EB PHOTOS/Tanmei.jpg" alt="Tanmei Kamath" class="rounded-circle" style="height: 150px !important;">
<br>
<h4 style="color: rgb(59, 89, 152) !important">Tanmei Kamath</h3>
<h7 class="color-black">Chairperson</h7>
</div>
<div class="col-md-6">
<img src="assets/img/PHOTOS FOR WEBSITE/EB PHOTOS/Jaideep.jpg" alt="Jaideep PV" class="rounded-circle" style="height: 150px !important;">
<br>
<h4 style="color: rgb(59, 89, 152) !important">Jaydeep PV</h3>
<h7 class="color-black">Vice-Chairperson</h7>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h6 style="color: rgb(59, 89, 152) !important">Agenda: Discussing the future of SAARC and how increased cooperation can be achieved among states.</h6>
</div>
</div>
<br>
<div class="row">
<div class="col-md-6 center-block text-center">
<img src="assets/img/Team Photos/Tanmei.jpg" class="rounded-circle" alt="" style="height: 150px !important;">
<br>
<h4 style="color: rgb(59, 89, 152) !important">Tanmei Kamath</h3>
<h7 class="color-black">Chair-person</h7>
</div>
<div class="col-md-6 center-block text-center">
<img src="assets/img/Team Photos/Jaideep.jpg" class="rounded-circle" alt="" style="height: 150px !important;">
<br>
<h4 style="color: rgb(59, 89, 152) !important">Jaideep P V</h3>
<h7 class="color-black">Vice Chair-person</h7>
</div>
</div>
<div class="row">
<div class="col-md-6 center-block text-center">
<img src="assets/img/PHOTOS FOR WEBSITE/Rohit Dwivedula SAARC Director.jpg" class="rounded-circle" alt="" style="height: 150px !important;">
<br>
<h4 style="color: rgb(59, 89, 152) !important">Rohit Dwivedula</h3>
<h7 class="color-black">Director</h7>
</div>
</div>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-5 col-xs-12 col-sm-12 committee-para-text text-uppercase text-white d-sm-inline pl0 pr80 pt0">
<strong>SAARC, the South Asian Association for Regional Cooperation, was founded with lofty goals to “promote
the welfare of the people of South Asia” and to “strengthen collective self-reliance among the
countries of South Asia”</strong> promoting active collaboration and mutual assistance in the
economic, social, cultural, technical and scientific fields. Test your skills as you try to find
common ground with bitter enemies and neighbors to come to a mutually beneficial consensus.
<strong>This BITSMUN ’18, can you maintain the balance between political, religious, and economic interests
of your country and tackle the increasing political tension? </strong>
<br>
<br>
<br>
<br>
</div>
</div>
</div>
<div class="mySlides" style="width:100%;">
<div class="row pt50">
<div class="section_title center-block" id="committees">
<h3 class="letter-title ml250 slideanim text-white mt0">
Committees
</h3>
</div>
</div>
<div class="row">
<div class="col-md-7 col-xs-12 col-sm-12 text-uppercase" style="display: block;">
<div class="row">
<div class="col-md-7 center-block text-center mb150">
<img src="assets/img/committees/b11.png" alt="" style="height:250px;">
<br>
<h5 class="color-light text-uppercase">
<br>   United Nations Security Council</h5>
<hr>
<a class="exec-board" data-toggle="modal" data-target="#unscModal">Our Executive board</a>
<div class="modal slideanim" id="unscModal" style="border:none">
<div class="modal-dialog border-0 mt70">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">United Nations Security Council</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->