-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1102 lines (914 loc) · 57.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
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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BJJ in Arabic | Learn Jiu Jitsu</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
<link href="style.css" rel="stylesheet">
<link rel="stylesheet" href="https://m.w3newbie.com/you-tube.css">
<link href="css/addons/flag.min.css" rel="stylesheet">
</head>
<body>
<!--navigation-->
<nav class="navbar navbar-expand-md navbar-light fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="#"><img src="img/logo.png"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto" dir="rtl">
<li class="nav-item active">
<a class="nav-link" href="https://dbbatalha.github.io/bjjinarabic/" dir="rtl" lang="ar">Home | الصفحة الرئيسية للموقع</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#athleteslist" dir="rtl" lang="ar">athletes list | قائمة الرياضيين</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about" dir="rtl" lang="ar">About Us | معلومات عنا</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#connect" dir="rtl" lang="ar">Connect | الاتصال</a>
</li>
</ul>
</div>
</div>
</nav>
<!--Image Slider-->
<section class="section" id="home">
<div id="slides" class="carousel slide" data-ride="carousel">
<ul class="carousel-indicators">
<li data-target="#slides" data-slide-to="0" class="active"></li>
<li data-target="#slides" data-slide-to="1"></li>
</ul>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/background.png">
<div class="carousel-caption">
<h1 class="display-2" dir="rtl" lang="ar">Brazilian Jiu Jitsu | البرازيلي جيتسو وحدة التفتيش المشتركة</h1>
<h3 dir="rtl" lang="ar">Know the History of Brazilian Jiu Jitsu | تعرف على تاريخ البرازيلي جيو جيتسو</h3>
<a href="#training"><button type="button" class="btn btn-outline-light btn-lg" dir="rtl" lang="ar">VIEW DEMO | عرض مظاهرة</button></a>
<a href="#jiujitsu"><button type="button" class="btn btn-primary btn-lg" dir="rtl" lang="ar">Get Started | البدء
</button></a>
</div>
</div>
<div class="carousel-item">
<a href="#athleteslist">
<img src="img/background2.png">
<div class="carousel-caption">
<h1 class="display-2" dir="rtl" lang="ar">New Athlete Profile | ملف رياضي جديد</h1>
<h3 dir="rtl" lang="ar">Felipe Preguiça</h3>
</div>
</a>
</div>
</div>
</div>
</section>
<!--WELCOME SECTION / Head-->
<section class="section" id="jiujitsu">
<div class="container-fluid padding">
<div class="row welcome text-center">
<div class="col-12">
<!-- <h1 class="display-4">Change your lifestyle</h1> -->
<h1 class="display-4" dir="rtl" lang="ar">Benefits of Jiu Jitsu |فوائد جيو جيتسو</h1>
</div>
<hr>
<div class="col-12" >
<p class="lead" dir="rtl" lang="ar" style="text-align:justify">
تم تسويق جو جيتسو كواحدة من أكثر فنون الدفاع عن النفس فعالية للدفاع عن النفس حيث يمكن للفرد الأصغر والأقل رياضيًا الدفاع عن نفسه ضد مهاجمين أكبر وأقوى. في حين أن فنون الدفاع عن النفس التقليدية لا تزال تتطلب السرعة والتنسيق من أجل تنفيذ مجموعات الركلة واللكم والممارسة في المقام الأول من خلال الكاتا والأشكال ، تعتمد الجيو جيتسو على تقنيات فعالة تمارس في حالات السجال المباشر التي هي أقرب إلى محاكاة موقف واحد لواحد . العديد من التقنيات التي يتم تدريسها في جيو جيتسو قابلة للتطبيق في الدفاع عن النفس في الشوارع بما في ذلك القبض على مهاجم أثناء الوقوف على قدميك ، والدفاع عن نفسك على الأرض من ظهرك ، والدفاع عن الاختناقات ، ومتى وكيف تطبق على الخطافات وتحت الخطافات ، والهروب من المعتدي الذي يمسك أنت من الخلف
</p>
<p></p>
<p class="lead" style="text-align:justify">
Jiu Jitsu has been marketed as one of the most effective martial arts for self-defense where the smaller and less athletic individual can defend themselves against larger and stronger assailants. While traditional martial arts still require speed and coordination in order to execute kick and punch combinations and primarily practice through katas and forms, Jiu Jitsu relies on efficient techniques that are practiced in live sparring situations that are closer to simulating a one-on-one situation. Many techniques taught in Jiu Jitsu are applicable in street self defense including clinching an attacker while on your feet, defending yourself on the ground off your back, defending chokes, when and how to apply over hooks and under hooks, and escaping an assailant who grabs you from behind.
</p>
<a href="#" class="btn btn-primary" data-toggle="modal" data-target="#learnmore" lang="ar">Learn More | أعرف أكثر</a>
</div>
<div class="modal fade" id="learnmore">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-head" dir="rtl" lang="ar">
<h1 dir="rtl" lang="ar">What's Jiu Jitsu? | ما هو جيو جيتسو؟</h1>
</div>
<div class="modal-body">
<p dir="rtl" lang="ar">
الدفاع عن النفس العملي - تم تسويق jiu jitsu كواحدة من أكثر فنون الدفاع عن النفس فعالية للدفاع عن النفس حيث يمكن للفرد الأصغر والأقل رياضيًا الدفاع عن نفسه ضد مهاجمين أكبر وأقوى. في حين أن فنون الدفاع عن النفس التقليدية لا تزال تتطلب السرعة والتنسيق من أجل تنفيذ مجموعات الركلة واللكم والممارسة في المقام الأول من خلال الكاتا والأشكال ، تعتمد الجيو جيتسو على تقنيات فعالة تمارس في حالات السجال المباشر التي هي أقرب إلى محاكاة موقف واحد لواحد . العديد من التقنيات التي يتم تدريسها في جيو جيتسو قابلة للتطبيق في الدفاع عن النفس في الشوارع بما في ذلك القبض على مهاجم أثناء الوقوف على قدميك ، والدفاع عن نفسك على الأرض من ظهرك ، والدفاع عن الاختناقات ، ومتى وكيف تطبق على الخطافات وتحت الخطافات ، والهروب من المعتدي الذي يمسك أنت من الخلف
</p>
<p dir="rtl" lang="ar">
تمرين رائع / احصل على اللياقة البدنية - بعد 60 أو 90 دقيقة من درس جيو جيتسو ، سوف ينقع جسمك و gi في العرق. جيو جيتسو هو تمرين رائع يضم كل جزء من جسمك. من الاحماء الذي يتكون من الركض ورياضة الجمباز إلى الحركة المستمرة طوال الفصول ، سوف تقوم بتوسيع وتقلص العضلات التي لم تستخدمها من قبل. حتى بالنسبة للممارسين ذوي الخبرة ، سيكون هذا تمرينًا رائعًا خاصة إذا كانوا يعملون مع شريك تدريب ثقيل أو حفر تقنياتهم بوتيرة أسرع. بعد الاحماء والحفر ، فإن التدحرج سيرفع معدل ضربات القلب. ستقوم أنت وشريكك في التدريب الآن بتقديم المقاومة وستعملان على تعزيز المنصب وتقديم شريكك في التدريب. ليست كل جولات التدحرج بحاجة إلى معركة 100٪ ، خاصة إذا كانت هناك فجوة كبيرة في مستوى المهارة أو حجمها. يمكن لشركاء التدريب أن يتدحرجوا على شكل لفة أو تدريب S لتدريبات القلب الكبيرة التي يمكن أن تتضمن التقنيات التي تم تعلمها خلال الفصل. تم الإبلاغ عن أن فصول الجيو جيتسو البرازيلية تحرق ما بين 400 إلى 1000 سعر حراري لكل جلسة اعتمادًا على حجمك وسرعة و كثافة الفصول
</p>
<p dir="rtl" lang="ar">
تعلم شيئًا جديدًا - إحدى طرق الحفاظ على دماغك حادًا وإيجاد السعادة في الحياة هي الاستمرار في تعلم مهارات جديدة في الحياة. بمجرد أن نغادر المدرسة وننتقل إلى القوى العاملة ، يمكن أن تصبح الحياة رتيبة ومملة للغاية. على عكس الذهاب إلى صالة الألعاب الرياضية التقليدية أو السير على إيقاع مدرب التدريبات أو التمارين الرياضية ، فأنت تتعلم باستمرار مهارات الدفاع عن النفس وحركة الجسد الجديدة في الجيتسو. يتضمن المنهج في معظم الأكاديميات تعلم الدفاع عن النفس العملي ، والحركات الأساسية وتحديد مواقع الجسم ، والتحولات ، والخضوع ، ومحاربة المعتدي ، واستراتيجية المنافسة الرياضية. تتطور جيو جيتسو باستمرار مع تقنيات جديدة والتعلم لكل من المبتدئين والمزيد من الخبرات الممارسين هو عملية مستمرة مستمرة لجميع المستويات
</p>
<p dir="rtl" lang="ar">
التعرف على أشخاص جدد - من الصعب مقابلة أشخاص ذوي جودة ترغب في التفاعل معهم يوميًا أو أسبوعيًا. تعد دروس الجوجيتسو طريقة رائعة للتعرف على أشخاص جدد. قد يستغرق الأمر وقتًا للتدفئة لزملاء الدراسة والعكس صحيح ، ولكن إذا أعطيت الوقت ، فستكون صداقات رائعة. الجزء الذي يجعل ممارسو الجيتسو ودية للغاية هو أنهم يمارسون ضغوطهم وهم متواضعون باستمرار على الحصيرة ، مما يحافظ على نفسهم تحت السيطرة. جو روجان لديه هذا الاقتباس الرائع عن الناس في جيو جيتسو خلال خطابه الحزام الأسود
</p>
<p>Practical Self Defense – Jiu Jitsu has been marketed as one of the most effective martial arts for self-defense where the smaller and less athletic individual can defend themselves against larger and stronger assailants. While traditional martial arts still require speed and coordination in order to execute kick and punch combinations and primarily practice through katas and forms, Jiu Jitsu relies on efficient techniques that are practiced in live sparring situations that are closer to simulating a one-on-one situation. Many techniques taught in Jiu Jitsu are applicable in street self defense including clinching an attacker while on your feet, defending yourself on the ground off your back, defending chokes, when and how to apply over hooks and under hooks, and escaping an assailant who grabs you from behind.</p>
<p> Great Workout/Get in Shape – After a 60 or 90-minute Jiu Jitsu class, your body and gi will be soaked in sweat. Jiu Jitsu is a great workout that incorporates every part of your body. From the warm ups consisting of jogging and calisthenics to the continued movement throughout the classes, you will be expanding and contracting muscles you might not of ever used before. Even for experienced practitioners, this will be a great workout especially if they work with a heavy training partner or drill their techniques at a faster pace. After the warm ups and drilling, the rolling will really elevate the heart rate. You and your training partner will now be providing resistance and will be working to advance position and submit your training partner. Not all rounds of rolling need to be a 100% battle, especially if there is a major gap in skill level or size. Training partners can flow roll or S-train for a great cardio workout that can incorporate the techniques learned during the class. BJJ classes have been reported to burn between 400 to 1,000 calories per session depending on your size and the pace and intensity of the classes. </p>
<p>Learn Something New- One of the ways to keep your brain sharp and find happiness in life is to keep on learning new skills in life. Once we leave school and move on to the workforce, life can become very monotonous and dull. Unlike going to a traditional gym or marching to the beat of a spin or aerobics instructor, you are constantly learning new self-defense and body movement skills in Jiu Jitsu. The curriculum at most academies incorporates learning practical self-defense, fundamental movements and body positioning, transitions, submissions, fighting off an assailant, and strategy for sports competition. Jiu Jitsu is constantly evolving with new techniques and the learning for both the novice and the more experiences practitioners is a continual ongoing process for all levels.</p>
<p>Meet New People - It is hard to meet quality people you would want to interact on with on a daily or weekly basis. Jiu Jitsu classes are a great way to meet new people. It could take time to warm up to classmates and vice versa, but if you give it time, you will make great friends. Part what makes Jiu Jitsu practitioners very friendly is that they work out their stress and are constantly humbled on the mat, which keeps their ego in check. Joe Rogan had this great quote about people in Jiu Jitsu during his black belt speech.</p>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" dir="rtl" lang="ar">Close | قريب</button>
</div>
</div>
</div>
</div>
<hr class="my-4">
</div>
</section>
<!-- Athletes List -->
<div class="container-fluid padding" id="athleteslist" >
<div class="row welcome text-center">
<div class="col-12" dir="rtl">
<h1 class="display-4" dir="rtl" lang="ar">Our Athletes List | قائمة المقاتلين جيو جيتسو</h1>
</div>
<hr>
<div class="col-12">
<p style="text-align:justify" dir="rtl">مرحبًا بك ويسعدني أن تكون هنا ، حيث ستجد قائمة بجميع الشخصيات التي تتصارع. انقر فوق الأسماء لقراءة السير الذاتية والسجلات التي تتصارع مع جميع المعلومات ذات الصلة التي يمكن أن نجدها. هذه نسخة تجريبية وهي موجودة في موقع BJJHeroes.com.</p>
<p style="text-align:justify">Welcome and it's a pleasure to have you here, where you will find a list of all grappling figures. Click on the names to read the biographies and grappling records with all the relevant information we could find. This is a beta version and is based in BJJHereoes.com.</p>
<div class="page-wrapper">
<div class="mh-el page-sidebar page-default">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="main-content" role="main" itemscope="itemscope" itemtype="https://schema.org/WebPage">
<!-- MOST IMPORTANT LIST -->
<div class="maha-crumbs" hidden dir="ltr"><ol itemscope itemtype="https://schema.org/BreadcrumbList"><li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"><meta itemprop="position" content="1" /></li></ol> <i class="icon-right-open-mini"></i>
<span class="current">BJJ Fighters List | قائمة المقاتلين جيو جيتسو</span>
</div>
<article id="post-835" class="main-content single-post-box" itemscope="" itemtype="https://schema.org/Article">
<div class="text-content">
<table class="table table-striped" dir="rtl">
<thead>
<tr class="row-1 odd">
<th class="column-1">First Name | الاسم الاول</th>
<th class="column-2">Last Name | الكنية</th>
<th class="column-3">Country | بلد</th>
<th class="column-4">Team Name | الفريق</th>
</tr>
</thead>
<tbody class="row-hover">
<tr class="row-2 even">
<td class="column-1">
<a href="aare_alexander.html">
Aarae
</a>
</td>
<td class="column-2">
<a href="aare_alexander.html">
Alexander
</a>
</td>
<td class="column-3">
<img alt="United States" src="img/23px-Flag_of_the_United_States.svg.png">
</td>
<td class="column-4">
Team Lloyd Irvin
</td>
</tr>
<tr class="row-7 odd">
<td class="column-1">
<a href="adam_wardzinski.html">
Adam
</a>
</td>
<td class="column-2">
<a href="adam_wardzinski.html">
Wardzínski
</a>
</td>
<td class="column-3">
</td>
<td class="column-4">
Fifty/50 Martial Arts Academy
</td>
</tr>
<tr class="row-7 odd">
<td class="column-1">
<a href="andre_galvao.html">
André
</a>
</td>
<td class="column-2">
<a href="andre_galvao.html">
Galvão
</a>
</td>
<td class="column-3">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</td>
<td class="column-4">
Atos
</td>
</tr>
<tr>
<td class="column-1">
<a href="bernardo_faria.html">
Bernardo
</a>
</td>
<td class="column-2">
<a href="bernardo_faria.html">
Faria
</a>
</td>
<td class="column-3">
<a href="/?p=283">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</a>
</td>
<td class="column-4">
<a href="#">
Alliance
</a>
</td>
</tr>
<tr>
<td class="column-1">
<a href="braulio_estima.html">
Braulio
</a>
</td>
<td class="column-2">
<a href="braulio_estima.html">
Estima
</a>
</td>
<td class="column-3">
<a href="/?p=283">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</a>
</td>
<td class="column-4">
<a href="#">
Gracie Barra
</a>
</td>
</tr>
<tr>
<td class="column-1">
<a href="bruno_malfacine.html">
Bruno
</a>
</td>
<td class="column-2">
<a href="bruno_malfacine.html">
Malfacine
</a>
</td>
<td class="column-3">
<a href="/?p=283">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</a>
</td>
<td class="column-4">
<a href="#">
Alliance
</a>
</td>
</tr>
<tr class="row-273 odd">
<td class="column-1">
<a href="erberth_santos.html">
Erberth
</a>
</td>
<td class="column-2">
<a href="erberth_santos.html">
Santos
</a>
</td>
<td class="column-3">
<a href="erberth_santos.html">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</a>
</td>
<td class="column-4">
<a href="#">
Esquadrão JJ
</a>
</td>
</tr>
<tr class="row-273 odd">
<td class="column-1">
<a href="felipe_pena.html">
Felipe
</a>
</td>
<td class="column-2">
<a href="felipe_pena.html">
Pena
</a>
</td>
<td class="column-3">
<a href="">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</a>
</td>
<td class="column-4">
<a href="#">
Gracie Barra
</a>
</td>
</tr>
<tr class="row-278 even">
<td class="column-1">
<a href="fellipe_andrew.html">
Fellipe
</a>
</td>
<td class="column-2">
<a href="fellipe_andrew.html">
Andrew
</a>
</td>
<td class="column-3">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</td>
<td class="column-4"></td>
</tr>
<tr class="row-416 even">
<td class="column-1">
<a href="joao_miyao.html">
Joao
</a>
</td>
<td class="column-2">
<a href="joao_miyao.html">
Miyao
</a>
</td>
<td class="column-3">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</td>
<td class="column-4">
PSLPB
</td>
</tr>
<tr class="row-470 even">
<td class="column-1"><a href="jonathan_torres.html">Jonathan</a></td><td class="column-2"><a href="jonathan_torres.html">
Torres
</a>
</td>
<td class="column-3">
<a href="#">
<img alt="United States" src="img/23px-Flag_of_the_United_States.svg.png">
</a>
</td>
<td class="column-4">
<a href="#">
Atos
</a>
</td>
</tr>
<tr class="row-416 even">
<td class="column-1">
<a href="johnatha_barbosa.html">
Johnathan
</a>
</td>
<td class="column-2">
<a href="johnatha_barbosa.html">
Barbosa
</a>
</td>
<td class="column-3">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</td>
<td class="column-4">
AOJ
</td>
</tr>
<tr class="row-471 odd">
<td class="column-1">
<a href="keenan_cornelius.html">
Keenan
</a>
</td>
<td class="column-2">
<a href="keenan_cornelius.html">
Cornelius
</a>
</td>
<td class="column-3">
<img alt="United States" src="img/23px-Flag_of_the_United_States.svg.png">
</td>
<td class="column-4">
<a href="#">
Atos
</a>
</td>
</tr>
<tr class="row-495 odd">
<td class="column-1">
<a href="leandro_lo.html">
Leandro
</a>
</td>
<td class="column-2">
<a href="leandro_lo.html">
Lo
</a>
</td>
<td class="column-3">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</td>
<td class="column-4">
NS Brotherhood
</td>
</tr>
<tr class="row-525 odd">
<td class="column-1">
<a href="lucas_barbosa.html">
Lucas
</a>
</td>
<td class="column-2">
<a href="lucas_barbosa.html">
Daniel Barbosa
</a>
</td>
<td class="column-3">
<a href="#">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</a>
</td>
<td class="column-4">
<a href="#">
Atos
</a>
</td>
</tr>
<tr class="row-523 odd">
<td class="column-1">
<a href="lucas_barbosa.html">
Lucas
</a>
</td>
<td class="column-2">
<a href="lucas_lepri.html">
Lepri
</a>
</td>
<td class="column-3">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</td>
<td class="column-4">
<a href="#">
Alliance
</a>
</td>
</tr>
<tr class="row-995 odd">
<td class="column-1">
<a href="mahamed_aly.html">
Mahamed
</a>
</td>
<td class="column-2">
<a href="mahamed_aly.html">
Aly
</a>
</td>
<td class="column-3">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</td>
<td class="column-4">
Team Lloyd Irvin
</td>
</tr>
<tr class="row-594 even">
<td class="column-1">
<a href="marcus_almeida.html">
Marcus
</a>
</td>
<td class="column-2">
<a href="marcus_almeida.html">
Almeida
</a>
</td>
<td class="column-3">
<a href="marcus_almeida.html">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</a>
</td>
<td class="column-4">
<a href="#">
Checkmat
</a>
</td>
</tr>
<tr class="row-649 odd">
<td class="column-1">
<a href="nicholas_meregali.html">
Nicholas
</a>
</td>
<td class="column-2">
<a href="nicholas_meregali.html">
Meregali
</a>
</td>
<td class="column-3">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</td>
<td class="column-4">
<a href="#">
Alliance
</a>
</td>
</tr>
<tr class="row-684 even">
<td class="column-1">
<a href="paulo_miyao.html">
Paulo
</a>
</td>
<td class="column-2">
<a href="paulo_miyao.html">
Miyao
</a>
</td>
<td class="column-3">
<img alt="Brazil" src="img/22px-Flag_of_Brazil.svg.png">
</td>
<td class="column-4">
PSLPB
</td>
</tr>
</tbody>
</table>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</div>
<hr class="my-4">
</div>
</div>
</div>
</div>
<!--Fixed Background / Tatame -->
<figure>
<div class="fixed-wrap">
<div id="fixed">
</div>
</div>
</figure>
<!-- VIDEOS SECTION -->
<section id="training">
<!-- 1 - Head TEXT (Videos Section) -->
<div class="container-fluid padding">
<div class="row welcome text-center">
<div class="col-12">
<h1 class="display-4" dir="rtl" lang="ar">Positions Videos | دوراتنا التدريبية</h1>
</div>
<hr>
</div>
</div>
<!-- 2 - Buttons Collapse (Videos Section) / 5 Sections -->
<!-- 2.1 - Guard Positions (Videos Section) -->
<!-- 2.1.1 - Head Button (Guard Positions) -->
<div class="accordion" id="accordionExample" dir="rtl">
<div class="card-scroll-down">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne" >
<!-- Guard Positions -->
Guard Positions | مواقف حراسة
</button>
</h5>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionExample">
<!-- 2.1.2 - Background images and Play Buttons (Guard Positions) -->
<div class="card-body">
<div class="video-box">
<div class="container-fluid">
<div class="row flex-row flex-nowrap">
<!-- Guard Video 1 -->
<div class="col-xs-3">
<div class="card-a">
<div class="card-a-item">
<div class="card-a-img-background" style="background-image:url(img/sweep/sweep1.png)"></div>
<div class="videobtn">
<img src="img/video-btn.png" class="video-btn" data-toggle="modal" data-target="#play-video-11">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 2.1.2.1 - Modal Videos Link (Guard Positions) -->
<div class="modal fade" id="play-video-11">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div class="modal-body">
<iframe src="https://www.youtube.com/embed/jdxJyklBGQM" width="770" height="500" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Videos Section / 2 - Pass Positions -->
<div class="card-scroll-down">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
<!-- Pass Positions -->
Pass Positions | تمرير المواقف
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body">
<div class="video-box">
<div class="container-fluid">
<div class="row flex-row flex-nowrap">
<div class="col-xs-3">
<div class="card-a">
<div class="card-a-item">
<div class="card-a-img-background" style="background-image:url(img/pass/pass1.png)"></div>
<div class="videobtn">
<img src="img/video-btn.png" class="video-btn" data-toggle="modal" data-target="#play-video-21">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 2.1.2.2 - Modal Videos Link (Guard Positions) -->
<div class="modal fade" id="play-video-21">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div class="modal-body">
<iframe src="https://www.youtube.com/embed/Ro9qDWCOkHk" width="770" height="500" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Videos Section / 3 - Sweeps Positions -->
<div class="card-scroll-down ">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
<!-- Sweeps -->
Sweeps | مداهمات
</button>
</h5>
</div>
<!-- 2.1.2.3 - Modal Videos Link (Guard Positions) -->
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body">
<div class="video-box">
<div class="container-fluid">
<div class="row flex-row flex-nowrap">
<div class="col-xs-3">
<div class="card-a">
<div class="card-a-item">
<div class="card-a-img-background" style="background-image:url(img/sweep/sweep1.png)"></div>
<div class="videobtn">
<img src="img/video-btn.png" class="video-btn" data-toggle="modal" data-target="#play-video-31">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="play-video-31">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div class="modal-body">
<iframe src="https://www.youtube.com/embed/N7f6I4SFqw0" width="770" height="500" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Videos Section / 4 - submissions -->
<div class="card-scroll-down ">
<div class="card-header" id="headingfour">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapse4" aria-expanded="false" aria-controls="collapseThree">
<!-- Submissions -->
Submissions | التقديمات
</button>
</h5>
</div>
<div id="collapse4" class="collapse" aria-labelledby="headingfour" data-parent="#accordionExample">
<div class="card-body">
<div class="video-box">
<div class="container-fluid">
<div class="row flex-row flex-nowrap">
<div class="col-xs-3">
<div class="card-a">
<div class="card-a-item">
<div class="card-a-img-background" style="background-image:url(img/submission/submission1.png)"></div>
<div class="videobtn">
<img src="img/video-btn.png" class="video-btn" data-toggle="modal" data-target="#play-video-41">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 2.1.2.4 - Modal Videos Link (Guard Positions) -->
<div class="modal fade" id="play-video-41">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div class="modal-body">
<iframe src="https://www.youtube.com/embed/oD-0oYDGfY4" width="770" height="500" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<hr class="my-4">
<!-- Meet our coach Section-->
<figure>
<div class="fixed-wrap">
<div id="fixed3">
</div>
</div>
<div class="container-fluid padding" id="about">
<div class="row padding text-right" dir="rtl">
<div class="col-lg-6 coach1">
<!-- <h2>Our Coach</h2> -->
<h2 dir="rtl" lang="ar">About Us | مدربنا</h2>
<hr>
<p dir="rtl" lang="ar"> يفوق جيو جيتسو الاختناقات ، وأقفال المفاصل ، والتثبيت ، والرميات ، والإضرابات. الفهم الحقيقي لفلسفة جيو جيتسو يعد الرجال والنساء والأطفال مدى الحياة ، ويظهر لهم مسارات لقيادة حياة أكثر صحة وتمكين الاستخدام الأكثر كفاءة للقوة البدنية والعقلية والروحية</p>
<p dir="rtl" lang="ar">نشر غراند ماسترز ريكاردو دي لا ريفا طريقة الحياة هذه.</p>
<p></p>
<p dir="ltr" style="text-align:justify">Jiu-Jitsu eclipses chokes, joint locks, immobilizations, throws, and strikes. A true understanding of the Jiu-Jitsu philosophy prepares men, women, and children for life, showing them paths to lead a healthier life and empowers the most efficient use of physical, mental, and spiritual strength.</p>
<p dir="ltr" style="text-align:justify">Grand Masters Ricardo De La Riva propagated this way of life.</p>
<a href="#" class="btn btn-primary" data-toggle="modal" data-target="#learnmore2" dir="rtl" lang="ar">See More | شاهد المزيد</a>
<div class="modal fade" id="learnmore2">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content">
<div class="modal-head">
<h1>About Us | مدربنا</h1>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-4">
<p dir="rtl" lang="ar">حسنًا ، هذه صفحة شخصية لممارسي جيو جيتسو الذين يرغبون في تحسين بعض المهارات.
أنا دييغو وأنا طالبة في جيو جيتسو والعربية وصناعة الأفلام. نتيجة لذلك ، أنشأت هذه القناة: أولاً ، لأنني أعتقد أنه يجب على الجميع تعلم الجوجيتسو للدفاع عن النفس واحترام الذات ؛ ثانيًا ، لأنني أحب اللغات وخاصة العربية ، وإذا تعلمت أي شخص قد تفقد المسافة ؛ وثالثاً ، لقد جعلني جائحة فيروس كورونا أتعلم صناعة الأفلام وأصبح هذا تحديًا بالنسبة لي.</p>
<p></p>
<p dir="ltr" style="text-align:justify">Well, this is a personal page for jiujitsu practitioners that want to improve some skills.</p>
<p dir="ltr" style="text-align:justify">I’m Diego and I’m a student of brazilianjiujitsu, of arabic language and of filmmaking. So, in consequence of that I created this personal site: first, because I think that everybody should learn jiujitsu, for self defense and self esteem; second, because I love languages, specially, arabic, and if you learn any language you can take the distance down; and, third, the corona virus pandemic makes me learn filmmaking and this became one of my greatest challenges nowadays.</p>
</div>
<div class="col-md-4">
<img src="img/coach/coach.jpg">
</div>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" dir="rtl" lang="ar">Close | قريب</button>
</div>
</div>
</div>
</div>
<br>
</div>
<div class="col-lg-6 coach2">
</div>
</div>
</div>
</figure>
<hr class="my-4">
<!--Fixed Background / ERBERTH -->
<figure>
<div class="fixed-wrap">
<div id="fixed2">
</div>
</div>
</figure>
<!--Connect-->
<section class="section" id="connect">
<div class="container-fluid padding">
<div class="row text-center padding" dir="rtl">
<div class="col-12">
<!-- <h2>Connect</h2> -->
<h2 dir="rtl" lang="ar">Connect | الاتصال</h2>
</div>
<div class="col-12 social padding">
<a href="https://web.facebook.com/diego.batalha.906/" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/bjjinarabic/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.youtube.com/channel/UClT5N3X7Gi4duaQnUJw6v6g" target="_blank"><i class="fab fa-youtube"></i></a>
</div>
</div>
</div>
</section>
<!--Footer-->
<footer>
<div class="container-fluid padding">
<div class="row text-center" dir="rtl">
<div class="col-md-4">
<img src="img/logo2.png">
<hr class="light">
<div class="row">
<div class="col-md-12">
<p><i class="fab fa-whatsapp"></i> +٥٥ ٢١ ٩٦٩١٧٩٢٢٩</p>
<p><i class="fas fa-envelope-open"></i> [email protected]</p>
</div>
</div>
</div>
<div class="col-md-4">
<hr class="light">
<!-- <h5>Our hours</h5> -->
<h5 dir="rtl" lang="ar">ساعاتنا</h5>
<hr class="light">
<!-- <p>Monday - Friday: 8am - 10pm </p> -->
<p dir="rtl" lang="ar">الإثنين - الجمع: ٨ ص - ١٠ م - 10 مساءً</p>
<!-- <p>Saturday: Closed </p> -->