@charset "utf-8"
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */

.cd-container {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
}

.cd-container::after {
    /* clearfix */
    content: '';
    display: table;
    clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */

#cd-timeline {
    position: relative;
    padding: 0;
}

#cd-timeline::before {
    /* this is the vertical line */
    content: '';
    position: absolute;
    top: 12px;
    left: 10px;
    height: 94%;
    width: 1px;
    background: #2674bb;
}

.cd-timeline-block {
    position: relative;
    margin-bottom: 65px;
}

.cd-timeline-block:after {
    content: "";
    display: table;
    clear: both;
}

.cd-timeline-block:first-child {
    margin-top: 0;
}

.cd-timeline-block:last-child {
    margin-bottom: 0;
}

.cd-timeline-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
}

.cd-timeline-img img {
    display: block;
    width: 20px;
    height: 20px;
    position: relative;
    left: 40%;
    top: 60%;
    margin-left: -12px;
    margin-top: -12px;
}

.cd-timeline-img.cd-location {
    background: #f0ca45;
}


.cd-timeline-content {
    position: relative;
    margin-left: 30px;
}

.cd-timeline-content:after {
    content: "";
    display: table;
    clear: both;
}

.cd-timeline-content h2 {
    color: #303e49;
}

.cd-timeline-content p {
    margin: 0;
    text-align: justify;
}

.cd-timeline-content .cd-date {
    font-weight: 700;
    font-size: 24px;
    color: #0061B0;
    margin-bottom: 5px;
}