-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgauntlet.html
1144 lines (1036 loc) · 49.4 KB
/
gauntlet.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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gauntlet 2024 | NewSpring.cc
</title>
<meta property="og:image"
content="https://s3.amazonaws.com/ns.images/newspring/Gauntlet/2024/2024_gauntlet_hero_2x1.jpg" />
<meta name="twitter:image"
content="https://s3.amazonaws.com/ns.images/newspring/Gauntlet/2024/2024_gauntlet_hero_2x1.jpg">
<!-- jQuery -->
<script
src="https://newspring.cc/Scripts/Bundles/RockJQueryLatest?v=04Na70l5xG-Ak3mWoqN6rMOm3L9-p3kgT_NPfUoJxck1"></script>
<!-- Bootstrap -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<!-- Typekit -->
<link rel="stylesheet" href="https://use.typekit.net/bcm6gqj.css" />
<!-- FontAwesome -->
<script src="https://kit.fontawesome.com/3e0f7fab68.js"
crossorigin="anonymous"></script>
<!-- AOS -->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<script src="./Themes/new/Scripts/dynamic-aos-min.js"></script>
<script src="./Themes/new/Scripts/accordions-min.js"></script>
<!-- Swiper.js -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css" />
<script
src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
<!-- PureCounter -->
<script src="./Themes/new/Scripts/counter.js"></script>
<link rel="stylesheet" href="./Themes/new/Styles/bootstrap.css" />
<link rel="stylesheet" href="./Themes/new/Styles/theme.css" />
<link rel="stylesheet" href="./Themes/new/Styles/gauntlet.css" />
<link rel="apple-touch-icon" sizes="180x180"
href="/Themes/new/Assets/Images/gauntlet/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32"
href="/Themes/new/Assets/Images/gauntlet/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16"
href="/Themes/new/Assets/Images/gauntlet/favicons/favicon-16x16.png">
<link rel="manifest"
href="/Themes/new/Assets/Images/gauntlet/favicons/site.webmanifest">
</head>
<body id="top" class="bg-black">
<style>
:root {
--color-fuscia: #e854be;
--color-blue: #215cd7;
--color-beige: #f2f1ee;
--color-amber: #fd8a1a;
--color-red: #dd0e23;
--color-green: #618a00;
--color-yellow: #ffc240;
--color-purple: #8e69fb;
--color-purple: #6843d8;
--color-sky: #acdde5;
--color-slate: #202427;
--color-pink: #f687a8;
--color-orange: #f05421;
--color-lime: #b9d956;
--primary: var(--color-orange);
--secondary: var(--color-purple);
}
.bg-primary {
background-color: var(--primary) !important;
}
.bg-secondary {
background-color: var(--secondary) !important;
}
.text-primary {
color: var(--primary) !important;
}
.text-secondary {
color: var(--secondary) !important;
}
.btn-primary {
position: relative;
background-color: var(--primary);
color: #fff;
overflow: hidden;
opacity: 1;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
background-color: var(--primary);
}
.btn-secondary {
position: relative;
background-color: var(--secondary);
color: #fff;
overflow: hidden;
opacity: 1;
}
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
background-color: var(--secondary);
}
</style>
<!-- Gauntlet Navigation -->
<section
class="position-fixed bg-black text-white w-100 p-3 px-sm-6 px-lg-7 px-xl-8 py-lg-2 o-100 drop-shadow"
style="z-index: 9999;">
<div class="fullscreen background-top o-60"
style="background-image: url('/Themes/new/Assets/Images/christmas_texture1.png'); z-index: 1;">
</div>
<div
class="bring-forward page-constrained mx-auto d-flex flex-column flex-lg-row justify-content-between align-items-center w-100">
<div
class="bring-forward d-flex justify-content-between align-items-center w-100 w-lg-auto">
<a href="#top">
<img src="/Themes/new/Assets/SVG/gauntlet/gauntlet-wordmark-dark.svg"
alt="Gauntlet Logo" class="hidden bring-forward w-100"
style="max-width: 200px;">
<img src="/Themes/new/Assets/SVG/gauntlet/gauntlet-mark-light.svg"
alt="Gauntlet Logo" class="bring-forward w-100"
style="max-width: 46px;">
</a>
<nav class="hidden-lg hidden-xl">
<ul
class="bring-forward d-flex align-items-center gap-x-3 list-unstyled mb-0 text-center">
<li class="d-inline-block w-100 w-lg-auto"><a href="#go"
class="position-relative d-inline-block w-100 py-2 px-4 rounded-full text-white text-decoration-none text-uppercase font-black mb-0 bg-primary"
style="padding-top: 9px !important; padding-bottom: 7px !important;">Register</a>
</li>
<li class="d-inline-block w-100 w-lg-auto">
<a data-toggle="collapse" href="#navigation"
class="position-relative py-3 pl-3 pr-2" style="top: 1px">
<i class="fa-solid fa-bars fa-xl text-beige"></i>
</a>
</li>
</ul>
</nav>
</div>
<nav id="navigation" class="collapse w-100 w-lg-auto">
<ul
class="bring-forward d-flex flex-column flex-lg-row align-items-center gap-x-2 gap-x-lg-0 list-unstyled mb-0 mt-5 mt-md-0 text-center">
<li class="d-inline-block w-100 w-lg-auto"><a href="#about"
data-scroll
class="d-inline-block w-100 px-2 py-3 px-lg-3 py-lg-4 text-white text-decoration-none text-uppercase font-black mb-0">About</a>
</li>
<li class="d-inline-block w-100 w-lg-auto"><a href="#go" data-scroll
class="d-inline-block w-100 px-2 py-3 px-lg-3 py-lg-4 text-white text-decoration-none text-uppercase font-black mb-0">Go</a>
</li>
<li class="d-inline-block w-100 w-lg-auto"><a href="#give" data-scroll
class="d-inline-block w-100 px-2 py-3 px-lg-3 py-lg-4 text-white text-decoration-none text-uppercase font-black mb-0">Give</a>
</li>
<li class="d-inline-block w-100 w-lg-auto"><a href="#serve"
data-scroll
class="d-inline-block w-100 px-2 py-3 px-lg-3 py-lg-4 text-white text-decoration-none text-uppercase font-black mb-0">Serve</a>
</li>
<li class="d-inline-block w-100 w-lg-auto"><a href="#pray" data-scroll
class="d-inline-block w-100 px-2 py-3 px-lg-3 py-lg-4 text-white text-decoration-none text-uppercase font-black mb-0">Pray</a>
</li>
<li class="d-inline-block w-100 w-lg-auto"><a href="#parents"
data-scroll
class="d-inline-block w-100 px-2 py-3 px-lg-3 py-lg-4 text-white text-decoration-none text-uppercase font-black mb-0">Parents</a>
</li>
<li class="d-inline-block w-100 w-lg-auto"><a href="#faqs" data-scroll
class="d-inline-block w-100 px-2 py-3 px-lg-3 py-lg-4 text-white text-decoration-none text-uppercase font-black mb-0">FAQs</a>
</li>
<li class="w-100 w-lg-auto hidden-xs hidden-sm hidden-md ml-md-2"><a
href="#go"
class="position-relative d-inline-block w-100 py-2 px-4 rounded-full text-white text-decoration-none text-uppercase font-black mb-0 mt-2 mt-md-0 bg-primary"
style="top: -1px; padding-top: 9px !important; padding-bottom: 7px !important;">Register</a>
</li>
</ul>
</nav>
</div>
</section>
<div id="content">
<!-- Image Hero -->
<section class=" svh-100 p-0 position-relative bg-beige overflow-hidden">
<div class="fullscreen background-fixed background-center o-40"
style="background-image: url('/Themes/new/Assets/Images/christmas_texture1.png'); z-index: 2;">
</div>
<div class="fullscreen background-cover background-center o-20 grayscale"
style="background-image: url('https://s3.amazonaws.com/ns.images/newspring/Gauntlet/2024/painted_people.jpg'); z-index: 0;">
</div>
<div
class="fullscreen px-3 px-md-5 d-flex justify-content-center align-items-center"
style="z-index: 2;">
<div class="page-constrained text-center mt-8 mt-md-0">
<h1 class="display-1">The <span class="text-blue">Best Week of
the
Summer</span> Awaits
</h1>
<p class="h4 text-fuscia mb-5">June 24-28 ·
Clemson, SC
</p>
<span
class="wistia_embed wistia_async_uaxqzj6n5z popover=true popoverContent=link playerColor=f05421 text-center wistia_embed_initialized d-inline-block mb-5 mb-sm-0"
id="wistia-uaxqzj6n5z-1">
<div id="wistia_29.thumb_container" class="wistia_click_to_play">
<a href="#" class="btn btn-lg btn-primary drop-shadow">Play
Videoooo <i class="fa-solid fa-play ml-2"></i></a>
</div>
</span>
<script src="https://fast.wistia.com/embed/medias/uaxqzj6n5z.jsonp"
async=""></script>
<script src="https://fast.wistia.com/assets/external/E-v1.js"
async=""></script>
</div>
</div>
<img id="gauntlet-wordmark"
src="/Themes/new/Assets/SVG/gauntlet/gauntlet-wordmark-dark.svg"
alt="Gauntlet Logo"
class="w-100 position-absolute bottom-0 left-0 o-100">
</section>
<section id="about" class="position-relative bg-black text-beige">
<div class="fullscreen background-fixed background-center o-40"
style="background-image: url('/Themes/new/Assets/Images/christmas_texture1.png'); z-index: 1;">
</div>
<div class="page-constrained mx-auto text-center">
<h2 class="display-1">A <span class="text-secondary">Summer Camp
Experience</span> Like No
Other.</h2>
<div class="text-constrained mx-auto mb-6 mb-md-8">
<p>Rising seventh
graders through graduated seniors will gather from across the
state
of
South Carolina for an incredible week of fun, games, friendship,
powerful worship, and practical Bible teaching. Join students from
every NewSpring campus as we learn how to grow in friendship with
God
together.</p>
<p class="hidden-xs hidden-sm hidden-md mb-0 bring-forward"><a
href="#go" class="btn btn-primary">Get Your
Ticket</a></p>
</div>
<div class="page-constrained mx-auto bring-forward">
<div
class="d-grid grid-cols-md-2 grid-cols-lg-4 gap-5 gap-md-7 text-left">
<div class="mt-lg-7" data-aos="fade-up" data-aos-delay="200">
<div
class="ratio-square background-cover background-center rounded mb-5"
style="background-image: url('https://s3.amazonaws.com/ns.images/newspring/Gauntlet/2024/gauntlet_worship_1x1.jpg');">
</div>
<h3 class="text-blue font-black mb-2">Worship</h3>
<p>We believe that worship invites the
presence of God,
and we can’t wait to encounter God as we worship
together.</p>
</div>
<div class="mt-xl-8" data-aos="fade-up" data-aos-delay="300">
<div
class="ratio-square background-cover background-center rounded mb-5"
style="background-image: url('https://s3.amazonaws.com/ns.images/newspring/Gauntlet/2024/gauntlet_teaching_1x1.jpg');">
</div>
<h3 class="text-fuscia font-black mb-2">Teaching</h3>
<p>Each session is led by pastors and
teachers who are
passionate about sharing God’s Word and discipling a
generation into a lifetime of following Jesus.</p>
</div>
<div class="mt-lg-7" data-aos="fade-up" data-aos-delay="400">
<div
class="ratio-square background-cover background-center rounded mb-5"
style="background-image: url('https://s3.amazonaws.com/ns.images/newspring/Gauntlet/2024/gauntlet_smallgroups_1x1.jpg');">
</div>
<h3 class="text-teal font-black mb-2">Small Groups</h3>
<p>Students will spend time forming lifelong
and
encouraging friendships in small groups and larger
community groups.</p>
</div>
<div class="mt-xl-8" data-aos="fade-up" data-aos-delay="500">
<div
class="ratio-square background-cover background-center rounded mb-5"
style="background-image: url('https://s3.amazonaws.com/ns.images/newspring/Gauntlet/2024/gauntlet_fun_1x1.jpg');">
</div>
<h3 class="text-orange font-black mb-2">Fun</h3>
<p>Every student at Gauntlet will be part of
high-energy
team competitions, engaging activities, and daily free
time.</p>
</div>
</div>
<!-- Condsensed Logo Grid -->
<div class="d-grid grid-cols-2 grid-cols-md-4 gap-3 gap-md-4 mt-md-8">
<div class="d-grid gap-3 gap-md-4" data-aos="fade-up">
<div
class="p-4 p-lg-7 d-flex justify-content-center align-items-center overflow-hidden rounded">
<img class="h-auto max-w-full"
src="/Themes/new/Assets/SVG/gauntlet/gs/u.svg" alt="">
</div>
<div
class="p-4 p-lg-7 d-flex justify-content-center align-items-center overflow-hidden rounded bg-blue">
<img class="h-auto max-w-full"
src="/Themes/new/Assets/SVG/gauntlet/gs/g-1-pink.svg" alt="">
</div>
</div>
<div class="d-grid gap-3 gap-md-4" data-aos="fade-up"
data-aos-delay="100">
<div
class="p-4 p-lg-7 d-flex justify-content-center align-items-center overflow-hidden rounded bg-red">
<img class="h-auto max-w-full"
src="/Themes/new/Assets/SVG/gauntlet/gs/g-4.svg" alt="">
</div>
<div
class="p-4 p-lg-7 d-flex justify-content-center align-items-center overflow-hidden rounded">
<img class="h-auto max-w-full"
src="/Themes/new/Assets/SVG/gauntlet/gs/belong.svg" alt="">
</div>
</div>
<div class="d-grid gap-3 gap-md-4" data-aos="fade-up"
data-aos-delay="200">
<div
class="p-4 p-lg-7 d-flex justify-content-center align-items-center overflow-hidden rounded">
<img class="h-auto max-w-full"
src="/Themes/new/Assets/SVG/gauntlet/gs/here.svg" alt="">
</div>
<div
class="p-4 p-lg-7 d-flex justify-content-center align-items-center overflow-hidden rounded bg-yellow">
<img class="h-auto max-w-full"
src="/Themes/new/Assets/SVG/gauntlet/gs/g-2.svg" alt="">
</div>
</div>
<div class="d-grid gap-3 gap-md-4" data-aos="fade-up"
data-aos-delay="300">
<div
class="p-4 p-lg-7 d-flex justify-content-center align-items-center overflow-hidden rounded bg-teal">
<img class="h-auto max-w-full"
src="/Themes/new/Assets/SVG/gauntlet/gs/g-3.svg" alt="">
</div>
<div
class="p-4 p-lg-7 d-flex justify-content-center align-items-center overflow-hidden rounded">
<img class="h-auto max-w-full"
src="/Themes/new/Assets/SVG/gauntlet/gs/g-multi.svg" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<section id="go" class="bg-primary text-beige position-relative">
<div class="fullscreen background-fixed background-center o-50"
style="background-image: url('/Themes/new/Assets/Images/christmas_texture1.png'); z-index: 1;">
</div>
<div class="page-constrained mx-auto text-center mb-8">
<h2 class="display-3">Ready to go to Gauntlet? <span
class="text-slate">Grab your spot today!</span>
</h2>
<p class="mb-5">Registrations close April 14.</p>
<div
class="d-flex flex-column flex-lg-row gap-3 justify-content-center align-items-center mb-5 bring-forward"
data-aos="fade-up">
<div class="position-relative">
<select name="campus" id=""
class="d-inline-block border-0 bg-white py-3 px-5 pr-7 outline-none rounded-full text-gray-darker"
style="-webkit-appearance: none;
">
<option value="">Choose Your Campus</option>
<option value="akn">Aiken</option>
<option value="and">Anderson</option>
</select>
<i class="position-absolute top-50 right-0 mr-4 fa-solid fa-caret-down text-gray-darker"
style="margin-top:-11px;"></i>
</div>
<p class="mb-0"><a href="#"
class="btn btn-secondary py-3 px-5">Register
Now</a></p>
</div>
</div>
<div class="page-constrained mx-auto">
<div
class="d-grid grid-cols-2 grid-cols-md-2 grid-cols-lg-3 gap-y-2 gap-x-6 gap-lg-7 gap-xl-8 mb-7">
<div class="col-span-2 col-span-md-2 col-span-lg-1"
data-aos="fade-up">
<h3 class="h2 font-black text-slate mb-0">
Early-Bird<br>Pricing</h3>
<p class="italic mb-3">Until March 6</p>
</div>
<div data-aos="fade-up">
<p class="h5 font-black text-uppercase mb-2">Single
Student
</p>
<h4 class="display-1 text-yellow">$429</h4>
</div>
<div data-aos="fade-up">
<p class="h5 font-black text-uppercase mb-2">
Multi-Student Families
</p>
<h4 class="display-1 text-yellow position-relative">$379<span
style="position: absolute; top: 2px; font-size: 70%;">*</span>
</h4>
</div>
<div class="col-span-2 col-span-md-2 col-span-lg-1"
data-aos="fade-up">
<h3 class="h2 font-black text-slate mb-0">
Regular<br>Pricing</h3>
<p class="italic mb-3">Starting March 7</p>
</div>
<div data-aos="fade-up">
<p class="h5 font-black text-uppercase mb-2">Single
Student
</p>
<h4 class="display-1 text-yellow">$449</h4>
</div>
<div data-aos="fade-up">
<p class="h5 font-black text-uppercase mb-2">
Multi-Student Families
</p>
<h4 class="display-1 text-yellow position-relative">$399<span
style="position: absolute; top: 2px; font-size: 70%;">*</span>
</h4>
</div>
<div class="col-span-2 col-span-md-2 col-span-lg-1"
data-aos="fade-up">
<h3 class="h2 font-black text-slate mb-0">
We’re here to help</h3>
</div>
<div class="col-span-2" data-aos="fade-up">
<p>Whatever the barrier, we’d love to talk about it and see if we
can help. To apply for financial assistance, please <a
href="/workflows/927" target="_blank" class="text-white">fill
out the application.</a></p>
<p>If your student has a disability, or needs any additional
support, we’d love to try to accommodate them. Let us know about
your student’s needs on the registration form, and we’ll work with
you to give your student the best week ever. For more information,
you can email [email protected]</p>
</div>
</div>
<p class="px-5 px-sm-0 mb-0 text-center">*Multi-Student Family discount
will be
automatically
applied
upon
registration. Not applicable to financial assistance
recipients.</p>
</div>
</section>
<section id="give" class="position-relative bg-beige overflow-hidden">
<div class="fullscreen background-fixed background-center o-100"
style="background-image: url('/Themes/new/Assets/Images/christmas_texture1.png'); z-index: 1;">
</div>
<img
src="https://s3.amazonaws.com/ns.images/newspring/Gauntlet/2024/gauntlet_cutout_5.png"
alt="" class="hidden-xs hidden-sm hidden-md bring-forward" id="cutout_5"
data-aos="fade-left" data-aos-delay="300">
<img
src="https://s3.amazonaws.com/ns.images/newspring/Gauntlet/2024/gauntlet_cutout_6.png"
alt="" class="hidden-xs hidden-sm hidden-md bring-forward" id="cutout_6"
data-aos="fade-right" data-aos-delay="300">
<div class="text-constrained mx-auto text-center px-lg-7 px-xl-8">
<h2 class="display-2 text-center mb-lg-6">Give to Gauntlet</h2>
<p>Gauntlet would not be possible without the generous support of
our
NewSpring family. In fact, <span class="text-orange">the cost of
every single student ticket is discounted – even those who pay
full price.</span> We supplement the cost of youth camp because
we
believe in the next generation, and we want to provide them a
space
to encounter God in a unique way this summer.</p>
<img
src="https://s3.amazonaws.com/ns.images/newspring/Gauntlet/2024/gauntlet_cutout_4.png"
id="cutout_4" class="hidden-lg hidden-xl" alt="">
<div class="d-grid grid-cols-6 gap-x-5 text-left">
<div class="col-span-6" data-aos="fade-up">
<h3 class="h5 font-black text-secondary">Total Given</h3>
<h4 class="display-2">
$<span data-purecounter-start="0" data-purecounter-end="338992.81"
data-purecounter-decimals="2" class="purecounter"> 0 </span>
</h4>
</div>
<div class="col-span-3" data-aos="fade-up">
<h3 class="h5 font-black text-secondary">Unique Givers</h3>
<h4 class="display-3">
<span data-purecounter-start="0" data-purecounter-end="225"
class="purecounter"> 0 </span>
</h4>
</div>
<div class="col-span-3" data-aos="fade-up">
<h3 class="h5 font-black text-secondary">Days Left</h3>
<h4 class="display-3">
<span data-purecounter-start="0" data-purecounter-end="121"
class="purecounter"> 0 </span>
</h4>
</div>
</div>
<p class="mb-0 bring-forward"><a href="#" class="btn btn-primary">Give
Now</a></p>
</div>
</section>
<section id="serve"
class="position-relative bg-secondary text-white overflow-hidden">
<div class="page-constrained mx-auto">
<div class="d-grid grid-cols-lg-10">
<div class="col-span-lg-6 bring-forward">
<div class="text-constrained mx-auto pr-9 pr-lg-0">
<h2 class="display-2">Serve at Gauntlet</h2>
<p>
Not only is Gauntlet a life-changing week for students, but it’s
also a faith-building week for volunteers! Our Group Leaders and
Support Volunteers are essential to creating a Gauntlet
experience
students love year after year.
</p>
<p>We always have a 4-to-1 student-to-volunteer ratio
because we
care about students and want every student to have a fun and
safe
week. If you're interested in serving at Gauntlet as a Group
Leader, apply below.</p>
<p><a href="#" class="btn btn-primary">Lead
a Group</a></p>
<p class="mb-0"><small>We’re currently focusing on filling group
leader roles,
but if you’re interested in being a Support Volunteer, you can
email <a href="#" class="text-white">[email protected]</a>
or talk to your local Fuse
Director.</small></p>
</div>
</div>
<div class="col-span-lg-4">
<img
src="https://s3.amazonaws.com/ns.images/newspring/Gauntlet/2024/gauntlet_cutout_2.png"
alt="" id="cutout_2" data-aos="fade-left" data-aos-delay="300">
</div>
</div>
</div>
</div>
</section>
<section id="pray" class="position-relative bg-beige">
<div class="fullscreen background-fixed background-center o-90"
style="background-image: url('/Themes/new/Assets/Images/christmas_texture1.png'); z-index: 1;">
</div>
<div class="page-constrained mx-auto">
<div class="d-grid grid-cols-lg-2 gap-6 gap-md-8">
<div>
<h2 class="display-2 text-center text-lg-left">Pray for Gauntlet</h2>
<p>Prayer is one of our most powerful tools as we prepare for and
send
students to Gauntlet. Would you partner with us in praying for
students, leaders, and volunteers this year? We know that God
wants
to meet with each and every student at Gauntlet, and we can’t
wait
to ask Him to do what only He can do in their lives.</p>
<p class="mb-0">In the days ahead, we’ll post a sign-up link to 24/7
prayer to
cover the entire week of Gauntlet. We would love for you to join
us
in praying hour by hour during our summer camp!</p>
<p class="mb-0 hidden"><a href="#" class="btn btn-primary">Sign Up to
Pray</a>
</p>
</div>
<div>
<div class="panel-group d-grid grid-cols-1 gap-3 bring-forward mb-0"
id="pray_accordion" role="tablist" aria-multiselectable="true">
<div
class="panel panel-default bg-transparent border-none shadow-none"
data-aos="fade-up">
<div class="panel-heading p-0 bg-transparent mb-3" role="tab"
id="headingOne">
<h4 class="h3 font-black mb-0">
<a role="button" data-toggle="collapse"
data-parent="#pray_accordion" href="#pray_1"
class="text-decoration-none text-secondary d-flex justify-content-between align-items-center"
aria-expanded="true" aria-controls="pray_1">
Salvation
<i
class="fa-regular fa-circle-plus rotate-45 text-slate ml-1"></i>
</a>
</h4>
</div>
<div id="pray_1" class="panel-collapse collapse text-left"
role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body p-0 border-none">
<p>Abba Father, may every student at the Gauntlet know and
receive
Jesus Christ as their Lord and Savior! Bless each student
with
the full assurance of their salvation!</p>
<p>John 1:12 But to all who did receive him, who believed in
his
name, he gave the right to become children of God.</p>
</div>
</div>
</div>
<div
class="panel panel-default bg-transparent border-none shadow-none"
data-aos="fade-up">
<div class="panel-heading p-0 bg-transparent mb-3" role="tab"
id="headingTwo">
<h4 class="h3 font-black mb-0">
<a role="button" data-toggle="collapse"
data-parent="#pray_accordion" href="#pray_2"
class="text-decoration-none text-secondary d-flex justify-content-between align-items-center"
aria-expanded="true" aria-controls="pray_2">
Friendship with God
<i
class="fa-regular fa-circle-plus rotate-45 text-slate ml-1"></i>
</a>
</h4>
</div>
<div id="pray_2" class="panel-collapse collapse text-left"
role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body p-0 border-none">
<p>Abba Father, may every student and volunteer hear Your
voice
for themselves and be drawn into a supernatural, everyday,
and
lifelong friendship with Jesus through the power of the Holy
Spirit! Fill every student and volunteer fresh with your
Holy
Spirit!</p>
<p>1 Samuel 3:10 And the Lord came and stood, calling as at
other
times, “Samuel! Samuel!” And Samuel said, “Speak, for your
servant hears.”</p>
<p>John 15:15 No longer do I call you servants, for the
servant
does not know what his master is doing; but I have called
you
friends, for all that I have heard from my Father I have
made
known to you.</p>
</div>
</div>
</div>
<div
class="panel panel-default bg-transparent border-none shadow-none"
data-aos="fade-up">
<div class="panel-heading p-0 bg-transparent mb-3" role="tab"
id="headingThree">
<h4 class="h3 font-black mb-0">
<a role="button" data-toggle="collapse"
data-parent="#pray_accordion" href="#pray_3"
class="text-decoration-none text-secondary d-flex justify-content-between align-items-center"
aria-expanded="true" aria-controls="pray_3">
Relationships
<i
class="fa-regular fa-circle-plus rotate-45 text-slate ml-1"></i>
</a>
</h4>
</div>
<div id="pray_3" class="panel-collapse collapse text-left"
role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body p-0 border-none">
<p>Abba Father, may every student walk away from Gauntlet with
a
set of lifelong friends. Let true brotherhood and sisterhood
emerge for every student. Grant grace for friendship with
Christ
and others!</p>
<p>John 15:12-13 This is my commandment, that you love one
another
as I have loved you. Greater love has no one than this, that
someone lay down his life for his friends.</p>
</div>
</div>
</div>
<div
class="panel panel-default bg-transparent border-none shadow-none"
data-aos="fade-up">
<div class="panel-heading p-0 bg-transparent mb-3" role="tab"
id="headingFour">
<h4 class="h3 font-black mb-0">
<a role="button" data-toggle="collapse"
data-parent="#pray_accordion" href="#pray_4"
class="text-decoration-none text-secondary d-flex justify-content-between align-items-center"
aria-expanded="true" aria-controls="pray_4">
Fun
<i
class="fa-regular fa-circle-plus rotate-45 text-slate ml-1"></i>
</a>
</h4>
</div>
<div id="pray_4" class="panel-collapse collapse text-left"
role="tabpanel" aria-labelledby="headingFour">
<div class="panel-body p-0 border-none">
<p>Abba Father, may every student have the best week of their
lives at Gauntlet! Let the joy of the Holy Spirit flood the
atmosphere of every session, activity, mealtime, and room.
</p>
<p>Psalm 16:11 You make known to me the path of life; in your
presence there is fullness of joy; at your right hand are
pleasures forevermore.</p>
</div>
</div>
</div>
<div
class="panel panel-default bg-transparent border-none shadow-none"
data-aos="fade-up">
<div class="panel-heading p-0 bg-transparent mb-3" role="tab"
id="headingFive">
<h4 class="h3 font-black mb-0">
<a role="button" data-toggle="collapse"
data-parent="#pray_accordion" href="#pray_5"
class="text-decoration-none text-secondary d-flex justify-content-between align-items-center"
aria-expanded="true" aria-controls="pray_5">
Safety
<i
class="fa-regular fa-circle-plus rotate-45 text-slate ml-1"></i>
</a>
</h4>
</div>
<div id="pray_5" class="panel-collapse collapse text-left"
role="tabpanel" aria-labelledby="headingFive">
<div class="panel-body p-0 border-none">
<p>Abba Father, surround every student and volunteer with your
continual protection and peace - physically, emotionally and
spiritually! Surround them with favor like a shield through
every hour of camp.</p>
<p>Psalm 91:9-10 Because you have made the Lord your dwelling
place— the Most High, who is my refuge — no evil shall be
allowed to befall you, no plague come near your tent.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="parents" class="position-relative bg-black text-beige">
<div class="fullscreen background-fixed background-center o-50"
style="background-image: url('/Themes/new/Assets/Images/christmas_texture1.png'); z-index: 1;">
</div>
<div class="d-grid grid-cols-1 grid-cols-lg-9 gap-y-5 gap-x-8">
<div class="col-span-lg-5">
<h2 class="display-2">For Parents</h2>
<p>As we get closer to Gauntlet, every campus will hold parent
meetings.
These meetings are designed to answer all your questions and equip
you
with everything you and your student(s) need to know to have a great
week. We encourage all parents/guardians to make all efforts to
attend
the scheduled parent meeting.</p>
<p>We’ll cover everything from what to pack to where to park – you
don’t
want to miss this meeting. Plus, it’s a great chance to connect with
the Fuse staff, who will be hanging out with your student(s) in
Clemson. If you are unable to attend, please contact your local Fuse
Director.</p>
<p class="bring-forward mb-0"><a href="#" class="btn btn-primary">Sign
Up for
Updates</a></p>
</div>
<div class="col-span-lg-4">
{{ Campus List }}
</div>
</div>
</section>
<section id="faqs" class="position-relative bg-beige">
<div class="fullscreen background-fixed background-center o-40"
style="background-image: url('/Themes/new/Assets/Images/christmas_texture1.png'); z-index: 1;">
</div>
<div class="d-grid grid-cols-1 grid-cols-lg-9 gap-y-5 gap-x-8">
<div class="col-span-lg-4">
<h2 class="display-3">Frequently Asked Questions</h2>
<div class="rounded-lg overflow-hidden bring-forward">
<script src="https://fast.wistia.com/embed/medias/onh6y5h5c3.jsonp"
async></script>
<script src="https://fast.wistia.com/assets/external/E-v1.js"
async></script>
<div class="wistia_responsive_padding"
style="padding:56.25% 0 0 0;position:relative;">
<div class="wistia_responsive_wrapper"
style="height:100%;left:0;position:absolute;top:0;width:100%;">
<span
class="wistia_embed wistia_async_onh6y5h5c3 popover=true playerColor=f05421 videoFoam=true"
style="display:inline-block;height:100%;position:relative;width:100%"> </span>
</div>
</div>
</div>
<div class="hidden">
<span
class="wistia_embed wistia_async_onh6y5h5c3 popover=true popoverContent=link playerColor=f05421 wistia_embed_initialized bring-forward d-inline-block"
id="wistia-onh6y5h5c3-1">
<div id="wistia_29.thumb_container" class="wistia_click_to_play"
data-aos="fade-up">
<a href="#" class="btn btn-primary">Play
Video <i class="fa-solid fa-play ml-1"></i></a>
</div>
</span>
<script src="https://fast.wistia.com/embed/medias/onh6y5h5c3.jsonp"
async=""></script>
<script src="https://fast.wistia.com/assets/external/E-v1.js"
async=""></script>
</div>
</div>
<div class="col-span-lg-5">
<div class="panel-group d-grid grid-cols-1 gap-3 bring-forward mb-0"
id="faq_accordion" role="tablist" aria-multiselectable="true">
<div id="assistance"
class="panel panel-default bg-transparent border-none shadow-none"
data-aos="fade-up">
<div class="panel-heading p-0 bg-transparent mb-3" role="tab"
id="headingOne">
<h4 class=" font-black mb-0">
<a role="button" data-toggle="collapse"
data-parent="#faq_accordion" href="#faq_1"
class="text-decoration-none text-secondary d-flex justify-content-between align-items-center"
aria-expanded="true" aria-controls="faq_1">
What if I can’t afford the ticket price?
<i
class="fa-regular fa-circle-plus rotate-45 text-slate ml-1"></i>
</a>
</h4>
</div>
<div id="faq_1" class="panel-collapse collapse text-left in"
role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body p-0 border-none">
<p class="mb-0">Whatever the barrier, we’d love to talk about
it and see if we can help. To apply for financial
assistance, please fill out this form, and a campus staff
member will be in touch!
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="hidden">
<div class="bring-forward text-constrained mx-auto mb-6 mb-md-7">
<h2 class="display-3 text-center">Frequently Asked Questions</h2>
</div>
<div class="text-constrained mx-auto">
<div class="panel-group bring-forward" id="faq_accordion" role="tablist"
aria-multiselectable="true">
<div
class="panel panel-default bg-transparent border-none shadow-none"
data-aos="fade-up">
<div class="panel-heading p-0 bg-transparent" role="tab"
id="headingOne">
<h4 class="font-black">
<a role="button" data-toggle="collapse"
data-parent="#faq_accordion" href="#faq_1"
class="text-decoration-none text-primary d-flex justify-content-between align-items-center"
aria-expanded="true" aria-controls="faq_1">
Maturity
<i
class="fa-regular fa-circle-plus rotate-45 fa-sm text-black"></i>
</a>
</h4>
</div>
<div id="faq_1" class="panel-collapse collapse text-left in"
role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body p-0 border-none">
<p>The best Gauntlet volunteers are mature Christians,
like the ones Paul describes in 1 Timothy 3:1-7. In
addition, you’ll want to genuinely desire to invest in
students because you will spend a lot of time with the
next generation.
</p>
</div>
</div>
</div>
<div
class="panel panel-default bg-transparent border-none shadow-none"
data-aos="fade-up">
<div class="panel-heading p-0 bg-transparent" role="tab"
id="headingOne">
<h4 class="font-black">
<a role="button" data-toggle="collapse"
data-parent="#faq_accordion" href="#faq_2"
class="text-decoration-none text-primary d-flex justify-content-between align-items-center"
aria-expanded="true" aria-controls="faq_2">
Flexibility
<i class="fa-regular fa-circle-plus fa-sm text-black"></i>
</a>
</h4>
</div>
<div id="faq_2" class="panel-collapse collapse text-left"
role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body p-0 border-none">
<p>Other qualities we look for in group leaders are
someone who isn’t easily flustered, someone who will
communicate well with students’ parents, someone who
will be flexible when plans change, and decisive when
students are at a stalemate.</p>
</div>
</div>
</div>
<div
class="panel panel-default bg-transparent border-none shadow-none"
data-aos="fade-up">
<div class="panel-heading p-0 bg-transparent" role="tab"
id="headingOne">
<h4 class="font-black">
<a role="button" data-toggle="collapse"
data-parent="#faq_accordion" href="#faq_3"
class="text-decoration-none text-primary d-flex justify-content-between align-items-center"
aria-expanded="true" aria-controls="faq_3">
Responsibility
<i class="fa-regular fa-circle-plus fa-sm text-black"></i>
</a>
</h4>
</div>
<div id="faq_3" class="panel-collapse collapse text-left"
role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body p-0 border-none">
<p>Finally, great group leaders know it’s a big deal for
parents to trust us with their students. They don’t take
that responsibility lightly, and they work hard to make
sure students have fun and stay safe.</p>
</div>
</div>
</div>