.timeline {
    position: relative;
    padding-left: 4rem;
    margin: 0 0 0 30px;
    color: white;

    p {
        font-weight: 300;
        line-height: 1.5;
        font-size: 14px;
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }

    &:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #523938;
    }

    .timeline-container {
        position: relative;
        margin-bottom: 1.5rem;

        .timeline-icon {
            position: absolute;
            left: -87px;
            top: 0px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            text-align: center;
            font-size: 1.4rem;
            background: #C4241C;

            i {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
            }

            img {
                width: 100%;
                height: 100%;
                border-radius: 50%;
            }
        }

        .timeline-body {
            background: #251213;
            border-radius: 10px;
            padding: 10px 20px;
            box-shadow: 1px 3px 9px rgba(0, 0, 0, .1);

            &:before {
                content: '';
                background: inherit;
                width: 20px;
                height: 20px;
                display: block;
                position: absolute;
                left: -10px;
                top: 15px;
                transform: rotate(45deg);
                border-radius: 0 0 0 2px;
            }

            .timeline-title {
                margin-bottom: 5px;

                .badge {
                    background: #C4241C;
                    padding: 4px 8px;
                    border-radius: 3px;
                    font-size: 12px;
                    font-weight: bold;
                }
            }

            .timeline-subtitle {
                font-weight: 300;
                font-size: 12px;
            }
        }

    }
}