.new-timeline { 
    padding-bottom: 52px; 
    background-image: url(../../../img/new-timeline-shape.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    padding-top: 250px;
}
.new-timeline .shapeBG {
    width: 100%;
    object-fit: cover;
}

.new-timeline .title > * {
    color: #054349;
    font-family: "Interstate";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 16px;
}

.new-timeline .subtitle > * {
    color: #303030;
    font-family: Haskoy;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.new-timeline .wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 64px;
    align-items: start;
}

.new-timeline .year {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: start;
    gap: 16px;
}

.new-timeline .date {
    color:  #088745;
    font-family: Haskoy;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
    min-width: 90px;
    text-align: right;
}

.new-timeline .content {
    border-left: 1px solid #088745;
    padding-left: 28px;
    position: relative;
    display: flex;
}

.new-timeline .year .content { padding-bottom: 16px; }
.new-timeline .year.active .date { 
    font-size: 56px;
    line-height: 56px;
}
.new-timeline .date {
    transition: font-size 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                line-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.new-timeline .year .content::before {
    content: "";
    display: block;
    width: 15px;
    height: 0;
    top: 0;
    bottom: auto;
    left: 0;
    position: absolute;
    background: #088745;
    transform: translateX(-50%);
    transition: height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.new-timeline.scroll-up .year .content::before {
    top: auto;
    bottom: 16px;
}
.new-timeline .year .content.active::before {
    height: calc(100% - 16px);
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-timeline .content .image {
    width: 100%;
    height: 240px;
    position: relative;
    min-width: 303px;
    max-width: 303px;
    border-left: 9px solid #98EF36;
}

.new-timeline .content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.new-timeline .content .inner {
    padding: 24px 40px;
    background: rgba(203, 203, 203, 0.20);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.new-timeline .content .inner.has-not-image { border-left: 9px solid #98EF36; }

.new-timeline .content .yearTitle { margin-bottom: 8px; }
.new-timeline .content .yearTitle > * {
    color: var(--Verde-Oscuro, #072517);
    font-family: Haskoy;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
}

.new-timeline .content .yearText > * {
    color: var(--Azul-Egeo, #054349);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}
.new-timeline .content .yearDate {
    color: var(--Verde-RIC, #0F5E42);
    font-family: Haskoy;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.new-timeline .left { position: sticky; top: 200px; height: 103vh; }

.new-timeline .right {
    padding-top: 148px;
}

.new-timeline .imageDots {
    position: absolute;
    bottom: 0;
    left: -100%;
    transform: translateX(50%);
}

@media screen and (max-width: 900px) {
    .new-timeline { padding-top: 100px; }
    .new-timeline .imageDots { display: none; }
    .new-timeline .shapeBG {
        height: 148px;
        object-position: 37%;
    }
    .new-timeline .wrapper { grid-template-columns: 1fr; gap: 40px; padding-inline: 16px; }
    .new-timeline .left { height: auto; position: static; }
    .new-timeline .right { padding-top: 0; }
    .new-timeline .title > * { font-size: 32px; line-height: 36px; margin-bottom: 8px; }
    .new-timeline .year.active .date { font-size: 28px; line-height: 56px; }
    .new-timeline .year { grid-template-columns: 84px 1fr; align-items: start; }
    .new-timeline .date { font-size: 20px; line-height: 64px; min-width: unset; }
    .new-timeline .content .image::after { display: none; }
    .new-timeline .year .content { padding-bottom: 24px; }
    .new-timeline .content { padding-left: 14px; display: grid; grid-template-columns: 1fr; }
    .new-timeline .content .inner { padding: 24px 16px; }
    .new-timeline .content .yearTitle { margin-bottom: 16px; }
    .new-timeline .content .image { min-width: 100%; max-width: 100%; border: 0; }
    .new-timeline .content .inner.has-not-image { border: 0; }
    .new-timeline .year.active .content.active.has-image::before { height: 240px; }
    .new-timeline .year .content.active::before { height: calc(100% - 24px); }
    .new-timeline.scroll-up .year .content::before { bottom: 24px; }
}