-
Notifications
You must be signed in to change notification settings - Fork 0
/
ngangels.html
1363 lines (1312 loc) · 52.7 KB
/
ngangels.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=1.0" />
<meta http-equiv="X-UA-Compatible"
content="ie=edge" />
<meta name="description"
content="As a Nrityagram Angel, your Annual donation will help young dancers realise their dreams and fund the creation and presentation of breathtaking performances to audiences around the world. India’s first modern Gurukul, Nrityagram is a one-of-a-kind community where dance is a way of life.">
<title>Nrityagram Angels | Nrityagram Dance Village, India</title>
<link rel="preconnect"
href="https://fonts.gstatic.com">
<link rel="preconnect"
href="https://res.cloudinary.com">
<link rel="stylesheet"
href="/styles/ng-page.min.css" />
<link rel="stylesheet"
href="/styles/ng-navbar.min.css" />
<link rel="stylesheet"
href="/styles/ng-donatestyle.min.css" />
<link rel="stylesheet"
href="/styles/ng-glass-buttons.min.css">
<link rel="stylesheet"
href="/styles/ng-a-img-pointer-events.css">
<link rel="shortcut icon"
href="/img/logo/ng_logo-favicon.png" />
<script src="/scripts/jquery-3.4.1.min.js"></script>
</head>
<body>
<header>
<a href="/">
<img src="img/logo/ng_logo.png"
alt=""
class="logo"
loading="lazy" />
</a>
<div class="mobile-nav">
<form id="mobilemenu-form">
<input type="checkbox"
id="nav-toggle-id"
class="nav-toggle" />
<nav>
<ul>
<li>
<input type="checkbox"
id="ensemble-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="ensemble-toggle-id"
class="menu-toggle-label">
<span class="item-text">Ensemble</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="ensemble.html">Nrityagram Ensemble</a></li>
<li>
<input type="checkbox"
id="repertory-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<span class="itemlink-plus-chevron">
<a href="repertoire.html">Repertoire</a>
<label for="repertory-toggle-id"
class="chevron-label">
<span class="chevron"></span>
</label>
</span>
</div>
<ul class="submenu">
<li>
<a href="repertoire.html#sri">Śrī: In Search of the Goddess</a>
</li>
<li><a href="repertoire.html#ansh">Ansh</a></li>
<li><a href="repertoire.html#sspace">Sacred Space</a></li>
<li>
<a href="repertoire.html#pratima">Pratimā: Reflection</a>
</li>
<li><a href="repertoire.html#sriyah">Śriyaḥ</a></li>
<li><a href="repertoire.html#samhara">Saṃhāra</a></li>
<li><a href="repertoire.html#samyoga">Saṃyoga</a></li>
<li>
<a href="repertoire.html#lovelong">Songs of Love and Longing</a>
</li>
<li><a href="repertoire.html#yadu">Yadunandana</a></li>
<li><a href="repertoire.html#ahuti">Āhuti</a></li>
</ul>
</li>
<li><a href="performancemap.html">Performances</a></li>
</ul>
</li>
<li>
<input type="checkbox"
id="school-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="school-toggle-id"
class="menu-toggle-label">
<span class="item-text">School</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="gurukula.html">Nrityagram Gurukula</a></li>
<li><a href="danceprof.html">Dance Professionals</a></li>
<li>
<input type="checkbox"
id="class-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<span class="itemlink-plus-chevron">
<a href="danceunlimited.html">Dance Unlimited</a>
<label for="class-toggle-id"
class="chevron-label">
<span class="chevron"></span>
</label>
</span>
</div>
<ul class="submenu">
<li>
<a href="danceunlimited.html#residential">Residential Workshops</a>
</li>
<li>
<a href="danceunlimited.html#parttime">Non-Residential Training</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<input type="checkbox"
id="comm-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="comm-toggle-id"
class="menu-toggle-label">
<span class="item-text">Community</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="danceaware.html">Dance Awareness</a></li>
<li><a href="villageoutreach.html">Village Outreach</a></li>
<li><a href="supportingartists.html">Supporting Artists</a></li>
<li>
<input type="checkbox"
id="poparts-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<span class="itemlink-plus-chevron">
<a href="popularisingarts.html">Popularising the Arts</a>
<label for="poparts-toggle-id"
class="chevron-label">
<span class="chevron"></span>
</label>
</span>
</div>
<ul class="submenu">
<li>
<a href="popularisingarts.html#vasant">Vasantahabba</a>
</li>
<li>
<a href="popularisingarts.html#ajji">Ajji Kathegaḷu</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<input type="checkbox"
id="ppl-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="ppl-toggle-id"
class="menu-toggle-label">
<span class="item-text">People</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="protima.html">Protima Gauri</a></li>
<li><a href="surupa.html">Surupa Sen</a></li>
<li><a href="pavithra.html">Pavithra Reddy</a></li>
<li><a href="lynne.html">Lynne Fernandez</a></li>
</ul>
</li>
<li>
<input type="checkbox"
id="abt-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="abt-toggle-id"
class="menu-toggle-label">
<span class="item-text">About</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="vision.html">Vision</a></li>
<li><a href="history.html">History</a></li>
<li>
<input type="checkbox"
id="space-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<span class="itemlink-plus-chevron">
<a href="space.html">Space</a>
<label for="space-toggle-id"
class="chevron-label">
<span class="chevron"></span>
</label>
</span>
</div>
<ul class="submenu">
<li>
<a href="space.html#temple">Temple</a>
</li>
<li>
<a href="space.html#yoga">Yoga Centre</a>
</li>
<li>
<a href="space.html#odissi">Odissi Gurukul</a>
</li>
<li>
<a href="space.html#dining">Dining Hall</a>
</li>
<li>
<a href="space.html#cottages">Cottages</a>
</li>
<li>
<a href="space.html#kula">Kula</a>
</li>
<li>
<a href="space.html#amphi">Amphitheatre</a>
</li>
</ul>
</li>
<li>
<input type="checkbox"
id="future-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<span class="itemlink-plus-chevron">
<a href="future.html">Future</a>
<label for="future-toggle-id"
class="chevron-label">
<span class="chevron"></span>
</label>
</span>
</div>
<ul class="submenu">
<li>
<a href="future.html#artscentre">Performing Arts Centre</a>
</li>
<li>
<a href="future.html#resourcecentre">Nrityagyān Resource Centre</a>
</li>
<!-- <li>
<a href="future.html#prayoga">Prayoga</a>
</li>
<li>
<a href="future.html#uruhabba">Uruhabba - The Village Fest</a>
</li> -->
</ul>
</li>
<li><a href="board.html">Board of Trustees</a></li>
</ul>
</li>
<li>
<input type="checkbox"
id="visit-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="visit-toggle-id"
class="menu-toggle-label">
<span class="item-text">Visit</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="thingstodo.html">Things to do</a></li>
<li><a href="findyourway.html">Find your Way</a></li>
<li>
<a href="https://www.google.co.in/maps/@13.1615025,77.4593968,3a,60y,90t/data=!3m6!1e1!3m4!1s-9UefyZY73ob-pFS-YGTlA!2e0!7i13312!8i6656"
target="_blank">Virtual Tour</a>
</li>
</ul>
</li>
<li>
<input type="checkbox"
id="support-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="support-toggle-id"
class="menu-toggle-label">
<span class="item-text">Support</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="support.html">Support Us</a></li>
<!-- <li>
<input
type="checkbox"
id="vardan-toggle-id"
class="menu-toggle"
/>
<div class="item-chevron">
<span class="itemlink-plus-chevron">
<a href="vardan.html">Join Vardān</a>
<label for="vardan-toggle-id" class="chevron-label">
<span class="chevron"></span>
</label>
</span>
</div>
<ul class="submenu">
<li>
<a href="friendsofng.html">Friends of Nrityagram</a>
</li>
<li>
<a href="ngangels.html">Nrityagram Angels</a>
</li>
</ul>
</li> -->
<li><a href="donate.html">Donate</a></li>
<li><a href="corpusfund.html">Support the Corpus Fund</a></li>
<li>
<a href="otherwaystogive.html">Other ways to Give</a>
</li>
<li>
<a href="sponsorship.html">Sponsorship</a>
</li>
</ul>
</li>
<li><a href="press.html">Press</a></li>
<li>
<input type="checkbox"
id="showtime-toggle-id"
class="menu-toggle" />
<div class="item-chevron">
<label for="showtime-toggle-id"
class="menu-toggle-label">
<span class="item-text">Media</span>
<span class="chevron"></span>
</label>
</div>
<ul class="submenu">
<li><a href="showtime.html">Showtime</a></li>
<li><a href="behindthescenes.html">Behind the Scenes</a></li>
<li><a href="lifeatng.html">Life at Nrityagram</a></li>
<li><a href="downtime.html">Downtime</a></li>
</ul>
</li>
</ul>
</nav>
<label for="nav-toggle-id"
class="nav-toggle-label"
onclick="set_reset_menu();">
<span class="hamburger"></span>
</label>
</form>
</div>
<div class="desktop-nav">
<div class="redmenu">
<div class="item"
onmouseover="showSubmenu(this);">
About
<div class="submenu"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="vision.html">Vision</a></li>
<li><a href="history.html">History</a></li>
<li>
<a href="space.html">Space</a>
<div class="sub-submenu">
<ul>
<li><a href="space.html#temple">Temple</a></li>
<li><a href="space.html#yoga">Yoga Centre</a></li>
<li><a href="space.html#odissi">Odissi Gurukul</a></li>
<li><a href="space.html#dining">Dining Hall</a></li>
<li><a href="space.html#cottages">Cottages</a></li>
<li><a href="space.html#kula">Kula</a></li>
<li><a href="space.html#amphi">Amphitheatre</a></li>
</ul>
</div>
</li>
<li>
<a href="future.html">Future</a>
<div class="sub-submenu">
<ul>
<li><a href="future.html#artscentre">Performing Arts Centre</a></li>
<li><a href="future.html#resourcecentre"">Nrityagyān Resource Centre</a></li>
<!-- <li><a href="
future.html#prayoga">Prayoga</a></li>
<li><a href="future.html#uruhabba">Uruhabba - The Village Fest</a></li> -->
</ul>
</div>
</li>
<li><a href="board.html">Board of Trustees</a></li>
</ul>
</div>
</div>
<div class="item"
onmouseover="showSubmenu(this);">
Visit
<div class="submenu"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="thingstodo.html">Things to Do</a></li>
<li><a href="findyourway.html">Find your Way</a></li>
<li><a
href="https://www.google.co.in/maps/@13.1615025,77.4593968,3a,60y,90t/data=!3m6!1e1!3m4!1s-9UefyZY73ob-pFS-YGTlA!2e0!7i13312!8i6656"
target="_blank">Virtual Tour</a></li>
</ul>
</div>
</div>
<div class="item active larger-font"
onmouseover="showSubmenu(this);">
Support
<div class="submenu"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="support.html">Support Us</a></li>
<!-- <li>
<a href="vardan.html">Join Vardān</a>
<div class="sub-submenu">
<ul>
<li><a href="friendsofng.html">Friends of Nrityagram</a></li>
<li><a href="ngangels.html" class="submenu-item-active">Nrityagram Angels</a></li>
</ul>
</div>
</li> -->
<li><a href="donate.html">Donate</a></li>
<li><a href="corpusfund.html">Support the Corpus Fund</a></li>
<li><a href="otherwaystogive.html">Other ways to Give</a></li>
<li><a href="sponsorship.html">Sponsorship</a></li>
</ul>
</div>
</div>
<div class="item"
onmouseover="showSubmenu(this);">
<a href="press.html">Press</a>
</div>
<div class="item"
onmouseover="showSubmenu(this);">
Media
<div class="submenu-last"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="showtime.html">Showtime</a></li>
<li><a href="behindthescenes.html">Behind the Scenes</a></li>
<li><a href="lifeatng.html">Life at Nrityagram</a></li>
<li><a href="downtime.html">Downtime</a></li>
</ul>
</div>
</div>
</div>
<div class="whitemenu">
<div class="item"
onmouseover="showSubmenu(this);">
Ensemble
<div class="submenu"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="ensemble.html">Nrityagram Ensemble</a></li>
<li>
<a href="repertoire.html">Repertoire</a>
<div class="sub-submenu">
<ul>
<li><a href="repertoire.html#sri">Śrī: In Search of the Goddess</a></li>
<li><a href="repertoire.html#ansh">Ansh</a></li>
<li><a href="repertoire.html#sspace">Sacred Space</a></li>
<li><a href="repertoire.html#pratima">Pratimā: Reflection</a></li>
<li><a href="repertoire.html#sriyah">Śriyaḥ</a></li>
<li><a href="repertoire.html#samhara">Saṃhāra</a></li>
<li><a href="repertoire.html#samyoga">Saṃyoga</a></li>
<li><a href="repertoire.html#lovelong">Songs of Love and Longing</a></li>
<li><a href="repertoire.html#yadu">Yadunandana</a></li>
<li><a href="repertoire.html#ahuti">Āhuti</a></li>
</ul>
</div>
</li>
<li><a href="performancemap.html">Performances</a></li>
</ul>
</div>
</div>
<div class="item"
onmouseover="showSubmenu(this);">
School
<div class="submenu"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="gurukula.html">Nrityagram Gurukula</a></li>
<li><a href="danceprof.html">Dance Professionals</a></li>
<li>
<a href="danceunlimited.html">Dance Unlimited</a>
<div class="sub-submenu">
<ul>
<li><a href="danceunlimited.html#residential">Residential Workshops</a></li>
<li><a href="danceunlimited.html#parttime">Non-Residential Training</a></li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<div class="item"
onmouseover="showSubmenu(this);">
Community
<div class="submenu"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="danceaware.html">Dance Awareness</a></li>
<li><a href="villageoutreach.html">Village Outreach</a></li>
<li><a href="supportingartists.html">Supporting Artists</a></li>
<li>
<a href="popularisingarts.html">Popularising the Arts</a>
<div class="sub-submenu">
<ul>
<li><a href="popularisingarts.html#vasant">Vasantahabba</a></li>
<li><a href="popularisingarts.html#ajji">Ajji Kathegaḷu</a></li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<div class="item"
onmouseover="showSubmenu(this);">
People
<div class="submenu-last"
onmouseout="hideSubmenu(this);">
<ul>
<li><a href="protima.html">Protima Gauri</a></li>
<li><a href="surupa.html">Surupa Sen</a></li>
<li><a href="pavithra.html">Pavithra Reddy</a></li>
<li><a href="lynne.html">Lynne Fernandez</a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="container"
onmouseover="hideAllSubmenus();">
<div id="masthead">
<picture>
<source srcset="https://res.cloudinary.com/nrityagram/image/upload/v1580647700/nrityagram-partners_rcmx0c.jpg"
media="(min-width: 768px)">
<source srcset="https://res.cloudinary.com/nrityagram/image/upload/v1589077339/ipad/nrityagram-partners_dwi7vb.jpg"
media="(min-width: 425px)">
<img src="https://res.cloudinary.com/nrityagram/image/upload/v1581184580/mobile/nrityagram-partners_rbund3.jpg"
class="masthead-background-img" />
</picture>
<div id="masthead-text"
class="animated fadeInDown slower">
Nrityagram<br />Angels
</div>
</div>
<content>
<article id="intro"
class="flex-col">
<p>
Angels sustain the heart and soul of our diverse community. For the first three decades, angel support
(known and unknown) has been part of the fabric of Nrityagram and has truly allowed us to thrive. As a
Nrityagram Angel, your Annual donation will help young dancers realise their dreams and fund the creation
and presentation of breathtaking performances to audiences around the world.
</p>
<div id="donate-buttons-wrapper"
class="flex-row">
<!-- <button class="donate-button red open-donate-box">Join Now</button> -->
<!-- <button class="donate-button open-donate-box">Give a Gift Membership</button> -->
</div>
</article>
<div class="ngtitle center-txt">
Areas of Support
</div>
<article id="areas-of-support--wrapper"
class="flex-col-reverse">
<div class="areas-of-support">
<input type="radio"
id="package1"
name="supportpkgs"
value="https://res.cloudinary.com/nrityagram/image/upload/v1570033730/ngpartners_1_glpnyi.jpg"
checked
onclick="pkgOnClick(this);" />
<div class="areas-of-support--item">
<label for="package1"
class="areas-of-support--item--title">
Village Children's Scholarship
</label>
<p>
This scholarship is specially created to support 10 village children for a full year of weekly dance
training at Nrityagram (including transport). Your Annual donation will allow us to maintain a valuable
and consistent presence in the lives of children that simply do not have the means to invest in arts
education.
</p>
</div>
<input type="radio"
id="package2"
name="supportpkgs"
value="https://res.cloudinary.com/nrityagram/image/upload/v1580647700/ngpartners_4_kb6pfe.jpg"
onclick="pkgOnClick(this);" />
<div class="areas-of-support--item">
<label for="package2"
class="areas-of-support--item--title">
Legacy Scholarship
</label>
<p>
Establish a scholarship in honour or memory of someone special through a Legacy Scholarship. This
scholarship is funded for a minimum of 3 years or in perpetuity, to create a lasting legacy that will
support gifted young artists.
</p>
</div>
<input type="radio"
id="package3"
name="supportpkgs"
value="https://res.cloudinary.com/nrityagram/image/upload/v1589103179/5_l9vba4.jpg"
onclick="pkgOnClick(this);" />
<div class="areas-of-support--item">
<label for="package3"
class="areas-of-support--item--title">
Artistic Director's Circle
</label>
<p>
Nrityagram’s Artistic Director <a href="surupa.html"
class="bodytxt">Surupa Sen</a> has consistently created inspiring choreography to commissioned music
by the revered Pandit Raghunath Panigrahi. The Artistic Director’s Circle recognises and honours our
generous donors who make a pledge to support Surupa’s artistic vision and Nrityagram’s commitment to
build a diverse repertoire, and nurture the growth of talented dancers, musicians and choreographers.
</p>
</div>
</div>
<div class="areas-of-support-img--wrapper">
<img src="https://res.cloudinary.com/nrityagram/image/upload/v1570033730/ngpartners_1_glpnyi.jpg"
id="areas-of-support--img"
alt="" />
</div>
</article>
<article id="levels-of-support-mob--wrapper"
class="flex-col">
<div class="pair-of-levels">
<div class="level--wrapper">
<input type="radio"
id="levelm1"
name="donorlevels_mob"
value="1"
checked
onclick="levelOnClick(this);" />
<label for="levelm1"
class="donor-level">
<p>Village Children Scholarship</p>
<p class="price">₹2,10,000 / $3,500</p>
</label>
</div>
<div class="level--wrapper">
<input type="radio"
id="levelm2"
name="donorlevels_mob"
value="2"
onclick="levelOnClick(this);" />
<label for="levelm2"
class="donor-level">
<p>Legacy Scholarship</p>
<p class="price">₹5,10,000 / $7,500</p>
</label>
</div>
</div>
<div class="pair-of-levels">
<div class="level--wrapper">
<input type="radio"
id="levelm3"
name="donorlevels_mob"
value="3"
onclick="levelOnClick(this);" />
<label for="levelm3"
class="donor-level">
<p>Artistic Director's Circle</p>
<p class="price">₹5,10,000 / $7,500</p>
</label>
</div>
</div>
</article>
<article id="levels-of-support-desk--wrapper"
class="flex-row">
<div class="level--wrapper wider">
<input type="radio"
id="level1"
name="donorlevels_dsk"
value="1"
checked
onclick="levelOnClick(this);" />
<label for="level1"
class="donor-level">
<p>Village Children Scholarship</p>
<p class="price">₹2,10,000 / $3,500</p>
</label>
</div>
<div class="level--wrapper wider">
<input type="radio"
id="level2"
name="donorlevels_dsk"
value="2"
onclick="levelOnClick(this);" />
<label for="level2"
class="donor-level">
<p>Legacy Scholarship</p>
<p class="price">₹5,10,000 / $7,500</p>
</label>
</div>
<div class="level--wrapper wider">
<input type="radio"
id="level3"
name="donorlevels_dsk"
value="3"
onclick="levelOnClick(this);" />
<label for="level3"
class="donor-level">
<p>Artistic Director's Circle</p>
<p class="price">₹5,10,000 / $7,500</p>
</label>
</div>
</article>
<article id="donor-benefits-list--wrapper"
class="flex-row row-wrap">
<div class="donor-benefits-list">
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level0"
name="level0"
value="0"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>
Nrityagram Keepsake - set of 5 postcards, canvas print, fridge magnet and bookmark
</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level0"
name="level0"
value="0"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>
Inclusion in mailing list
</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level0"
name="level0"
value="0"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>Alerts</p>
</div>
</div>
<!-- <div class="donor-benefit--wrapper">
<input
type="checkbox"
class="level0"
name="level0"
value="0"
checked
/>
<div class="donor-benefit">
<span>✓</span>
<p>
Calendar of events
</p>
</div>
</div> -->
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level0"
name="level0"
value="0"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>Nrityagram eNewsletter</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level0"
name="level0"
value="0"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>Complimentary visit for 2 to Nrityagram</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level0"
name="level0"
value="0"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>Discount for shows, whenever applicable</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level0"
name="level0"
value="0"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>25% Discount on Nrityagram Souvenirs</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level0"
name="level0"
value="0"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>Nrityagram calendar</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level12"
name="level12"
value="12"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>Exclusive Nrityagram Angel Memento</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level0"
name="level0"
value="0"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>
Invitation for 4 to a special Nrityagram Performance (Reserved seating; RSVP required)
</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level0"
name="level0"
value="level0"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>
Family Sunday at Nrityagram: Invitation for a family of 6 to visit, watch classes, Private Tour of
Nrityagram and Lunch with our Community
</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level1"
name="level1"
value="level1"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>
Nrityagram Unplugged: Invitation for you and your family (4 people) to a Closed Rehearsal followed by
a meal with our Community (Children 8 and over)
</p>
</div>
</div>
</div>
<div class="donor-benefits-list">
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level1"
name="level1"
value="level1"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>
Invitation for 25 Guests to a private performance at Nrityagram by scholarship recipients
</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level1"
name="level1"
value="level1"
checked />
<div class="donor-benefit">
<span>✓</span>
<p>
Invitation for 2 to a Reception following our Annual NrityaUtsarga Performance
</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level2"
name="level2"
value="level2" />
<div class="donor-benefit">
<span>✓</span>
<p>
Nrityagram Unplugged: Invitation for you and your family (8 people) to a Closed Rehearsal followed by
a meal with our Community (Children 8 and over)
</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level2"
name="level2"
value="level2" />
<div class="donor-benefit">
<span>✓</span>
<p>
Invitation for a Family of 4 to Spend 4 days at Nrityagram to observe Student Training
</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level2"
name="level2"
value="level2" />
<div class="donor-benefit">
<span>✓</span>
<p>
Invitation for 10 to an Exclusive Scholars Performance and Dinner with Nrityagram Gurus
</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level3"
name="level3"
value="level3" />
<div class="donor-benefit">
<span>✓</span>
<p>
Invitation for 6 to a Private Working Rehearsal followed by a Dinner Reception
</p>
</div>
</div>
<div class="donor-benefit--wrapper">
<input type="checkbox"
class="level3"
name="level3"
value="level3" />
<div class="donor-benefit">
<span>✓</span>