.wedoo-timeline-wrapper {
    margin: 0 0 50px;
}
.tl-row {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    margin: 0 0 20px;
}
.tl-left-inner {
    padding: 40px;
}
.tl-right-inner {
    padding: 40px 30px;
    background: #f0f0f0;
}
.tl-right-inner .tl-right-limiter {
    padding: 0 10px;
    max-height: 200vh;
    overflow-y: auto;
}
.tl-white-txt * {
    color: var(--main-white);
}
.tl-header-border {
    margin: 20px 0;
    width: 100%;
    height: 2px;
    background: var(--main-light-blue);
}
.tl-left p,
.tl-right p,
.tl-right a,
.tl-right li {
    font-size: 18px;
}
.tl-line {
    width: 1px;
    height: 100%;
    position: absolute;
    left: calc(25% + 10px);
    top: 0;
    border-left: 1px dashed var(--main-light-blue);
}
.tl-left img {
    width: 100%;
    height: auto;
    max-width: 100%;
}
.mob-tl-left {display: none;}


.tl-left img {
    padding: 5px;
    border: 1px solid #000;
}

.tl-right a {
    position: relative;
    left: 5px;
    bottom: 5px;
    width: calc(100% - 10px);
    font-size: 16px;
    display: block;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--main-black);
    background-color: var(--main-white);
    color: var(--main-black);
    transition: var(--main-easing);
    display: block;
    width: max-content;
}
.tl-right a:hover {
    background: var(--main-orange);
    color: var(--main-white);
}

@media only screen and (max-width: 1024px) {
    .tl-right-inner, .tl-left-inner {padding: 20px;}
}
@media only screen and (max-width: 768px) {
    .tl-line {left: 0;}
    .tl-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 0 0 20px;
        padding-left: 20px;
    }
    .mob-tl-left {display: block; margin-bottom: 20px;padding: 20px;}
    .tl-left {display: none;}
    .tl-left p, .tl-right p, .tl-right a, .tl-right li {font-size: 16px;}
}