.miko-timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.miko-timeline {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 120px;
}

.miko-timeline-item {
    position: relative;
    text-align: center;
}

.miko-timeline-item .year {
    width: 34px;
    height: 34px;
    border-radius: 50%;

    background: #2f3ea8;
    color: #fff;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 600;
}

.miko-timeline-item .tooltip {
    max-width: 280px;
    margin: 15px auto 0;
    line-height: 1.5;
}

/* SVG */

.miko-timeline-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 1;
}

.miko-timeline-svg path {
    fill: none;
    stroke: #2f3ea8;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media screen and (max-width: 823px) {
    .miko-timeline{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 540px) {
    .miko-timeline{
        grid-template-columns: repeat(1, 1fr);
        gap: 80px;
    }
}