.career-timeline-container {
    display: flex;
    flex-direction: column;
    gap: 50px
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-direction: row
}

.timeline-date {
    color: var(--adkh-primary-color);
    font-family: "modam";
    font-size: 16px;
    font-weight: 700
}

.timeline-company {
    font-size: 16px;
    font-weight: 500;
    color: rgba(73, 73, 73, 1)
}

.timeline-side.timeline-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 200px;
    align-items: flex-end
}

.timeline-title {
    color: rgba(73, 73, 73, 1);
    font-family: "modam";
    font-size: 18px;
    font-weight: 700
}

.timeline-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: justify
}

.timeline-item.active .timeline-dot {
    background: var(--adkh-secondary-color)
}

.timeline-side.timeline-left {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    width: 300px;
    gap: 10px;
    position: relative
}

.timeline-side.timeline-left::before {
    content: '';
    height: calc(100% + 50px);
    width: 1px;
    background: rgba(164, 131, 78, 1);
    position: absolute;
    right: -26px;
    left: auto
}

.timeline-item:last-child .timeline-side.timeline-left::before {
    height: 100% !important
}

.timeline-dot {
    width: 10px;
    height: 10px;
    background: var(--adkh-primary-color);
    border-radius: 15px
}

@media screen and (max-width : 768px) {
    .timeline-dot {
        width: 18px;
        border-radius: 10px
    }
}