.cd-timeline {
  overflow: hidden;
  margin: 2em auto;
}
.cd-timeline__container {
  position: relative;
  width: 90%;
  max-width: 65%;
  margin: 3px auto;
}
.cd-timeline__container::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 2px;
  background: #333;
}
.cd-timeline__block {
  position: relative;
  margin: 0 0; /* 2em 0 */
}
.cd-timeline__block:hover .cd-timeline__img.cd-timeline__img--picture{
  background: #e62a1b;
  box-shadow: 0 0 0 2px transparent;
}
.cd-timeline__block:hover .cd-timeline__content p{
  color:#e62a1b;
}
.cd-timeline__block:after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}
.cd-timeline__block:first-child {
  margin-top: 0;
}
.cd-timeline__block:last-child {
  margin-bottom: 0;
}
.cd-timeline__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 2px #333;
          box-shadow: 0 0 0 2px #333;
}

.cd-timeline__img img {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
}

.cd-timeline__img.cd-timeline__img--picture {
  background: #fff;
}


.cd-timeline__content {
  position: relative;
  margin-left: 60px;
  background: white;
  border-radius: 0.25em;
  padding: 0 0 10px; /* 1em */
  /*-webkit-box-shadow: 0 3px 0 #d7e4ed;
          box-shadow: 0 3px 0 #d7e4ed;*/
}

.cd-timeline__content:after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

.cd-timeline__content::before {
  /* triangle next to content block */
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid white;
}

.cd-timeline__content p{
  margin: 0 0; /* 1em 0 */
  line-height: 1.6;
}
@media only screen and (min-width: 1170px) {
  .cd-timeline__content {
    margin-left: 0;
    padding: 0 0 10px; /* 1.6em */
    width: 45%;
    /* Force Hardware Acceleration */
  }
  .cd-timeline__content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: white;
  }
  .cd-timeline__block:nth-child(odd) .cd-timeline__content {
    float: right;
    text-align: left;
    padding:0 0 0 45px;
  }
  .cd-timeline__block:nth-child(even) .cd-timeline__content {
    text-align: right;
    padding:0 45px 0 0;
  }
  .cd-timeline__block:nth-child(odd) .cd-timeline__content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: white;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-timeline__img {
    width: 23px;
    height: 23px;
    left: 50%;
    margin-left: -11px;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@media only screen and (min-width: 1170px) {
  .cd-timeline__block {
    margin: 0 0; /* 4em 0 */
  }
}
@media only screen and (min-width: 1170px) {
  .cd-timeline {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  .cd-timeline__container::before {
    left: 50%;
    margin-left: -1px;
  }
}
@media screen and (min-width: 320px) and (max-width: 1023px){
  .cd-timeline__img{width: 20px;height: 20px;margin-left: 9px;}
  .cd-timeline__content{text-align: left; padding-bottom:20px;}
}
@media screen and (min-width: 1024px) and (max-width: 1169px){
  .cd-timeline__img{width: 25px;height: 25px;margin-left: 6px;}
  .cd-timeline__content{text-align: left; padding-bottom:20px;}
}