
.sobrenos_slider p,
.sobrenos_slider h1,
.sobrenos_slider h2,
.sobrenos_slider h3,
.sobrenos_slider h4,
.sobrenos_slider h5,
.sobrenos_slider .p,
.sobrenos_slider .h1,
.sobrenos_slider .h2,
.sobrenos_slider .h3,
.sobrenos_slider .h4,
.sobrenos_slider .h5
{
    color: var(--darkgrey) !important;
}

.pdf_download_link a:hover{
    color: var(--colorfirst) !important;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(240, 90, 87, 0.7);
  
}

.timeline_container_overlay:hover .overlay {
  opacity: 1;
}

.text {
  color: white;  
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}


.text h3,
.text h4,
.text p{
    color: #FFF;
}
    
.sobrenos_destaques p,
.sobrenos_destaques h1,
.sobrenos_destaques h2,
.sobrenos_destaques h3,
.sobrenos_destaques h4
{
    color: #FFF;
}



/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

/* Container around content */
.timeline_container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

/* The circles on the timeline */
.timeline_container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -13px;
    background-color: white;
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* Place the timeline_container to the left */
.left {
    left: 0;
}

/* Place the timeline_container to the right */
.right {
    left: 50%;
}

/* Add arrows to the left timeline_container (pointing right) */
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

/* Add arrows to the right timeline_container (pointing left) */
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

/* Fix the circle for timeline_containers on the right side */
.right::after {
    left: -12px;
}

/* The actual content */
.content {
    padding: 20px 30px;
    background-color: transparent;
    position: relative;
    border-radius: 6px;
}

.content p{
    color: #FFF;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }
  
  /* Full-width timeline_containers */
  .timeline_container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .timeline_container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }
  
  /* Make all right timeline_containers behave like the left ones */
  .right {
    left: 0%;
  }
}

