forked from EuTavares/Conarc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
903 lines (878 loc) · 31.8 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="" />
<title>CONARC - 2022</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/img/favicon.png" />
<!-- Font Awesome icons (free version)-->
<script
src="https://use.fontawesome.com/releases/v5.13.0/js/all.js"
crossorigin="anonymous"
></script>
<!-- Google fonts-->
<link
href="https://fonts.googleapis.com/css?family=Montserrat:400,700"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic"
rel="stylesheet"
type="text/css"
/>
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav
class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top"
id="mainNav"
>
<div class="container">
<img
class="img-logo"
src="assets/img/mdio_rosa.png"
alt=""
href="index.html"
/>
<button
class="
navbar-toggler navbar-toggler-right
text-uppercase
font-weight-bold
bg-primary
text-white
rounded
"
type="button"
data-toggle="collapse"
data-target="#navbarResponsive"
aria-controls="navbarResponsive"
aria-expanded="false"
aria-label="Toggle navigation"
>
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item mx-0 mx-lg-1">
<a
class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger"
href="#rotaract"
>Rotaract</a
>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a
class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger"
href="#portfolio"
>Conarc</a
>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a
class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger"
href="#cronograma"
>Cronograma</a
>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a
class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger"
href="#inscricao"
>Inscrição</a
>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a
class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger"
href="#contato"
>Contato</a
>
</li>
</ul>
<div class="dropdown">
<button class="dropbtn"><i class="fas fa-language"></i></button>
<div class="dropdown-content">
<a href="index.html">Português</a>
<a href="es-index.html">Espanol</a>
</div>
</div>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead text-white text-center">
<div class="container d-flex align-items-center flex-column">
<!-- Masthead Avatar Image-->
<img class="masthead-avatar" src="assets/img/CONARC.png" alt="" />
</div>
</header>
<section class="page-section portfolio" id="rotaract">
<div class="container">
<h2
class="
page-section-heading
text-center text-uppercase text-secondary
mb-0
"
>
Rotaract
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<img style="width: 1em;" src="assets/img/dream-catcher(1).png">
</div>
<div class="divider-custom-line"></div>
</div>
<!--Texto Rotaract-->
<div class="text-center lead mb-0">
<p>
O Rotaract une jovens a partir de 18 anos anos para trocarem ideias,
</p>
<p>
aprimorarem suas habilidades de liderança, ajudarem o próximo e se
divertirem ao longo do caminho.
</p>
<p>
No Brasil, somos quase 9000 associados em mais de 700 clubes de
norte a sul do país.
</p>
</div>
<br />
<h4 class="text-center" style="color: #f90b6b">
Para saber mais aperte o play!
</h4>
<div class="text-center container1">
<iframe
class="responsive-iframe"
src="https://www.youtube.com/embed/4VwLg-2a8r8"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
</div>
</section>
<!-- Portfolio Section-->
<section class="page-section portfolio" id="portfolio">
<div class="container">
<!-- Portfolio Section Heading-->
<h2
class="
page-section-heading
text-center text-uppercase text-secondary
mb-0
"
>
Conarc
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<img style="width: 1em;" src="assets/img/dream-catcher(1).png">
</div>
<div class="divider-custom-line"></div>
</div>
<div class="text-center lead mb-0">
<p>
Prepara-se para 29 de janeiro participar 48ª Conferência
Multidistrital de Rotaract Clubs do Brasi. A Conarc é o maior evento
rotaractiano do país e um dos mais antigos do mundo.
</p>
<p>
Reúne uma média de 700 jovens a cada edição. Desta vez, o nosso
encontro ocorrerá pela segunda vez de modo virtual.
</p>
<p>
Queremos transformar todos os sonhos em realidade vem com a Rotaract no Brasil! E como será a segunda vez que a Conarc não terá
sede física, faremos um passeio cultural por todas as nossas
regiões.
</p>
<p>
E sabe o que é melhor? Tudo isso de graça! Basta se inscrever para
aprender muito, se emociona, conhecer mais o nosso país e voltar com
mais energia para mudar o mundo!
</p>
</div>
<br /><br /><br id="cronograma" /><br />
<div>
<h2
class="
page-section-heading
text-center text-uppercase text-secondary
mb-0
"
>
Cronograma
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<img style="width: 1em;" src="assets/img/dream-catcher(1).png">
</i></div>
<div class="divider-custom-line"></div>
</div>
<div>
<div class="container text-center img-tam">
<h4 style="color: #2c3e50;">29 de Janeiro - Sábado</h4>
</div>
<table style="width: 100%;">
<thead>
<tr>
<th>Horário</th>
<th>Descrição</th>
<th>Plataforma</th>
</tr>
</thead>
<tbody>
<tr>
<td>14h00</td>
<td>Abertura</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>14h10</td>
<td>Quantos sonhos de Rotaract temos no Brasil?</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>14h20</td>
<td>Palestra 1</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>14h45</td>
<td>Grupos de Diálogo</td>
<td><a href="#" target="_blank">
<img style="width: 2.3em;" src="assets/img/zoom.png">
</a></td>
</tr>
<tr>
<td>15h45</td>
<td>Intervalo/Atração</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>16h00</td>
<td>Talks</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>16h30</td>
<td>Lançamento do Site</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>16h40</td>
<td>Introdutório ao CNO e distintivos</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>16h50</td>
<td>Entrega de Distintivos</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>17h00</td>
<td>Concurso Nacional de Oratória</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>17h30</td>
<td>Parcerias</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>17h40</td>
<td>Concurso Nacional de Projetos</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>18h00</td>
<td>Concurso Nacional de Oratória - Resultado</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>18h10</td>
<td>Encerramento</td>
<td><a href="https://www.youtube.com/channel/UCfQCT7cXH-ymh0FbWNgIHeQ" target="_blank">
<img style="width: 2.2em;" src="assets/img/youtube.png">
</a></td>
</tr>
<tr>
<td>-----</td>
<td>Festa</td>
<td><a href="#" target="_blank">
<img style="width: 2.3em;" src="assets/img/zoom.png">
</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Portfolio Grid Items- Atrações -->
<div class="row"></div>
</div>
</section>
<!-- About Section-->
<!-- About Section Button-->
<br id="inscricao" />
<section>
<div>
<h2
class="
page-section-heading
text-center text-uppercase text-secondary
mb-0
"
>
Inscreva-se
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<img style="width: 1em;" src="assets/img/dream-catcher(1).png">
</i></div>
<div class="divider-custom-line"></div>
</div>
<div class="lead mb-0">
<p class="text-center">
Para poder escolher os Workshops, grupos de discussão e outras
atividades incríveis que vão ocorrer na nossa CONARC
</p>
<p class="text-center">
e ainda ter direito ao seu certificado de participação, inscreva-se
clicando no botão abaixo!
</p>
</div>
</div>
<div class="text-center mt-4">
<a
class="btn btn-xl btn-outline-light"
href="https://www.sympla.com.br/conarc-e-conferencia-presidencial---ritmos-do-brasil__1030310"
target="_blank"
>
<i class="fas fa-check"></i>
Inscrições em breve
</a>
</div>
<br /><br /><br />
</section>
<!-- Footer-->
<footer class="footer text-center" id="contato">
<div class="container">
<div class="row">
<!-- Footer Location-->
<div class="col-lg-4 mb-5 mb-lg-0">
<h4 class="text-uppercase mb-4">Local</h4>
<p class="lead mb-0">
Todos em Casa
<br />
Conectados à internet.
</p>
</div>
<!-- Footer Social Icons-->
<div class="col-lg-4 mb-9 mb-lg-0">
<h4 class="text-uppercase mb-4">Conecte-se</h4>
<a
class="btn btn-outline-light btn-social mx-1"
href="https://www.facebook.com/RotaractBrasilOficial"
target="_blank"
><i class="fab fa-fw fa-facebook-f"></i
></a>
<a
class="btn btn-outline-light btn-social mx-1"
href="https://twitter.com/rotaractbrasil"
target="_blank"
><i class="fab fa-fw fa-twitter"></i
></a>
<a
class="btn btn-outline-light btn-social mx-1"
href="https://www.instagram.com/rotaractbrasiloficial"
target="_blank"
><i class="fab fa-instagram"></i
></a>
<a
class="btn btn-outline-light btn-social mx-1"
href="https://www.youtube.com/c/RotaractBrasil"
target="_blank"
><i class="fab fa-youtube"></i
></a>
</div>
<div class="col-lg-4 mb-9 mb-lg-0" id="#">
<h4 class="text-uppercase" id="tamanho">Realização</h4>
<img
src="assets/img/Lema-20-21-Digital (1).png"
style="width: 70%"
alt=""
/>
</div>
</div>
</div>
</footer>
<!-- Copyright Section-->
<div class="copyright py-4 text-center text-white">
<div class="container"><small>Copyright © MDIO TI 2021 - 2022</small></div>
</div>
<!-- Scroll to Top Button (Only visible on small and extra-mall screen sizes)-->
<div class="scroll-to-top d-lg-none position-fixed">
<a
class="js-scroll-trigger d-block text-center text-white rounded"
href="#page-top"
><i class="fa fa-chevron-up"></i
></a>
</div>
<!-- Portfolio Modals-->
<!-- Portfolio Modal 1-->
<div
class="portfolio-modal modal fade"
id="portfolioModal1"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal1Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button
class="close"
type="button"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2
class="
portfolio-modal-title
text-secondary text-uppercase
mb-0
"
id="portfolioModal1Label"
>
Conarc
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img
class="img-fluid rounded mb-5"
src="assets/img/portfolio/cabin1.png"
alt=""
/>
<!-- Portfolio Modal - Text-->
<p class="mb-5">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Mollitia neque assumenda ipsam nihil, molestias magnam,
recusandae quos quis inventore quisquam velit asperiores,
vitae? Reprehenderit soluta, eos quod consequuntur itaque.
Nam.
</p>
<button class="btn btn-primary" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Fechar
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 2-->
<div
class="portfolio-modal modal fade"
id="portfolioModal2"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal2Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button
class="close"
type="button"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2
class="
portfolio-modal-title
text-secondary text-uppercase
mb-0
"
id="portfolioModal2Label"
>
Conferência Presidencial
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img
class="img-fluid rounded mb-5"
src="assets/img/portfolio/cake.png"
alt=""
/>
<!-- Portfolio Modal - Text-->
<p class="mb-5">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Mollitia neque assumenda ipsam nihil, molestias magnam,
recusandae quos quis inventore quisquam velit asperiores,
vitae? Reprehenderit soluta, eos quod consequuntur itaque.
Nam.
</p>
<button class="btn btn-primary" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Fechar
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 3-->
<div
class="portfolio-modal modal fade"
id="portfolioModal3"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal3Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button
class="close"
type="button"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2
class="
portfolio-modal-title
text-secondary text-uppercase
mb-0
"
id="portfolioModal3Label"
>
Grupos de Discussão
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img
class="img-fluid rounded mb-5"
src="assets/img/portfolio/circus.png"
alt=""
/>
<!-- Portfolio Modal - Text-->
<p class="mb-5">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Mollitia neque assumenda ipsam nihil, molestias magnam,
recusandae quos quis inventore quisquam velit asperiores,
vitae? Reprehenderit soluta, eos quod consequuntur itaque.
Nam.
</p>
<button class="btn btn-primary" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Fechar
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 4-->
<div
class="portfolio-modal modal fade"
id="portfolioModal4"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal4Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button
class="close"
type="button"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2
class="
portfolio-modal-title
text-secondary text-uppercase
mb-0
"
id="portfolioModal4Label"
>
CNO
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img
class="img-fluid rounded mb-5"
src="assets/img/portfolio/game.png"
alt=""
/>
<!-- Portfolio Modal - Text-->
<p class="mb-5">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Mollitia neque assumenda ipsam nihil, molestias magnam,
recusandae quos quis inventore quisquam velit asperiores,
vitae? Reprehenderit soluta, eos quod consequuntur itaque.
Nam.
</p>
<button class="btn btn-primary" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Fechar
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 5-->
<div
class="portfolio-modal modal fade"
id="portfolioModal5"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal5Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button
class="close"
type="button"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2
class="
portfolio-modal-title
text-secondary text-uppercase
mb-0
"
id="portfolioModal5Label"
>
CNP
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img
class="img-fluid rounded mb-5"
src="assets/img/portfolio/safe.png"
alt=""
/>
<!-- Portfolio Modal - Text-->
<p class="mb-5">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Mollitia neque assumenda ipsam nihil, molestias magnam,
recusandae quos quis inventore quisquam velit asperiores,
vitae? Reprehenderit soluta, eos quod consequuntur itaque.
Nam.
</p>
<button class="btn btn-primary" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Fechar
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 6-->
<div
class="portfolio-modal modal fade"
id="portfolioModal6"
tabindex="-1"
role="dialog"
aria-labelledby="portfolioModal6Label"
aria-hidden="true"
>
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<button
class="close"
type="button"
data-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true"><i class="fas fa-times"></i></span>
</button>
<div class="modal-body text-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2
class="
portfolio-modal-title
text-secondary text-uppercase
mb-0
"
id="portfolioModal6Label"
>
Palestras
</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
<div class="divider-custom-icon">
<i class="fas fa-star"></i>
</div>
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img
class="img-fluid rounded mb-5"
src="assets/img/portfolio/submarine.png"
alt=""
/>
<!-- Portfolio Modal - Text-->
<p class="mb-5">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Mollitia neque assumenda ipsam nihil, molestias magnam,
recusandae quos quis inventore quisquam velit asperiores,
vitae? Reprehenderit soluta, eos quod consequuntur itaque.
Nam.
</p>
<button class="btn btn-primary" data-dismiss="modal">
<i class="fas fa-times fa-fw"></i>
Fechar
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.bundle.min.js"></script>
<!-- Third party plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<!-- Contact form JS-->
<script src="assets/mail/jqBootstrapValidation.js"></script>
<script src="assets/mail/contact_me.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>