-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1205 lines (1064 loc) · 73.7 KB
/
index.html
File metadata and controls
1205 lines (1064 loc) · 73.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>BrAInIoT2023</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Y17ZXHJWYV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Y17ZXHJWYV');
</script>
<!-- CSS Files
================================================== -->
<link rel="stylesheet" href="css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="css/jpreloader.css" type="text/css">
<link rel="stylesheet" href="css/animate.css" type="text/css">
<link rel="stylesheet" href="css/plugin.css" type="text/css">
<link rel="stylesheet" href="css/owl.carousel.css" type="text/css">
<link rel="stylesheet" href="css/owl.theme.css" type="text/css">
<link rel="stylesheet" href="css/owl.transitions.css" type="text/css">
<link rel="stylesheet" href="css/magnific-popup.css" type="text/css">
<link rel="stylesheet" href="css/jquery.countdown.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/twentytwenty.css" type="text/css">
<link rel="stylesheet" href="css/quote.css" type="text/css">
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.1/firebase-firestore.js"></script>
<!-- custom background -->
<link rel="stylesheet" href="css/bg.css" type="text/css">
<!-- color scheme -->
<link rel="stylesheet" href="css/colors/main.css" type="text/css" id="colors">
<link rel="stylesheet" href="css/color.css" type="text/css">
<!-- load fonts -->
<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.css" type="text/css">
<link rel="stylesheet" href="fonts/elegant_font/HTML_CSS/style.css" type="text/css">
<link rel="stylesheet" href="fonts/et-line-font/style.css" type="text/css">
<!-- custom font -->
<link rel="stylesheet" href="css/font-style.css" type="text/css">
</head>
<body id="homepage" class="de_light">
<div id="wrapper">
<!-- header begin -->
<header class="transparent header-light">
<div class="info">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="column">Working Hours Monday - Friday <span class="id-color"><strong>08:00-16:00</strong></span></div>
<div class="column">Toll Free <span class="id-color"><strong>1800.899.900</strong></span></div>
<!-- social icons -->
<div class="column social">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-rss"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-envelope-o"></i></a>
</div>
<!-- social icons close -->
</div>
</div>
</div>
</div>
<div class="container">
<div class="row" >
<div class="col-md-12">
<!-- logo begin -->
<div id="logo">
<a href="index.html">
<!-- <b style="font-size:x-large;">Br<span class="id-color">AI</span>n<span class="id-color">IoT</span></b> -->
<img class="logo" style="width:300px; height:auto;" src="images-event/logo/BrAInIoT.svg" alt="">
</a>
</div>
<!-- logo close -->
<!-- small button begin -->
<span id="menu-btn"></span>
<!-- small button close -->
<div class="header-extra">
<div class="v-center">
<span id="b-menu">
<span></span>
<span></span>
<span></span>
</span>
</div>
</div>
<!-- mainmenu begin -->
<ul id="mainmenu" class="ms-2">
<li><a href="#section-hero">Home<span></span></a></li>
<li><a href="#section-about">About<span></span></a></li>
<!-- <li><a href="#section-speakers">Speakers<span></span></a></li> -->
<li><a href="#section-schedule">Schedule<span></span></a></li>
<li><a href="#section-ticket">Sponsorships<span></span></a></li>
<!-- <li><a href="#section-sponsors">Sponsors<span></span></a></li> -->
<li><a href="#section-register">Contact<span></span></a></li>
<li><a href="project-proposals.html">Project proposals<span></span></a></li>
</ul>
<!-- mainmenu close -->
</div>
</div>
</div>
</header>
<!-- header close -->
<!-- content begin -->
<div id="content" class="no-bottom no-top">
<!-- parallax section -->
<section id="section-hero" class="full-height text-light" data-bgimage="url(images-event/bg/0x0.jpg) fixed top center" data-stellar-background-ratio=".2">
<div id="particles-js"></div>
<div class="center-y text-center">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="spacer-double"></div>
<h1 class="title-3">
BrAInIoT<span class="id-color">2023</span> challenge <br> Agriculture<span class="id-color">4.0</span>
</h1>
<div class="spacer-single"></div>
<div id="defaultCountdown" class="countdown-s1"></div>
<div class="spacer-single"></div>
<!-- <div class="spacer-single"></div> -->
<div class="d-lg-flex justify-content-center">
<div class="h6 padding10 pt0 pb0"><i class="i_h3 fa fa-calendar-check-o id-color"></i>May 27th</div>
<!-- <div class="h6 padding10 pt0 pb0"><i class="i_h3 fa fa-user id-color"></i>12 Speakers</div> -->
<div class="h6 padding10 pt0 pb0"><i class="i_h3 fa fa-map-marker id-color"></i>Marrakech, Safi-Marrakech</div>
</div>
<div class="spacer-single"></div>
<p style="color:#3d3d3d; font-weight:bold;">BrainX, the university club of ENSA-M is pleased to announce the first edition of BrAInIoT, an event featuring a national competition for Agriculture 4.0 ideas and projects. Innovators and entrepreneurs in this field are invited to participate and showcase their ideas.</p>
<a href="#section-about" class="btn-custom text-white scroll-to">Learn More ...</a>
<div class="spacer-double"></div>
<div class="quote-container">
<div class="quote-image-container">
<img class="quote-img" src="images-event/roi.jpg" alt="King Mohamed VI Image">
</div>
<div class="quote-text-container">
<blockquote>
“As we know, basic food needs cannot be met with gas or oil. But, is not food security the major challenge facing Africa?”
<br>
“We, peoples of Africa, have the means and the genius; together, we can fulfill the aspirations of our peoples.”
<br>
<div style="text-align: right;">
#GreenGeneration_2020-2030
<cite>King Mohamed VI</cite>
</div>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- <section id="section-about" data-bgimage="url(images-event/bg/digital-data.jpg) top left no-repeat"> -->
<section id="section-about" data-bgcolor="#ECE8DA" >
<!-- <div class="wm wm-border light wow fadeInDown">about</div> -->
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 wow fadeInLeft" data-wow-delay="0s">
<h2>About The Event</h2>
<p>
<span class="id-color">Agriculture</span> is a significant part of the Moroccan and African economies. However, climate change has caused a decline in productivity and crop yields, leading to a reduction in employment opportunities. To address this issue, his majesty <span class="id-color">King Mohammed VI</span> introduced the "<span class="id-color">Triple A Initiative</span>" to provide funding for small-scale agriculture and support agricultural projects in Africa. Additionally, the "<span class="id-color">Green Generation 2020-2030</span>" aims to create a sustainable and resilient <span class="id-color">agricultural sector</span> that can tackle climate change. <span class="id-color">BrainX</span> is organizing the <span class="id-color">BrAInIoT2023</span> event to attract innovative <span class="id-color">agriculture 4.0</span> projects from Moroccan and African youth to enhance efficiency, equity, and environmental sustainability using the latest technologies such as <span class="id-color">AI</span> and <span class="id-color">IoT</span>. The event hopes to contribute to the development of the <span class="id-color">agricultural sector</span> by aligning the "<span class="id-color">Green Generation 2020-2030</span>" strategy.
</p>
<!-- <p>
At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
</p> -->
<div class="spacer10"></div>
<a href="project-proposals" class="btn-custom font-weight-bold text-white sm-mb-30 scroll-to">Project proposals for agriculture 4.0</a>
</div>
<div class="col-lg-6 mb-sm-30 text-center wow fadeInRight">
<div class="de-images">
<!-- <img class="di-small wow fadeIn" style="object-fit: cover;" src="images-event/misc/image2.jpg" alt="" /> -->
<!-- <img class="di-small-2" style="object-fit: cover;" src="images-event/misc/ai_image2.jpg" alt="" /> -->
<img class="img-fluid wow fadeInRight" style="object-fit: cover;" data-wow-delay=".25s" src="images-event/misc/brainiot.jpg" alt="" />
</div>
</div>
</div>
</div>
</section>
<!-- section begin -->
<!-- <section id="section-features" data-bgcolor="#285430"> -->
<section id="section-features" data-bgimage="url(images-event/bg/farming-edited.jpg) fixed bottom" >
<!-- <div class="wm wm-border dark wow fadeInDown ">features</div> -->
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1 class="text-white">Why you should Join The Event ?</h1>
<div class="separator"><span><i class="fa fa-square"></i></span></div>
<div class="spacer-single"></div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="0s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-trophy text-light"></i>
<div class="text">
<h3 class="text-white"><span>Prize Money</span></h3>
<p class="text-white">3 winners will receive a total sum of 60000MAD devised to 30000MAD for the 1st place, 20000MAD for the 2nd place and 10000MAD for the 3rd place.</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay=".25s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-mortar-board text-light"></i>
<div class="text">
<h3 class="text-white"><span>Learning</span></h3>
<p class="text-white">It’s a great opportunity to brush up on your technical knowledge or get to grips with the basics if you’ve never done anything technical before.</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay=".5s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-sitemap text-light"></i>
<div class="text">
<h3 class="text-white"><span>Networking</span></h3>
<p class="text-white">You’re surrounded by a room of like-minded students who all want to learn, collaborate and create the best project possible. It’s also a good chance to meet mentors, industry professionals and corporate sponsors.</p>
</div>
</div>
</div>
<div class="spacer-single sm-hide"></div>
<div class="col-lg-4 wow fadeIn" data-wow-delay=".75s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-building text-light"></i>
<div class="text">
<h3 class="text-white"><span>Improving Your Soft Skills</span></h3>
<p class="text-white">You’ll learn the essential communication, problem-solving and collaboration skills that will benefit you in any professional sector.</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="1s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-users text-light"></i>
<div class="text">
<h3 class="text-white"><span>Meet Industry Experts</span></h3>
<p class="text-white">These professionals will give you a chance to get an insight into a potential future career path and learn more about the business concerns and focuses that are affecting different industries today.</p>
</div>
</div>
</div>
<div class="col-lg-4 wow fadeIn" data-wow-delay="1.25s">
<div class="box-number square">
<i class="bg-color hover-color-2 fa fa-lightbulb-o text-light"></i>
<div class="text">
<h3 class="text-white"><span>Startup Oppurtunity</span></h3>
<p class="text-white">In the competition, the top three teams will have the chance to develop start-ups and receive incubation and supervision support. The competition serves as a platform for teams to turn their ideas into real-world applications.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-speakers" style="display:none;" class="text-light" data-bgimage="url(images-event/bg/1.jpg) fixed top center">
<div class="wm wm-border dark wow fadeInDown">speakers</div>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>The Speakers</h1>
<div class="separator"><span><i class="fa fa-square"></i></span></div>
<div class="spacer-single"></div>
</div>
<div class="clearfix"></div>
<div class="col-lg-3 col-md-6">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="images-event/team/1.jpg" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>John Smith</h3>
<p class="lead">Expert Designer</p>
<div class="small-border"></div>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat.</p>
<div class="social">
<a href="#"><i class="fa fa-facebook fa-lg"></i></a>
<a href="#"><i class="fa fa-twitter fa-lg"></i></a>
<a href="#"><i class="fa fa-google-plus fa-lg"></i></a>
<a href="#"><i class="fa fa-skype fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="col-lg-3 col-md-6">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="images-event/team/2.jpg" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Michael Dennis</h3>
<p class="lead">Expert Designer</p>
<div class="small-border"></div>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat.</p>
<div class="social">
<a href="#"><i class="fa fa-facebook fa-lg"></i></a>
<a href="#"><i class="fa fa-twitter fa-lg"></i></a>
<a href="#"><i class="fa fa-google-plus fa-lg"></i></a>
<a href="#"><i class="fa fa-skype fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="col-lg-3 col-md-6">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="images-event/team/3.jpg" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Sarah Michelle</h3>
<p class="lead">Expert Designer</p>
<div class="small-border"></div>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat.</p>
<div class="social">
<a href="#"><i class="fa fa-facebook fa-lg"></i></a>
<a href="#"><i class="fa fa-twitter fa-lg"></i></a>
<a href="#"><i class="fa fa-google-plus fa-lg"></i></a>
<a href="#"><i class="fa fa-skype fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="col-lg-3 col-md-6">
<!-- team member -->
<div class="de-team-list">
<div class="team-pic">
<img src="images-event/team/4.jpg" class="img-responsive" alt="" />
</div>
<div class="team-desc">
<h3>Katty Wilson</h3>
<p class="lead">Expert Designer</p>
<div class="small-border"></div>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat.</p>
<div class="social">
<a href="#"><i class="fa fa-facebook fa-lg"></i></a>
<a href="#"><i class="fa fa-twitter fa-lg"></i></a>
<a href="#"><i class="fa fa-google-plus fa-lg"></i></a>
<a href="#"><i class="fa fa-skype fa-lg"></i></a>
</div>
</div>
</div>
<!-- team close -->
</div>
<div class="clearfix"></div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<!-- <section id="section-schedule" aria-label="section-services-tab" data-bgimage="url(images-event/bg/6.jpg) top right no-repeat"> -->
<section id="section-schedule" data-bgcolor="#ECE8DA" aria-label="section-services-tab">
<!-- <div class="wm wm-border light wow fadeInDown ">schedule</div> -->
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>Event Schedule</h1>
<div class="separator"><span><i class="fa fa-square"></i></span></div>
<div class="spacer-single"></div>
</div>
<div class="col-md-12 wow fadeInUp">
<div class="de_tab tab_style_4 text-center">
<ul class="de_nav de_nav_dark">
<li class="active" data-link="#section-services-tab">
<h3>May 27, 2023</h3>
<!-- <h3>Day <span>01</span></h3>
<h4>March 20, 2021</h4> -->
</li>
<!-- <li data-link="#section-services-tab">
<h3>Day <span>02</span></h3>
<h4>March 21, 2021</h4>
</li>
<li data-link="#section-services-tab">
<h3>Day <span>03</span></h3>
<h4>March 22, 2021</h4>
</li>
<li data-link="#section-services-tab">
<h3>Day <span>04</span></h3>
<h4>March 23, 2021</h4>
</li>
<li data-link="#section-services-tab">
<h3>Day <span>05</span></h3>
<h4>March 24, 2021</h4>
</li> -->
</ul>
<div class="de_tab_content text-left">
<div id="tab1" class="tab_single_content">
<div class="row">
<div class="col-md-12" >
<div class="schedule-listing">
<div class="schedule-item" style="padding:20px;" >
<div class="sc-pic" style="display: none;">
<img src="images-event/team/1.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="display: none;">
<h4>John Smith</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="padding:0;">08:30 - 09:00 AM</div>
<div class="sc-info">
<h3 style="margin:0;">Welcome</h3>
<!-- <p>In this session we will discuss about digital topics in detail. You need laptops and other tech support equipment. This session will last for 2 hours. So prepare yourself.</p> -->
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="schedule-listing">
<div class="schedule-item" style="padding:20px;">
<div class="sc-pic" style="display: none;">
<img src="images-event/team/2.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="display: none;">
<h4>Michael Dennis</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="padding:0;">09:00 - 09:30 AM</div>
<div class="sc-info">
<h3>Opening Ceremony</h3>
<ul>
<li>Speech by the Minister</li>
<li>Speech by the President of the UCA</li>
<li>Speech by the Director of ENSA Marrakech</li>
</ul>
<!-- <p>In this session we will discuss about digital topics in detail. You need laptops and other tech support equipment. This session will last for 2 hours. So prepare yourself.</p> -->
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="schedule-listing">
<div class="schedule-item" style="padding:20px;">
<div class="sc-pic" style="display: none;">
<img src="images-event/team/3.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="display: none;">
<h4>Sarah Michelle</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="padding:0;">09:30 - 10:30 AM</div>
<div class="sc-info">
<h3>Conference 1</h3>
<ul>
<li>Modern technology, a main driver of the agricultural economy</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="schedule-listing">
<div class="schedule-item" style="padding:20px;">
<div class="sc-pic" style="display: none;">
<img src="images-event/team/3.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="display: none;">
<h4>Sarah Michelle</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="padding:0;">10:30 - 11:00 AM</div>
<div class="sc-info">
<h3 style="margin:0;">Coffee Break</h3>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- <div class="schedule-listing">
<div class="schedule-item" style="padding:20px;">
<div class="sc-pic" style="visibility: hidden;">
<img src="images-event/team/3.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="visibility: hidden;">
<h4>Sarah Michelle</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="visibility: hidden;" style="padding:0;">11:00 - 11:00</div>
<div class="sc-info">
<h3 style="margin:0;background-color: #309f39;color:#ffffff;display: inline;" >RECEPTION DE MONSIEUR LE MINISTRE</h3>
</div>
<div class="clearfix"></div>
</div>
</div> -->
<div class="schedule-listing">
<div class="schedule-item" style="padding:20px;">
<div class="sc-pic" style="display: none;">
<img src="images-event/team/4.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="display: none;">
<h4>Katty Wilson</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="padding:0;">11:00 - 12:00 AM</div>
<div class="sc-info">
<h3>Conference 2</h3>
<ul>
<li>AI and IoT for sustainable agriculture</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="schedule-listing">
<div class="schedule-item" style="padding:20px;">
<div class="sc-pic" style="display: none;">
<img src="images-event/team/4.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="display: none;">
<h4>Katty Wilson</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="padding:0;">12:00 - 01:00 PM</div>
<div class="sc-info">
<h3>Stands Visit</h3>
<ul>
<li>Passage on the stands of startups and projects carried out</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="schedule-listing">
<div class="schedule-item" style="padding:20px;">
<div class="sc-pic" style="display: none;">
<img src="images-event/team/4.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="display: none;">
<h4>Katty Wilson</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="padding:0;">01:00 - 02:30 PM</div>
<div class="sc-info">
<h3 style="margin:0;">Lunch Break</h3>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="schedule-listing">
<div class="schedule-item" style="padding:20px;">
<div class="sc-pic" style="display: none;">
<img src="images-event/team/4.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="display: none;">
<h4>Katty Wilson</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="padding:0;">02:30 - 04:30 PM</div>
<div class="sc-info">
<h3>Pitch 1</h3>
<ul>
<li>Passage of the first 10 teams to present their projects.</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="schedule-listing">
<div class="schedule-item" style="padding:20px;">
<div class="sc-pic" style="display: none;">
<img src="images-event/team/4.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="display: none;">
<h4>Katty Wilson</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="padding:0;">04:30 - 05:00 PM</div>
<div class="sc-info">
<h3 style="margin:0;" >Coffee Break</h3>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="schedule-listing">
<div class="schedule-item" style="padding:20px;">
<div class="sc-pic" style="display: none;">
<img src="images-event/team/4.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="display: none;">
<h4>Katty Wilson</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="padding:0;">05:00 - 06:00 PM</div>
<div class="sc-info">
<h3>Pitch 2</h3>
<ul>
<li>Passage of the remaining teams to present their projects</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="schedule-listing">
<div class="schedule-item" style="padding:20px;">
<div class="sc-pic" style="display: none;">
<img src="images-event/team/4.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="display: none;">
<h4>Katty Wilson</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="padding:0;">06:00 - 06:15 PM</div>
<div class="sc-info">
<h3>Entertainment Break</h3>
<ul>
<li>Deliberation</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</div>
<div class="schedule-listing">
<div class="schedule-item" style="padding:20px;">
<div class="sc-pic" style="display: none;">
<img src="images-event/team/4.jpg" class="img-circle" alt="">
</div>
<div class="sc-name" style="display: none;">
<h4>Katty Wilson</h4>
<span>Founder & CEO</span>
</div>
<div class="sc-time" style="padding:0;">06:15 - 07:00 PM</div>
<div class="sc-info">
<h3 style="margin:0;" >Announcement of Results & Closing</h3>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-ticket" class="text-light" data-bgimage="url(images-event/bg/travis-essinger-unsplash-edited2.jpg) fixed bottom center">
<!-- <section id="section-ticket" class="text-light" data-bgimage="url(images-event/bg/7037437.jpg) fixed top"> -->
<!-- <div class="wm wm-border dark wow fadeInDown">Tiers</div> -->
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>Sponsorship Tiers</h1>
<div class="separator"><span><i class="fa fa-square"></i></span></div>
<div class="spacer-single"></div>
</div>
<div class="col-lg-4 col-md-6">
<div class="pricing-s1 mb30 wow fadeInUp">
<div class="top">
<!-- <h2><b>Day Pass</b></h2> -->
<p class="price"><b>Silver</b></p>
<!-- <h2>Day Pass</h2> -->
<!-- <p class="price"><span class="currency id-color">$</span> <b>49.99</b></p> -->
</div>
<div class="bottom">
<ul>
<li><i class="icon_check_alt2"></i>Presence in social networks</li>
<li><i class="icon_check_alt2"></i>Presence on the event's website</li>
<li><i class="icon_check_alt2"></i>Presence in the conference room</li>
<li><i class="icon_check_alt2"></i>Logo on all printed materials</li>
<li><i class="icon_close_alt2"></i>Logo and name of the sponsor: Small</li>
<li><i class="icon_check_alt2"></i>Multimedia animation: 60 sec</li>
<li><i class="icon_check_alt2"></i>Review of the day (in pages): 1/4</li>
<li><i class="icon_check_alt2"></i>Invitation: 1</li>
<li><i class="icon_close_alt2"></i>Logo on the front page of the website</li>
<li><i class="icon_close_alt2"></i>Sponsor's presentation booth</li>
</ul>
</div>
<div class="ps1-deco"></div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="pricing-s1 mb30 wow fadeInUp">
<!-- <div class="ribbon color-2 text-white">Recommend</div> -->
<div class="top">
<p class="price"><b>Gold</b></p>
<!-- <h2>Full Pass</h2>
<p class="price"><span class="currency id-color">$</span> <b>79.99</b></p> -->
</div>
<div class="bottom">
<ul>
<li><i class="icon_check_alt2"></i>Presence in social networks</li>
<li><i class="icon_check_alt2"></i>Presence on the event's website</li>
<li><i class="icon_check_alt2"></i>Presence in the conference room</li>
<li><i class="icon_check_alt2"></i>Logo on all printed materials</li>
<li><i class="icon_check_alt2"></i>Logo and name of the sponsor: Medium</li>
<li><i class="icon_check_alt2"></i>Multimedia animation: 120 sec</li>
<li><i class="icon_check_alt2"></i>Review of the day (in pages): 1/2</li>
<li><i class="icon_check_alt2"></i>Invitation: 2</li>
<li><i class="icon_check_alt2"></i>Logo on the front page of the website</li>
<li><i class="icon_close_alt2"></i>Sponsor's presentation booth</li>
</ul>
</div>
<div class="ps1-deco"></div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="pricing-s1 mb30 wow fadeInUp">
<div class="top">
<p class="price"><b>Platinum</b></p>
<!-- <h2>Group Pass</h2>
<p class="price"><span class="currency id-color">$</span> <b>139.99</b></p> -->
</div>
<div class="bottom">
<ul>
<li><i class="icon_check_alt2"></i>Presence in social networks</li>
<li><i class="icon_check_alt2"></i>Presence on the event's website</li>
<li><i class="icon_check_alt2"></i>Presence in the conference room</li>
<li><i class="icon_check_alt2"></i>Logo on all printed materials</li>
<li><i class="icon_check_alt2"></i>Logo and name of the sponsor: Large</li>
<li><i class="icon_check_alt2"></i>Multimedia animation: 240 sec</li>
<li><i class="icon_check_alt2"></i>Review of the day (in pages): 1</li>
<li><i class="icon_check_alt2"></i>Invitation: 4</li>
<li><i class="icon_check_alt2"></i>Logo on the front page of the website</li>
<li><i class="icon_check_alt2"></i>Sponsor's presentation booth</li>
</ul>
</div>
<div class="ps1-deco"></div>
</div>
</div>
<!-- <b>Dossier sponsoring</b> -->
</div>
<div class="" style="display:flex;flex-direction: column;gap:5px;justify-content: center;align-items: center;padding:20px 0 0;">
<!-- <a href="#section-register" class="btn btn-custom text-white">Become Sponsor</a> -->
<a href="https://drive.google.com/file/d/18qZYx7NW-um_t-1o4iafqY7Ow_H2ppeD/view?usp=sharing" target="_blank" class="btn btn-custom text-white wow fadeInUp">Sponsorship Proposal</a>
<div class="spacer-single"></div>
<!-- <a href="https://my.forms.app/mohamedel-failali/brainiot-event" target="_blank" class="btn btn-custom text-white wow fadeInUp">Become Sponsor </a> -->
<a href="sponsor-form.html" target="_blank" class="btn btn-custom text-white wow fadeInUp">Become Sponsor </a>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<!-- <section id="section-sponsors" data-bgimage="url(images-event/bg/5.jpg) top right no-repeat">
<div class="wm wm-border light wow fadeInDown ">sponsors</div>
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>Official Sponsors</h1>
<div class="separator"><span><i class="fa fa-square"></i></span></div>
<div class="spacer-single"></div>
</div>
<div class="col-md-12 text-center">
<h3>Gold Sponsors</h3>
<div class="spacer-single"></div>
<img src="images-event/logo/1.png" alt="" class="grey-hover">
<img src="images-event/logo/2.png" alt="" class="grey-hover">
<img src="images-event/logo/3.png" alt="" class="grey-hover">
<img src="images-event/logo/4.png" alt="" class="grey-hover">
<div class="spacer-double"></div>
<h3>Silver Sponsors</h3>
<div class="spacer-single"></div>
<img src="images-event/logo/5.png" alt="" class="grey-hover">
<img src="images-event/logo/6.png" alt="" class="grey-hover">
<img src="images-event/logo/7.png" alt="" class="grey-hover">
<img src="images-event/logo/8.png" alt="" class="grey-hover">
</div>
</div>
</div>
</section> -->
<!-- section close -->
<!-- section begin -->
<section id="section-testimonials" style="padding: 3rem 0;" data-bgcolor="#ECE8DA" aria-label="section">
<!-- <div class="wm wm-border light wow fadeInDown">testimonials</div> -->
<div class="container">
<div class="row">
<div class="col-md-8 offset-md-2">
<!-- <div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>Testimonials</h1>
<div class="separator"><span><i class="fa fa-square"></i></span></div>
<div class="spacer-single"></div>
</div> -->
<h1><span class="id-color text-center">BrainX Vision for BrAInIoT's future</span></h1>
<div class="spacer-double" ></div>
<div id="testimonial-carousel-single" class="owl-carousel owl-theme wow fadeInUp">
<blockquote class="testimonial-big">
<div class="title">BrAInIoT2023 challenge</div>
BrainX is hosting the “<span>BrAInIoT2023 in Agriculture 4.0</span> ” event with the aim of advancing the application of <span>AI</span> and <span>IoT</span> in agriculture to enhance the sustainability and productivity of the Moroccan <span>agricultural sector</span>. The event aims to address challenges primarily arising from external factors, such as climate change, and to facilitate a forum for the development of innovative solutions.
</blockquote>
<blockquote class="testimonial-big">
<div class="title">BrAInIoT2024 challenge</div>
BrainX is set to organize the upcoming event, <span>BrAInIoT2024</span>, which aims to dive into the realm of artificial intelligence and the internet of things in <span>football and sports analytics</span>. The event is scheduled to take place in 2024 as preparation for Morocco's hosting of <span>the African Cup in 2025</span>. The event intends to gather professionals in the <span>football and sports analytics</span> field to present their ideas and projects regarding the application of <span>AI</span> and <span>IoT</span> in the industry.
</blockquote>
<blockquote class="testimonial-big">
<div class="title">BrAInIoT2025 challenge</div>
BrainX is planning to organize the upcoming event <span>BrAInIoT2025</span>, which will explore the future of <span>urban mobility, transportation and smart cities</span> by leveraging Artificial Intelligence (<span>AI</span>) and the Internet of Things (<span >IoT</span>). The event is aimed at bringing together experts, engineers, entrepreneurs, and students to showcase their innovative solutions for urban mobility using <span>AI</span> and <span>IoT</span>.
</blockquote>
<blockquote class="testimonial-big">
<div class="title">BrAInIoT2026 challenge</div>
The upcoming event, <span>BrAInIoT2026</span>, which is supposed to be organized by BrainX, will center on the exploration of the potential of Artificial Intelligence (<span>AI</span>) and the Internet of Things (<span>IoT</span>) in <span>healthcare and medical sciences</span>. The main aim of the event will be to encourage innovation and collaboration to improve the healthcare sector in Morocco and beyond.
</blockquote>
</div>
</div>
</div>
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-portfolio" style="display: none;" class="no-top no-bottom" aria-label="section">
<h1 class="p-4">I've got lot experiences!</h1>
<div id="gallery" class="gallery zoom-gallery full-gallery de-gallery pf_full_width wow fadeInUp" data-wow-delay=".3s">
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a href="images-event/portfolio/1.jpg" title="View Details">
<span class="overlay">
<span class="pf_text">
<span class="project-name">View Image</span>
</span>
</span>
<img src="images-event/portfolio/1.jpg" alt="" />
</a>
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item hospitaly">
<div class="picframe">
<a href="images-event/portfolio/2.jpg" title="View Details">
<span class="overlay">
<span class="pf_text">
<span class="project-name">View Image</span>
</span>
</span>
<img src="images-event/portfolio/2.jpg" alt="" />
</a>
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item hospitaly">
<div class="picframe">
<a href="images-event/portfolio/3.jpg" title="View Details">
<span class="overlay">
<span class="pf_text">
<span class="project-name">View Image</span>
</span>
</span>
<img src="images-event/portfolio/3.jpg" alt="" />
</a>
</div>
</div>
<!-- close gallery item -->
<!-- gallery item -->
<div class="item residential">
<div class="picframe">
<a href="images-event/portfolio/4.jpg" title="View Details">
<span class="overlay">
<span class="pf_text">
<span class="project-name">View Image</span>
</span>
</span>
<img src="images-event/portfolio/4.jpg" alt="" />
</a>
</div>
</div>
<!-- close gallery item -->
</div>
</section>
<!-- section close -->
<!-- section begin -->
<section id="section-register" class="text-light" data-bgcolor="#367a43">
<!-- <section id="section-register" class="text-light" data-bgimage="url(images-event/bg/image1-edited.jpg) fixed bottom center"> -->
<!-- <div class="wm wm-border dark wow fadeInDown">Contact Us</div> -->
<div class="container">
<div class="row">
<div class="col-md-6 offset-md-3 text-center wow fadeInUp">
<h1>Contact us for more information</h1>
<div class="separator"><span><i class="fa fa-square"></i></span></div>
<div class="spacer-single"></div>
</div>
<div class="col-md-8 offset-md-2 wow fadeInUp">
<form name="contactForm" id='contact_form' method="post" action='email.php' class="contactForm1">
<div class="row">
<div class="col-md-6">
<div id='name_error' class='error'>Please enter your name.</div>
<div>
<input type='text' name='name' id='name' class="form-control fullname1" placeholder="Your Name">
</div>
<div id='email_error' class='error'>Please enter your valid E-mail ID.</div>
<div>
<input type='text' name='email' id='email' class="form-control email1" placeholder="Your Email">
</div>
<div id='phone_error' class='error'>Please enter your phone number.</div>
<div>
<input type='text' name='phone' id='phone' class="form-control phone1" placeholder="Your Phone">
</div>
</div>