-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjobs.html
More file actions
479 lines (427 loc) · 29.5 KB
/
jobs.html
File metadata and controls
479 lines (427 loc) · 29.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
<!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>Jobs | NewSpring.cc</title>
<!-- 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="./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>
<!-- SmoothScroll -->
<script src="https://cdn.jsdelivr.net/gh/cferdinandi/smooth-scroll@15/dist/smooth-scroll.polyfills.min.js"></script>
<link rel="stylesheet" href="./Themes/new/Styles/bootstrap.css" />
<link rel="stylesheet" href="./Themes/new/Styles/theme.css" />
</head>
<body>
<section class="p-0 w-100 bg-white d-grid grid-cols-2 justify-content-between align-content-center drop-shadow">
<div class="d-grid align-content-center">
<a href="/" class="px-3 mb-0">
<img src="./Themes/new/Assets/SVG/logo.svg" alt="NewSpring Church Logo" style="width: 160px; max-width: 160px" />
</a>
</div>
<div class="overflow-hidden text-right">
<a href="#" class="d-inline-block no-underline p-3 p-md-3 text-gray-darker border-solid border-l border-gray-lighter">
<i class="fa-light fa-lg fa-bars"></i>
</a>
<span class="hidden-xs hidden-sm">
<a href="#" class="d-inline-block no-underline p-3 p-md-3 text-gray-darker border-solid border-l border-gray-lighter">
<i class="fa-light fa-lg fa-location-dot"></i>
</a>
<a href="#" class="d-inline-block no-underline p-3 p-md-3 text-gray-darker border-solid border-l border-gray-lighter">
<i class="fa-light fa-lg fa-magnifying-glass"></i>
</a>
</span>
<a href="#" class="d-inline-block no-underline p-3 p-md-3 text-gray-darker border-solid border-l border-gray-lighter">
<i class="fa-light fa-lg fa-circle-user"></i>
</a>
</div>
</section>
<div id="content">
<section class="position-relative bg-tertiary text-white d-flex justify-content-center align-content-end text-center flex-wrap py-7 py-md-8">
<div class="text-constrained height-max-content">
<h1 class="display-3">Join Our Team</h1>
<p class="mb-0"><a href="#openings" data-scroll class="btn btn-primary">View Job Openings</a></p>
</div>
</section>
<section class="hidden position-relative bg-tertiary text-white d-flex justify-content-center align-content-end text-center pt-10 pb-8 flex-wrap vh-xl-100" style="background-color: rgb(42,73,48);">
<div class="fullscreen background-cover background-center o-100" style="background-image: url('/Themes/new/Assets/Images/jobs_hero_2x1.jpg')"></div>
<div class="fullscreen o-100" style="background: rgb(42,73,48);
background: linear-gradient(180deg, rgba(42,73,48,0) 20%, rgba(42,73,48,1) 95%);"></div>
<div class="bring-forward text-constrained height-max-content">
<h1 class="display-3">Join Our Team</h1>
<p class="mb-0"><a href="#openings" data-scroll class="btn btn-primary drop-shadow">View Job Openings</a></p>
</div>
</section>
<section id="vision">
<div class="page-constrained mx-auto text-center px-lg-7">
<p class="pretitle">Our Vision</p>
<h2 class="display-3">We are a church that wants to see <span class="text-primary">everyone everywhere</span> in an <span class="text-primary">everyday relationship with Jesus.</span></h2>
</div>
<div class="text-constrained mx-auto text-center">
<p class="lead text-tertiary">If that's also something you desire, come join our team!</p>
<p>In 2020 we started down a 10-year path we call <a href="/2030">Vision 2030</a>. Until 2030, our vision is focused on three things: getting our current campuses in permanent homes, eliminating all of our debt (completed as of 2023), and planting ten churches that are not NewSpring campuses.</p>
<p class="mb-0"><a href="/about.html" data-scroll class="btn btn-primary">Learn More About Us</a></p>
</div>
</section>
<section class="bg-white p-0 pb-8 overflow-hidden">
<div class="hidden text-constrained mx-auto text-center px-4 mb-6">
<p class="pretitle text-primary">Testimonials</p>
<h2 class="display-3">Hear From Our Team</h2>
</div>
<div class="d-grid grid-cols-1 gap-y-6 gap-y-md-8">
<div class="d-grid grid-cols-12 gap-y-4 gap-y-sm-6 gap-x-md-6 gap-x-xl-7">
<div class="ratio-square col-span-11 col-span-md-6 col-span-xl-4" data-aos="fade-right">
<div class="position-relative ratio-square rounded-2x rounded-l-0 background-cover background-center" style="background-image: url('/Themes/new/Assets/Images/jobs_testimonials_maliek_1x1.jpg'); box-shadow: 20px 20px 0px #59747D;">
</div>
</div>
<div class="col-span-12 col-span-md-6 col-span-xl-5 d-flex align-items-center" data-aos="fade-left">
<div class="p-4 p-md-6 py-md-0">
<h3 class="h3">“I truly love the culture of understanding.</h3>
<p>Our job is pretty flexible, and I cannot possibly think of another place where my family truly comes first. Also, I love that I am not allowed to take myself too seriously, which makes for a fun working environment.”</p>
<p class="mb-0 text-gray"><span class="lead font-bold text-gray-darker" style="color: #59747D;">Maliek Burrell</span><br>Worship Leader</p>
</div>
</div>
</div>
<div class="d-grid grid-cols-12 gap-y-4 gap-y-sm-6 gap-x-md-6 gap-x-xl-7 rtl">
<div class="position-relative ratio-square col-span-11 col-span-md-6 col-span-xl-4" data-aos="fade-left">
<div class="ratio-square rounded-2x rounded-r-0 background-cover background-center" style="background-image: url('/Themes/new/Assets/Images/jobs_testimonials_kelsey_1x1.jpg'); box-shadow: -20px 20px 0px #67B3CD;">
</div>
</div>
<div class="col-span-12 col-span-md-6 col-span-xl-5 d-flex align-items-center ltr" data-aos="fade-right">
<div class="p-4 p-md-6 py-md-0">
<h3 class="h3">“I have loved working at NewSpring because it feels like a genuine team.</h3>
<p>Everyone is friendly, generous, and wants to see each other win. Because leaders have always cared about and invested in my growth both at work and at home, I am so much wiser and all-around healthier than I was before working here.”</p>
<p class="mb-0 text-gray"><span class="lead font-bold text-gray-darker" style="color: #67B3CD;">Kelsey Estrada</span><br>KidSpring Art Director</p>
</div>
</div>
</div>
<div class="d-grid grid-cols-12 gap-y-4 gap-y-sm-6 gap-x-md-6 gap-x-xl-7">
<div class="position-relative ratio-square col-span-11 col-span-md-6 col-span-xl-4" data-aos="fade-right">
<div class="ratio-square rounded-2x rounded-l-0 background-cover background-center" style="background-image: url('/Themes/new/Assets/Images/jobs_testimonials_tom_1x1.jpg'); box-shadow: 20px 20px 0px #263240;">
</div>
</div>
<div class="col-span-12 col-span-md-6 col-span-xl-5 d-flex align-items-center" data-aos="fade-left">
<div class="p-4 p-md-6 py-md-0">
<h3 class="h3">“I've spent many years of my life working at NewSpring. They've been—without a doubt—the best years of my life!</h3>
<p>It's an incredible environment where the people you work for and serve alongside care about you, your family, and your walk with God. Each day my tires hit the parking lot, I'm excited to be here! I can't imagine a better place to invest my life building the kingdom of God!”</p>
<p class="mb-0 text-gray"><span class="lead font-bold text-gray-darker" style="color: #263240;">Tom Haren</span><br>Outreach Coordinator</p>
</div>
</div>
</div>
<div class="d-grid grid-cols-12 gap-y-4 gap-y-sm-6 gap-x-md-6 gap-x-xl-7 rtl">
<div class="position-relative ratio-square col-span-11 col-span-md-6 col-span-xl-4" data-aos="fade-left">
<div class="ratio-square rounded-2x rounded-r-0 background-cover background-center" style="background-image: url('/Themes/new/Assets/Images/jobs_testimonials_jacob_1x1.jpg'); box-shadow: -20px 20px 0px #297F92;">
</div>
</div>
<div class="col-span-12 col-span-md-6 col-span-xl-5 d-flex align-items-center ltr" data-aos="fade-right">
<div class="p-4 p-md-6 py-md-0">
<h3 class="h3">“My wife and baby girls are just as loved and seen by NewSpring as I am as an employee.</h3>
<p>NewSpring believes that the health and well-being of my family is a huge part of me being successful in ministry and makes every accommodation necessary to keep my home Christ-centered and joyful. You're not going to find a more family-oriented and healthy work environment!”</p>
<p class="mb-0 text-gray"><span class="lead font-bold text-gray-darker" style="color: #297F92;">Jacob Brown</span><br>Safety Director</p>
</div>
</div>
</div>
</div>
</section>
<section id="openings" class="bg-gray-lighter">
<div class="text-constrained mx-auto text-center">
<h2 class="display-3">Job Openings</h2>
<p class="lead">NewSpring is one church with 14 campuses across South Carolina, so be sure to <span class="text-primary">note the location of each opening.</span></p>
</div>
<div class="page-constrained mx-auto d-grid grid-cols-1 grid-cols-md-2 grid-cols-xl-3 my-5 my-md-6 gap-y-2 gap-x-sm-3 gap-y-md-3">
<div>
<div class="bg-white text-gray-darker p-3 pb-2 rounded-lg" data-aos="fade-up">
<h3 class="h6 tracking-tighter mb-0"><a href="/jobs-item.html" class="text-decoration-none text-gray-darker">KidSpring Director</a></h3>
<p class="mb-1 font-sans font-bold text-uppercase text-gray"><a href="https://newspring.cc/locations/myrtle-beach" class="text-decoration-none"><small>Myrtle Beach, SC</small></a></p>
<p class="mb-0"><a href="/jobs-item.html" class="font-sans font-medium text-decoration-none tracking-tight">View Details <i class="fa-solid fa-xs fa-chevron-right"></i></a></p>
</div>
</div>
<div>
<div class="bg-white text-gray-darker p-3 pb-2 rounded-lg" data-aos="fade-up">
<h3 class="h6 tracking-tighter mb-0"><a href="/jobs-item.html" class="text-decoration-none text-gray-darker">Discipleship Coordinator</a></h3>
<p class="mb-1 font-sans font-bold text-uppercase text-gray"><a href="https://newspring.cc/locations/anderson" class="text-decoration-none"><small>Anderson, SC</small></a></p>
<p class="mb-0"><a href="/jobs-item.html" class="font-sans font-medium text-decoration-none tracking-tight">View Details <i class="fa-solid fa-xs fa-chevron-right"></i></a></p>
</div>
</div>
<div>
<div class="bg-white text-gray-darker p-3 pb-2 rounded-lg" data-aos="fade-up">
<h3 class="h6 tracking-tighter mb-0"><a href="/jobs-item.html" class="text-decoration-none text-gray-darker">Guest Services Coordinator</a></h3>
<p class="mb-1 font-sans font-bold text-uppercase text-gray"><a href="https://newspring.cc/locations/anderson" class="text-decoration-none"><small>Anderson, SC</small></a></p>
<p class="mb-0"><a href="/jobs-item.html" class="font-sans font-medium text-decoration-none tracking-tight">View Details <i class="fa-solid fa-xs fa-chevron-right"></i></a></p>
</div>
</div>
<div>
<div class="bg-white text-gray-darker p-3 pb-2 rounded-lg" data-aos="fade-up">
<h3 class="h6 tracking-tighter mb-0"><a href="/jobs-item.html" class="text-decoration-none text-gray-darker">KidSpring Coordinator</a> <span class="no-wrap">(Part-Time)</span></h3>
<p class="mb-1 font-sans font-bold text-uppercase text-gray"><a href="https://newspring.cc/locations/hilton-head" class="text-decoration-none"><small>Hilton Head, SC</small></a></p>
<p class="mb-0"><a href="/jobs-item.html" class="font-sans font-medium text-decoration-none tracking-tight">View Details <i class="fa-solid fa-xs fa-chevron-right"></i></a></p>
</div>
</div>
<div>
<div class="bg-white text-gray-darker p-3 pb-2 rounded-lg" data-aos="fade-up">
<h3 class="h6 tracking-tighter mb-0"><a href="/jobs-item.html" class="text-decoration-none text-gray-darker">Worship Leader</a></h3>
<p class="mb-1 font-sans font-bold text-uppercase text-gray"><a href="https://newspring.cc/locations/columbia" class="text-decoration-none"><small>Columbia, SC</small></a></p>
<p class="mb-0"><a href="/jobs-item.html" class="font-sans font-medium text-decoration-none tracking-tight">View Details <i class="fa-solid fa-xs fa-chevron-right"></i></a></p>
</div>
</div>
<div>
<div class="bg-white text-gray-darker p-3 pb-2 rounded-lg" data-aos="fade-up">
<h3 class="h6 tracking-tighter mb-0"><a href="/jobs-item.html" class="text-decoration-none text-gray-darker">Fuse Director</a></h3>
<p class="mb-1 font-sans font-bold text-uppercase text-gray"><a href="https://newspring.cc/locations/columbia" class="text-decoration-none"><small>Columbia, SC</small></a></p>
<p class="mb-0"><a href="/jobs-item.html" class="font-sans font-medium text-decoration-none tracking-tight">View Details <i class="fa-solid fa-xs fa-chevron-right"></i></a></p>
</div>
</div>
<div>
<div class="bg-white text-gray-darker p-3 pb-2 rounded-lg" data-aos="fade-up">
<h3 class="h6 tracking-tighter mb-0"><a href="/jobs-item.html" class="text-decoration-none text-gray-darker">Worship Leader</a></h3>
<p class="mb-1 font-sans font-bold text-uppercase text-gray"><a href="https://newspring.cc/locations/northeast-columbia" class="text-decoration-none"><small>Northeast Columbia, SC</small></a></p>
<p class="mb-0"><a href="/jobs-item.html" class="font-sans font-medium text-decoration-none tracking-tight">View Details <i class="fa-solid fa-xs fa-chevron-right"></i></a></p>
</div>
</div>
<div>
<div class="bg-white text-gray-darker p-3 pb-2 rounded-lg" data-aos="fade-up">
<h3 class="h6 tracking-tighter mb-0"><a href="/jobs-item.html" class="text-decoration-none text-gray-darker">Worship Leader</a></h3>
<p class="mb-1 font-sans font-bold text-uppercase text-gray"><a href="https://newspring.cc/locations/myrtle-beach" class="text-decoration-none"><small>Myrtle Beach, SC</small></a></p>
<p class="mb-0"><a href="/jobs-item.html" class="font-sans font-medium text-decoration-none tracking-tight">View Details <i class="fa-solid fa-xs fa-chevron-right"></i></a></p>
</div>
</div>
<div>
<div class="bg-white text-gray-darker p-3 pb-2 rounded-lg" data-aos="fade-up">
<h3 class="h6 tracking-tighter mb-0"><a href="/jobs-item.html" class="text-decoration-none text-gray-darker">Production Coordinator</a></h3>
<p class="mb-1 font-sans font-bold text-uppercase text-gray"><a href="https://newspring.cc/locations/spartanburg" class="text-decoration-none"><small>Spartanburg, SC</small></a></p>
<p class="mb-0"><a href="/jobs-item.html" class="font-sans font-medium text-decoration-none tracking-tight">View Details <i class="fa-solid fa-xs fa-chevron-right"></i></a></p>
</div>
</div>
</div>
<div class="text-constrained mx-auto text-center">
<p>Don't see what you were looking for?</p>
<p class="mb-0"><a href="https://newspring.cc/workflows/510?CommunicationList=394b38d3-da36-462c-94cc-764473c916cc" data-scroll class="btn btn-primary">Subscribe to Job Alerts</a></p>
</div>
</section>
<section id="process" class="bg-gray-darker text-white px-sm-4">
<div class="text-constrained mx-auto text-center mb-md-7">
<p class="pretitle text-primary">Hiring Process</p>
<h2 class="display-3">God made you and uniquely gifted you.</h2>
<p class="lead">Our hiring process is designed to discern whether the role you’re applying for is the right fit right now.</p>
<p>We know your life and your time is valuable. So, if at any point in the process, it’s clear that the job you’re applying for isn’t the best fit, we’ll be in touch. You should also feel the freedom to email us at <a href="mailto:[email protected]">[email protected]</a>.</p>
</div>
<div id="timeline" class="page-constrained mx-auto timeline my-6 my-md-7 px-1 px-sm-6">
<div class="timeline--item d-grid grid-cols-1 grid-cols-md-2 align-items-center">
<div class="py-4 py-md-0 pl-5 pl-sm-6 pl-md-0 pr-md-6 pr-lg-7 text-md-right">
<i class="fa-thin text-primary fa-2x fa-file-lines mb-2"></i>
<h3 class="h5 mb-1">Submit<br>Application</h3>
<p class="mb-0">Our team will review it to see if your skills and experience fit this role.</p>
</div>
</div>
<div class="timeline--item d-grid grid-cols-1 grid-cols-md-2 align-items-center">
<div class="py-4 py-md-0 pl-5 pl-sm-6 pl-md-6 pl-lg-7 col-start-md-2">
<i class="fa-thin fa-fw text-primary fa-2x fa-messages mb-2"></i>
<h3 class="h5 mb-1">Let's Talk</h3>
<p class="mb-0">The hiring manager will schedule a time to talk via phone or video to get to know you better. They’ll want to hear how you met Jesus and what drew you to this role.</p>
</div>
</div>
<div class="timeline--item d-grid grid-cols-1 grid-cols-md-2 align-items-center">
<div class="py-4 py-md-0 pl-5 pl-sm-6 pl-md-0 pr-md-6 pr-lg-7 text-md-right">
<i class="fa-thin fa-fw text-primary fa-2x fa-paintbrush-pencil mb-2"></i>
<h3 class="h5 mb-1">Assessing<br>Skills & Gifting</h3>
<p class="mb-0">We use several tools to help discern whether ministry in this context will be the best fit for you.</p>
</div>
</div>
<div class="timeline--item d-grid grid-cols-1 grid-cols-md-2 align-items-center">
<div class="py-4 py-md-0 pl-5 pl-sm-6 pl-md-6 pl-lg-7 col-start-md-2">
<i class="fa-thin fa-fw text-primary fa-2x fa-people-group mb-2"></i>
<h3 class="h5 mb-1">Meet The Team</h3>
<p class="mb-0">We do everything in team, so it’s important to get to know the people you’d be working with.</p>
</div>
</div>
<div class="timeline--item d-grid grid-cols-1 grid-cols-md-2 align-items-center">
<div class="py-4 py-md-0 pl-5 pl-sm-6 pl-md-0 pr-md-6 pr-lg-7 text-md-right">
<i class="fa-thin fa-fw text-primary fa-2x fa-handshake mb-2"></i>
<h3 class="h5 mb-1">Interview</h3>
<p>These guys have great discernment, and they ask great questions. They’ll also be praying through whether this staff role is the right fit for you.</p>
</div>
</div>
<div class="timeline--item d-grid grid-cols-1 grid-cols-md-2 align-items-center">
<div class="py-4 py-md-0 pl-5 pl-sm-6 pl-md-6 pl-lg-7 col-start-md-2">
<i class="fa-thin fa-fw text-primary fa-2x fa-envelope-open-text mb-2"></i>
<h3 class="h5 mb-1">Offer Letter</h3>
<p class="mb-0">If everything is a yes up to this point, we’ll send you an offer with salary and benefits in writing to pray through. At that point, you’ve got our yes. The question is whether we have yours!</p>
</div>
</div>
</div>
<div class="text-constrained mx-auto text-center">
<p class="mb-0"><a href="#openings" data-scroll class="btn btn-primary">View Job Openings</a></p>
</div>
</section>
<section id="benefits" class="bg-white">
<div class="text-constrained mx-auto text-center">
<p class="pretitle text-primary">Benefits</p>
<h2 class="display-3">We truly care about our staff and their families!</h2>
<p>NewSpring staff members have a variety of financial, personal, developmental, and health benefits available. Some of these perks include:</p>
</div>
<div class="page-constrained mx-auto d-grid grid-cols-1 grid-cols-md-2 gap-y-4 gap-x-sm-7 my-6 my-md-7 text-center text-md-left">
<div data-aos="fade-up">
<i class="fa-thin fa-3x fa-fw fa-briefcase-medical text-primary mb-2"></i>
<h3 class="h5">Health Insurance</h3>
<p>You and your family’s health are covered on day one.</p>
</div>
<div data-aos="fade-up">
<i class="fa-thin fa-3x fa-fw fa-piggy-bank text-primary mb-2"></i>
<h3 class="h5">403b Retirement Plan</h3>
<p>We match up to 4% of your investment.</p>
</div>
<div data-aos="fade-up">
<i class="fa-thin fa-3x fa-fw fa-heart-pulse text-secondary mb-2"></i>
<h3 class="h5">Long Term/Life Insurance</h3>
<p>We cover 100%.</p>
</div>
<div data-aos="fade-up">
<i class="fa-thin fa-3x fa-fw fa-island-tropical text-secondary mb-2"></i>
<h3 class="h5">Paid Time Off</h3>
<p>We want you to win at home, too!</p>
</div>
<div data-aos="fade-up">
<i class="fa-thin fa-3x fa-fw fa-money-bill-1-wave text-info mb-2"></i>
<h3 class="h5 mb-0">Free Membership to Ramsey+</h3>
<p class="lead"><small>(with EveryDollar+ access)</small></p>
<p>Track your financial progress and plan for the future.</p>
</div>
<div data-aos="fade-up">
<i class="fa-thin fa-3x fa-fw fa-book-open-reader text-info mb-2"></i>
<h3 class="h5">Leadership Development Programs</h3>
<p>We care about who you are and who you are becoming.</p>
</div>
<div data-aos="fade-up">
<i class="fa-thin fa-3x fa-fw fa-mountains text-warning mb-2"></i>
<h3 class="h5">Sabbatical Program</h3>
<p>We follow the biblical rhythm of work and rest, offering a three-week sabbatical every seventh year of ministry.</p>
</div>
<div data-aos="fade-up">
<i class="fa-thin fa-3x fa-fw fa-graduation-cap text-warning mb-2"></i>
<h3 class="h5 mb-0">Opportunity to Attend Seminary</h3>
<p class="lead"><small>At Southeastern Baptist Theological Seminary</small></p>
<p>We’re happy to encourage your continued education.</p>
</div>
<div data-aos="fade-up">
<i class="fa-thin fa-3x fa-fw fa-heart text-danger mb-2"></i>
<h3 class="h5 mb-0">Counseling or Coaching</h3>
<p class="lead"><small>With Full Strength Network</small></p>
<p>We cover 12 sessions per year; whether you need healing from the past or equipping for the future.</p>
</div>
<div data-aos="fade-up">
<i class="fa-thin fa-3x fa-fw fa-face-smile-hearts text-danger mb-2"></i>
<h3 class="h5">Work-Life Balance</h3>
<p>Ministry is a way of life, but we do our best to maintain a five day work week.</p>
</div>
</div>
<div class="text-constrained mx-auto text-center">
<p class="mb-0"><a href="#openings" data-scroll class="btn btn-primary">View Job Openings</a></p>
</div>
</section>
<section id="internships" class="position-relative pt-12 py-md-8 py-lg-9 py-xl-10 text-white" style="background-color: rgba(20,120,140, 1)">
<div
class="position-absolute top-0 right-0 left-0 bottom-50 bottom-md-0 right-md-30 background-cover background-center background-md-right"
style="
background-image: url('/Themes/new/Assets/Images/jobs_internshipsad_2x1_1.jpg');
">
<div
class="hidden-md hidden-lg hidden-xl position-absolute top-0 right-0 bottom-0 left-0"
style="background: linear-gradient(10deg, rgba(20,120,140, 1) 20%, rgba(20,120,140, 0) 70%)"></div>
<div
class="hidden-xs hidden-sm position-absolute top-0 right-0 bottom-0 left-0"
style="background: linear-gradient(-70deg, rgba(20,120,140, 1) 45%, rgba(20,120,140, 0) 80%)"></div>
</div>
<div class="bring-forward page-constrained mx-auto d-grid grid-cols-md-2 ltr">
<div></div>
<div class="ltr">
<p class="pretitle text-white">Internships</p>
<h2>Is an Internship right for you?</h2>
<p>NewSpring Church has an internship program that provides meaningful hands-on experience with mentors who want to see you succeed. Our internships exist to build the person building the kingdom.</p>
<p class="mb-0 d-flex flex-column flex-sm-row gap-y-1 gap-x-1 gap-y-sm-0" data-aos="fade-up">
<a href="/internships" class="btn btn-primary drop-shadow">Learn More</a>
</p>
</div>
</div>
</section>
<section id="questions" class="text-center">
<div class="text-constrained mx-auto">
<h2>Have questions?</h2>
<p>We’d love to answer any questions you might have.</p>
<p class="mb-0"><a href="https://newspring.cc/workflows/800?Recipient=hello%40newspring.cc&ReturnUrl=https%3A%2F%2Fnewspring.cc%2Fabout&Subject=Question%20from%20Website" class="btn btn-primary">Contact Us</a></p>
</div>
</section>
</div>
<footer class="bg-gray-dark text-white px-4 py-7 px-md-7 py-md-8 text-center">
<div class="d-flex flex-column flex-md-row flex-wrap justify-content-between align-content-center">
<div data-aos="fade-up" class="w-100 w-md-auto height-max-content text-md-left">
<img src="./Themes/new/Assets/SVG/mark.svg" alt="NewSpring Church Logo" class="mb-3" style="width: 40px; max-width: 40px" />
<h6 class="font-black text-uppercase">NewSpring Church</h6>
<p>PO Box 1407<br />Anderson, SC 29622<br /><a href="#">(864) 965-9990</a></p>
<p class="font-sans font-medium">
<small
><a href="https://www.rockrms.com" class="text-white text-hover-white text-decoration-none" target="_blank"
>Built on
<span class="position-relative fa-layers fa-lg fa-fw" style="top: 3px">
<i class="fa-solid fa-circle" style="color: white" aria-hidden="true"></i>
<i class="fa-inverse fa-brands fa-rockrms" style="color: #ee7725; transform: scale(1.1)" data-fa-transform="shrink-6" aria-hidden="true"></i>
</span>
Rock RMS</a
></small
>
</p>
<p class="font-sans font-medium text-uppercase text-gray mb-0"><small>© 2023 NewSpring Church</small></p>
</div>
<div data-aos="fade-up" class="height-max-content text-md-right">
<ul class="list-unstyled font-sans font-medium">
<li><a href="#" class="text-decoration-none">Privacy Policy</a></li>
<li><a href="#" class="text-decoration-none">Terms of Use</a></li>
<li><a href="#" class="text-decoration-none">Reprinting & Reposting</a></li>
</ul>
<ul class="list-inline">
<li>
<a href="#" class="text-white">
<i class="fa-brands fa-xl fa-facebook-f"></i>
</a>
</li>
<li>
<a href="#" class="text-white">
<i class="fa-brands fa-xl fa-twitter"></i>
</a>
</li>
<li>
<a href="#" class="text-white">
<i class="fa-brands fa-xl fa-instagram"></i>
</a>
</li>
<li>
<a href="#" class="text-white">
<i class="fa-brands fa-xl fa-youtube"></i>
</a>
</li>
</ul>
</div>
</div>
</footer>
<script>
var scroll = new SmoothScroll('a[data-scroll]');
$(".collapse").collapse();
</script>
</body>
</html>