.timeline {
    border-bottom: 1px solid var(--brown);
    position: relative;
    margin-bottom: 80px;
}

.timeline.owl-destroyed-timeline {
    display: flex;
    align-items: flex-start;
    height: 100%;
    position: relative;
    justify-content: center;
}

.timeline.owl-destroyed-timeline .timeline-item {
    width: 100%;
    padding: 5%;
}

.timeline.owl-destroyed-timeline .timeline-item img {
    height: 200px;
    object-fit: cover;
}

.timeline .timeline-item {
    padding: 10% 15%;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    height: 100%;
    font-size: 11px !important;
}

.timeline .timeline-item::before {
    content: "";
    height: 0;
    width: 2px;
    background-color: var(--brown);
    position: absolute;
    bottom: -30px;
    left: 16%;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.timeline .timeline-item::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--green);
    position: absolute;
    bottom: -35px;
}

.timeline .timeline-item:hover {
    background-color: rgba(137, 116, 117, 0.15);
}

.timeline .timeline-item:hover::before {
    height: 50px;
    opacity: 1;
    pointer-events: inherit;
    transition: var(--transition);
}

.timeline .timeline-item:hover::after {
    background-color: var(--brown);
}

.timeline .timeline-item img {
    height: 200px;
    object-fit: cover;
}

.timeline .timeline-item .date {
    color: var(--brown);
    font-size: 30px;
    font-weight: 500;
}

.timeline .timeline-item h4 {
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 22px;
}