-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·875 lines (777 loc) · 44.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-W74787M');</script>
<!-- End Google Tag Manager -->
<!--====== Required meta tags ======-->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--====== Title ======-->
<title>Ghyll Royd School Bursary Programme</title>
<!--====== Favicon Icon ======-->
<link rel="shortcut icon" href="assets/images/logo.png" type="image/png">
<!--====== Bootstrap css ======-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!--====== Fontawesome css ======-->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!--====== Line Icons css ======-->
<link rel="stylesheet" href="assets/css/LineIcons.css">
<!--====== Animate css ======-->
<link rel="stylesheet" href="assets/css/animate.css">
<!--====== Aos css ======-->
<link rel="stylesheet" href="assets/css/aos.css">
<!--====== Slick css ======-->
<link rel="stylesheet" href="assets/css/slick.css">
<!--====== Default css ======-->
<link rel="stylesheet" href="assets/css/default.css">
<!--====== Style css ======-->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '513187513168639');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src=https://www.facebook.com/tr?id=513187513168639&ev=PageView&noscript=1
/></noscript>
<!-- End Facebook Pixel Code -->
</head>
<body>
<!--====== PRELOADER PART START ======-->
<div class="preloader">
<div class="loader_34">
<div class="ytp-spinner">
<div class="ytp-spinner-container">
<div class="ytp-spinner-rotator">
<div class="ytp-spinner-left">
<div class="ytp-spinner-circle"></div>
</div>
<div class="ytp-spinner-right">
<div class="ytp-spinner-circle"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--====== PRELOADER ENDS START ======-->
<!--====== HEADER PART START ======-->
<header id="home" class="header-area pt-100">
<div class="shape header-shape-one">
<img src="assets/images/banner/shape/shape-1.png" alt="shape">
</div> <!-- header shape one -->
<div class="shape header-shape-tow animation-one">
<img src="assets/images/banner/shape/shape-2.png" alt="shape">
</div> <!-- header shape tow -->
<div class="shape header-shape-three animation-one">
<img src="assets/images/banner/shape/shape-3.png" alt="shape">
</div> <!-- header shape three -->
<div class="shape header-shape-fore">
<img src="assets/images/banner/shape/shape-4.png" alt="shape">
</div> <!-- header shape three -->
<div class="navigation-bar">
<div class="container">
<div class="row">
<div class="col-lg-12">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="#">
<img src="assets/images/logo.png" alt="Logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
<span class="toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul id="nav" class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="page-scroll" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#about">About</a>
</li>
<li class="nav-item">
<a class="page-scroll" href="#contact">Contact</a>
</li>
</ul> <!-- navbar nav -->
</div>
<div class="navbar-btn ml-20 d-none d-sm-block">
<a class="main-btn" href="tel:01943 865575"><i class="lni-phone"></i>01943 865575</a>
</div>
</nav> <!-- navbar -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</div> <!-- navigation bar -->
<div class="header-banner d-flex align-items-center mt-5 mt-lg-0">
<div class="container">
<div class="row">
<div class="col-lg-7">
<div class="banner-content">
<h4 class="sub-title wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="1s">Ghyll Royd School</h4>
<h1 class="banner-title mt-10 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="2s"><span>Covid-19 Recovery</span> Scholarship Scheme</h1>
<a class="banner-contact mt-25 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="2.3s" href="#contact">Find Out More</a>
</div> <!-- banner content -->
</div>
<div class="col-lg-5">
<div class="contact-form">
<div class="section-title text-center pb-20">
<p class="mt-5 mt-lg-0">Fill in the form and we will be in touch.</p>
</div> <!-- section title -->
<form id="contact-form" action="https://formspree.io/f/xwkapaab" method="post" data-toggle="validator">
<div class="row">
<div class="col-md-6">
<div class="single-form form-group">
<input type="text" name="name" placeholder="Your Name" data-error="Name is required." required="required">
<div class="help-block with-errors"></div>
</div> <!-- single form -->
</div>
<div class="col-md-6">
<div class="single-form form-group">
<input type="text" name="phone" placeholder="Phone" data-error="Phone is required." required="required">
<div class="help-block with-errors"></div>
</div> <!-- single form -->
</div>
<div class="col-md-12">
<div class="single-form form-group">
<input type="email" name="email" placeholder="Your Email" data-error="Valid email is required." required="required">
<div class="help-block with-errors"></div>
</div> <!-- single form -->
</div>
<div class="col-md-12">
<div class="single-form form-group">
<textarea placeholder="Anything you would like to add?" name="message" data-error="Please,leave us a message."></textarea>
<div class="help-block with-errors"></div>
</div> <!-- single form -->
</div>
<p class="form-message"></p>
<div class="col-md-12">
<div class="single-form form-group text-center">
<button type="submit" class="main-btn">send message</button>
</div> <!-- single form -->
</div>
</div> <!-- row -->
</form>
</div> <!-- row -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</div> <!-- header banner -->
</header>
<!--====== HEADER PART ENDS ======-->
<!--====== ABOUT PART START ======-->
<section id="about" class="about-area pt-80 pb-130">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="about-image mt-50 clearfix">
<div class="single-image float-left">
<img src="assets/images/about/violin-lesson.jpeg" alt="Creative Students">
</div> <!-- single image -->
<div class="single-image image-tow float-right">
<img src="assets/images/about/SPORT_CROSS_COUNTRY.jpeg" alt="Hard Working Students">
</div> <!-- single image -->
</div> <!-- about image -->
</div>
<div class="col-lg-6">
<div class="about-content mt-45">
<h3 class="about-welcome">About The Scheme</h3>
<h4 class="about-title mt-10">Has your child experienced difficulties due to school closures?</h4>
<p class="mb-25">We are making our quality education accessible to children who have experienced difficulties as a result of the pandemic. Our scholarships are available to talented children who would thrive with a Ghyll Royd education.</p>
<h3 class="about-welcome">About Us</h3>
<h4 class="about-title mt-10">Small School Big Results</h4>
<p class="mb-25">We are <strong>the</strong> top small independent school in the North of England with over 130 years providing exceptional education.</p>
<ul class="list">
<li>Small Independent School of the Year Finalist 2019 and 2020</li>
<li>UK Top 10 exam results - No.9 Sunday Times School Guide</li>
<li>10+ hours physical activity every week</li>
<li>Woodland Trust 'Gold' Grounds - 7 acres meadow and outdoor classroom
</li>
<li>Platinum Artsmark Status - creativity in all lessons</li>
</ul>
<a class="main-btn mt-25" href="#contact">Get in Touch</a>
</div> <!-- about content -->
</div>
</div> <!-- row -->
</div> <!-- container -->
</section>
<!--====== ABOUT PART ENDS ======-->
<!--====== SERVICES PART START ======-->
<!-- <section id="service" class="services-area pt-125 pb-130 gray-bg">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="section-title text-center pb-20">
<h5 class="sub-title mb-15">Our Services</h5>
<h2 class="title">What We Do?</h2>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="single-services text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="0.4s">
<div class="services-icon">
<i class="lni-paint-roller"></i>
</div>
<div class="services-content mt-15">
<h4 class="services-title">Interior Design</h4>
<p class="mt-20">Mauris aliquam, turpis sed mattis placerat, justo risus pellentesque quam, id finibus risus arcu eget neque.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="single-services text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="0.8s">
<div class="services-icon">
<i class="lni-blackboard"></i>
</div>
<div class="services-content mt-15">
<h4 class="services-title">Design Consultancy</h4>
<p class="mt-20">Mauris aliquam, turpis sed mattis placerat, justo risus pellentesque quam, id finibus risus arcu eget neque.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="single-services text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="1.2s">
<div class="services-icon">
<i class="lni-home"></i>
</div>
<div class="services-content mt-15">
<h4 class="services-title">Residential Design</h4>
<p class="mt-20">Mauris aliquam, turpis sed mattis placerat, justo risus pellentesque quam, id finibus risus arcu eget neque.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="single-services text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="0.4s">
<div class="services-icon">
<i class="lni-briefcase"></i>
</div>
<div class="services-content mt-15">
<h4 class="services-title">Commercial Design</h4>
<p class="mt-20">Mauris aliquam, turpis sed mattis placerat, justo risus pellentesque quam, id finibus risus arcu eget neque.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="single-services text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="0.8s">
<div class="services-icon">
<i class="lni-handshake"></i>
</div>
<div class="services-content mt-15">
<h4 class="services-title">Hospitality Design</h4>
<p class="mt-20">Mauris aliquam, turpis sed mattis placerat, justo risus pellentesque quam, id finibus risus arcu eget neque.</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-8">
<div class="single-services text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="1.2s">
<div class="services-icon">
<i class="lni-grow"></i>
</div>
<div class="services-content mt-15">
<h4 class="services-title">Co-working Space Design</h4>
<p class="mt-20">Mauris aliquam, turpis sed mattis placerat, justo risus pellentesque quam, id finibus risus arcu eget neque.</p>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--====== SERVICES PART ENDS ======-->
<!--====== PROJECT PART START ======-->
<!-- <section id="project" class="project-area pt-125 pb-130">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="section-title text-center pb-50">
<h5 class="sub-title mb-15">Featured Works</h5>
<h2 class="title">Projects You May Love</h2>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row project-active">
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/project/p-1.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Home Interior Design</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/project/p-2.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Home Interior Design</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/project/p-3.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Home Interior Design</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/project/p-4.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Home Interior Design</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/project/p-5.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Home Interior Design</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/project/p-2.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Home Interior Design</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="single-project">
<div class="project-image">
<img src="assets/images/project/p-4.jpg" alt="Project">
</div>
<div class="project-content">
<a class="project-title" href="#">Home Interior Design</a>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--====== PROJECT PART ENDS ======-->
<!--====== TEAM PART START ======-->
<!-- <section id="team" class="team-area pt-125 pb-130 gray-bg">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="section-title text-center pb-20">
<h5 class="sub-title mb-15">Meet The Team</h5>
<h2 class="title">Our Expert Designers</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="single-team text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="0.4s">
<div class="team-image">
<img src="assets/images/team/team-1.jpg" alt="Team">
</div>
<div class="team-content">
<h4 class="team-name"><a href="#">Rob Hope</a></h4>
<span class="sub-title">CEO & Founder</span>
<ul class="social mt-25">
<li><a href="#"><i class="lni-facebook-filled"></i></a></li>
<li><a href="#"><i class="lni-twitter-original"></i></a></li>
<li><a href="#"><i class="lni-linkedin-original"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="single-team text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="0.8s">
<div class="team-image">
<img src="assets/images/team/team-2.jpg" alt="Team">
</div>
<div class="team-content">
<h4 class="team-name"><a href="#">Patric Green</a></h4>
<span class="sub-title">Chief Designer</span>
<ul class="social mt-25">
<li><a href="#"><i class="lni-facebook-filled"></i></a></li>
<li><a href="#"><i class="lni-twitter-original"></i></a></li>
<li><a href="#"><i class="lni-linkedin-original"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="single-team text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="1.2s">
<div class="team-image">
<img src="assets/images/team/team-3.jpg" alt="Team">
</div>
<div class="team-content">
<h4 class="team-name"><a href="#">Daryl Dixon</a></h4>
<span class="sub-title">Consultant</span>
<ul class="social mt-25">
<li><a href="#"><i class="lni-facebook-filled"></i></a></li>
<li><a href="#"><i class="lni-twitter-original"></i></a></li>
<li><a href="#"><i class="lni-linkedin-original"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="single-team text-center mt-30 wow fadeInUp" data-wow-duration="1.5s" data-wow-delay="1.6s">
<div class="team-image">
<img src="assets/images/team/team-4.jpg" alt="Team">
</div>
<div class="team-content">
<h4 class="team-name"><a href="#">Mark Parker</a></h4>
<span class="sub-title">Intern</span>
<ul class="social mt-25">
<li><a href="#"><i class="lni-facebook-filled"></i></a></li>
<li><a href="#"><i class="lni-twitter-original"></i></a></li>
<li><a href="#"><i class="lni-linkedin-original"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--====== TEAM PART ENDS ======-->
<!--====== AWARD PART ENDS ======-->
<section id="awards">
<div class="container">
<h4 class="about-title mt-10 mb-5 text-center">Just some of our Awards</h4>
<div class="row">
<div class="col-lg-1"></div>
<div class="col-6 col-md-4 col-lg-2 align-self-center">
<img class="d-block w-100 px-3 mb-3" src="assets/images/awards/sunday-times-awards.png" alt="First slide">
</div>
<div class="col-6 col-md-4 col-lg-2 align-self-center">
<img class="d-block w-100 px-3 mb-3" src="assets/images/awards/Independent-Schools-of-the-Year-2020-Finalist-rosette-1-212x300.png" alt="First slide">
</div>
<div class="col-6 col-md-4 col-lg-2 align-self-center">
<img class="d-block w-100 px-3 mb-3" src="assets/images/awards/School-Games-Gold-Award.jpeg" alt="First slide">
</div>
<div class="col-6 col-md-4 col-lg-2 align-self-center">
<img class="d-block w-100 px-3 mb-3" src="assets/images/awards/Woodland-Trust-Gold-Award.png" alt="First slide">
</div>
<div class="col-6 col-md-4 col-lg-2 align-self-center">
<img class="d-block w-100 px-3 mb-3" src="assets/images/awards/independent-schools-of-the-year-2019.jpeg" alt="First slide">
</div>
<div class="col-lg-1"></div>
</div>
</div>
</section>
<!--====== AWARD PART ENDS ======-->
<!--====== TESTIMONIAL PART START ======-->
<section id="testimonial" class="testimonial-area pt-130 pb-130">
<div class="shape shape-one">
<img src="assets/images/testimonial/shape.png" alt="testimonial">
</div>
<div class="shape shape-tow">
<img src="assets/images/testimonial/shape.png" alt="testimonial">
</div>
<div class="shape shape-three">
<img src="assets/images/testimonial/shape.png" alt="testimonial">
</div>
<div class="container">
<div class="testimonial-bg bg_cover pt-80 pb-80" style="background-image: url(assets/images/testimonial/big-oos-ghyll-royd-head.jpeg)">
<div class="row">
<div class="col-xl-4 offset-xl-7 col-lg-5 offset-lg-6 col-md-8 offset-md-2 col-sm-10 offset-sm-1">
<div class="testimonial-active">
<div class="single-testimonial text-center">
<!-- <div class="testimonial-image">
<img src="assets/images/testimonial/t-1.jpg" alt="Testimonial">
<div class="quota">
<i class="lni-quotation"></i>
</div>
</div> -->
<div class="testimonial-content mt-20">
<p>“Ghyll Royd sums up what is good about
education. Children achieve great results
but that’s only part of the picture.
The real success of the school can be
shown in the well-rounded, thoughtful,
intelligent and questioning minds of the
children.”</p>
<h5 class="testimonial-name mt-15">Jonathan Hooper</h5>
</div>
</div> <!-- single-testimonial -->
<div class="single-testimonial text-center">
<!-- <div class="testimonial-image">
<img src="assets/images/testimonial/t-2.jpg" alt="Testimonial">
<div class="quota">
<i class="lni-quotation"></i>
</div>
</div> -->
<div class="testimonial-content mt-20">
<p>“Ghyll Royd has encouraged my daughter’s
academic and personal growth. We are
very proud to be part of this school.
The school has fantastic outdoor facilities and
offers a wide range of extra-curricular
activities, sports and creative arts.”</p>
<h5 class="testimonial-name mt-15">Kristy Sewell</h5>
</div>
</div> <!-- single-testimonial -->
<div class="single-testimonial text-center">
<!-- <div class="testimonial-image">
<img src="assets/images/testimonial/t-3.jpg" alt="Testimonial">
<div class="quota">
<i class="lni-quotation"></i>
</div>
</div> -->
<div class="testimonial-content mt-20">
<p>“The small classes allow for more help and
guidance, the teachers are committed to
make learning fun.
I never have to worry about my children
whilst under the care and guidance of Ghyll
Royd.”</p>
<h5 class="testimonial-name mt-15">Nicola Brumfitt</h5>
</div>
</div>
<div class="single-testimonial text-center">
<div class="testimonial-content mt-20">
<p>“A culture of focus on the individual
permeates through the entire staff. Our
children’s have flourished in this positive
and encouraging environment.”</p>
<h5 class="testimonial-name mt-15">Stephanie Meadows</h5>
</div>
</div>
<div class="single-testimonial text-center">
<div class="testimonial-content mt-20">
<p>“The small school has a real family feel and nurturing staff. We love the fact the children are very active - they do 10 hours of PE a week and lots of outdoor learning.
<br />
Academically they are all thriving too!”</p>
<h5 class="testimonial-name mt-15">Ali Morpeth</h5>
</div>
</div> <!-- single-testimonial -->
</div> <!-- testimonial active -->
</div>
</div> <!-- row -->
</div> <!-- testimonial bg -->
</div> <!-- container -->
</section>
<!--====== TESTIMONIAL PART ENDS ======-->
<!--====== VIDEO PART STARTS ======-->
<section class="pb-130">
<div class="container my-25">
<div class="row">
<h3 class="about-welcome text-center text-uppercase mb-25 w-100">Watch our Video</h3>
<p class="mb-25 text-center w-100">Watch our amazing students and teachers give their thoughts on our wonderful school.</p>
<iframe width="100%" height="720px" src="https://www.youtube.com/embed/uk-bmu2aMT4?controls=0" title="Ghyll Royd School, Pre-School and Nursery promotional video" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</section>
<!--====== VIDEO PART ENDS ======-->
<!--====== CONTACT PART START ======-->
<!-- <section id="contact" class="contact-area pt-125 pb-130 gray-bg">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="section-title text-center pb-20">
<h2 class="title mb-15">Contact us</h2>
<p>Fill in the form and we will be in touch.</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="contact-form">
<form id="contact-form" action="https://formspree.io/f/xwkapaab" method="post" data-toggle="validator">
<div class="row">
<div class="col-md-6">
<div class="single-form form-group">
<input type="text" name="name" placeholder="Your Name" data-error="Name is required." required="required">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-6">
<div class="single-form form-group">
<input type="text" name="phone" placeholder="Phone" data-error="Phone is required." required="required">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-12">
<div class="single-form form-group">
<input type="email" name="email" placeholder="Your Email" data-error="Valid email is required." required="required">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="col-md-12">
<div class="single-form form-group">
<textarea placeholder="Anything you would like to add?" name="message" data-error="Please,leave us a message."></textarea>
<div class="help-block with-errors"></div>
</div>
</div>
<p class="form-message"></p>
<div class="col-md-12">
<div class="single-form form-group text-center">
<button type="submit" class="main-btn">send message</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!--====== CONTACT PART ENDS ======-->
<!--====== MAP PART START ======-->
<section id="map" class="map-area">
<div class="mapouter">
<div class="gmap_canvas">
<iframe id="gmap_canvas" src="https://maps.google.com/maps?width=100%25&height=600&hl=en&q=Ghyll%20Royd%20School+(Ghyll%20Royd%20School)&t=&z=15&ie=UTF8&iwloc=B&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
</div>
</div>
<div class="map-bg bg_cover d-none d-lg-block" style="background-image: url(/assets/images/banner/children-theatre.jpeg)"></div>
</section>
<!--====== MAP PART ENDS ======-->
<!--====== FOOTER PART START ======-->
<footer id="footer" class="footer-area">
<div class="footer-widget pt-80 pb-130">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-8">
<div class="footer-logo mt-50">
<a href="#">
<img src="assets/images/logo.png" alt="Logo">
</a>
<ul class="footer-social mt-45">
<li><a href="https://www.facebook.com/GhyllRoydSchool"><i class="lni-facebook-filled"></i></a></li>
<li><a href="https://www.twitter.com/GhyllRoydSchool"><i class="lni-twitter-original"></i></a></li> <li><a href="https://www.instagram.com/ghyllroydschool"><i class="lni-instagram"></i></a></li>
</ul>
</div> <!-- footer logo -->
</div>
<div class="col-lg-3 col-md-4 col-sm-6">
<div class="footer-link mt-45">
<div class="f-title">
<h4 class="title">Additional Info</h4>
</div>
<ul class="mt-15">
<li><a href="https://www.ghyllroydschool.co.uk/" target="_blank" rel="noreferrer noopener">Ghyll Royd School Website</a></li>
<li><a href="https://www.ghyllroydschool.co.uk/school/academic-attainment/" target="_blank" rel="noreferrer noopener">SAT Results</a></li>
<li><a href="https://www.ghyllroydschool.co.uk/events/leap-holiday-school-summer-dates-2021/" target="_blank" rel="noreferrer noopener">LEAP Holiday School</a></li>
<li><a href="https://www.ghyllroydschool.co.uk/about-us/isi-report/" target="_blank" rel="noreferrer noopener">ISI Report</a></li>
<li><a href="https://www.ceop.police.uk/safety-centre/" target="_blank" rel="nofollow noreferrer">Safeguarding</a></li>
</ul>
</div>
</div>
<div class="col-lg-6 col-md-4 col-sm-6">
<div class="footer-link mt-45">
<div class="f-title">
<h4 class="title">Contact Information</h4>
</div>
<ul class="footer-info mt-15">
<li>
<div class="single-info d-flex align-items-center">
<div class="info-icon mr-3">
<i class="lni-phone-handset"></i>
</div>
<div class="info-content">
<p><a href="tel:01943865575">01943 865575</a></p>
</div>
</div> <!-- single info -->
</li>
<li>
<div class="single-info d-flex align-items-center">
<div class="info-icon mr-3">
<i class="lni-envelope"></i>
</div>
<div class="info-content">
<p><a href="mailto:[email protected]?subject=Bursary Enquiry">[email protected]</a></p>
</div>
</div> <!-- single info -->
</li>
<li>
<div class="single-info d-flex align-items-center">
<div class="info-icon mr-3">
<i class="lni-map"></i>
</div>
<div class="info-content">
<p>Ghyll Royd School and Pre-School, Greystone Manor, Ilkley Road, Burley-in-Wharfedale, Ilkley, West Yorkshire LS29 7HW</p>
</div>
</div> <!-- single info -->
</li>
</ul>
</div>
</div>
</div> <!-- row -->
</div> <!-- container -->
</div> <!-- footer widget -->
<div class="copyright-area">
<div class="container">
<div class="row">
<div class="col-lg-3"><p>© Ghyll Royd School <span class="year"></span></p></div>
<div class="col-lg-5"><p>Company Number: 03583140 | Registered Charity No. 1070235</p></div>
<div class="col-lg-4"><p>Built in conjunction with <a href="https://thecodersguild.org.uk/" target="_blank" rel="nofollow">The Coders Guild</a></p>
</div>
</div> <!-- row -->
</div> <!-- container -->
</div> <!-- copyright-area -->
</footer>
<!--====== FOOTER PART ENDS ======-->
<!--====== BACK TO TOP PART START ======-->
<a href="#" class="back-to-top"><i class="lni-chevron-up"></i></a>
<!--====== BACK TO TOP PART ENDS ======-->
<!--====== PART START ======-->
<!--
<section class="">
<div class="container">
<div class="row">
<div class="col-lg-"></div>
</div>
</div>
</section>
-->
<!--====== PART ENDS ======-->
<!-- row -->
<script>
const yearDisplay = document.querySelector('.year');
yearDisplay.textContent = new Date().getFullYear();
</script>
<!--====== jquery js ======-->
<script src="assets/js/vendor/modernizr-3.6.0.min.js"></script>
<script src="assets/js/vendor/jquery-1.12.4.min.js"></script>
<!--====== Bootstrap js ======-->
<script src="assets/js/bootstrap.min.js"></script>
<!--====== WOW js ======-->
<script src="assets/js/wow.min.js"></script>
<!--====== Slick js ======-->
<script src="assets/js/slick.min.js"></script>
<!--====== Scrolling Nav js ======-->
<script src="assets/js/scrolling-nav.js"></script>
<script src="assets/js/jquery.easing.min.js"></script>
<!--====== Aos js ======-->
<script src="assets/js/aos.js"></script>
<!--====== Main js ======-->
<script src="assets/js/main.js"></script>
</body>
</html>