*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section_con {
    width: 100%;
    float: left;
    background: white;
    margin-top: 0px;
}

.intro {
    background: #E86361;
    padding: 100px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
}

/* ================================
   TIMELINE BASE DESIGN
================================ */
.timeline ul {
    background: #fff;
    padding: 50px 0;
}

.timeline ul li {
    list-style-type: none;
    position: relative;
    width: 6px;
    margin: 0 auto;
    padding-top: 50px;
    background: #513f95;
}

.timeline ul li::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 68px;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: inherit;
}

.timeline ul li div {
    position: relative;
    bottom: 0;
    width: 450px;
    padding: 20px;
    background-color: #f9f9f9;
    color: #000;
    text-align: justify;
    box-shadow: 1px 1px 1px 1px lightgray;
    z-index: 111;
}

.timeline ul li div::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline ul li:nth-child(odd) div {
    left: 35px;
}

.timeline ul li:nth-child(odd) div::before {
    left: -15px;
    border-width: 12px 16px 12px 0;
    border-color: transparent #8f86b3 transparent transparent;
}

.timeline ul li:nth-child(even) div {
    left: -480px;
}

.timeline ul li:nth-child(even) div::before {
    right: -15px;
    border-width: 12px 0 12px 16px;
    border-color: transparent transparent transparent #8f86b3;
}

time {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    background-color: #513f95;
    padding: 10px;
    color: #fff;
    text-align: left;
}

/* ================================
   EFFECTS
================================ */
.timeline ul li.in-view::after {
    background: #8f86b3;
}

.timeline ul li div {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
    transform: translate3d(200px, 0, 0);
}

.timeline ul li:nth-child(even) div {
    transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
    transform: none;
    visibility: visible;
    opacity: 1;
}
.milestone-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("../images/bullet.png") no-repeat center;
    background-size: contain;
    vertical-align: middle;
    margin-right: 8px;
}
.timeline ul li *,
.timeline ul li time {
    writing-mode: initial !important;
    text-orientation: initial !important;
    transform: none !important;
    rotate: 0deg !important;
}

/* ================================
   RESPONSIVE FIXES
================================ */


@media (max-width: 1200px) {
    .timeline ul li div {
        width: 350px !important;
    }
    .timeline ul li:nth-child(even) div {
        left: -380px !important;
    }
}

/* Below 900px */
@media (max-width: 900px) {
    body { overflow-x: hidden; }

    .timeline ul li div {
        width: 300px !important;
        left: 40px !important;
    }

    .timeline ul li:nth-child(even) div {
        left: 40px !important;
    }

    .timeline ul li div::before {
        left: -15px !important;
        border-width: 10px 14px 10px 0 !important;
        border-color: transparent #8f86b3 transparent transparent !important;
    }
}

/* BELOW 600px – MAIN MOBILE FIX */
@media (max-width: 600px) {
    body { overflow-x: hidden; }

    .timeline ul li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }

    .timeline ul li div {
        width: 92% !important;
        max-width: 92% !important;
        margin: 20px auto !important;
        float: none !important;
        left: 0 !important;
        padding: 20px !important;
    }

    .timeline ul li:nth-child(even) div {
        left: 0 !important;
    }

    .timeline ul li div::before {
        left: -15px !important;
        border-width: 10px 14px 10px 0 !important;
        border-color: transparent #8f86b3 transparent transparent !important;
    }

    .timeline ul li div img {
        width: 100% !important;
        height: auto !important;
        margin: 10px 0;
    }
}
