<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#timeline-box {
    top: 100px;
    min-width: 800px;
    display: inline;
    position: relative;
}

#timeline-box .timeline-item {
    min-width: 800px;
    width: auto;
    opacity: 1;
    background: white;
    transition: ease-in-out 150ms;
    height: 300px;
    position: relative;
}

#timeline-box .timeline-item.show {
    animation: load ease 1s;
}

#timeline-box .timeline-item .timeline-item-content {
    display: flex;
    z-index: 2;
    position: relative;
}

#timeline-box .timeline-item .timeline-item-content .timeline-image {
    flex: 1 1 0%;
}

#timeline-box .timeline-item .timeline-item-content .timeline-image.left img {
    margin-right: 35px;
    float: right;
    transform-origin: right;
}

#timeline-box .timeline-item .timeline-item-content .timeline-image:not(.left) img {
    margin-left: 35px;
    float: left;

    transform-origin: left;
}

#timeline-box .timeline-item .timeline-item-content .timeline-image img {
    width: auto;
    height: 150px;
    border-radius: 5px;
    object-fit: cover;
    transition: ease-in-out 150ms;
}

#timeline-box .timeline-item .timeline-item-content .timeline-image img:hover {
    transform: scale(1.25);
    border-radius: 10px;
}

#timeline-box .timeline-item .timeline-item-content .timeline-icon {
    width: 75px;
    height: 75px;
    flex-grow: 0;
    background: #009EA2FF;
    position: relative;
    color: #05091d;
    -webkit-box-shadow: 2px 2px 10px -2px rgb(0 0 0 / 80%);
    -moz-box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.8);
    box-shadow: 2px 2px 10px -2px rgb(0 0 0 / 80%);
    border-radius: 100%;
    top: 35px;
    object-fit: cover;
    transition: ease-in-out 150ms;
}

#timeline-box .timeline-item .timeline-item-content .timeline-icon:hover {
    transform: scale(1.05);
}

#timeline-box .timeline-item .timeline-item-content .timeline-icon p {
    color: white;
    position: absolute;
    width: 100%;
    font-weight: bold;
    top: 50%;
    user-select: none;
    font-family: 'Roboto', sans-serif;
    transform: translateY(-50%);
    text-align: center;
    margin: 0;
    font-size: 1.4rem;
}

#timeline-box .timeline-item .timeline-item-content .timeline-text {
    flex: 1 1 0%;
    position: relative;
}

#timeline-box .timeline-item .timeline-item-content .timeline-text .timeline-textbox {
    top: 50%;
    transform: translateY(-50%);
    background: #f5f5f5;
    padding: 10px;
    max-width: 600px;
    position: absolute;
    border-radius: 5px;
    width: fit-content;
}

#timeline-box .timeline-item .timeline-item-content .timeline-text .timeline-textbox.right {
    margin-left: 25px;
}

#timeline-box .timeline-item .timeline-item-content .timeline-text .timeline-textbox:not(.right) {
    margin-right: 25px;
    right: 0;
}

#timeline-box .timeline-item .timeline-item-content .timeline-text .timeline-textbox p {
    margin: 0;
    font-family: 'Calibri Regular', sans-serif;
    font-size: 1rem;
    color: #0e7476;
}

#timeline-box .timeline-item .timeline-next-line {
    width: 3px;
    height: 200px;
    border-radius: 25px;
    background: #ec008a;
    position: relative;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    top: -25px;
}

#timeline-box .timeline-item:nth-last-child(1) .timeline-next-line {
    background: unset;
}

@keyframes load {
    0% {
        top: -300px;
    }
    100% {
        top: 0;
    }
}

@media screen and (max-width: 800px) {
    #timeline-box {
        width: 100vw;
        display: table;
        min-width: unset;
        top: 0;
        padding-left: 25px;
        margin: 100px auto;
        height: auto;
        position: relative;
    }

    #timeline-box .timeline-item {
        width: 100%;
        min-width: unset;
        display: flex;
        flex-wrap: wrap-reverse;
        flex-direction: column;
        height: auto;
        background: unset;
        padding-left: 5px;
    }

    #timeline-box .timeline-item .timeline-item-content {
        flex-direction: column;
        flex: 0 1 auto;
        top: 50px;
        position: relative;
    }

    #timeline-box .timeline-item .timeline-item-content .timeline-image {
        flex: unset;
        order: 2;
        display: inline;
        margin-top: 30px;
        margin-left: 25px;
    }

    #timeline-box .timeline-item .timeline-item-content .timeline-image img {
        float: unset !important;
        transform-origin: unset !important;
        position: relative;
        right: 0;
        margin: 0!important;
        left: 50%;
        transform: translateX(-50%);
    }

    #timeline-box .timeline-item .timeline-item-content .timeline-image img:hover {
        left: 50%;
        transform: translateX(-50%);
    }

    #timeline-box .timeline-item .timeline-item-content .timeline-icon {
        flex: unset;
        top: -15px;
        width: 50px;
        height: 50px;
        left: -10px;
        order: 1;
        position: absolute;
        display: inline
    }

    #timeline-box .timeline-item .timeline-item-content .timeline-icon p {
        font-size: 0.8rem;
    }


    #timeline-box .timeline-item .timeline-item-content .timeline-text {
        flex: unset;
        order: 3;
        display: inline;
    }

    #timeline-box .timeline-item .timeline-item-content .timeline-text .timeline-textbox {
        float: unset !important;
        margin-right: 0 !important;
        position: relative;
        margin-left: 25px;
        top: unset;
        transform: unset;
        text-align: center;
        width: auto;
    }

    #timeline-box .timeline-item .timeline-item-content .timeline-text .timeline-textbox p {
        width: 100%;
    }

    #timeline-box .timeline-item .timeline-next-line {
        flex: 0 1 auto;
        transform: unset;
        top: 60px;
        height: 100%;
        border-left: 3px solid #ec008a;
        border-top: 3px solid #eeeeee;
        border-radius: unset;
        background: white;
        width: 100vw;
        position: absolute;
        left: 17.5px;
    }
    #timeline-box .timeline-item:nth-last-child(1) .timeline-next-line {
        border-bottom: 3px solid #eeeeee;
    }
}</pre></body></html>