-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1254 lines (1188 loc) · 64.3 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" />
<title>SEMDESTUR</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="" name="keywords" />
<meta content="" name="description" />
<!-- Favicon -->
<link href="img/logo-semdestur.png" rel="icon" />
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600&family=Nunito:wght@600;700;800&display=swap"
rel="stylesheet" />
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet" />
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous" />
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet" />
<link href="css/scroll.css" rel="stylesheet" />
</head>
<body>
<nav class="navbar navbar-expand-lg bg-white navbar-light shadow sticky-top p-0">
<a href="#" class="navbar-brand d-flex align-items-center px-4 px-lg-5">
<img class="logo" src="img/logo-semdestur.png" alt="logo-semdestur" />
<!-- <h2 class="m-0 text-primary"><i class="fa fa-book me-3"></i>SEMDESTUR</h2> -->
</a>
<button type="button" class="navbar-toggler me-4" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav ms-auto p-4 p-lg-0">
<div class="nav-item dropdown">
<a href="" class="btn btn-primary py-4 px-lg-5 d-none d-lg-block">Home
<i class="fas fa-caret-down"></i>
</a>
<div class="dropdown-menu fade-down m-0">
<a href="#" class="dropdown-item active">Início</a>
<a href="#circuito" class="dropdown-item">circuito</a>
<a href="#rotas" class="dropdown-item">Rotas</a>
<a href="#historica" class="dropdown-item">História</a>
</div>
</div>
</div>
</div>
</nav>
<!-- Carousel Start -->
<div class="container-fluid p-0">
<div class="owl-carousel header-carousel position-relative">
<div class="owl-carousel-item position-relative">
<img class="img-fluid" src="img/banners/banner-semdestur-1.jpg" alt="" />
<div class="position-absolute top-0 start-0 w-100 h-70 d-flex align-items-center">
<div class="container">
<div class="row justify-content-start"></div>
</div>
</div>
</div>
<div class="owl-carousel-item position-relative">
<img class="img-fluid" src="img/banners/banner-semdestur-2.jpg" alt="" />
<div class="position-absolute top-0 start-0 w-100 h-100 d-flex align-items-center"></div>
</div>
</div>
</div>
<!--second-->
<section id="circuito">
<div class="bg-dark h-100 w-100 py-4">
<div class="d-flex justify-content-center align-items-center flex-column mb-4">
<h1 class="mb-2 text-white text-center">Circuito</h1>
</div>
<main id="infographic" class="d-flex flex-column align-items-center py-5">
<section class="step one text-danger">
<div class="circle">
<i class="fas fa-play" style="font-size: 50px" class="text-center"></i>
<h4>STEP 1</h4>
Você está pronto?
</div>
<article data-step="1">
<header class="d-flex align-items-center bg-danger bg-opacity-10">
<i class="fas fa-theater-masks"></i>
<h6 class="text-uppercase my-3 ps-4">Circuito das Artes</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/artes.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<button type="button" class="btn btn-outline-danger" data-bs-toggle="modal"
data-bs-target="#exampleModal">
<i class="fas fa-eye"></i>
</button>
<small class="text-white"> </small>
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger invisible" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="exampleModalLabel">
Circuito das Artes
</h3>
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-label="Close"></button>
</div>
<div class="modal-body">
<h4>Nossa terra tem uma arte formada com a mescla de
tradições de vários cantos
do país, compondo um caldeirão, onde teatros, museus e espaços culturais que
representam dignamente a cultura do norte. Aqui a arte resplandece, cheia de
histórias e memórias em incessante transformação, fortalecendo a identidade
do nosso povo</h4>
<div id="carouselExampleDark" class="carousel carousel-dark slide"
data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleDark"
data-bs-slide-to="0" class="active" aria-current="true"
aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleDark"
data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleDark"
data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active" data-bs-interval="10000">
<div class="modal-body">
<div class="card mb-3" style="width: 100%">
<div class="row g-0">
<div class="col-md-4">
<img src="img/circuitos/artes/palaciodasArtes.jpg"
class="img-fluid rounded-start" alt="..." />
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title text-dark">Teatro Estadual
Palácio das Artes</h5>
<p class="card-text text-dark">
Descrição: É o maior teatro da Região Norte.
Pertence ao Governo do Estado de Rondônia e
comporta mais de 1000 pessoas em suas
instalações.
</p>
<p class="card-text">
<small class="text-muted">
LOCAL: Av. Pres.Dutra, 4183 – Olaria.
</small>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item" data-bs-interval="2000">
<div class="card mb-3" style="width: 100%">
<div class="row g-0">
<div class="col-md-4">
<img src="img/circuitos/artes/teatroGuapore.jpg"
class="img-fluid rounded-start" alt="..." />
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title text-dark">Teatro Guaporé</h5>
<p class="card-text text-dark">
Anexo ao Teatro das Artes, o Teatro Guporé tem
capacidade para 235 pessoas. Foi inaugurado no
dia 20 de junho de 2014 com o espetáculo "A
Falecida", clássico de Nelson Rodrigues.
</p>
<p class="card-text">
<small class="text-muted">LOCAL: R. Tabajara,
148 – Olaria.</small>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
< <div class="card mb-3" style="width: 100%">
<div class="row g-0">
<div class="col-md-4">
<img src="img/circuitos/artes/teatroBanzeiros.jpg"
class="img-fluid rounded-start" alt="..." />
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title text-dark">Teatro Banzeiros
</h5>
<p class="card-text text-dark">
Descrição: Com capacidade para 227 pessoas, o
Teatro Municipal Banzeiros integra o Centro de
Formação dos Profissionais da Educação. O nome é
uma homenagem ao rio Madeira, banzeiro é o nome
dado às ondas sucessivas formadas a partir do
momento em que o barco a motor corta as águas do
rio.
</p>
<p class="card-text">
<small class="text-muted">LOCAL: R. José do
Patrocínio, 110, Centro </small>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button"
data-bs-target="#carouselExampleDark" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Ant</span>
</button>
<button class="carousel-control-next" type="button"
data-bs-target="#carouselExampleDark" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Prox</span>
</button>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">
fechar
</button>
</div>
</div>
</div>
</div>
</article>
<article data-step="2">
<header class="d-flex align-items-center text-danger bg-danger bg-opacity-10">
<i class="fa-solid fa-meteor bg-danger"></i>
<h6 class="text-uppercase my-3 ps-4">
Circuito Aventura
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/aventura.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
<article data-step="3">
<header class="d-flex align-items-center text-danger bg-danger bg-opacity-10">
<i class="fa-solid fa-meteor bg-danger"></i>
<h6 class="text-uppercase my-3 ps-4">
Circuito Beradeiro
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/beradeiro.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
<article data-step="4">
<header class="d-flex align-items-center text-danger bg-danger bg-opacity-10">
<i class="fa-solid fa-meteor bg-danger"></i>
<h6 class="text-uppercase my-3 ps-4">
Circuito Ecológico
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/ecologico.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
<article data-step="5">
<header class="d-flex align-items-center text-danger bg-danger bg-opacity-10">
<i class="fa-solid fa-meteor bg-danger"></i>
<h6 class="text-uppercase my-3 ps-4">
Circuito Energia
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/energia.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
</section>
<section class="step two text-warning">
<div class="circle">
<i class="fa-solid fa-cookie-bite display-1 mb-3"></i>
<h4>STEP 2.</h4>
Você está indo bem!
</div>
<article data-step="6">
<header class="d-flex align-items-center text-warning bg-warning bg-opacity-10">
<i class="fa-solid fa-cookie-bite bg-warning"></i>
<h6 class="text-uppercase my-3 pe-4">
Circuito Fora de Rota
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/foradeRota.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
<article data-step="7">
<header class="d-flex align-items-center text-warning bg-warning bg-opacity-10">
<i class="fa-solid fa-cookie-bite bg-warning"></i>
<h6 class="text-uppercase my-3 pe-4">
Circuito Gastronômico
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/gastronomico.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
<article data-step="8">
<header class="d-flex align-items-center text-warning bg-warning bg-opacity-10">
<i class="fa-solid fa-cookie-bite bg-warning"></i>
<h6 class="text-uppercase my-3 pe-4">
Circuito Histórico Cultural
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/históricoCultural.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
<article data-step="9">
<header class="d-flex align-items-center text-warning bg-warning bg-opacity-10">
<i class="fa-solid fa-cookie-bite bg-warning"></i>
<h6 class="text-uppercase my-3 pe-4">
Circuito Junino
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/junino.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
<article data-step="10">
<header class="d-flex align-items-center text-warning bg-warning bg-opacity-10">
<i class="fa-solid fa-cookie-bite bg-warning"></i>
<h6 class="text-uppercase my-3 pe-4">
Circuito Monumentos
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/monumentos.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
</section>
<section class="step three text-success">
<div class="circle">
<i class="fa-solid fa-ghost display-1 mb-3"></i>
<h4>STEP 3.</h4>
Quase lá!
</div>
<article data-step="11">
<header class="d-flex align-items-center text-success bg-success bg-opacity-10">
<i class="fa-solid fa-ghost bg-success px-3"></i>
<h6 class="text-uppercase my-3 ps-4">
Circuito Pesca Esportiva
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/pescaEsportiva.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
<article data-step="12">
<header class="d-flex align-items-center text-success bg-success bg-opacity-10">
<i class="fa-solid fa-ghost bg-success px-3"></i>
<h6 class="text-uppercase my-3 ps-4">
Circuito Destemidos Pioneiros
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/pioneiros.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
<article data-step="13">
<header class="d-flex align-items-center text-success bg-success bg-opacity-10">
<i class="fa-solid fa-ghost bg-success px-3"></i>
<h6 class="text-uppercase my-3 ps-4">
Circuito Religioso
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/religioso.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
<article data-step="14">
<header class="d-flex align-items-center text-success bg-success bg-opacity-10">
<i class="fa-solid fa-ghost bg-success px-3"></i>
<h6 class="text-uppercase my-3 ps-4">
Circuito Rural
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/rural.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
<article data-step="15">
<header class="d-flex align-items-center text-success bg-success bg-opacity-10">
<i class="fa-solid fa-ghost bg-success px-3"></i>
<h6 class="text-uppercase my-3 ps-4">
Circuito Verde
</h6>
</header>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/verde.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
<article data-step="16">
<header class="d-flex align-items-center text-success bg-success bg-opacity-10">
<i class="fa-solid fa-flag-checkered bg-success display-2 p-4"></i>
<h6 class="text-uppercase my-3 ps-4">
Circuito Verde Amarelo
</h6>
</header>
<h6 class="text-uppercase my-3 ps-4"></h6>
<div class="body" id="arte-container" style="
background-image: url(img/circuitos/verdeAmarelo.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 200px;
">
<div class="d-flex justify-content-between mt-3 controls">
<a class="btn btn-outline-danger" href="#">Ant</a>
<a class="btn btn-outline-danger" href="#">Prox</a>
</div>
</div>
</article>
</section>
</main>
</div>
</section>
<!-- Service End -->
<!-- Cards -->
<section id="rotas" class="col-md-12 col-sm-6">
<div class="content">
<a class="card-rotas" href="#!">
<div class="front" style="background-image: url(img/rotas/rotaCultural.jpg)">
<!-- <p>Lorem ipsum dolor sit amet consectetur adipisi.</p> -->
</div>
<div class="back">
<div>
<h2>ROTA CULTURAL</h2>
<p>
Que tal caminhar pela nossa história, contemplando alguns
patrimônios que sediaram importantes episódios da cidade de
Porto Velho ?
</p>
<button class="button">Saiba +</button>
</div>
</div>
</a><a class="card-rotas" href="#!">
<div class="front" style="background-image: url(img/rotas/rotaArigos.jpg)"></div>
<div class="back">
<div>
<h2>ROTAS DO ARIGÓS</h2>
<p>
Comparados aos arigós, pássaros que migram pelo brasil, esses
trabalhadores construíram suas histórias através de muito suor e
garra nos seringais da Amazônia
</p>
<button class="button">Click Here</button>
</div>
</div>
</a><a class="card-rotas" href="#!">
<div class="front" style="background-image: url(img/rotas/rotaFerroviaria.jpg)"></div>
<div class="back">
<div>
<h2>ROTA Ferroviária</h2>
<p>
Porto Velho contém a sua maior herança: A Estrada de Ferro
Madeira Mamoré. Através dessa rota você irá viajar sobre os
trilhos envolventes que marcam a força dos nossos destemidos
pioneiros
</p>
<button class="button">Saiba +</button>
</div>
</div>
</a><a class="card-rotas" href="#!">
<div class="front" style="background-image: url(img/rotas/rotaAguas.jpg)"></div>
<div class="back">
<div>
<h2>ROTA DAS ÁGUAS</h2>
<p>
Por essa rota você encontra beleza e lazer nas águas geladas dos
nossos rios
</p>
<button class="button">Saiba +</button>
</div>
</div>
</a>
</div>
</section>
<section></section>
<div id="historica" class="container-full py-5" style="background: #f1f1f1">
<div class="container">
<div class="row g-5">
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<img class="img-fluid position-absolute w-100 h-100" src="img/historia/1907.png" alt=""
style="object-fit: cover" />
</div>
</div>
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1907</h1>
<p class="mb-4">
Porto Velho foi criada por desbravadores por volta de 1907,
durante a construção da E.F. Madeira- Mamoré.
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #fff">
<div class="container">
<div class="row g-5">
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1910 a 1912</h1>
<p class="mb-4">Construção das Três Caixas D’Água</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<img class="img-fluid position-absolute w-100 h-100" src="img/historia/19101912.png" alt=""
style="object-fit: cover" />
</div>
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #f1f1f1">
<div class="container">
<div class="row g-5">
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<!-- <img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover;"> -->
</div>
</div>
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1914</h1>
<p class="mb-4">
Com a construção da EFMM a cidade passou a abrigar moradores das
mais de duas dezenas de nacionalidades de trabalhadores. Essas
instalações foram a origem da cidade de Porto Velho, criada em 02
de outubro de 1914.
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #fff">
<div class="container">
<div class="row g-5">
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1915</h1>
<p class="mb-4">
A data de 24 de janeiro de 1915 ficou marcado com a instalação do
município de Porto Velho, então pertencente ao Estado do Amazonas
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<!-- <img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover;"> -->
</div>
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #f1f1f1">
<div class="container">
<div class="row g-5">
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<!-- <img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover;"> -->
</div>
</div>
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1916</h1>
<p class="mb-4">
Primeira Eleição municipal, presidida por Major Guapindaia
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #fff">
<div class="container">
<div class="row g-5">
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1917</h1>
<p class="mb-4">
Fundação do Jornal Alto Madeira, por dr. Joaquim Augusto Tanajura,
associado com os senhores Cincinato Elias Ferreira e Francisco
Cezar Queiroz. 3 de maio de 1917 - Lançamento da Pedra Fundamental
da Construção da Catedra
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<!-- <img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover;"> -->
</div>
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #f1f1f1">
<div class="container">
<div class="row g-5">
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<!-- <img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover;"> -->
</div>
</div>
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1919</h1>
<p class="mb-4">
Expedição da Lei nº. 1.011, de 7 de setembro, sancionada por Dr.
Pedro de Alcântara Bacellar, Governador do Estado do Amazonas,
elevando o povoado de Porto Velho à categoria de Cidade.
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #fff">
<div class="container">
<div class="row g-5">
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1926</h1>
<p class="mb-4">
Construção do primeiro Templo Católico em Porto Velho, a Capela de
São Francisco, erguida por iniciativa da sra. Maria Alves de
Andrade, com recursos financeiros próprios e donativos da
comunidade.
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<!-- <img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover;"> -->
</div>
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #f1f1f1">
<div class="container">
<div class="row g-5">
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<!-- <img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover;"> -->
</div>
</div>
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1930</h1>
<p class="mb-4">
Porto Velho se torna de fato “Brasileiro” com a chegada de Aluízio
Pinheiro Ferreira, na década de 1930, que se tornou o primeiro
administrador da Estrada de Ferro Madeira-Mamoré, se tornando um
grande integrador da cidade.
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #fff">
<div class="container">
<div class="row g-5">
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1934</h1>
<p class="mb-4">
Inicio de construção da rodovia Amazonas/Mato Grosso, pelo tenente
Aluízio Ferreira.
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<!-- <img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover;"> -->
</div>
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #f1f1f1">
<div class="container">
<div class="row g-5">
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover" />
</div>
</div>
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1936</h1>
<p class="mb-4">
Em 3 de maio inauguração da linha aérea Rio de Janeiro/Porto
Velho, pela empresa alemã Condor, subsidiária de Lufthansa.
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #fff">
<div class="container">
<div class="row g-5">
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1940</h1>
<p class="mb-4">
Porto Velho começa a dar seus primeiros saltos populacionais
durante a década de 1940, quando aconteceu o segundo ciclo da
borracha, atraindo para a região, os nordestinos, por exemplo, e
assim a Estrada de Ferro Madeira-Mamoré – EFMM, passa a ganhar
vigor.
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<!-- <img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover;"> -->
</div>
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #f1f1f1">
<div class="container">
<div class="row g-5">
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<!-- <img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover;"> -->
</div>
</div>
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1940</h1>
<p class="mb-4">
Inauguração da usina de geração de energia elétrica, o prédio dos
Correios e telégrafos e conjunto residencial Caiari.
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #fff">
<div class="container">
<div class="row g-5">
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->
<h1 class="mb-4">1942</h1>
<p class="mb-4">
Foi instalada a Capitania dos Portos, criada pelo Decreto nº.
6.369, em 11 de dezembro de 1941. Superintendente, o Tenente da
Marinha, Emiliano de Melo Sampaio.
</p>
<!-- <a class="btn btn-primary py-3 px-5 mt-2" href="">Read More</a> -->
</div>
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<!-- <img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover;"> -->
</div>
</div>
</div>
</div>
</div>
<div class="container-full py-5" style="background: #f1f1f1">
<div class="container">
<div class="row g-5">
<div class="col-lg-4 wow fadeInUp" data-wow-delay="0.1s" style="width: 350px; height: 200px">
<div class="position-relative h-100">
<!-- <img class="img-fluid position-absolute w-100 h-100" src="img/about.jpg" alt=""
style="object-fit: cover;"> -->
</div>
</div>
<div class="col-lg-8 wow fadeInUp" data-wow-delay="0.3s">
<!-- <h6 class="section-title bg-white text-start text-primary pe-3">About Us</h6> -->