forked from daniel-dona/website-template2
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
1150 lines (1007 loc) · 64.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Master on Artificial Intelligence for Public Services (AI4Gov)</title>
<meta content="This is the website that describes the International Master on Artificial Intelligence for public services (AI4Gov)" name="description">
<meta content="AI4Gov, AI, Artificial Intelligence, Public Services" name="keywords">
<!-- Favicons -->
<link href="assets/img/logos/ai4govlogo.png" rel="icon">
<link href="assets/img/logos/ai4govlogo.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center justify-content-between">
<a href="./index.html" class="logo">
<img src="./assets/img/logos/ai4govlogo.jpg" alt="International Master on Artificial Intelligence for public services (AI4Gov)" class="img-fluid">
</a>
<nav id="navbar" class="navbar">
<ul>
<!--<li><a class="nav-link scrollto active" href="index.html#hero">Academics</a></li>-->
<li><a class="nav-link scrollto" href="index.html#about">Master's Program</a></li>
<li><a class="nav-link scrollto" href="index.html#objectives">Objectives</a></li>
<li><a class="nav-link scrollto" href="curriculum.html">Curriculum</a></li>
<li><a class="nav-link scrollto" href="events.html">Events</a></li>
<li><a class="nav-link scrollto" href="index.html#team">Team</a></li>
<li><a class="nav-link scrollto" href="index.html#apply">Apply</a></li>
<li><a class="nav-link scrollto" href="index.html#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container position-relative" data-aos="fade-up" data-aos-delay="100">
<div class="row justify-content-center">
<div class="col-xl-7 col-lg-9 text-center">
<h1>New website available</h1>
<h2>Please check in the following links the latest news of our <a href="https://www.ai4gov-hub.eu/master/" target="_blank">Master</a> and of the <a href="https://www.ai4gov-hub.eu/" target="_blank">AI4Gov Knowledge Hub</a>.</h2>
<!--<h1>Master in <br> Artificial Intelligence for Public Services (AI4Gov)</h1>
<h2>Early-bird pre-registration for the 2023-2024 now closed (only 10 spaces available)</h2>
<img src="./assets/img/Early%20bird%20application_1.png" alt="Early Bird application is open" class="img-fluid">-->
</div>
</div>
<div class="text-center">
<a href="#about" class="btn-get-started scrollto">About</a>
<a href="curriculum.html" class="btn-apply scrollto">Curriculum</a>
<a href="#apply" class="btn-get-started scrollto">Apply</a>
</div>
<div class="row icon-boxes">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box">
<div class="icon"><i class="ri-stack-line"></i></div>
<h4 class="title"><a href="">Executive</a></h4>
<p class="description">You will become a functional specialist in the application of AI to public services.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="ri-palette-line"></i></div>
<h4 class="title"><a href="">Part-time</a></h4>
<p class="description">Interactive activities (lectures, groupwork) will be done on Tuesday and Friday evenings.</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="400">
<div class="icon-box">
<div class="icon"><i class="ri-command-line"></i></div>
<h4 class="title"><a href="">Online</a></h4>
<p class="description">With three face-to-face weekend meetings (including Madrid and Milan).</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0" data-aos="zoom-in" data-aos-delay="500">
<div class="icon-box">
<div class="icon"><i class="ri-fingerprint-line"></i></div>
<h4 class="title"><a href="">Project-based learning</a></h4>
<p class="description">Hands-on projects will let you deepen into AI techniques and have real hands-on experiences.</p>
</div>
</div>
</div>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Master's Program</h2>
</div>
<div class="row content">
<p>This world-class master’s program will prepare <b>the future digital transformation leaders for AI in the public sector</b>. You will learn how to plan, design and use Artificial Intelligence in the delivery of public services, so as to improve the provision, effectiveness and value of these public services as well as the public sector’s capacity by means of adequate management, knowledge and development of AI-related projects and services.</p>
<div class="col-lg-6">
<p>
We expect students that belong to any of the two following groups of professionals:
</p>
<ul>
<li><i class="ri-check-double-line"></i> <b>Professionals from any discipline</b> (not only Computer Science) aiming to become functional specialists for the implementation of AI-based services in public institutions.</li>
<li><i class="ri-check-double-line"></i> <b>Staff working in public institutions</b> (civil servants, contractors), aiming to complete their education with practical knowledge on how to implement, manage and govern AI-based services.</li>
</ul>
</div>
<div class="col-lg-6 pt-4 pt-lg-0">
<p>
The overall expected outcome culminates in the education of <b>functional specialists in the application of AI to public services</b>. A functional specialist in AI and public services will not only understand the foundations and state of the art of AI technologies, but also the full cycle for the development and delivery of public services that make use of AI technologies, including design, development, delivery and evaluation.
</p>
<!--<a href="#" class="btn-learn-more">Learn More</a>-->
</div>
</div>
</div>
</section> <!-- End About Section -->
<!-- ======= Testimonials Section ======= -->
<!-- <section id="testimonials" class="testimonials">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Testimonials</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<div class="testimonials-slider swiper-container" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Proin iaculis purus consequat sem cure digni ssim donec porttitora entum suscipit rhoncus. Accusantium quam, ultricies eget id, aliquam eget nibh et. Maecen aliquam, risus at semper.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt="">
<h3>Saul Goodman</h3>
<h4>Ceo & Founder</h4>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Export tempor illum tamen malis malis eram quae irure esse labore quem cillum quid cillum eram malis quorum velit fore eram velit sunt aliqua noster fugiat irure amet legam anim culpa.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt="">
<h3>Sara Wilsson</h3>
<h4>Designer</h4>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Enim nisi quem export duis labore cillum quae magna enim sint quorum nulla quem veniam duis minim tempor labore quem eram duis noster aute amet eram fore quis sint minim.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-3.jpg" class="testimonial-img" alt="">
<h3>Jena Karlis</h3>
<h4>Store Owner</h4>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Fugiat enim eram quae cillum dolore dolor amet nulla culpa multos export minim fugiat minim velit minim dolor enim duis veniam ipsum anim magna sunt elit fore quem dolore labore illum veniam.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt="">
<h3>Matt Brandon</h3>
<h4>Freelancer</h4>
</div>
</div>
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Quis quorum aliqua sint quem legam fore sunt eram irure aliqua veniam tempor noster veniam enim culpa labore duis sunt culpa nulla illum cillum fugiat legam esse veniam culpa fore nisi cillum quid.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="">
<h3>John Larson</h3>
<h4>Entrepreneur</h4>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= Services Section ======= -->
<section id="objectives" class="services section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>OBJECTIVES</h2>
</div>
<div class="row">
<p>The core objectives of this program are providing education on: (i) the management of AI-based public services, (ii) the usage of AI in public administration’s operations, and (iii) the governance of AI in the public sector and for the delivery of public services to society.</p>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box iconbox-blue">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5" d="M300,521.0016835830174C376.1290562159157,517.8887921683347,466.0731472004068,529.7835943286574,510.70327084640275,468.03025145048787C554.3714126377745,407.6079735673963,508.03601936045806,328.9844924480964,491.2728898941984,256.3432110539036C474.5976632858925,184.082847569629,479.9380746630129,96.60480741107993,416.23090153303,58.64404602377083C348.86323505073057,18.502131276798302,261.93793281208167,40.57373210992963,193.5410806939664,78.93577620505333C130.42746243093433,114.334589627462,98.30271207620316,179.96522072025542,76.75703585869454,249.04625023123273C51.97151888228291,328.5150500222984,13.704378332031375,421.85034740162234,66.52175969318436,486.19268352777647C119.04800174914682,550.1803526380478,217.28368757567262,524.383925680826,300,521.0016835830174"></path>
</svg>
<i class="bx bxl-dribbble"></i>
</div>
<h4>Understand the potential of data</h4>
<p>Know and understand the potential of data to create public services, and be able to critically assess social and ethical impacts:</p>
<ul><li>Understand datasets (quality, appropriateness, value, cost, etc.) </li><li>Learn how to operate with data and to manipulate data to extract insights for design</li></ul>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box iconbox-orange ">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5" d="M300,582.0697525312426C382.5290701553225,586.8405444964366,449.9789794690241,525.3245884688669,502.5850820975895,461.55621195738473C556.606425686781,396.0723002908107,615.8543463187945,314.28637112970534,586.6730223649479,234.56875336149918C558.9533121215079,158.8439757836574,454.9685369536778,164.00468322053177,381.49747125262974,130.76875717737553C312.15926192815925,99.40240125094834,248.97055460311594,18.661163978235184,179.8680185752513,50.54337015887873C110.5421016452524,82.52863877960104,119.82277516462835,180.83849132639028,109.12597500060166,256.43424936330496C100.08760227029461,320.3096726198365,92.17705696193138,384.0621239912766,124.79988738764834,439.7174275375508C164.83382741302287,508.01625554203684,220.96474134820875,577.5009287672846,300,582.0697525312426"></path>
</svg>
<i class="bx bx-file"></i>
</div>
<h4>Understand what AI can do</h4>
<p>Understand what AI can currently do, what the different applicative domains are with a specific focus on governance with AI, and what features it can have:</p>
<ul ><li>Understand the state-of-the-art of AI and the available market solutions with a level deep enough to commission implementation.
</ul>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-pink">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5" d="M300,541.5067337569781C382.14930387511276,545.0595476570109,479.8736841581634,548.3450877840088,526.4010558755058,480.5488172755941C571.5218469581645,414.80211281144784,517.5187510058486,332.0715597781072,496.52539010469104,255.14436215662573C477.37192572678356,184.95920475031193,473.57363656557914,105.61284051026155,413.0603344069578,65.22779650032875C343.27470386102294,18.654635553484475,251.2091493199835,5.337323636656869,175.0934190732945,40.62881213300186C97.87086631185822,76.43348514350839,51.98124368387456,156.15599469081315,36.44837278890362,239.84606092416172C21.716077023791087,319.22268207091537,43.775223500013084,401.1760424656574,96.891909868211,461.97329694683043C147.22146801428983,519.5804099606455,223.5754009179313,538.201503339737,300,541.5067337569781"></path>
</svg>
<i class="bx bx-tachometer"></i>
</div>
<h4>Propose practical AI projects</h4>
<p>Analyse, design, plan, implement and evaluate practical AI projects for an up-to-date range of public services:</p>
<ul><li>Develop strategic management abilities for AI-based projects</li><li>Learn how to analyse and propose AI-driven concepts for governance and public services</li></ul>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box iconbox-yellow">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5" d="M300,503.46388370962813C374.79870501325706,506.71871716319447,464.8034551963731,527.1746412648533,510.4981551193396,467.86667711651364C555.9287308511215,408.9015244558933,512.6030010748507,327.5744911775523,490.211057578863,256.5855673507754C471.097692560561,195.9906835881958,447.69079081568157,138.11976852964426,395.19560036434837,102.3242989838813C329.3053358748298,57.3949838291264,248.02791733380457,8.279543830951368,175.87071277845988,42.242879143198664C103.41431057327972,76.34704239035025,93.79494320519305,170.9812938413882,81.28167332365135,250.07896920659033C70.17666984294237,320.27484674793965,64.84698225790005,396.69656628748305,111.28512138212992,450.4950937839243C156.20124167950087,502.5303643271138,231.32542653798444,500.4755392045468,300,503.46388370962813"></path>
</svg>
<i class="bx bx-layer"></i>
</div>
<h4>Be able to commission/buy AI-based systems</h4>
<p>Be able to commission/buy AI-based systems to companies and experts, and evaluate and analyse their performance and quality:</p>
<ul></li><li>Learn how to manage innovative procurement and public-private partnership in public services design and delivery.</li> <li>Learn how to evaluate the quality of the commissioned implementations. </li></ul>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box iconbox-red">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5" d="M300,532.3542879108572C369.38199826031484,532.3153073249985,429.10787420159085,491.63046689027357,474.5244479745417,439.17860296908856C522.8885846962883,383.3225815378663,569.1668002868075,314.3205725914397,550.7432151929288,242.7694973846089C532.6665558377875,172.5657663291529,456.2379748765914,142.6223662098291,390.3689995646985,112.34683881706744C326.66090330228417,83.06452184765237,258.84405631176094,53.51806209861945,193.32584062364296,78.48882559362697C121.61183558270385,105.82097193414197,62.805066853699245,167.19869350419734,48.57481801355237,242.6138429142374C34.843463184063346,315.3850353017275,76.69343916112496,383.4422959591041,125.22947124332185,439.3748458443577C170.7312796277747,491.8107796887764,230.57421082200815,532.3932930995766,300,532.3542879108572"></path>
</svg>
<i class="bx bx-slideshow"></i>
</div>
<h4><!--<a href="">-->Make informed judgements on AI<!--</a>--></h4>
<p>Get the ability to think critically and analyse different use cases for AI delivery through public services in society:</p>
<ul><li>Ability to create public value through innovative design and implement AI-based projects</li></ul>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box iconbox-teal">
<div class="icon">
<svg width="100" height="100" viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg">
<path stroke="none" stroke-width="0" fill="#f5f5f5" d="M300,566.797414625762C385.7384707136149,576.1784315230908,478.7894351017131,552.8928747891023,531.9192734346935,484.94944893311C584.6109503024035,417.5663521118492,582.489472248146,322.67544863468447,553.9536738515405,242.03673114598146C529.1557734026468,171.96086150256528,465.24506316201064,127.66468636344209,395.9583748389544,100.7403814666027C334.2173773831606,76.7482773500951,269.4350130405921,84.62216499799875,207.1952322260088,107.2889140133804C132.92018162631612,134.33871894543012,41.79353780512637,160.00259165414826,22.644507872594943,236.69541883565114C3.319112789854554,314.0945973066697,72.72355303640163,379.243833228382,124.04198916343866,440.3218312028393C172.9286146004772,498.5055451809895,224.45579914871206,558.5317968840102,300,566.797414625762"></path>
</svg>
<i class="bx bx-arch"></i>
</div>
<h4>Acquire project groupwork and communication skills</h4>
<p>Working autonomously and in groups, students will develop the ability to present and discuss their ideas and the attitude to negotiate in teamwork</p>
</div>
</div>
</div>
</div>
</section><!-- End Sevices Section -->
<!-- ======= Cta Section ======= -->
<!-- <section id="cta" class="cta">
<div class="container" data-aos="zoom-in">
<div class="text-center">
<h3>Call To Action</h3>
<p> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<a class="cta-btn" href="#">Call To Action</a>
</div>
</div>
</section><!-- End Cta Section -->
<!-- ======= Portfolio Section ======= -->
<!-- <section id="portfolio" class="portfolio">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Portfolio</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="150">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">App</li>
<li data-filter=".filter-card">Card</li>
<li data-filter=".filter-web">Web</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="300">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-1.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 1</h4>
<p>App</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-1.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-2.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 2</h4>
<p>App</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-3.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 2</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 2</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-5.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 3</h4>
<p>App</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-6.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-7.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 1</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-7.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-8.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Card 3</h4>
<p>Card</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-8.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-9.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web 3</h4>
<p>Web</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-9.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Team</h2>
</div>
<div class="row">
<p>Our core team belongs to four institutions with a long outstanding record in the research, development and delivery of AI technologies and services, as well as public services across EU-based institutions at the local, regional, national and international levels. We belong to four European universities: Universidad Politécnica de Madrid (UPM) in Spain, Politecnico di Milano (PoliMi) in Italy, Friedrich-Alexander-Universität Erlangen-Nürnberg (FAU) in Germany, and Tallinn University of Technology (TalTech) in Estonia.</p>
<p>Lectures will not only be taught by members of these institutions, but also by other professionals with a large experience in the deploynment of public services in institutions worldwide</p>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="member">
<div class="member-img">
<img src="assets/img/team/feijoo.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/claud10"><i class="bi bi-twitter"></i></a>
<a href="https://www.linkedin.com/in/claudiofeijoo"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Claudio Feijoo (UPM)</h4>
<span>AI4Gov Project Coordinator</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/misuraca.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/gianlucamisu"><i class="bi bi-twitter"></i></a>
<!--<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>-->
<a href="https://www.linkedin.com/in/gianluca-misuraca-4a04a61/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Gianluca Misuraca (UPM)</h4>
<span>Executive Director</span>
<i class="bi bi-envelope"> [email protected]</i>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="member">
<div class="member-img">
<img src="assets/img/team/mortati.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://www.linkedin.com/in/marzia-mortati-19a0898"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Marzia Mortati (PoliMi)</h4>
<span>Master Vicedirector</span>
<i class="bi bi-envelope"><br>[email protected]</i>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="100">
<div class="member">
<div class="member-img">
<img src="assets/img/team/corcho.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/ocorcho"><i class="bi bi-twitter"></i></a>
<a href="https://www.linkedin.com/in/ocorcho/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Oscar Corcho (UPM)</h4>
<span>Academic Director at UPM</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/rizzo.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://www.linkedin.com/in/francesca-rizzo-58a8911/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Francesca Rizzo (PoliMi)</h4>
<span>Academic Director at PoliMi</span>
</div>
</div>
</div>
<!-- <div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/dumbach.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://www.linkedin.com/in/philipp-dumbach-4566a6176/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Philipp Dumbach (FAU)</h4>
<span>Academic Director at FAU</span>
</div>
</div>
</div>-->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/deserti.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://www.linkedin.com/in/alessandro-deserti-84034012"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Alessandro Deserti (PoliMi)</h4>
<span></span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/pappel.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://www.linkedin.com/in/ingridpappel/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Ingrid Pappel (TALTECH)</h4>
<span>Academic Director at TALTECH</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/Innar_Liiv_250x250.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://www.linkedin.com/in/innarliiv/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Innar Liiv (TALTECH)</h4>
<span>Management Board</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/Profilbild_Hemmer_Teichert.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://www.linkedin.com/in/sebastian-hemmer-0b755b211/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Sebastian Hemmer (FAU)</h4>
<span>Management Board</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/possaste.jpg" class="img-fluid" alt="">
<div class="social">
<!--<a href=""><i class="bi bi-linkedin"></i></a>-->
</div>
</div>
<div class="member-info">
<h4>Pirjo-Andra Põõsaste (TALTECH)</h4>
<span>Project Manager</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/Ilaria Mariani_Polimi.jpg" class="img-fluid" alt="">
<div class="social">
<!-- <a href="https://www.linkedin.com/in/francesca-rizzo-58a8911/"><i class="bi bi-linkedin"></i></a> -->
</div>
</div>
<div class="member-info">
<h4>Ilaria Mariani (PoliMi)</h4>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/Martina Sciannam_Polimi.jpg" class="img-fluid" alt="">
<div class="social">
<!--<a href="https://www.linkedin.com/in/sebastian-hemmer-0b755b211/"><i class="bi bi-linkedin"></i></a>-->
</div>
</div>
<div class="member-info">
<h4>Martina Sciannamè (PoliMi)</h4>
<span>AI4Gov Master Tutor</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/marialuque.jpeg" class="img-fluid" alt="">
<div class="social">
<!--<a href="https://www.linkedin.com/in/"><i class="bi bi-linkedin"></i></a>-->
</div>
</div>
<div class="member-info">
<h4>María Luque (UPM)</h4>
<span>Project Manager</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/camillaRoveri.jpeg" class="img-fluid" alt="">
<div class="social">
<a href="https://www.linkedin.com/in/camillaroveri/"><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Camilla Roveri (UPM)</h4>
<span>Secretariat</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/Profilbild_Kugler.jpg" class="img-fluid" alt="">
<div class="social">
<!--<a href="https://www.linkedin.com/in/stefanie-b-kugler/"><i class="bi bi-linkedin"></i></a>-->
</div>
</div>
<div class="member-info">
<h4>Stefanie Kugler (FAU)</h4>
<span>Project Manager</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/stafenie_gullich.jpeg" class="img-fluid" alt="">
<div class="social">
<!--<a href="https://www.linkedin.com/in/stefanie-g%C3%BCllich-1094a3151/"><i class="bi bi-linkedin"></i></a>-->
</div>
</div>
<div class="member-info">
<h4>Stefanie Güllich (FAU)</h4>
<span></span>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Pricing Section ======= -->
<!-- <section id="pricing" class="pricing">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Pricing</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6" data-aos="zoom-im" data-aos-delay="100">
<div class="box">
<h3>Free</h3>
<h4><sup>$</sup>0<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li class="na">Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4 mt-md-0" data-aos="zoom-in" data-aos-delay="100">
<div class="box featured">
<h3>Business</h3>
<h4><sup>$</sup>19<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4 mt-lg-0" data-aos="zoom-in" data-aos-delay="100">
<div class="box">
<h3>Developer</h3>
<h4><sup>$</sup>29<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li>Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Pricing Section -->
<!-- ======= Frequently Asked Questions Section ======= -->
<section id="faq" class="faq section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Frequently Asked Questions</h2>
<p>In this section we provide answers for the most frequent questions that our prospective students have asked.</p>
</div>
<div class="faq-list">
<ul>
<li data-aos="fade-up">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" class="collapse" data-bs-target="#faq-list-1">What is the expected duration of the course<i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-1" class="collapse show" data-bs-parent=".faq-list">
<p>
The next edition of the Master will run from mid of September 2023 to the end of June 2024.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="100">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-2" class="collapsed">How many credits (ECTS) does the Master correspond to <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-2" class="collapse" data-bs-parent=".faq-list">
<p>
The Master corresponds to a total amount of 60 ECTS, distributed across all the courses, as described in the Curriculum section.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-3" class="collapsed">What are the fees for the following course? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-3" class="collapse" data-bs-parent=".faq-list">
<p>The total tuition fees for the Master in future courses will be approximately 19.000 €. For the 2023-2024 edition, tuition fees will be 9.600 euros, given the fact that part of the creation of materials and support for some lecturers are being funded by the CEF-Telecom programme. A small additional charge will be required for the administrative costs of diploma generation once the course is completed (approximately 200 euros). The fee can be paid in up to three instalments. Furthermore, we will offer grants of up to 1.920 euros (20% of the total cost) to approximately 10 students, so that part of their tuition fees are covered.</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-4" class="collapsed">Is there any discount for early-bird registrations? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-4" class="collapse" data-bs-parent=".faq-list">
<p>If you register before our early-bird registration deadline (February 28th, 2023) and you are accepted into the Master by the academic commission, you will be entitled to a 20% discount in the total fee. In order to secure your position, you will be required to provide an advance non-reimbursable payment of a 20% of the total fee (1920 euros) during March 2023</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="200">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-5" class="collapsed">Are there any other costs associated to participating in the course? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-5" class="collapse" data-bs-parent=".faq-list">
<p>
We will ask students to participate in three physical events in European cities (including at least Madrid and Milan), of a weekend each. They will be scheduled early during the course (October 2023), early in 2024 and by the end of the Master. You will only be expected to pay for your travel costs. Your accommodation, food costs, etc., will be fully covered by the master.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-6" class="collapsed">Will I get an official title from any of the universities involved in the Master? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-6" class="collapse" data-bs-parent=".faq-list">
<p>
Upon the successful completion of all the activities in the Master you will receive a transcript of your grades in all courses from Universidad Politécnica de Madrid and a joint diploma from Universidad Politécnica de Madrid and Politecnico di Milano.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="300">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-7" class="collapsed">What is exactly the title awarded to who finishes the master?<i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-7" class="collapse" data-bs-parent=".faq-list">
<p>
You will be awarded a joint title from UPM and PoliMi that corresponds to a Master of 60 ECTS. More particularly, in the Spanish system this corresponds to a "Máster (título propio) por la UPM" and in the Italian system it would correspond to a "master di primo livello da PoliMi".
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-8" class="collapsed">How many students do you foresee for the next edition of the Master? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-8" class="collapse" data-bs-parent=".faq-list">
<p>
Up to 40 students will be selected.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-9" class="collapsed">Will there be any exam? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-9" class="collapse" data-bs-parent=".faq-list">
<p>
The educational methodology of the Master is centered around project-based learning. Therefore, there will be some tests during the first modules and continuous checkpoints by mentors during the courses, including oral presentations, and especially during the activities associated to the different projects.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-10" class="collapsed">Can I participate in the Master part-time? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-10" class="collapse" data-bs-parent=".faq-list">
<p>
We assume that most of the students will be working while they take part in the Master, and hence most interactive activities will be done on Tuesday and Friday evenings. That said, we expect students to be able to finish the Master during this academic course, so for this first edition we will only accept those students that are confident in finishing during this academic course. In future editions we may consider part-time options.
</p>
</div>
</li>
<li data-aos="fade-up" data-aos-delay="400">
<i class="bx bx-help-circle icon-help"></i> <a data-bs-toggle="collapse" data-bs-target="#faq-list-11" class="collapsed">When should I register and which documentation will you ask for? <i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-11" class="collapse" data-bs-parent=".faq-list">
<p>
There will be a two-stage application process. Firstly, you need to send us a simple application form (see Apply section) with your CV and a letter describing your interest in the Master's course by email ([email protected]). For the registration a Bachelor's degree on any discipline (not necessarily STEM) is required. The sooner you send it to us, the sooner we will let you know our decision. If you are accepted, you will be redirected to the official UPM registration system, where you will have to fill in your details, you will be asked for proof of your previous qualifications and you will be provided with your payment details.
</p>
</div>
</li>
</ul>
</div>
</div>
</section><!-- End Frequently Asked Questions Section -->
<!-- ======= Apply Section ======= -->
<section id="apply" class="apply">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Apply</h2>
<h3>Fees for course 2023-2024: 9600 euros (20% discount for early-bird pre-registrations)</h3>
<h3>Discounts available for public sector employees and participants coming from <a href="https://datatopics.worldbank.org/world-development-indicators/the-world-by-income-and-region.html" target="_blank">low and lower-middle income countries</a></h3>
</div>
<div class="row content">
<div style="border: 2px solid #696969; border-radius: 9px; padding: 1.1rem; text-align: center;"><em> Registration for the Third cohort of students (academic course 2023-2024) is now open, with an early-bird pre-registration that will finish by <b>28th February 2023</b>. Regular pre-registration will be open until <b>30th June 2023</b> </em></div>
<hr>
<div class="col-lg-12">
<p>Applications for the Master will follow these steps.</p>
<ul>
<li>First, you will have to provide some basic information from you, including:
<ul><li>A 1-page document describing your interest in the master.</li>
<li>A short CV (maximum 2 pages)</li>
</ul>
</li>
<li>
The academic commission of the master will review the applications received in batches letting you know whether your application is accepted, discarded or kept in the reserve list.
</li>
<li> If accepted by the academic commission, then you will have to register through the official registration system setup by Universidad Politécnica de Madrid, whose link will be provided to you together with the acceptance letter. Additional validity checks will be done by the University (on your bachelor degrees) to ensure that you can receive the diploma after the course.</li>
</ul>
</div>
</div>
</div>
</section>
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Contact</h2>
<!-- <p>You can contact the academic directors of the Master preferably by e-mail ([email protected], [email protected]) or phone, as specified above. Should you wish to visit us, our main office is based on the Department of Artificial Intelligence at the ETSI Informáticos of Universidad Politécnica de Madrid, in Boadilla del Monte</p> -->
</div>
<div>
<iframe style="border:0; width: 100%; height: 270px;" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d800.3492954814778!2d-3.8393189798291205!3d40.405317768025306!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xd4185f258e5eec5%3A0xdf7b007bb6904fa5!2sEscuela%20T%C3%A9cnica%20Superior%20de%20Ingenieros%20Inform%C3%A1ticos%20de%20la%20Universidad%20Polit%C3%A9cnica%20de%20Madrid!5e1!3m2!1ses!2ses!4v1622546846205!5m2!1ses!2ses" frameborder="0" allowfullscreen></iframe>
</div>
<div class="row mt-5">
<div class="col-lg-12 info">