/*!
    Title: Vertical-Timeline
    Version: 2.0.0
    Last Change: 04/30/17
    Author: Ryan Fitzgerald
    Repo: https://github.com/RyanFitzgerald/vertical-timeline
    Issues: https://github.com/RyanFitzgerald/vertical-timeline/issues
	LICENSE: MIT
*/
.vtimeline {
    position: relative;
    padding: 30px;
    overflow: hidden;
    margin-bottom: 60px;
}
  .vtimeline:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 7px;
    background: #134698;
    top: 0;
    bottom: 0;
    left: 0;
    border-radius: 30px;
    right: 0;
    margin: 0 auto;
}

    .vtimeline-point {
        position: relative;
        width: 100%;
    }

    .vtimeline-icon {
        position: absolute;
        top: 80px;
        height: 15px;
        width: 15px;
        left: 0;
        right: 0;
        margin: 0 auto;
        border-radius: 50%;
        background: #ffffff;
        border: 4px solid #585858;
    }

  .vtimeline-block {
      width: 45%;
      margin: 0;
      transition: 0.5s ease all;
      height: 100%;
      min-height: 200px;
      background:#f5f5f5;
  }

  .timecolor{
    background: linear-gradient(to left, #ff0000 50%, #0000ff 50%);
  }


.vtimeline-block:after {
      content: '';
      position: absolute;
      top: 83px;
      left: 46%;
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 10px solid #134698;
      border-right: none;
  }

.vtimeline-right {
  margin-left: 55%; }
  .vtimeline-right.vt-animate-slide .vtimeline-content {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  .vtimeline-right .vtimeline-date {
    left: auto;
    right: 55%; }
    .vtimeline-right:after {
        left: auto;
        right: 46%;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: none;
        border-right: 10px solid #134698;
    }

.vtimeline-date {
  position: absolute;
  left: 55%;
  top: 15px; }

  .vtimeline-content {
      transition: 0.5s ease all;
  }

.vt-animate-fade {
  opacity: 0; }

.vt-animate-slide {
  opacity: 0; }
  .vt-animate-slide .vtimeline-content {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }

.vt-noarrows:after {
  content: none; }

@media only screen and (max-width: 992px) {
  .vtimeline:before {
    left: 30px;
    right: auto;
    margin: 0; }
  .vtimeline-icon {
    left: -10px;
    right: auto;
    margin: 0; }
  .vtimeline-block {
    width: 85%;
    margin-top: 20px;
    margin-left: 15%; }
    .vtimeline-block:after {
      left: auto;
      right: 85%;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: none;
      border-right: 10px solid #134698; }
  .vtimeline-date {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    right: auto;
    background: #eee; }
  .vtimeline-right .vtimeline-date {
    right: auto; }
  .vtimeline.basic .vtimeline-date {
    padding: 10px 10px 0 10px; }
  .vt-animate-slide .vtimeline-content {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); } }
