/* -------------------------------- 
Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}

#cd-timeline {
  position: relative;
  padding: 60px 0 30px 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
#cd-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  height: 100%;
  width: 2px;
  background: #c9c9c9;
}
#cd-timeline::after{
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius:7px;
  background: #c9c9c9;
  top:0;
  left: 4px;
}
@media only screen and (min-width: 768px) {
  #cd-timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }

  #cd-timeline::before {
    left: 50%;
    margin-left: -1px;
  }
  #cd-timeline::after{
    left: 50%;
    margin-left: -7px;
  }
}

.cd-timeline-block {
  position: relative;
  margin-left:35px;
  margin-bottom: 20px;
}
.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}

.cd-timeline-img {
  position: absolute;
  /*top: 0;*/
  bottom:10px;
  left: -30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #999;
}
@media only screen and (min-width: 768px) {
    .cd-timeline-block{
    margin: 0;
    margin-top:-30px;
  }
  .cd-timeline-img {
    width: 12px;
    height: 12px;
    left: 50%;
    margin-left: -6px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .cssanimations .cd-timeline-img.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
}

.cd-timeline-content {
  position: relative;
}

.cd-timeline-content .txt {
  padding:10px 20px;
  border:1px solid #c9c9c9;
  /*min-height: 90px;*/
}
.cd-timeline-content .txt p span{color:#009944;}
.cd-timeline-content p {
  /*margin: 1em 0;*/
  line-height: 24px;
}
.cd-timeline-content .cd-read-more {
  float: right;
  padding: .8em 1em;
  background: #acb7c0;
  color: white;
  border-radius: 0.25em;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
  background-color: #bac4cb;  
}
a.cd-read-more:hover{text-decoration:none; background-color: #424242;  }
.cd-timeline-content .cd-date {
  /*float: left;*/
  padding:0 60px;
  text-align: right;
  background:#004a00;
  color:#fbfcfb;
  line-height: 36px;
  font-size: 18px;
  width: 100%;
}
.cd-timeline-content .cd-date::before {
  content: '';
  position: absolute;
  /*top: 16px;*/
  bottom:10px;
  right: 100%;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-right: 8px solid #004a00;
}
.cd-timeline-content .cd-date:after {
  content: "";
  display: table;
  clear: both;
  background:#004a00;
}

@media only screen and (min-width: 768px) {
  .cd-timeline-content h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .cd-timeline-content p {
    font-size: 14px;
    /*font-size: 1rem;*/
  }
}
@media only screen and (min-width: 768px) {
  .cd-timeline-content {
    /*margin-left: 0;
    padding: 1.6em;*/
    width: 45%;
  }
  .cd-timeline-content .cd-date::before {
    /*top: 24px;*/
    bottom:10px;
    left: 100%;
    border-color: transparent;
    border-left-color: #004a00;
  }
  .cd-timeline-content .cd-read-more {
    float: left;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date::before {
    /*top: 24px;*/
    left: auto;
    bottom:10px;
    right: 100%;
    border-color: transparent;
    border-right-color: #004a00;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
    text-align: left;
  }
  .cssanimations .cd-timeline-content.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}

@media only screen and (min-width: 768px) {
  /* inverse bounce effect on even content blocks */
  .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}
