.cd-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10%;
    border-radius: 2px;
}

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

#cd-timeline {
    position: relative;
    padding: 2em 0;
    margin-top: 2em;
    margin-bottom: 2em;
}

#cd-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    height: 100%;
    width: 4px;
    background: #f1f1f1;
}

.cd-timeline-block {
    position: relative;
    margin: 2em 0;
}

.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;
    width: 60px;
    height: 60px;
	top: 11px;
	border: 4px solid #f1f1f1;
    border-radius: 50%;
	background: #2c2075;
	color: white;
}

.cd-timeline-img i {
	position: absolute;
	left: 10px;
	top: 14px;
	font-size: 25px;
}

.cd-thumbnail {
	display: block;
	margin: 0 auto 10px;
	max-width: 335px;
	width: 100%;
	height: auto;
}

.cd-timeline-content {
    position: relative;
    margin-left: 80px;
    margin-right: 20px;
    background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 2px;
    padding: 1em;
}

.cd-timeline-content .timeline-content-info {
	display: flex;
    text-align: center;
    gap: 10px;
	max-width: max-content;
    background: #f1f1f1;
    padding: 5px 10px;
    color: black;
    font-size: 12px;
	border: 2px solid var(--border-color);
    border-radius: 2px;
	white-space: normal;
	word-break: break-word;
}

.cd-timeline-content .timeline-content-info i {
    margin-right: 5px;
}

.cd-timeline-content::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -22px;
    right: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 22px 20px 0;
    border-color: transparent var(--border-color) transparent transparent;
    z-index: 1;
}

.cd-timeline-content::after {
    content: "";
    position: absolute;
    top: 21px;
    left: -20px;
    right: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 20px 18px 0;
    border-color: transparent #fff transparent transparent;
    z-index: 2;
}

.cd-timeline-content h2 {
    margin-top:0;
    margin-bottom: 5px;
	font-size: 20px;
    font-size: 1.25rem;
}

.cd-timeline-content p {
	color: rgba(0,0,0,.7);
    font-size: 16px;
    font-size: 1rem;
    margin: 1em 0;
    line-height: 1.6;
}

@media only screen and (min-width: 1170px) {
	#cd-timeline {
        margin-top: 3em;
        margin-bottom: 3em;
    }
	
    #cd-timeline::before {
        left: 50%;
        margin-left: -2px;
    }
	
	.cd-timeline-content {
        color: white;
        padding: 1.6em;
        width: 36%;
        margin: 0 5%
    }
	
	.cd-timeline-block {
        margin: 4em 0;
    }
	
    .cd-timeline-block:first-child {
        margin-top: 0;
    }
	
    .cd-timeline-block:last-child {
        margin-bottom: 0;
    }
	
	.cd-timeline-block:nth-child(even) .cd-timeline-content {
        float: right;
    }

    .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
        top: 20px;
        left: -22px;
        border-width: 20px 22px 20px 0;
        border-color: transparent var(--border-color) transparent transparent;
    }
	
	.cd-timeline-block:nth-child(even) .cd-timeline-content::after {
        top: 21px;
        left: -20px;
        border-width: 18px 20px 18px 0;
        border-color: transparent #fff transparent transparent;
    }
	
    .cd-timeline-block:nth-child(odd) .cd-timeline-content::before {
        right: -22px;
        left: auto;
        border-width: 20px 0 20px 22px;
        border-color: transparent transparent transparent var(--border-color);
    }
	
    .cd-timeline-block:nth-child(odd) .cd-timeline-content::after {
        right: -20px;
        left: auto;
        border-width: 18px 0 18px 20px;
        border-color: transparent transparent transparent #fff;
    }
	
    .cd-timeline-img {
        left: 47.22%;
		margin-right: 30px;
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
    }
}