.timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 700px;
  position: relative; }
  .timeline__content-title {
    font-weight: normal;
    font-size: 66px;
    margin: -10px 0 0 0;
    -webkit-transition: .4s;
    transition: .4s;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    color: #fff; }
  .timeline__content-desc {
    margin: 0;
    font-size: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Open Sans", sans-serif;
    font-weight: normal;
    line-height: 1.5em; }
  .timeline:before {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    content: "";
    background: rgba(255, 255, 255, 0.9); }
    @media only screen and (max-width: 767px) {
      .timeline:before {
        left: 40px; } }
  .timeline-item {
    padding: 40px 0;
    opacity: .3;
    -webkit-filter: blur(2px);
    filter: blur(2px);
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(50% - 40px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px); }
    .timeline-item:before {
      content: attr(data-text);
      text-transform: uppercase;
      width: 100%;
      position: absolute;
      color: rgba(255, 255, 255, 0.9);
      font-size: 13px;
      font-family: "Roboto Condensed", sans-serif;
      font-weight: 700;
      border-left: 2px solid #D71D2F;
      top: 70%;
      margin-top: -5px;
      padding-left: 15px;
      opacity: 0;
      right: calc(-100% - 39px); }
    .timeline-item:nth-child(even) {
      -ms-flex-item-align: end;
      align-self: flex-end; }
      .timeline-item:nth-child(even):before {
        right: auto;
        text-align: right;
        left: calc(-100% - 39px);
        padding-left: 0;
        border-left: none;
        border-right: 2px solid #D71D2F;
        padding-right: 15px; }
    .timeline-item--active {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
      -webkit-filter: blur(0px);
      filter: blur(0px); }
      .timeline-item--active:before {
        top: 50%;
        -webkit-transition: .3s all .2s;
        transition: .3s all .2s;
        opacity: 1; }
      .timeline-item--active .timeline__content-title {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        margin: -50px 0 20px 0; }
    @media only screen and (max-width: 767px) {
      .timeline-item {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
        width: 100%;
        padding: 0 30px 150px 80px; }
        .timeline-item:before {
          left: 10px !important;
          padding: 0 !important;
          top: 50px;
          text-align: center !important;
          width: 60px;
          border: none !important; }
        .timeline-item:last-child {
          padding-bottom: 40px; } }
  .timeline__img {
    max-width: 100%;
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4); }
  .timeline-container {
    width: 100%;
    position: relative;
    padding: 80px 0;
    -webkit-transition: .3s ease 0s;
    transition: .3s ease 0s;
    background-attachment: fixed;
    background-size: cover; }
    .timeline-container:before {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(50, 50, 50, 0.8);
      content: ""; }
  .timeline-header {
    width: 80%;
    text-align: center;
    margin: 0 auto 30px;
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .timeline-header__title {
      color: #fff;
      font-size: 46px;
      font-family: "Open Sans", sans-serif;
      font-weight: normal;
      margin: 0; }
    .timeline-header__subtitle {
      color: rgba(255, 255, 255, 0.9);
      font-family: "Roboto Condensed", sans-serif;
      font-weight: 700;
      font-size: 16px;
      margin: 10px 0 0 0;
      font-weight: normal; }

.timeline__content {
  width: 100%; }

.timeline-header {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700; }
  .timeline-header a {
    position: relative;
    color: #fff;
    opacity: 0.5;
    padding-bottom: 50px;
    margin-left: 15px;
    margin-right: 15px; }
  .timeline-header a:hover {
    opacity: 1; }
  .timeline-header .active {
    opacity: 1; }
    .timeline-header .active:after {
      content: "";
      display: block;
      height: 2px;
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      background: red; }
