.timeline {
    display: flex;
    justify-content: center;
    width: 100%;
}
.timeline .row {
    display: flex;
    justify-content: space-between;
}
.timeline .row .column {
    width: 48%;
}

.timeline .row .column .title-icon {
    display: flex;
    gap: 8px;
    margin-bottom: 17px;
}
.timeline .row .column .title-icon svg {
    fill: #8D697A;
    margin-top: 2px;
}
.timeline .row .column .title-icon .title {
    font-size: 28px;
}

.timeline .row .column .box {
    border-left: 3px solid #8d697ab1;
}
.timeline .row .column .box .tl-content {
    padding-left: 25px;
    position: relative;
}
.timeline .row .column .box .tl-content::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 3px solid #af8a9b;
    background: #E3E8ED;
    border-radius: 50%;
    top: 0;
    left: -12.5px;
}
.timeline .row .column .box .tl-content .content {
    padding: 15px;
    border: 3px solid #8d697ab1;
    border-radius: 8px;
    margin-bottom: 30px;
    font-family: 'Century Gothic';
    transition: 0.4s;
}
.timeline .row .column .box .tl-content .content:hover {
    box-shadow: 0 4px 8px 0 rgba(66, 28, 41, 0.2), 0 6px 20px 0 rgba(66, 28, 41, 0.404);
}

.timeline .tl-content .content .year {
    font-size: 16px;
    color: #8d697af2;
    font-weight: 700;
    transform: translateY(-5px);
}
.timeline .tl-content .content .year svg {
    fill: #8d697ad3;
    width: 23px;
    height: auto;
    transform: translateY(5px);
    margin-right: 5px;
}

.timeline .tl-content .content h3 {
    font-size: 19px;
    margin: 2px 0;
}
.timeline .tl-content .content h3 span {
    font-style: italic;
    font-weight: 100;
}

.timeline .tl-content .content p, .timeline .tl-content .content li {
    font-size: 16px;
    font-weight: 600;
    color: #152842;
}
.timeline .tl-content .content ul {
    margin-left: 15px;
}
.timeline .tl-content .content p span, .timeline .tl-content .content li span {
    font-style: italic;
}

/* Responsive */
@media (max-width: 1250px){
    .timeline .row .column {
        width: 100%;
    }
    .timeline .row {
        display: block;
    }
}