-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1128 lines (1077 loc) · 51 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 class="no-js" lang="zxx">
<head>
<meta charset="utf-8">
<meta name="author" content="SINFO">
<meta name="description" content="SINFO Sponsors Site">
<meta name="keywords" content="SINFO">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title -->
<title>SINFO 32 - Sponsors' Program</title>
<!-- Place favicon.ico in the root directory -->
<link rel="apple-touch-icon" href="images/sinfo-icon.png">
<link rel="shortcut icon" type="image/ico" href="images/favicon.ico" />
<!-- Plugin-CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/themify-icons.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/animate.css">
<!-- Main-Stylesheets -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/responsive.css">
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body data-spy="scroll" data-target="#primary-menu">
<!--Preloader-->
<div class="preloader">
<div class="sk-folding-cube"></div>
</div>
<!--Preloader-->
<!--Mainmenu-area-->
<div class="mainmenu-area" data-spy="affix" data-offset-top="100">
<div class="container">
<!--Logo-->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#primary-menu">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand logo">
<img src="images/logoSinfo.png" alt="">
</a>
</div>
<!--Logo/-->
<nav class="collapse navbar-collapse" id="primary-menu">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#home-page">Home</a></li>
<li><a href="#service-page">Why?</a></li>
<li><a href="#price-page">Sponsorship Packages</a></li>
<li><a href="#package-items">Package Items</a></li>
<li><a href="#feature-page">Perks</a></li>
<li><a href="#deadline">Deadlines</a></li>
<li><a href="#faq-page">FAQ</a></li>
<li><a href="#contact-page">Contact</a></li>
</ul>
</nav>
</div>
</div>
<!--Mainmenu-area/-->
<!--Header-area-->
<header class="header-area overlay full-height relative v-center" id="home-page">
<div class="absolute anlge-bg"></div>
<div class="container lanpage">
<div class="row v-center">
<div class="col-xs-12 col-md-7 header-text">
<h2>Become a sponsor!</h2>
<br>
<h4>SINFO 32 ∙ from February 17th to February 21st, 2025</h4>
<h4>Técnico Innovation Center, Saldanha, Lisbon</h4>
<br>
<p>Are you a tech company looking to recruit the most talented students in Portugal?
SINFO is for you! SINFO is a college student, non-profit, organization responsible for
organizing one of the best tech conferences in Portugal. SINFO 32 is coming and we want it
to be the best edition ever. To accomplish that, we want you to be a part of it!
<br> <br>SINFO 32 is proud to host our event in the new Técnico
building, right next to the Saldanha metro. This year's SINFO will take place from
<b>February 17th to February 21st</b>. We invite you to visit our homepage, where we present
the various elements that make our event, and to browse this page further to learn more
about how to become a sponsor.
</p>
<a href="http://www.sinfo.org" target="_blank" class="button white">Visit sinfo.org</a>
<a href="https://static.sinfo.org/static/32-sinfo/sponsorsProgramme/sponsorsProgramme32.pdf"
target="_blank" class="button white">Read
our digital brochure</a>
</div>
<div class="hidden-xs hidden-sm col-md-5 text-right">
<div class="screen-box">
<img src="images/student-hacky.png" alt="">
</div>
<!-- <div class="screen-box screen-slider">
<div class="item">
<img src="images/screen-1.png" alt="">
</div>
<div class="item">
<img src="images/screen-2.png" alt="">
</div>
<div class="item">
<img src="images/screen-3.png" alt="">
</div>
<div class="item">
<img src="images/screen-4.png" alt="">
</div> -->
</div>
</div>
</div>
</div>
<!--Arrow-->
<div class="col-xs-6 col-md-6 text-center"></div>
<div class="arrow">
<a href="#service-page">
<div class="row">
<div class="chevron"></div>
</div>
</a>
</div>
<!--Arrow-->
</header>
<!--Header-area/-->
<!--Why-area-->
<section class="gray-bg section-padding" id="service-page">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<div class="page-title">
<h2>Why?</h2>
<p>Become a sponsor if you're looking to:</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-4">
<div class="box">
<div class="box-icon">
<img src="images/recruit.png" alt="">
</div>
<h4>Recruit</h4>
<p>Do you want to recruit the best of the best from
Portuguese universities? More than 4000 participants are
interested in full time, part-time and internships jobs! Is this music to your ears?</p>
</div>
</div>
<div class="col-xs-12 col-sm-4">
<div class="box">
<div class="box-icon">
<img src="images/promote.png" alt="">
</div>
<h4>Promote & Advertise </h4>
<p>Do you want to promote, advertise, and make your company known to potential future employees?
</p>
</div>
</div>
<div class="col-xs-12 col-sm-4">
<div class="box">
<div class="box-icon">
<img src="images/networking.png" alt="">
</div>
<h4>Network</h4>
<p>Do you want to network and form interesting business partnerships and connections?</p>
</div>
</div>
</div>
</div>
</section>
<!--Why-area-->
<!--Pricing-area/-->
<section class="price-area section-padding" id="price-page">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<div class="page-title">
<h2>Sponsorship Packages</h2>
<div class="wh">
<p>If your company wants to sponsor us, the following packages are available: <b>Silver</b>,
<b>Gold</b> and <b>Platinum</b>.
For more info about them please contact
the SINFO member assigned to your company.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-1" style="width: 12.499999995%"></div>
<!-- <div class="col-md-3 package-card">
<div class="box whitebox fontColor">
<div class="box-icon">
<img src="images/silver.png" alt="">
</div>
<h3>Silver</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>1 Day</b></p>
<p>Advertising Package: <b>Small</b></p>
<hr>
<h3>€1.300</h3>
<p>(VAT Not Included)</p>
</div>
</div> -->
<!-- <div class="col-md-3 package-card">
<div class="box whitebox fontColor last-opportunity-box">
<p class="last_opportunity">Last opportunity</p>
<div class="box-icon">
<img src="images/silver.png" alt="">
</div>
<h3>Silver</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>1 Day</b></p>
<p>Advertising Package: <b>Small</b></p>
<hr>
<h3>€1.200</h3>
<p>(VAT Not Included - Early-Bird Price)</p>
</div>
</div> -->
<div class="col-md-3 package-card">
<div class="box whitebox fontColor sold-out-box">
<p class="sold_out">Sold out</p>
<div class="box-icon">
<img src="images/silver.png" alt="">
</div>
<h3>Silver</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>1 Day</b></p>
<p>Advertising Package: <b>Small</b></p>
<hr>
<h3>€1.300</h3>
<p>(VAT Not Included)</p>
</div>
</div>
<!-- <div class="col-md-3 package-card">
<div class="box whitebox fontColor">
<div class="box-icon">
<img src="images/gold.png" alt="">
</div>
<h3>Gold</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>2 Days</b></p>
<p>Presentation</p>
<p>Advertising Package: <b>Medium</b></p>
<hr>
<h3>€2.400</h3>
<p>(VAT Not Included)</p>
</div>
</div> -->
<!-- <div class="col-md-3 package-card">
<div class="box whitebox fontColor last-opportunity-box">
<p class="last_opportunity">Last opportunity</p>
<p class="sold_out">Sold out</p>
<div class="box-icon">
<img src="images/gold.png" alt="">
</div>
<h3>Gold</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>2 Days</b></p>
<p>Presentation</p>
<p>Advertising Package: <b>Medium</b></p>
<hr>
<h3>€2.250</h3>
<p>(VAT Not Included - Early-Bird Price)</p>
</div>
</div> -->
<div class="col-md-3 package-card">
<div class="box whitebox fontColor sold-out-box">
<p class="sold_out">Sold out</p>
<div class="box-icon">
<img src="images/gold.png" alt="">
</div>
<h3>Gold</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>2 Days</b></p>
<p>Presentation</p>
<p>Advertising Package: <b>Medium</b></p>
<hr>
<h3>€2.400</h3>
<p>(VAT Not Included)</p>
</div>
</div>
<!-- <div class="col-md-3 package-card">
<div class="box whitebox fontColor">
<div class="box-icon">
<img src="images/platinum.png" alt="">
</div>
<h3>Platinum</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>3 Days</b></p>
<p>Presentation</p>
<p>Workshop</p>
<p>Advertising Package: <b>Large</b></p>
<hr>
<h3>€3.800</h3>
<p>(VAT Not Included)</p>
</div>
</div> -->
<!-- <div class="col-md-3 package-card">
<div class="box whitebox fontColor last-opportunity-box">
<p class="last_opportunity">Last opportunity</p>
<div class="box-icon">
<img src="images/platinum.png" alt="">
</div>
<h3>Platinum</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>3 Days</b></p>
<p>Presentation</p>
<p>Workshop</p>
<p>Advertising Package: <b>Large</b></p>
<hr>
<h3>€3.800</h3>
<p>(VAT Not Included)</p>
</div>
</div> -->
<div class="col-md-3 package-card">
<div class="box whitebox fontColor sold-out-box">
<p class="sold_out">Sold out</p>
<div class="box-icon">
<img src="images/platinum.png" alt="">
</div>
<h3>Platinum</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>3 Days</b></p>
<p>Presentation</p>
<p>Workshop</p>
<p>Advertising Package: <b>Large</b></p>
<hr>
<h3>€3.800</h3>
<p>(VAT Not Included)</p>
</div>
</div>
</div>
</div>
<!-- <div class="col-md-3 package-card">
<div class="box whitebox fontColor last-opportunity-box">
<p class="last_opportunity">Last opportunity</p>
<div class="box-icon">
<img src="images/platinum.png" alt="">
</div>
<h3>Platinum</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>3 Days</b></p>
<p>Presentation</p>
<p>Workshop</p>
<p>Advertising Package: <b>Large</b></p>
<hr>
<h3>€3.200</h3>
<p>(VAT Not Included - Early-Bird Price)</p>
</div>
</div> -->
<!-- <div class="col-md-3 package-card">
<div class="box whitebox fontColor sold-out-box">
<p class="sold_out">Sold out</p>
<div class="box-icon">
<img src="images/platinum.png" alt="">
</div>
<h3>Platinum</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>3 Days</b></p>
<p>Presentation</p>
<p>Workshop</p>
<p>Advertising Package: <b>Large</b></p>
<hr>
<h3>€3.200</h3>
<p>(VAT Not Included - Early-Bird Price)</p>
</div>
</div> -->
<!-- <div class="col-xs-12 col-sm-2 col-md-2 package-card">
<div class="box whitebox fontColor">
<div class="box-icon">
<img src="images/platinum1.png" alt="">
</div>
<h3>Platinum+</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>3 Days</b></p>
<p>Presentation</p>
<p>Workshop</p>
<p>Lunch Talk</p>
<p>Advertising Package: <b>Large</b></p>
<hr>
<h3>€3.800<sup>(1)</sup></h3>
<p>(VAT Not Included - Early-Bird Price)</p>
</div>
</div> -->
<!-- <div class="col-xs-12 col-sm-2 col-md-2 package-card">
<div class="box whitebox fontColor sold-out-box">
<p class="sold_out">Sold out</p>
<div class="box-icon">
<img src="images/platinum1.png" alt="">
</div>
<h3>Platinum+</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>3 Days</b></p>
<p>Presentation</p>
<p>Workshop</p>
<p>Lunch Talk</p>
<p>Advertising Package: <b>Large</b></p>
<hr>
<h3>€3.800<sup>(1)</sup></h3>
<p>(VAT Not Included - Early-Bird Price)</p>
</div>
</div> -->
<!-- <div class="col-xs-12 col-sm-3 col-md-3">
<div class="box whitebox fontColor last-opportunity-box">
<p class="last_opportunity">Last opportunity</p>
<div class="box-icon">
<img src="images/platinum.png" alt="">
</div>
<h3>Platinum</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>3 Days</b></p>
<p>Speed Dating</p>
<p>Presentation</p>
<p>Workshop</p>
<p>Lunch Talk</p>
<p>Advertising Package: <b>Large</b></p>
<hr>
<h3>€2.400</h3>
<p>(VAT Not Included)</p>
</div>
</div> -->
<!-- <div class="col-xs-12 col-sm-2 col-md-2 package-card">
<div class="box whitebox fontColor">
<div class="box-icon">
<img src="images/diamond.png" alt="">
</div>
<h3>Diamond</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>5 Days</b></p>
<p>Presentation</p>
<p>Workshop</p>
<p>Lunch Talk</p>
<p>Advertising Package: <b>Exclusive</b></p>
<hr>
<h3>€6.000<sup>(2)</sup></h3>
<p>(VAT Not Included - Early-Bird Price)</p>
</div>
</div> -->
<!-- <div class="col-xs-12 col-sm-2 col-md-2 package-card">
<div class="box whitebox fontColor last-opportunity-box">
<p class="last_opportunity">Last opportunity</p>
<div class="box-icon">
<img src="images/diamond.png" alt="">
</div>
<h3>Diamond</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>5 Days</b></p>
<p>Presentation</p>
<p>Workshop</p>
<p>Lunch Talk</p>
<p>Advertising Package: <b>Exclusive</b></p>
<hr>
<h3>€6.000<sup>(2)</sup></h3>
<p>(VAT Not Included - Early-Bird Price)</p>
</div>
</div> -->
<!-- <div class="col-xs-12 col-sm-2 col-md-2 package-card">
<div class="box whitebox fontColor sold-out-box">
<p class="sold_out">Sold out</p>
<div class="box-icon">
<img src="images/diamond.png" alt="">
</div>
<h3>Diamond</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>5 Days</b></p>
<p>Presentation</p>
<p>Workshop</p>
<p>Lunch Talk</p>
<p>Advertising Package: <b>Exclusive</b></p>
<hr>
<h3>€6.000<sup>(2)</sup></h3>
<p>(VAT Not Included - Early-Bird Price)</p>
</div>
</div> -->
<!-- <div class="col-xs-12 col-sm-3 col-md-3">
<div class="box whitebox fontColor sold-out-box">
<p class="sold_out">Sold out</p>
<div class="box-icon">
<img src="images/diamond.png" alt="">
</div>
<h3>Diamond</h3>
<hr>
<p>Curricula</p>
<p>Stand: <b>5 Days</b></p>
<p>Speed Dating</p>
<p>Presentation</p>
<p>Workshop</p>
<p>Lunch Talk</p>
<p>Main Stage Sponsorship</p>
<p>Advertising Package: <b>Exclusive</b></p>
<hr>
<h3>€3.000</h3>
<p>(VAT Not Included)</p>
</div> <br><br><br>
</div> -->
</div>
<br>
<br>
<!-- <div class="row">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<div class="wh">
<sup>(1) Only four available. </sup> <br>
<sup>(2) Package exclusive to one company. If there is more than one company interested in this
package, the package will be auctioned. Maximum of 3 consecutive years.</sup> <br>
</div><br>
</div><br><br>
</div> -->
<div class="row">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<div class="wh">
<p>Last year, <u><b>we had a record-breaking number of participating companies</b></u> - if
you're
interested, hurry up to grant your place!</p>
</div><br>
</div><br><br>
</div>
</div>
</section>
<section class="gray-bg section-padding" id="package-items">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<div class="page-title">
<h2>Package Items</h2>
<p>
Below you can find the several package items. For more info
about them, please contact the committee member assigned to your
company.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="boxMerch">
<div class="box-icon">
<img src="images/curricula.png" alt="" />
</div>
<h3>Curricula</h3>
<p>
Every company that acquires a sponsor package will be given a
link to download student's CVs, gathered during the event and
after.<br />
</p>
<hr />
<h6>
Silver: Yes | Gold: Yes <br />
Platinum: Yes
</h6>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="boxMerch">
<div class="box-icon">
<img src="images/stand.png" alt="" />
</div>
<h3>Stand</h3>
<p>
You'll be granted a stand on our venue where you'll be able to
network with all our attendees.<br />
</p>
<hr />
<h6>
Silver: 1 day | Gold: 2 days <br />
Platinum: 3 days
</h6>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="boxMerch">
<div class="box-icon">
<img src="images/workshop.png" alt="" />
</div>
<h3>Workshop</h3>
<p>
The workshops usually occur in the afternoon. The theme is
chosen by the company, and approved by the organizing committee.
They also have a limited attendance which means they have to be
booked by the students before the event starts.
</p>
<hr />
<h5>Duration: 1h30min</h5>
<h6>
Silver: No | Gold: No <br />
Platinum: Yes
</h6>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="boxMerch">
<div class="box-icon">
<img src="images/presentation.png" alt="" />
</div>
<h3>Presentation</h3>
<p>
The Presentation allows the company to introduce and explain to
the students their field of work, the projects the company has
been working on, the everyday life inside the office and also
the job opportunities that might be available to the students in
the company. The goal is to sell the company to students.<br />
</p>
<hr />
<h5>20 min session divided as such:</h5>
10 mins for company pitch <br />
10 mins for networking<br />
<br />
<h6>
Silver: No | Gold: Yes <br />
Platinum: Yes
</h6>
</div>
</div>
</div>
</div>
</section>
<!--TABLE-area/-->
<div class="container" style="margin-top: 100px;">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<div class="page-title">
<h2>Advertising Items</h2>
<p>In this table you can find the advertising items relative to each advertising level. For more info
about them, please contact the SINFO member assigned to your company.</p>
</div>
</div>
</div>
<div class="visible-xs text-center">
<img src="images/swipe.png" alt="">
<p><b>Swipe the table below to see all the packages</b></p>
</div>
<center>
<div class="border">
<div style="overflow-x:auto;">
<table>
<tr>
<th height="100" width="25%" style=" border-top-left-radius: 5px;">Item / Package</th>
<!--th height="50">Gold</th-->
<th height="50" width="15%">Silver</th>
<th height="50" width="15%">Gold</th>
<th height="50" width="15%">Platinum</th>
<tr>
<td>Logo on Showcase</td>
<td>S</td>
<td>M</td>
<td>L</td>
</tr>
<tr>
<td>Post on Social Media<sup>(2)</sup></td>
<td>-</td>
<td>-</td>
<td>Yes</td>
</tr>
<tr>
<td>Logo during the Breaks</td>
<td>S</td>
<td>M</td>
<td>L</td>
</tr>
<tr>
<td>Logo on our Website's Main Page</td>
<td>S<sup>(1)</sup></td>
<td>M<sup>(1)</sup></td>
<td>L</td>
</tr>
<tr>
<td>Logo on the Flyers</td>
<td>-</td>
<td>M</td>
<td>L</td>
</tr>
<tr>
<td>Logo on Rollup</td>
<td>-</td>
<td>M</td>
<td>L</td>
</tr>
<tr>
<td>Logo on the Sponsor's Posters</td>
<td>-</td>
<td>M</td>
<td>L</td>
</tr>
<tr>
<td>Logo on the Main Poster</td>
<td>-</td>
<td>-</td>
<td>Yes</td>
</tr>
<tr>
<td>Logo on Social Media Banners</td>
<td>-</td>
<td>-</td>
<td>Yes</td>
</tr>
<tr>
<td>Logo on Physical Banners</td>
<td>-</td>
<td>-</td>
<td>Yes</td>
</tr>
<tr>
<td>Logo on Merchandising</td>
<td>-</td>
<td>-</td>
<td>Yes</td>
</tr>
</table>
</div>
<div>
<sup>(1) Collapsed. </sup> <br>
<sup>(2) Social media posts are valid from March 1st to May 31st, 2025 and limited to SINFO's
Facebook, Twitter, and LinkedIn. </sup> <br>
</div>
</div>
<br><br>
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<a href="advertisingItems.html" target="_blank" class="button">Check example Advertising items here!</a>
</div><br><br>
<!--TABLE-area/-->
</center>
<!--Pricing-area/-->
<!--Perks-area/-->
<section class="gray-bg section-padding" id="feature-page">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<div class="page-title">
<h2>Perks</h2>
<p>Being a sponsor also brings some advantages! The companies can enjoy the following perks
during the event:</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="box">
<div class="box-icon">
<img src="images/freeParking.png" alt="">
</div>
<h3>Daily Free-Parking</h3>
<p>The company will have a paid full-day parking for one vehicle.</p>
</div>
</div>
<!-- <div class="col-xs-12 col-sm-6 col-md-4">
<div class="box">
<div class="box-icon">
<img src="images/lunchDiscaunt.png" alt="">
</div>
<h3>Catering</h3>
<p> We provide lunch to company members present during the event. We also offer discounts for
restaurants nearby.</p>
</div>
</div> -->
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="box">
<div class="box-icon">
<img src="images/coffeeBreak.png" alt="">
</div>
<h3>Coffee-Break Access</h3>
<p>The company members present during the event will have free access to the event’s
coffee-breaks.</p>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="box">
<div class="box-icon">
<img src="images/freeWifi.png" alt="">
</div>
<h3>Wi-Fi Access</h3>
<p>Free and unlimited access to Instituto Superior Técnico’s Wi-Fi network during the event
using a company guest password.</p>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="box">
<div class="box-icon">
<img src="images/freePass.png" alt="">
</div>
<h3>Full Access Pass</h3>
<p>Access to all the event’s activities: Talks, Workshops, Presentations, Tech Expo.</p>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="box">
<div class="box-icon">
<img src="images/statistics.png" alt="">
</div>
<h3>Statistics</h3>
<p>Statistical data and opinions of visitors regarding the participation of the company,
gathered from surveys carried out during the event.</p>
</div>
</div>
</div>
</div>
</section>
<!--Perks-area/-->
<!--Deadlines-area/-->
<section class="price-area section-padding" id="deadline">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<div class="page-title">
<h2>Deadlines</h2>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-12 text-center">
<div class="wh">
<p>In order to make SINFO 32 possible and be sure that everything is ready on time, companies
assume the compromise of respecting the
following deadlines. <b>For late submissions, the SINFO team can't guarantee the presence of
those missing elements during
the event (even if they are included in the company's package)</b> :</p><br>
</div>
<!--<div class="wh">
<p>
<font size="5">Early-Bird Sponsorship Confirmation:</font><br>
<font size="7"><b>January 31st</b></font>
</p>
</div>
-->
<div class="wh">
<p>
<font size="5">Sponsorship Confirmation:</font><br>
<font size="7"><b>December 13th</b></font>
</p>
</div>
<div class="wh">
<p>
<font size="5">Company Logo, Presentation and Workshop information:</font><br>
<font size="7"><b>December 20th</b></font>
</p>
</div>
</div>
</div>
</section>
<!--Deadlines-area/-->
<!--FAQ-area/-->
<section class="gray-bg section-padding" id="faq-page">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<div class="page-title">
<h2>Frequently Asked Questions</h2>
<p>After reading this page, it is understandable that some questions were raised. It's been
32 years of SINFO and there is always something that can be explained better. Here are some
of the
most Frequently Asked Questions from past editions. If your question is not listed, contact
us in the next section.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2">
<div class="panel-group" id="accordion">
<!-- <div class="panel">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse2">How can I download
the app?</a>
</h4>
<div id="collapse2" class="panel-collapse collapse">
<p>The web app is available on <a href="https://www.sinfo.org/">https://sinfo.org</a>.
You have to sign in with your Facebook, Google, LinkedIn or Fenix account.<br>
The app will allow you to scan the students' QR codes, download the Curricula and
write notes about the attendees.<br>
In order to avoid past issues, please ask your company for permission to sign in
with one of those options.</p>
</div>
</div> -->
<!-- <div class="panel">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse3">Is the Diamond
Package exclusive for one company?</a>
</h4>
<div id="collapse3" class="panel-collapse collapse">
<p>Yes, the Diamond Package is for our Main Sponsor, therefore it is only possible to
have one company.
If there is more than one company interested in this package, the package will be
auctioned.</p>
</div>
</div> -->
<!--
<div class="panel">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse3">What happened to
the Diamond Package?</a>
</h4>
<div id="collapse3" class="panel-collapse collapse">
<p>We decided to stop offering our Exclusive Package, also known as the Diamond Package.
We felt that the format of the package is no longer in sync with our vision of the
event.</p>
</div>
</div>
-->
<div class="panel">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse4">Why has the price of
the Platinum package increased this year?</a>
</h4>
<div id="collapse4" class="panel-collapse collapse">
<p>The overall pricing reflects both the enhancements made to the package and rising costs.
This year, the Platinum package is more exclusive, offering upgraded benefits for company
members. We have also increased our investment in advertising across Lisbon to ensure
broader visibility and greater impact for our key sponsors.</p>
</div>
</div>
<div class="panel">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse5">How should I
title my Presentation or Workshop?</a>
</h4>
<div id="collapse5" class="panel-collapse collapse">
<p>The titles should <b>not exceed 30 characters</b>, and, at the same time, should be
appealing and descriptive
of the tematics discussed during the session. According to our statistics the
companies who
follow these guidelines
end up having a higher crowded session compared to those who don't.</p>
</div>
</div>
<div class="panel">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse6">In which format
should I send the logo of the company?</a>
</h4>
<div id="collapse6" class="panel-collapse collapse">
<p>The logo should be sent in vectorial format (.ai, .svg, .eps, .pdf, etc.). If none
of those
is available, you should send us a .png
with the maximum resolution available.<br>
If the company has different logos for different color backgrounds, you
should send us all of the possible options.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Disclaimer-area/-->
<div class="container">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<br /><br /><br />