/* ESTRUTURA BASE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
}
body {
  font: normal 16px/1.5 "Helvetica Neue", sans-serif;
  background: #eee;
  color: #4d4d4d;
}
h1 {
  margin-top: 12px;
  font-size: 52px;
  font-family: serif;
  font-weight: bold;
  color: rgba(153, 153, 153, 1)
}

h5 {
    font: italic 12px/1.6 "Helvetica Neue", sans-serif;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 44px;
}
.resumo {
  font-size: 15px;
  line-height: 30px;
  margin-left: 25px;
  margin-right: 25px;
}
.viagem {
  font-size: 15px;
  font-weight: 500;
  color: #385145;
  margin-bottom: 33px;
}
time {
    display: block;
    text-transform: uppercase;
    font-size: 27px;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 35px;
}
.description {
    font-weight: 400;
    margin-bottom: 21px;
}
a {
    color: rgba(65, 98, 83, 1);
    font-size: 16px;
    text-decoration: none;
    -moz-transition: all 350ms;
    -o-transition: all 350ms;
    -webkit-transition: all 350ms;
    transition: all 350ms;
    line-height: 28px;
}
a:hover {
  color: rgba(108, 134, 121, 0.5)
}

/* SECTION (INTRO + FOOTER)
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.intro {
  background-color: #fff;
  /*background-image: url("../img/01fundofct_timeline.png");*/
  background-repeat: no-repeat;
  padding-top: 19px;
  padding-bottom: 36px;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer {
  background-color: #eee;
  padding: 30px 0;
}
.rodape {
  float: left;
  margin-left: 36px;
  margin-bottom: 26px;
  text-align: left;
  font-size: 13px;
  color: #999;
}
.logosrodape {
  margin-right: 30px;
  text-align: right;
}
img{
  padding-left: 0;
}



/* CSS BASE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.group:after {
  content: "";
  display: table;
  clear: both;
}
.fullwidth {
  width: 100%;
  padding-top: 4rem;
  background-color: #e6e6e6;
  background-image: url(../img/00fundofct_timeline.png);
  background-repeat: no-repeat;
}
.timeline {
  width: 100%;
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  background-image: -webkit-linear-gradient(#999999, #999999);
  background-image: linear-gradient(#999999, #999999);
  background-size: 2px 100%;
  background-position: 50% 1rem;
  background-repeat: no-repeat;
}
.timeline .item:before {
  content: '';
  position: absolute;
  top: 0.3rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid #999999;
  border-radius: 50%;
  background-color: #e6e6e6;
}
.timeline .item:hover:before {
  background-color: #999999;
}
.timeline .item:first-child {
  margin-top: 0;
}
.timeline .item:nth-child(odd) {
  float: right;
  padding-left: 90px;
  line-height: 27px;
}
.timeline .item:nth-child(odd):before {
  left: -0.5rem;
}
.timeline .item:nth-child(even) {
  padding-right: 80px;
}

/* EFEITOS E GRELHA
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline div::after {
  transition: background .5s ease-in-out;
}
.timeline div.in-view::after {
  position: absolute;
  top: -5px;
}
.timeline div.item {
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-in-out;
}
.timeline div.in-view {
  transform: none;
  visibility: visible;
  opacity: 1;
}
.timeline .item {
  position: relative;
  display: block;
  width: 50%;
  float: left;
  clear: both;
  margin-top: -1rem;
}

@media (max-width: 40rem) {
  .timeline {
    background-position: 31px 5px;
  }
}
@media (max-width: 40rem) {
  .timeline .item {
    width: 100%;
    float: none;
    margin-top: 0;
    margin-bottom: 3rem;
  }
}
@media (max-width: 40rem) {
  .timeline .item:nth-child(even) {
    padding-right: 0;
    padding-left: 90px;
  }
  .timeline .item:nth-child(odd) {
    padding-right: 0;
    padding-left: 90px;
  }
}
.timeline .item:nth-child(even):before {
  right: -0.5rem;
}
@media (max-width: 40rem) {
  .timeline .item:nth-child(even):before {
    left: -0.5rem;
  }
}
.timeline .item h2 {
  display: block;
  margin-bottom: 1rem;
}
.timeline .item:nth-child(even) h2 {
  text-align: right;
}
@media (max-width: 40rem) {
  .timeline .item:nth-child(even) h2 {
    text-align: left;
  }
}