  

/* start timeline */

    .timeline {
        h3 {
            font-family: 'Raleway', 'sans-serif';
            font-weight: bold;
            font-size: 2rem;
            margin-top: 10px;
        }
        padding: 50px 0;
        position: relative;
        &::before {
            content: '';
            background: #103CCC;
            width: 5px;
            height: 98.8%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        .overlay {
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0px;
            left: 0px;
            background: linear-gradient(0deg, #000 0%, transparent);
            opacity: .6;
        }
    }
    .timeline-item {
        .timeline-card {
            h3 {
                margin-left: 20px;
            }
            h4 {
                margin: 0 20px 10px 20px;
                margin-bottom: 10px;
            }
        }
        width: 100%;
        margin-bottom: -60px;
        &:nth-child(even) {
            .timeline-content {
                float: right;
                .date {
                    right: auto;
                    left: 0;
                }
                &::after {
                    content: '';
                    position: absolute;
                    border-style: solid;
                    width: 0;
                    height: 0;
                    top: 30px;
                    left: -15px;
                    border-width: 10px 15px 10px 0;
                    border-color: transparent #f5f5f5 transparent transparent;
                }
            }
        }
        &::after {
            content: '';
            display: block;
            clear: both;
        }
    }
    .timeline-content {
        position: relative;
        width: 45%;
        padding: 10px 30px 20px;
        border-radius: 4px;
        background: #f5f5f5;
        &::after {
            content: '';
            position: absolute;
            border-style: solid;
            width: 0;
            height: 0;
            top: 30px;
            right: -15px;
            border-width: 10px 0 10px 15px;
            border-color: transparent transparent transparent #f5f5f5;
       }
       ul {
            padding-left: 10px;
        }
   }
    .timeline-img {
        width: 30px;
        height: 30px;
        background: #001F61;
        border-radius: 50%;
        position: absolute;
        left: 50%;
        margin-top: 25px;
        margin-left: -15px;
    }
    .timeline-card {
        padding: 0 !important;
        p {
            padding: 0 20px 20px;
            margin-bottom: 0;
        }
        .image-container {
            position: relative;
        }
        img {
            width: 100%;
            height: auto;
        }
        ul {
            padding: 0px 30px 10px 40px;
        }
    }
    .timeline-img-header {
        position: relative;
        margin-bottom: 20px;
        h3 {
            color: #fff;
            position: absolute;
            bottom: 0;
            text-shadow: 2px 2px 8px #00000080;
            margin-left: 0px;
        }
    }
}
@media screen and (max-width: 767px) {
    .timeline::before {
        left: 50px;
    }
    .timeline-item {
        margin-bottom: 70px;
    }
    .timeline .timeline-img {
        left: 50px;
    }
    .timeline .timeline-content {
        max-width: 100%;
        width: auto;
        margin-left: 70px;
    }
    .timeline .timeline-item:nth-child(even) .timeline-content {
        float: none;
    }
    .timeline .timeline-item:nth-child(odd) .timeline-content::after {
        content: '';
        position: absolute;
        border-style: solid;
        width: 0;
        height: 0;
        top: 30px;
        left: -15px;
        border-width: 10px 15px 10px 0;
        border-color: transparent #f5f5f5 transparent transparent;
    }
}
@media screen and (max-width: 767px) {
        .timeline {
            &::before {
                left: 50px;
            }
            .timeline-img {
                left: 50px;
            }
            .timeline-content {
                max-width: 100%;
                width: auto;
                margin-left: 70px;
            }
            .timeline-item {
                &:nth-child(even) {
                    .timeline-content {
                        float: none;
                    }
                }
                &:nth-child(odd) {
                    .timeline-content {
                        &::after {
                            content: '';
                            position: absolute;
                            border-style: solid;
                            width: 0;
                            height: 0;
                            top: 30px;
                            left: -15px;
                            border-width: 10px 15px 10px 0;
                            border-color: transparent #f5f5f5 transparent transparent;
                        }
                    }
                }
            }
        }
        .timeline-item {
            margin-bottom: 70px;
        }

/* end timeline */










