/*!
    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;
}

.vtimeline:before {
    content: '';
    position: absolute;
     height: 84%;
    width: 4px;
    background: #0275d8;
    top: 80px;
    bottom: 205px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.vtimeline-point {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.vtimeline-icon {
    position: absolute;
    top: 30px;
    height: 30px;
    width: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 50%;
    background: #0275d8;
}
.vtimeline-icon:before{
    position: absolute;
    content: "\f00c";
    font-family: 'FontAwesome';
    width: 30px;
    height: 30px;
    color: #fff;
    text-align: center;
    line-height: 30px;
}

.vtimeline-block {
    width: 45%;
    margin: 0;
    transition: 1s ease-in all;
}

.vtimeline-block:after {
    content: '';
    position: absolute;
    top: 30px;
    left: 45%;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #55575d;
    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-point.last .vtimeline-right:before,
.vtimeline-point:last-child .vtimeline-right:before{
    width: 100%;
    background-color: #ffffff;
    top: 60px;
    bottom: 0;
    left: 0;
    content: '';
    height: 100%;
    position: absolute;
}
.vtimeline-point.last .vtimeline-block:not(.vtimeline-right):before,
.vtimeline-point:last-child .vtimeline-block:not(.vtimeline-right):before{
    width: 100%;
    background-color: #ffffff;
    top: 60px;
    bottom: 0;
    right: 0;
    content: '';
    height: 100%;
    position: absolute;
}
.vtimeline-right:after {
    left: auto;
    right: 45%;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: none;
    border-right: 10px solid #55575d;
}

.vtimeline-date {
    position: absolute;
    left: 55%;
    top: 20px;
    font-size: 24px;
    font-weight: 700;
}

.vtimeline-content {
    background: #55575d;
    transition: 1s ease all;
    color: #fff;
    padding: 30px;
    border-radius: 25px;
}

.vtimeline-content > * {
    color: #fff;
}

.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-content {
        padding: 20px;
    }

    .vtimeline:before {
        left: 30px;
        right: auto;
        margin: 0;
        top: 95px;
        height: auto;
        bottom: 160px;
    }

    .vtimeline-icon {
        left: -13px;
        right: auto;
        margin: 0;
        top: 55px;
    }

    .vtimeline-block {
        width: 85%;
        margin-left: 15%;
    }
    .vtimeline-point.last .vtimeline-right:before,
    .vtimeline-point.last .vtimeline-block:not(.vtimeline-right):before,
    .vtimeline-point:last-child .vtimeline-right:before,
    .vtimeline-point:last-child .vtimeline-block:not(.vtimeline-right):before{
        top:85px;
    }
    .vtimeline-block:after {
        left: auto;
        right: 85%;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: none;
        border-right: 10px solid #55575d;
        top: 60px;
    }

    .vtimeline-date {
        position: relative;
        display: block;
        top: 0;
        left: 0;
        right: auto;
    }

    .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%);
    }
}
@media (max-width: 480px) {
    .vtimeline-point.last .vtimeline-right:before,
    .vtimeline-point.last .vtimeline-block:not(.vtimeline-right):before,
    .vtimeline-point:last-child .vtimeline-right:before,
    .vtimeline-point:last-child .vtimeline-block:not(.vtimeline-right):before{
        top:85px;
        left: -20px;
    }
    .vtimeline:before{
        bottom:245px;
        height: auto;
    }
}