/* ===================================
    Background Color
====================================== */

.bg-blue{ background: #1e4b82;}
.bg-deep-blue {background: #2e5ba5;}
.bg-green{background: #005034}
.bg-deep-green{background: #117D45}
.bg-light-green{background: #E6EBE9}

/* ===================================
    Artigos
====================================== */



html {scroll-behavior: smooth;}

p {font-weight:400!important;} 


.btn {
  white-space: normal!important;
  }

// Contextual colors

.text-green { color: #005034 !important; }


/* timeline */
.timeline {
  border-left: 4px solid #fff;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  margin: 0 auto;
  position: relative;
  padding: 50px;
  list-style: none;
  text-align: left;
}

.timeline .event {
  border-bottom: 1px dashed #fff;
  padding-bottom: 25px;
  margin-bottom: 50px;
  position: relative;
}

.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline .event:before {
  left: -175.5px;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  content: attr(data-date);
  text-align: right;
}

.timeline .event:after {
  box-shadow: 0 0 0 4px #fff;
  left: -57.85px;
  background: #fff;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
  top: 5px;
}


@media only screen and (max-width : 991px) {
	
    .timeline .event:before {
        left: 0;
        top: -30px;
        color: #fff;
        font-weight: 900;
        font-size: 17px;
        content: attr(data-date);
        text-align: right;
    }

}