forked from apolmig/saturdaysai
-
Notifications
You must be signed in to change notification settings - Fork 5
/
city-monterrey.html
1181 lines (1132 loc) · 45.6 KB
/
city-monterrey.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="zxx">
<head>
<meta charset="UTF-8" />
<meta
content="width=device-width,initial-scale=1.0,maximum-scale=1.0"
name="viewport"
/>
<!-- Open Graph -->
<meta
property="og:title"
content="Saturdays.AI - Empowering anyone to learn AI"
/>
<meta
property="og:url"
content="http://dev.thememountain.com/faulkner/project-style-one.html"
/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://raw.githubusercontent.com/SaturdaysAI/saturdaysai/master/images/Superhero1_small.jpg"
/>
<meta
property="og:description"
content="Saturdays.AI - Empowering anyone to learn AI"
/>
<!-- Twitter Theme -->
<meta name="twitter:widgets:theme" content="light" />
<!-- Title & Favicon -->
<title>
Saturdays.AI - Empowering anyone to learn AI with impact
</title>
<link
rel="shortcut icon"
type="image/x-icon"
href="images/saturdays/favicon.ico"
/>
<!-- Font -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700%7CHind+Madurai:400,500&subset=latin-ext"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Rubik&display=swap"
rel="stylesheet"
/>
<!-- Css -->
<link rel="stylesheet" href="css/core.min.css" />
<link rel="stylesheet" href="css/skin.css" />
<link rel="stylesheet" href="css/custom.css" />
<!--[if lt IE 9]>
<script
type="text/javascript"
src="http://html5shiv.googlecode.com/svn/trunk/html5.js"
></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-147239476-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-147239476-1');
</script>
</head>
<body class="shop home-page">
<!-- Overlay Navigation Menu -->
<div
class="overlay-navigation-wrapper enter-right"
data-no-scrollbar
data-animation="scale-in"
>
<div class="overlay-navigation-scroll-pane">
<div class="overlay-navigation-inner">
<div class="v-align-middle">
<div class="overlay-navigation-header row collapse full-width">
<div class="column width-12">
<div class="navigation-hide overlay-nav-hide">
<a href="#">
<span class="icon-cancel"></span>
</a>
</div>
</div>
</div>
<div class="row collapse full-width">
<div class="column width-12">
<nav class="overlay-navigation nav-block left">
<ul>
<li>
<a href="aisaturdays-program.html">Our main Program</a>
</li>
<li>
<a href="cities.html" class="contains-sub-menu">Cities</a>
<ul class="sub-menu">
<li>
<a href="#" class="contains-sub-menu">Europe</a>
<ul class="sub-menu">
<li>
<a href="https://ti.to/saturdaysai/ai-saturdays-alicante-3-edicion" target="_blank"
>Alicante</a
>
</li>
<li>
<a href="https://forms.gle/zeAxhc53r2JiEWnB6" target="_blank"
>Almeria</a
>
</li>
<!--<li>
<a href="city-single.html">Amsterdam</a>
</li>-->
<li>
<a href="city-barcelona.html" target="_blank"
>Barcelona</a
>
</li>
<li>
<a href="/city-cordoba.html" target="_blank"
>Cordoba</a
>
</li>
<!--<li>
<a href="city-single.html">Berlin</a>
</li>-->
<!--<li>
<a href="city-single.html">Lisbon</a>
</li>-->
<li>
<a href="https://ti.to/saturdaysai/ai-saturdays-london">London</a>
</li>
<li>
<a href="city-madrid.html">Madrid</a>
</li>
<!--<li>
<a href="city-single.html">Malaga</a>
</li>-->
<li>
<a href="cities/murcia/index.html">Murcia</a>
</li>
<li>
<a href="city-asturias.html" target="_blank"
>Asturias</a
>
</li>
<li>
<a href="city-mallorca.html" target="_blank"
>Mallorca</a
>
</li>
<li>
<a href="city-sevilla.html" target="_blank"
>Sevilla</a
>
</li>
<li>
<a href="city-tarragona.html" target="_blank"
>Tarragona</a
>
</li>
<li>
<a href="https://ti.to/saturdaysai/ai-saturdays-valencia-2-edicion" target="_blank"
>Valencia</a
>
</li>
<li>
<a href="https://forms.gle/zeAxhc53r2JiEWnB6" target="_blank"
>Zaragoza</a
>
</li>
</ul>
</li>
<!--<li>
<a href="#" class="contains-sub-menu">Asia Pacific</a>
<ul class="sub-menu">-->
<!--<li>
<a href="city-single.html">Bali</a>
</li>-->
<!--<li>
<a href="city-single.html">Chengdu</a>
</li>-->
<!--<li>
<a href="city-single.html">Kyoto</a>
</li>-->
<!--<li>
<a href="city-single.html">Melbourne</a>
</li>-->
<!--<li>
<a href="city-single.html">Shanghai</a>
</li>-->
<!--<li>
<a href="city-single.html">Shenzhen</a>
</li>-->
<!--<li>
<a href="city-single.html">Singapore</a>
</li>-->
<!--<li>
<a href="city-single.html">Tokyo</a>
</li>-->
<!--</ul>
</li>-->
<li>
<a href="#" class="contains-sub-menu"
>Latin America</a
>
<ul class="sub-menu">
<li>
<a href="edicion-latam.html" target="_blank">LATAM online edition</a
>
</li>
<li>
<a
href="https://sites.google.com/view/saturdays-ai-guadalajara/"
target="_blank"
>Guadalajara</a
>
</li>
<li>
<a href="cities/guayaquil/index.html"
>Guayaquil</a
>
</li>
<!-- <li>
<a href="hermosillo/index.html">Buenos Aires</a>
</li> -->
<!-- <li>
<a
href="cities/costa_rica/index.html"
target="_blank"
>Bogotá</a
>
</li> -->
<li>
<a href="hermosillo/index.html">Hermosillo</a>
</li>
<li>
<a href="cities/la_paz/index.html" target="_blank"
>La Paz</a
>
</li>
<!-- <li>
<a
href="cities/costa_rica/index.html"
target="_blank"
>Cuenca</a
>
</li> -->
<li>
<a href="https://forms.gle/zeAxhc53r2JiEWnB6" target="_blank"
>Lima</a
>
</li>
<!-- <li>
<a href="https://bit.ly/aifellows" target="_blank"
>Medellín</a
>
</li> -->
<li>
<a href="city-monterrey.html" target="_blank"
>Monterrey</a
>
</li>
<li>
<a href="https:/quito.saturdays.ai" target="_blank"
>Quito</a
>
</li>
<li>
<a
href="https://www.saturdaysai.cl/"
target="_blank"
>Santiago de Chile</a
>
</li>
<li>
<a
href="cities/costa_rica/index.html"
target="_blank"
>Costa Rica</a
>
</li>
<!-- <li>
<a
href="cities/costa_rica/index.html"
target="_blank"
>Asuncion</a
>
</li> -->
<!-- <li>
<a
href="cities/costa_rica/index.html"
target="_blank"
>CDMX</a
>
</li> -->
<li>
<a href="https://ti.to/saturdaysai/ai-saturdays-encarnacion" target="_blank"
>Encarnacion</a
>
</li>
<!--<li>
<a href="city-single.html">São Paulo</a>
</li>-->
</ul>
</li>
<li>
<a href="#" class="contains-sub-menu">USA & Canada</a>
<ul class="sub-menu">
<li>
<a href="tucson/index.html" target="_blank"
>Tucson</a
>
</li>
<li>
<a href="https://forms.gle/zeAxhc53r2JiEWnB6" target="_blank"
>Washington D. C. (soon)</a
>
</li>
</ul>
</li>
<li>
<a href="#" class="contains-sub-menu"
>Middle-East & Africa</a
>
<ul class="sub-menu">
<!--<li>
<a href="city-single.html">Casablanca</a>
</li>
<li>
<a href="city-single.html">Tel Aviv</a>
</li>-->
<li>
<a
href="https://dubai.saturdays.ai"
target="_blank"
>Dubai</a
>
</li>
<li>
<a
href="city-mauritius.html"
target="_blank"
>Mauritius</a
>
</li>
<li>
<a href="https://forms.gle/zeAxhc53r2JiEWnB6" target="_blank"
>Oman (soon)</a
>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="projects_saturdays.html"
target="_blank">Projects</a>
</li>
<li>
<a href="podcast.html">Podcast</a>
</li>
<li>
<a href="partners.html">Partners</a>
</li>
<li>
<a
href="https://donorbox.org/saturdays-ai"
target="_blank"
><b>DONATE</b></a
>
</li>
</ul>
</nav>
</div>
</div>
<div class="overlay-navigation-footer row full-width center">
<div class="column width-12 no-padding">
<p class="copyright">© 2020 Saturdays.AI</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Overlay Navigation Menu End -->
<div class="wrapper reveal-side-navigation bkg-charcoal">
<div class="wrapper-inner">
<!-- Header -->
<header class="header header-fixed header-fixed-on-mobile">
<div class="header-inner">
<div class="row nav-bar">
<div class="column width-12 nav-bar-inner">
<div class="logo">
<div class="logo-inner">
<a href="index.html" class="logo-responsive"
><img src="images/logo.png" alt="Faulkner Logo"
/></a>
<a href="index.html"
><img src="images/logo.png" alt="Faulkner Logo"
/></a>
</div>
</div>
<nav
class="navigation nav-block secondary-navigation nav-right"
>
<ul>
<li class="responsive-no-show">
<a href="https://medium.com/saturdays-ai" target="_blank"
>Blog</a
>
</li>
<li class="responsive-no-show">
<a
href="https://join.slack.com/t/aisaturdays-hispano/shared_invite/zt-7so3fdbq-1gb4BlasdSPyzq5ATooz4w"
class="button rounded medium no-margins bkg-theme color-white mb-0 m-f-size"
>
Join our Slack</a
>
<!--<a
href="https://donorbox.org/saturdays-ai"
target="_blank"
>DONATE</a
>-->
</li>
<li class="aux-navigation hide">
<!-- Aux Navigation -->
<a
href="#"
class="navigation-show overlay-nav-show nav-icon"
>
<span class="icon-menu"></span>
</a>
</li>
</ul>
</nav>
<nav class="navigation nav-block primary-navigation nav-center">
<ul>
<li>
<a href="aisaturdays-program.html">Program</a>
</li>
<li class="contains-mega-sub-menu">
<a href="cities.html"
>Cities<span
style="display: contents;"
class="icon-down-open-mini pull-right"
></span
></a>
<ul class="mega-sub-menu">
<li>
<a href="#">Europe</a>
<ul>
<li>
<a href="https://ti.to/saturdaysai/ai-saturdays-alicante-3-edicion" target="_blank"
>Alicante</a
>
</li>
<li>
<a href="https://forms.gle/zeAxhc53r2JiEWnB6" target="_blank"
>Almeria</a
>
</li>
<li>
<a href="city-asturias.html" target="_blank"
>Asturias</a
>
</li>
<!--<li>
<a href="city-single.html">Amsterdam</a>
</li>-->
<li>
<a href="city-barcelona.html" target="_blank"
>Barcelona</a
>
</li>
<li>
<a
href="https://bilbao.saturdays.ai"
target="_blank"
>Bilbao</a
>
</li>
<li>
<a href="city-cordoba.html" target="_blank"
>Cordoba</a
>
</li>
<li>
<a
href="https://donostia.saturdays.ai"
target="_blank"
>Donostia</a
>
</li>
<li>
<a href="https://ti.to/saturdaysai/ai-saturdays-london" target="_blank"
>London (soon)</a
>
</li>
<li>
<a href="city-madrid.html">Madrid</a>
</li>
<li>
<a href="cities/murcia/index.html">Murcia</a>
</li>
<li>
<a href="city-mallorca.html" target="_blank"
>Mallorca</a
>
</li>
<li>
<a href="city-sevilla.html" target="_blank"
>Sevilla</a
>
</li>
<li>
<a href="city-tarragona.html" target="_blank"
>Tarragona</a
>
</li>
<li>
<a href="https://ti.to/saturdaysai/ai-saturdays-valencia-2-edicion" target="_blank"
>Valencia</a
>
</li>
<li>
<a href="https://forms.gle/zeAxhc53r2JiEWnB6" target="_blank"
>Zaragoza (soon)</a
>
</li>
</ul>
</li>
<li>
<a href="#">Latin America</a>
<ul>
<li>
<a href="edicion-latam.html" target="_blank">LATAM online edition</a
>
</li>
<li>
<a href="https://forms.gle/zeAxhc53r2JiEWnB6" target="_blank"
>CDMX (soon)</a
>
</li>
<li>
<a href="https://ti.to/saturdaysai/ai-saturdays-cochabamba" target="_blank"
>Cochabamba</a
>
</li>
<li>
<a href="https://ti.to/saturdaysai/ai-saturdays-encarnacion" target="_blank"
>Encarnación (soon)</a
>
</li>
<li>
<a
href="cities/costa_rica/index.html"
target="_blank"
>Costa Rica</a
>
</li>
<li>
<a href="https://ti.to/saturdaysai/ai-saturdays-flores" target="_blank"
>Flores, UY (soon)</a
>
</li>
<li>
<a
href="https://sites.google.com/view/saturdays-ai-guadalajara"
target="_blank"
>Guadalajara</a
>
</li>
<li>
<a
href="cities/guayaquil/index.html"
target="_blank"
>Guayaquil</a
>
</li>
<li>
<a href="hermosillo/index.html" target="_blank"
>Hermosillo</a
>
</li>
<li>
<a href="cities/la_paz/index.html" target="_blank"
>La Paz</a
>
</li>
<li>
<a href="https://forms.gle/zeAxhc53r2JiEWnB6" target="_blank"
>Lima (soon)</a
>
</li>
<!-- <li>
<a href="https://bit.ly/aifellows" target="_blank"
>Asuncion</a
>
</li> -->
<!-- <li>
<a href="https://bit.ly/aifellows" target="_blank"
>Medellín</a
>
</li> -->
<li>
<a href="city-monterrey.html" target="_blank"
>Monterrey</a
>
</li>
<li>
<a href="https://quito.saturdays.ai" target="_blank"
>Quito</a
>
</li>
<li>
<a href="http://saturdaysai.cl/" target="_blank"
>Santiago de Chile</a
>
</li>
</ul>
</li>
<li>
<a href="#">USA & Canada</a>
<ul>
<li>
<a href="tucson/index.html" target="_blank"
>Tucson</a
>
</li>
<li>
<a href="https://forms.gle/zeAxhc53r2JiEWnB6" target="_blank"
>Washington D. C. (soon)</a
>
</li>
</ul>
</li>
<li>
<a href="#">Middle-East & Africa</a>
<ul>
<li>
<a
href="https://dubai.saturdays.ai"
target="_blank"
>Dubai</a
>
</li>
<li>
<a
href="city-mauritius.html"
target="_blank"
>Mauritius</a
>
</li>
<li>
<a href="https://forms.gle/zeAxhc53r2JiEWnB6" target="_blank"
>Oman (soon)</a
>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="podcast.html">Podcast</a>
</li>
<li>
<a href="projects_saturdays.html" target="_blank">Projects</a>
</li>
<li>
<a href="partners.html">Partners</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
</div>
</div>
<!-- Header End -->
<div class="content bg-light-gray">
<!-- INTRO - HERO5 -->
<div
class="section-block section-pad mtop-90 hero-5 hero-5-2-13 clear-height show-media-column-on-mobile mt-mobile-0 padb-30-mobile bg-light-gray"
>
<div class="row">
<div class="column width-5">
<div class="hero-content split-hero-content">
<div
class="hero-content-inner left horizon"
data-animate-in="preset:slideInRightShort;duration:1000ms;delay:200ms;"
data-threshold="0.5"
>
<h3 class="color-black size-5 f-weight">
Saturdays.AI -
<span class="color-orange f-weight">Monterrey</span>
</h3>
<p class="color-black size-20">
Prepárate para el futuro aprendiendo Inteligencia Artificial.
</p>
<p class="p-text-color size-20">
<b>Cuando:</b> 14 sábados desde el 8 de febrero, 2020<br />
<b>Ubicación:</b>
<a href="https://goo.gl/maps/2rTSbfXM3Yya4rvk8">aquí</a>
<br /><br />
<b>Price: 2000(MXN)*</b>
</p>
<!--<p>
20% Discount Code: <i>AI4EVERYONE</i> until january 15th <br>
</p>-->
<a
href="https://www.eventbrite.es/e/entradas-ai-saturdays-madrid-3a-edicion-87425101833"
class="button rounded medium no-margins bkg-theme color-white mb-0"
>
<strike>Pagar ahora</strike></a
>
<!--<a href="https://bit.ly/2rGXoPn" class="button rounded medium no-margins bkg-theme color-white mb-0">
Pay Now</a>-->
<a
style="margin-left: 5px!important;"
href="city-monterrey.html#contactlead"
class="button rounded medium no-margins bg-white color-orange mb-0"
>
Contactar al city lead</a
>
<br /><i
>*El curso es en español, salvo los recursos didácticos.</i
>
</div>
</div>
</div>
</div>
<div style="right: 0; left: unset;" class="media-column width-6"></div>
</div>
<!-- INTRO - HERO5 END -->
<!-- VIDEO -->
<div
class="section-block section-pad recent-carousel padb-30-mobile padt-30-mobile bg-light-gray"
,
id="fellows"
>
<div class="row">
<div class="column center">
<h3 class="color-black size-5 f-weight">
¿<span class="color-orange f-weight">Conoces </span> la
metodología? <br />
</h3>
<iframe
width="350"
height="450"
src="https://www.youtube.com/embed/ojA2mKEuEdQ"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
<!--<pre>
<div class="”video-responsive”">
<embed src="https://www.youtube.com/watch?v=2xCcHZCYp3U" width="1000" height="500" frameborder="0"></embed>
</div>
</pre>-->
</div>
</div>
</div>
</div>
<!-- Hero 5 Section -->
<div
class="section-block section-pad hero-5 hero-5-2-14 clear-height show-media-column-on-mobile padb-30-mobile bg-light-gray"
>
<div class="media-column width-6"></div>
<div class="row">
<div class="column width-5 push-7">
<div class="hero-content split-hero-content">
<div
class="hero-content-inner left horizon"
data-animate-in="preset:slideInRightShort;duration:1000ms;delay:200ms;"
data-threshold="0.5"
>
<h3 class="color-black size-5 f-weight">
Comunidad de IA en
<span class="color-orange f-weight">Monterrey</span>
</h3>
<p class="p-text-color size-20">
Te invitamos a formar parte de la comunidad de Saturdays-AI
Monterrey 4ta generación, ciclo 1 2020. Saturdays-AI Monterrey
forma parte de una comunidad global de auto-estudio con
Mentoring (con participación de expertos en la industria), cuya
misión es empoderar individuos en la programación de
inteligencia artificial, mediante cursos en línea bien
estructurados y proyectos colaborativos.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Hero 5 Section End -->
<div class="why-how-section">
<!-- Hero 5 Section -->
<div
class="section-block section-pad hero-5 hero-5-2-15 clear-height show-media-column-on-mobile padb-30-mobile bg-light-gray"
,
>
<div class="row">
<div class="column width-5">
<div class="hero-content split-hero-content">
<div
class="hero-content-inner left horizon"
data-animate-in="preset:slideInRightShort;duration:1000ms;delay:200ms;"
data-threshold="0.5"
>
<h3 class="color-black size-5 f-weight">
AI Saturdays Monterrey
<span class="color-orange f-weight">4ª Edición</span>
</h3>
<p class="p-text-color size-20">
Ven y participa en la sesión introductoria donde hablaremos de
los pre requisitos, para la 4ta Edición, que se llevará acabo
el 1ero de febrero, a partir de las 10 AM,
<b
>las sesiones oficiales comienzan el día 8 de febrero de
2020</b
>.
<!--<br><a href="https://drive.google.com/open?id=1GUYieG0OJX-4e0ldyhZkhY0LWki5bmws"><b>More about the program and curriculum</b></a></p>
<i>*It is necessary to have some knowledge of python.</i>-->
</p>
</div>
</div>
</div>
</div>
<div style="right: 0; left: unset;" class="media-column width-6"></div>
</div>
<!-- Hero 5 Section End -->
<!-- VIDEO -->
<div
class="section-block section-pad recent-carousel padb-30-mobile padt-30-mobile bg-light-gray"
,
id="fellows"
>
<div class="row">
<div class="column center">
<h3 class="color-black size-5 f-weight">
¿Qué dicen
<span class="color-orange f-weight">nuestros alumnos</span>?
<br />
</h3>
<iframe
width="350"
height="450"
src="https://www.youtube.com/embed/FNCt-TSXRto"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
<!--<pre>
<div class="”video-responsive”">
<embed src="https://www.youtube.com/watch?v=2xCcHZCYp3U" width="1000" height="500" frameborder="0"></embed>
</div>
</pre>-->
</div>
</div>
</div>
</div>
<!-- Logo Slider -->
<div
class="section-block padb-30-mobile padt-30-mobile bg-dark-blue section-pad"
id="partners"
>
<div class="row">
<div class="column width-12 center">
<h3 class="color-white size-5 f-weight">
Nuestros <span class="color-orange f-weight">partners</span>
</h3>
<p class="color-gray text-pad2 size-20">
Ya sea global o local, apreciamos el apoyo de nuestros socios para
que nos ayuden a capacitar a todos para aprender la IA.
</p>
</div>
</div>
<div class="row">
<div class="column width-12">
<div
class="tm-slider-container logo-slider pb-30"
data-nav-arrows="false"
data-nav-show-on-hover="false"
data-nav-dark
data-nav-keyboard="false"
data-auto-advance
data-auto-advance-interval="4000"
data-progress-bar="false"
data-pause-on-hover="false"
data-carousel-visible-slides="5"
>
<ul class="tms-slides">
<!--<div class="carousel-item ">
<div class="media-container-row">
<div class="col-md-12">
<div class="wrap-img ">
<img src="assets/images/4yfn_tag_clean_pur.jpg" class="img-responsive clients-img" alt="4 Years From Now" href="https://4yfn.com" target="_blank" title="4YFN">
</div>
</div>
</div>
</div>-->
<li class="tms-slide">
<div class="tms-content-scalable">
<img src="images/partners/Partner1-monterrey.jpg" alt="" />
</div>
</li>
<li class="tms-slide">
<div class="tms-content-scalable">
<img
src="images/partners/4yfn_tag_clean_whi.png"
alt="4yfn"
/>
</div>
</li>
<li class="tms-slide">
<div class="tms-content-scalable">
<img src="images/partners/Partner2-monterrey.jpg" alt="" />
</div>
</li>
</ul>
</div>
</div>
</div>
<!-- Logo Slider End -->
</div>
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
<!-- Logo Slider End -->
<!-- Team Slider -->
<div
class="section-block section-pad padb-30-mobile padt-30-mobile team-2 bg-dark-blue"
id="contactlead"
>
<div class="row">
<div class="column width-12 center">
<h3 class="color-white size-5 f-weight">
Contact <span class="color-orange f-weight">Monterrey Lead</span>
</h3>
<p class="color-gray text-pad2 size-20">
Feel free to tell us anything, we'd love to know more about you ;)
</p>
<!--begin container -->
<div class="container">
<!--begin row -->
<div class="row">
<!--begin col-md-12-->
<div class="col-md-12 padding-bottom-40">
<!--begin newsletter_form_wrapper -->
<div
class="newsletter_form_wrapper wow bounceIn"
data-wow-delay="0.25s"