-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1361 lines (1292 loc) · 70.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Saue TKD</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1,
shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800" rel="stylesheet">
<link rel="stylesheet" href="css/open-iconic-bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="css/jquery.timepicker.css">
<link rel="stylesheet" href="css/flaticon.css">
<link rel="stylesheet" href="css/icomoon.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/css/style2.css">
<script src="./modals/modal.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark ftco_navbar bg-dark
ftco-navbar-light" id="ftco-navbar">
<div class="container">
<a class="navbar-brand" href="index.html">Saue<small>TKD</small></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#ftco-nav"
aria-controls="ftco-nav" aria-expanded="false" aria-label="Toggle navigation">
<span class="oi oi-menu"></span> Menu
</button>
<div class="collapse navbar-collapse" id="ftco-nav">
<ul class="navbar-nav ml-auto">
<li class="nav-item active"><a href="index.html" class="nav-link">Home</a></li>
<li class="nav-item"><a href="gradings.html" class="nav-link">Gradings</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link">Contact</a></li>
<li class="nav-item"><a href="https://www.sauetkd.com/EE/index_ee.html" class="nav-link">EE</a></li>
<!-- <li class="nav-item"><a href="coaches.html" class="nav-link">Coaches</a></li> -->
<!-- <li class="nav-item"><a href="blog.html" class="nav-link">Blog</a></li> -->
</ul>
</div>
</div>
</nav>
<!-- END nav -->
<section class="home-slider owl-carousel">
<div class="slider-item" id='slider1' style="background-image:
url(images/saue-tkd-logo.png);">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text align-items-center" data-scrollax-parent="true">
<div class="col-md-5 col-sm-12 ftco-animate">
<!-- <h1 class="mb-4">Challenge Yourself</h1> -->
<!-- <p class="mb-4 mb-md-5">A small river named Duden flows by their place and supplies it with the necessary regelialia.</p> -->
<!-- <a><a href="#" class="btn btn-primary p-3 px-xl-4 py-xl-3">Get Started Now</a></p> -->
</div>
</div>
</div>
</div>
<div class="slider-item" style="background-image:
url(images/index_bg_2.png);">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text align-items-center" data-scrollax-parent="true">
<div class="col-md-5 col-sm-12 ftco-animate">
<h1 class="mb-4">We are the Saue Vald Taekwondo club</h1>
<p class="mb-4 mb-md-5">A fun and professional club
for everyone, regardless of age or
experience
</p>
<p><a href="#" class="btn btn-primary p-3 px-xl-4
py-xl-3">Get Started Now</a></p>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-intro">
<div class="container-wrap">
<div class="wrap d-md-flex justify-content-end
align-items-xl-end">
<div class="info">
<div class="row no-gutters">
<div class="col-md-4 d-flex ftco-animate">
<div class="icon"><span class="icon-phone"></span></div>
<div class="text">
<h3> +372 5663 3883</h3>
<!-- <p>A small river named Duden flows by their place and supplies.</p> -->
</div>
</div>
<div class="col-md-4 d-flex ftco-animate">
<div class="icon"><span class="icon-my_location"></span></div>
<div class="text">
<h3>Nurmesalu 9, Saue, 76506</h3>
<p> Saku Sports Center</p>
<p> Laagri Mirror Room</p>
</div>
</div>
<div class="col-md-4 d-flex ftco-animate">
<div class="icon"><span class="icon-clock-o"></span></div>
<div class="text">
<h3><a href="virkor@icloud.com"><span class="icon icon-envelope"></span><span
id="textBlack" class="text">
virkor@icloud.com </span></a>
</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<pp-modal class="myModal" id="myModal">
<div>
<h1 slot="header">Latest News!</h1>
<video controls width="250" height="250" autoplay>
<source src="/media/cc0-videos/flower.webm"
type="video/webm">
<source src="/images/sauetkd.mp4"
type="video/mp4">
Sorry, your browser doesn't support embedded videos.
</video>
<h3 style="color: rgb(18, 22, 247); font-weight: 700;">Nuud on Saue Taekwondoklubi uus trenni appis</h3>
<a href="https://app.sportlyzer.com/application/m3*F6?lang=eng">
<img src="https://cdn.lowgif.com/full/7de84a91444322cf-logo-loading-animation-by-stefan-hiienurm-dribbble.gif"
alt="sportylyzer image" width="250" height="250"></a>
<!-- Tänane online Taekwondo treening algab juba kell 18:00 -->
<br>
<br>
Sportylyzer app address: <a
href="https://app.sportlyzer.com/application/m3*F6?lang=eng">https://app.sportlyzer.com/application/m3*F6?lang=eng</a>
<!-- Sportylyzer appis aadressil: <a href="https://sauetkd.television.ee">https://sauetkd.television.ee</a> -->
<br>
Saue TKD TV address: <a href="https://sauetkd.television.ee">https://sauetkd.television.ee</a>
<p>Password: SaueTKD123</p>
<br>
SAUE TAEKWONDO CLUB
<p>Info <span><a href="56633883">56633883</a></span> || <span><a href="virko@aknakate.ee"> <span
class="icon icon-envelope"></span> virko@aknakate.ee</a></span></p>
</div>
<!-- <button style="border-radius: 12px;" onclick="document.getElementById('myModal').style.display='none'">Close</button> -->
</div>
</pp-modal>
<section class="ftco-about d-md-flex">
<div class="one-half img" style="background-image:
url(images/Taekwondo_master.jpg);background-size: contain;
border-radius: 20px;">
<a href="https://www.youtube.com/watch?v=RZimVVOuCZU" class="icon popup-vimeo d-flex justify-content-center
align-items-center">
<span class="icon-play"></a>
</a>
</div>
<div class="one-half ftco-animate">
<div class="heading-section ftco-animate">
<h2 class="mb-4">Welcome to <span>Saue TKD</span></h2>
</div>
<div>
<p>At Saue Taekwondo club the focus is on YOU– your personal
goals for fitness, self mastery, self
esteem, Self Defense and More… </p> <br>
<p> Since 2011 we have been proudly serving the Saue,
Aasmae, Laagri and Saku areas, with great
achievements from building confident students to
Provincial, National and Internation Level
Athletes. We have the Instructors and Masters with the
capabilities to help you reach your goals!
</p>
</div>
</div>
</section>
<!-- new section -->
<section>
<div class="grid-container" style="text-align: center; margin: 20px;">
<div class="grid-item" style="background-image:
url(images/World_Taekwondo_Federation_logo.png);">
<!-- <h3><a href="#">World Taekwondo</a></h3> -->
</div>
<div class="grid-item" style="background-image:
url(images/Estonian_Olympic_Committee_logo.png);">
<!-- <h3><a href="#">Estonian Olympic Committee</a></h3> -->
</div>
<div class="grid-item" style="background-image:
url(images/etf_logo.jpg);">
<!-- <h3><a href="#">Estonian Taekwondo Federation</a></h3> -->
</div>
<div class="grid-item" style="background-image:
url(images/wtkdeurope.jpg);">
<!-- <h3><a href="#">Estonian Taekwondo Federation</a></h3> -->
</div>
</div>
<div style='display: flex;
justify-content: center;'>
<img class="kukkiwon" src="images/kukkiwon.jpg" alt="Girl in a jacket">
</div>
</section>
<section class="ftco-section ftco-bg-dark">
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-7 heading-section text-center
ftco-animate">
<span class="subheading">Services</span>
<h2 class="mb-4">Our Process</h2>
<!-- <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p> -->
</div>
</div>
<div class="row">
<div class="col-md-3 ftco-animate">
<div class="media d-block text-center block-6 services">
<div class="icon d-flex justify-content-center
align-items-center mb-5">
<span class="flaticon-ruler"></span>
</div>
<div class="media-body">
<h3 class="heading">Analyze Your Goal</h3>
<p>Self-Defence, Fitness, Fat-Loss,
Competitions, Confidence? No matter what
your goal,
we'll help you stay on target!</p>
</div>
</div>
</div>
<div class="col-md-3 ftco-animate">
<div class="media d-block text-center block-6 services">
<div class="icon d-flex justify-content-center
align-items-center mb-5">
<span class="flaticon-gym"></span>
</div>
<div class="media-body">
<h3 class="heading">Work Hard On It</h3>
<p>Goals are achieve with effort and
determination, stay focused and work hard
for a better
you!
</p>
</div>
</div>
</div>
<div class="col-md-3 ftco-animate">
<div class="media d-block text-center block-6 services">
<div class="icon d-flex justify-content-center
align-items-center mb-5">
<span class="flaticon-tools-and-utensils"></span></div>
<div class="media-body">
<h3 class="heading">Improve Your Performance</h3>
<p>Want to get fitter, faster, more focused,
stronger or more flexible? Then, join us!</p>
</div>
</div>
</div>
<div class="col-md-3 ftco-animate">
<div class="media d-block text-center block-6 services">
<div class="icon d-flex justify-content-center
align-items-center mb-5">
<span class="flaticon-abs"></span></div>
<div class="media-body">
<h3 class="heading">Achieve a Healthier Body</h3>
<p>Health is a state of complete physical,
mental and social well-being and not merely
the
absence of disease or infirmity, (WHO,
1946).</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6 pr-md-5">
<div class="heading-section text-md-right ftco-animate">
<!-- <span class="subheading">Programs</span> -->
<h2 class="mb-4">Why Taekwondo?</h2>
<div>
<p class="mb-4">Taekwondo is both an ancient
Korean Martial Art, and a modern
International
Olympic sport.</p>
<p> Taekwondo is a mental and physical
discipline designed over 2000 years with the
ultimate
goal being mental and physical health. That
is the health of ourselves, our family and
our friends.</p>
<p> Taekwondo serves as a means of
self-protection, giving one the assurance of
being able
to do so if the need arises. Our program is
styled to keep the body conditioned, and the
mind clear. It provides confidence and
self-control.</p>
<p>These goals are accomplished through the
quality instruction received at Saue TKD,
combined with your strong desire and regular
training.</p>
</div>
<p><a href="#OurClasses" class="btn btn-primary
btn-outline-primary px-4 py-3">View Full
Schedule</a></p>
</div>
</div>
<div class="col-md-6">
<div class="program d-flex ftco-animate">
<div class="icon d-flex justify-content-center
align-items-center">
<span class="flaticon-gym"></span>
</div>
<div class="text ml-5">
<h3>Enhance self-esteem</h3>
<p>by heightening your physical and mental
powers.</p>
</div>
</div>
<div class="program d-flex ftco-animate">
<div class="icon d-flex justify-content-center
align-items-center">
<span class="flaticon-woman"></span>
</div>
<div class="text ml-5">
<h3>Build confidence</h3>
<p>by encouraging you to succeed and to take
control of your life.</p>
</div>
</div>
<div class="program d-flex ftco-animate">
<div class="icon d-flex justify-content-center
align-items-center">
<span class="flaticon-workout"></span>
</div>
<div class="text ml-5">
<h3>Develop discipline</h3>
<p>by thoroughly training your body and mind in
the tenets and techniques of Taekwondo.</p>
</div>
</div>
<div class="program d-flex ftco-animate">
<div class="icon d-flex justify-content-center
align-items-center">
<span class="flaticon-meditation"></span>
</div>
<div class="text ml-5">
<h3>Self-defense</h3>
<p>by training you to recognize situations in
which physical self-defense may be
necessary,
and teaching you how to control such
situations to your advantage.</p>
</div>
</div>
<div class="program d-flex ftco-animate">
<div class="icon d-flex justify-content-center
align-items-center">
<span class="flaticon-stationary-bike"></span>
</div>
<div class="text ml-5">
<h3>Strengthen your mind and body</h3>
<p>through increased physical coordination and
mental discipline</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-counter ftco-bg-dark img" id="section-counter"
style="background-image: url(images/group_landscape.jpg);" data-stellar-background-ratio="0.5">
<div class="overlay"></div>
<div class="container" id="counter_align">
<div class="row justify-content-center">
<div class="col-md-10">
<div class="row">
<div class="col-md-6 col-lg-3 d-flex
justify-content-center counter-wrap
ftco-animate">
<div class="block-18 text-center">
<div class="text">
<strong class="number" data-number="200">0</strong>
<span>Happy Customers</span>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex
justify-content-center counter-wrap
ftco-animate">
<div class="block-18 text-center">
<div class="text">
<strong class="number" data-number="200">0</strong>
<span>Healthier Bodies</span>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex
justify-content-center counter-wrap
ftco-animate">
<div class="block-18 text-center">
<div class="text">
<strong class="number" data-number="570">0</strong>
<span>Working Hours</span>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex
justify-content-center counter-wrap
ftco-animate">
<div class="block-18 text-center">
<div class="text">
<strong class="number" data-number="200">0</strong>
<span>Success Stories</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="ftco-section">
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-7 heading-section text-center
ftco-animate">
<span class="subheading">Trainer</span>
<h2 class="mb-4">Our Coaches</h2>
<p>World class, international certified coaches that
will, guide and mentor you and help you reach
you goals together!</p>
</div>
</div>
<div class="row">
<div class="col-lg-12 d-flex">
<div class="coach d-sm-flex align-items-stretch">
<div class="img" style="background-image:
url(images/badr_prof_pic.jpg);"></div>
<div class="text py-4 px-5 ftco-animate">
<span class="subheading">Owner / Head Coach</span>
<h3><a href="#">Badr Alaoui</a></h3>
<p><span>-</span> WTF Recognised Taekwondo
educator</p>
<p><span>-</span> 5th degree Black belt</p>
<p><span>-</span> International WTF accredited
coach with over 30 years experience</p>
<p><span>-</span> Kukkiwon master</p>
<p><span>-</span> 3rd class International
referee</p>
<p><span>-</span> European Taekwondo coaching
licence</p>
<p><span>-</span> 5th Level liscenced Taekwondo
coach [151461], (Estonian Olympic Committee)
</p>
<p><span>-</span> Juniors and Seniors, National
team head Coach</p>
<ul class="ftco-social-media d-flex mt-4">
<!-- <li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-twitter"></span></a></li> -->
<li class="ftco-animate"><a href="https://www.facebook.com/Saue-TKD-162471303830732/"
class="mr-2 d-flex
justify-content-center
align-items-center"><span class="icon-facebook"></span></a></li>
</ul>
<p></p>
</div>
</div>
</div>
<!-- <div class="col-lg-6 d-flex">
<div class="coach d-sm-flex align-items-stretch">
<div class="img order-xl-last" style="background-image: url(images/trainer-3.jpg);"></div>
<div class="text py-4 px-5 ftco-animate">
<span class="subheading">Owner / Head Coach</span>
<h3><a href="#">Badr Alaoui</a></h3>
<p>International WTF accredited coach with over 30 years experience</p>
<ul class="ftco-social-media d-flex mt-4">
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-twitter"></span></a></li>
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-facebook"></span></a></li>
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-instagram"></span></a></li>
</ul>
<p></p>
</div>
</div>
</div>
<div class="col-lg-6 d-flex">
<div class="coach d-sm-flex align-items-stretch">
<div class="img order-xl-last" style="background-image: url(images/trainer-4.jpg);"></div>
<div class="text py-4 px-5 ftco-animate">
<span class="subheading">Club Manager</span>
<h3><a href="#">Virko Raagmets</a></h3>
<p>A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.</p>
<ul class="ftco-social-media d-flex mt-4">
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-twitter"></span></a></li>
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-facebook"></span></a></li>
<li class="ftco-animate"><a href="#" class="mr-2 d-flex justify-content-center align-items-center"><span class="icon-instagram"></span></a></li>
</ul>
<p></p>
</div>
</div>
</div> -->
</div>
</div>
</section>
<!-- Timetable Section -->
<section id="OurClasses" class="ftco-section">
<div style="text-align: center;">
<h3>Class Timetable</h3>
<div style="justify-content: center; display: flex;">
<iframe class="TimeTableIframe" style="width: 75%;"
src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQHUCo3HJX-P1tg8ZxO-6eP6uU50y62kptbC9G8bsSHowx1fW7bgHz7_vkXMlnYl8bUeiRnASzrz51E/pubhtml?widget=true&headers=false"></iframe>
</div>
</div>
</section>
<section class="ftco-section img" id="ftco-testimony" style="background-image: url(images/high_split_kick.png);"
data-stellar-background-ratio="0.5">
<div class="overlay"></div>
<div class="container">
<div class="row justify-content-center mb-5">
<div class="col-md-7 heading-section text-center
ftco-animate">
<span class="subheading">Testimony</span>
<h2 class="mb-4">What our students say</h2>
<!-- <p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p> -->
</div>
</div>
</div>
<div class="container-wrap">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<!-- First slide -->
<div class="row d-flex no-gutters">
<div class="col-lg align-self-sm-end
ftco-animate">
<div class="testimony">
<blockquote>
<p>“Every child is a winner!
Every child is special!
TAEKWONDO training in
Saue develops mind, body and
character. Taekwondo, or tae
kwon do, is a
martial art of Korean origin.
<br> Taekwondo is for everyone
and can be started at any age.
Taekwondo
provides good form, flexibility,
concentration, endurance,
discipline. "It
also gives you the ability to
cope when the situation is
difficult
or stressful," says the
coach.”</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3
align-self-center">
<img src="images/lastega.ee.png" alt="">
</div>
<div class="name align-self-center">Lastega.ee<span class="position">Child and
family
website</span></div>
</div>
</div>
</div>
<div class="col-lg align-self-sm-end">
<div class="testimony overlay">
<blockquote>
<p>“Tere! Väga tänuväärne
üritus! Nii trenn kui ka
trenniväline tegevus
liidab lapsi. Rasmus juba ammu
räägib sellest üritusest ja
küsib, kas ma
olen saanud kirja. Ühesõnaga
Rasmus ootab väga LaserCity
üritust!
Aitäh Teile! Ikka jõudu ja jaksu
soovides.”</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3
align-self-center">
<img src="images/person-girl-flat.png" alt="">
</div>
<div class="name align-self-center">Jaanika<span class="position">Parent</span>
</div>
</div>
</div>
</div>
<div class="col-lg align-self-sm-end
ftco-animate">
<div class="testimony">
<blockquote>
<p>“Tere Väga äge, et lapsi
premeerite ja võtate vaevaks
nendega
LaserCitysse minna!😃 Suured
tänud selle eest! Ma ei tea,
kuidas teised
lapsed, aga minu lapsed on
suures vaimustuses sellest
trennist ja
treenerist.
Alati peale trenni näitavad
mulle, mida nad õppisid ja
räägivad, kui lahe
treener neil ikka on. :) Niiet
suured tänud ka treenerile,
jätkake samas
vaimus!:) Parimat.”
</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3
align-self-center">
<img src="images/mari.png" alt="">
</div>
<div class="name align-self-center">Siret<span class="position">Teacher</span>
</div>
</div>
</div>
</div>
<div class="col-lg align-self-sm-end">
<div class="testimony overlay">
<blockquote>
<p>“Kui tore on hommikul
midagi nii positiivset lugeda.
Oliver küll ei
käinud kuna oli palavikuga
kodus, aga ikkagi tahan öelda,
et Taekwando
treeneritele aitäh sellise
toreda ürituse korraldamise
vaeva eest.
:) Jätkugu teil jaksu :) Lisaks
tahan öelda, et meie pere noorem
laps Kerdo
Põld käis ka eile lasteaias
Taekwando trennis ja talle väga
meeldis. Seega
saate ühe pereliikme meilt
juurde 😃 Ning tagatipuks mõtleb
ka mu abikaasa tulla
Taekwandosse aga ilmselt poole
kohaga kuidagi, sest
käib ka Imperialis ja tahab seal
jätkata. .”
</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3
align-self-center">
<img src="images/person-girl-flat.png" alt="">
</div>
<div class="name align-self-center">Sirli<span class="position">Parent</span>
</div>
</div>
</div>
</div>
<div class="col-lg align-self-sm-end
ftco-animate">
<div class="testimony">
<blockquote>
<p>“Veelkord kordan oma sõnu:
see on oluline, et lapsed saavad
suhelda ka
väljaspool trenni ühistegevuse
kaudu. See tugevdab
sõprussidemeid, seob
seltskonda ja suurendab
külg-külje tunnet. Taekwondo
klubil on
sinuga väga vedanud. Sa suhtled
siiralt, avatult vanematega.
Korraldad ja
asjatad! Nii tore oli kuulda
eile, et ka täiskasvanud lõid
kaasa mängudes!!
Ei olnud kõrvalseisjad, vaid
laste seas!!! Meil on tore
treener,
kes läheneb igale lapsele
individuaalselt ning teab ja
toetad last!
Ühesõnaga vahva klubi!!!!!!
Soovime jõudu ja jaksu!!!!!
”
</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3
align-self-center">
<img src="images/person-girl-flat.png" alt="">
</div>
<div class="name align-self-center">Jaanika
<span class="position">Parent</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- second slide -->
<div class="carousel-item">
<div class="row d-flex no-gutters">
<div class="col-lg align-self-sm-end ftco-animate">
<div class="testimony">
<blockquote>
<p>“Every child is a winner! Every
child is special! TAEKWONDO training
in
Saue develops mind, body and
character. Taekwondo, or tae kwon
do, is a martial
art of Korean origin.
<br> Taekwondo is for everyone and
can be started at any age. Taekwondo
provides
good form, flexibility,
concentration, endurance,
discipline. "It also gives you
the ability to cope when the
situation is difficult
or stressful," says the
coach.”</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3
align-self-center">
<img src="images/lastega.ee.png" alt="">
</div>
<div class="name align-self-center">Lastega.ee<span class="position">Child and
family
website</span></div>
</div>
</div>
</div>
<div class="col-lg align-self-sm-end">
<div class="testimony overlay">
<blockquote>
<p>“Tere! Väga tänuväärne üritus!
Nii trenn kui ka trenniväline
tegevus liidab
lapsi. Rasmus juba ammu räägib
sellest üritusest ja küsib, kas ma
olen saanud
kirja. Ühesõnaga Rasmus ootab väga
LaserCity üritust! Aitäh
Teile! Ikka jõudu ja jaksu
soovides.”</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3
align-self-center">
<img src="images/person-girl-flat.png" alt="">
</div>
<div class="name align-self-center">Jaanika<span class="position">Parent</span>
</div>
</div>
</div>
</div>
<div class="col-lg align-self-sm-end ftco-animate">
<div class="testimony">
<blockquote>
<p>“Tere Väga äge, et lapsi
premeerite ja võtate vaevaks nendega
LaserCitysse
minna!😃 Suured tänud selle eest! Ma
ei tea, kuidas teised lapsed, aga
minu
lapsed on suures vaimustuses sellest
trennist ja treenerist.
Alati peale trenni näitavad mulle,
mida nad õppisid ja räägivad, kui
lahe
treener neil ikka on. :) Niiet
suured tänud ka treenerile, jätkake
samas
vaimus!:) Parimat.”
</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3
align-self-center">
<img src="images/mari.png" alt="">
</div>
<div class="name align-self-center">Siret<span class="position">Teacher</span></div>
</div>
</div>
</div>
<div class="col-lg align-self-sm-end">
<div class="testimony overlay">
<blockquote>
<p>“Kui tore on hommikul midagi
nii positiivset lugeda. Oliver küll
ei käinud
kuna oli palavikuga kodus, aga
ikkagi tahan öelda, et Taekwando
treeneritele
aitäh sellise toreda ürituse
korraldamise vaeva eest. :)
Jätkugu teil jaksu :) Lisaks tahan
öelda, et meie pere noorem laps
Kerdo Põld
käis ka eile lasteaias Taekwando
trennis ja talle väga meeldis. Seega
saate ühe
pereliikme meilt juurde 😃 Ning
tagatipuks mõtleb ka
mu abikaasa tulla Taekwandosse aga
ilmselt poole kohaga kuidagi, sest
käib ka
Imperialis ja tahab seal jätkata.
.”
</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3
align-self-center">
<img src="images/person-girl-flat.png" alt="">
</div>
<div class="name align-self-center">Sirli<span class="position">Parent</span></div>
</div>
</div>
</div>
<div class="col-lg align-self-sm-end ftco-animate">
<div class="testimony">
<blockquote>
<p>“Even the all-powerful Pointing
has no control about the blind texts
it is
an almost unorthographic life One
day however a small line of blind
text by the
name. ”
</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3
align-self-center">
<img src="images/person-girl-flat.png" alt="">
</div>
<div class="name align-self-center">Louise
Kelly <span class="position">Illustrator
Designer</span></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- third slide -->
<div class="carousel-item">
<div class="carousel-item">
<div class="row d-flex no-gutters">
<div class="col-lg align-self-sm-end ftco-animate">
<div class="testimony">
<blockquote>
<p>“Every child is a winner! Every
child is special! TAEKWONDO training in
Saue
develops mind, body and character.
Taekwondo, or tae kwon do, is a martial
art of
Korean origin.
<br> Taekwondo is for everyone and can
be started at any age. Taekwondo
provides
good form, flexibility, concentration,
endurance, discipline. "It also gives
you the
ability to cope when the situation is
difficult or
stressful," says the coach.”</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3 align-self-center">
<img src="images/lastega.ee.png" alt="">
</div>
<div class="name align-self-center">Lastega.ee<span class="position">Child and family
website</span></div>
</div>
</div>
</div>
<div class="col-lg align-self-sm-end">
<div class="testimony overlay">
<blockquote>
<p>“Tere! Väga tänuväärne üritus! Nii
trenn kui ka trenniväline tegevus liidab
lapsi. Rasmus juba ammu räägib sellest
üritusest ja küsib, kas ma olen saanud
kirja.
Ühesõnaga Rasmus ootab väga LaserCity
üritust! Aitäh
Teile! Ikka jõudu ja jaksu
soovides.”</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3 align-self-center">
<img src="images/person-girl-flat.png" alt="">
</div>
<div class="name align-self-center">Jaanika<span class="position">Parent</span></div>
</div>
</div>
</div>
<div class="col-lg align-self-sm-end ftco-animate">
<div class="testimony">
<blockquote>
<p>“Tere Väga äge, et lapsi premeerite
ja võtate vaevaks nendega LaserCitysse
minna!😃 Suured tänud selle eest! Ma ei
tea, kuidas teised lapsed, aga minu
lapsed
on suures vaimustuses sellest trennist
ja treenerist. Alati
peale trenni näitavad mulle, mida nad
õppisid ja räägivad, kui lahe treener
neil
ikka on. :) Niiet suured tänud ka
treenerile, jätkake samas vaimus!:)
Parimat.”
</p>
</blockquote>
<div class="author d-flex mt-4">
<div class="image mr-3 align-self-center">
<img src="images/mari.png" alt="">
</div>
<div class="name align-self-center">Siret<span class="position">Teacher</span></div>
</div>
</div>
</div>
<div class="col-lg align-self-sm-end">
<div class="testimony overlay">
<blockquote>
<p>“Kui tore on hommikul midagi nii
positiivset lugeda. Oliver küll ei
käinud kuna
oli palavikuga kodus, aga ikkagi tahan
öelda, et Taekwando treeneritele aitäh
sellise toreda ürituse korraldamise
vaeva eest. :) Jätkugu
teil jaksu :) Lisaks tahan öelda, et
meie pere noorem laps Kerdo Põld käis ka
eile
lasteaias Taekwando trennis ja talle
väga meeldis. Seega saate ühe pereliikme
meilt
juurde 😃 Ning tagatipuks mõtleb ka mu
abikaasa
tulla Taekwandosse aga ilmselt poole